/* =========================================
   4. HERO SECTION STYLES
   ========================================= */
.hero {
    position: relative; 
    height: 90vh; 
    min-height: 600px;
    background: url('../images/hero.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; 
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center; 
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; 
    text-align: center; 
    color: var(--c-white);
    overflow: hidden;
}

.hero-overlay {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 1;
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%); 
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%); 
    background: -o-linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%); 
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* PAGE HERO (For resort pages) */
.page-hero {
    position: relative; 
    min-height: auto; 
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('../images/hero.jpg') center/cover no-repeat;
    background: -moz-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('../images/hero.jpg') center/cover no-repeat;
    background: -o-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('../images/hero.jpg') center/cover no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('../images/hero.jpg') center/cover no-repeat;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; 
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center; 
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; 
    text-align: center; 
    color: var(--c-white);
    padding: 80px 20px 15px 20px;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.page-hero .hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 900px; 
    width: 100%; 
}

.page-hero h1 { 
    font-size: 3rem; 
    font-family: var(--f-heading);
    color: var(--c-white); 
    font-weight: 700;
    margin: 0 0 15px 0; 
    line-height: 1.2;
}

.hero-tagline { 
    font-size: 1.2rem; 
    font-family: var(--f-body);
    font-weight: 400; 
    margin: 0 0 20px 0; 
    opacity: 0.9; 
    line-height: 1.6;
}

/* Payment info box */
.hero-info-box {
    background: rgba(14, 77, 86, 0.85); 
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(207, 160, 82, 0.4); 
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    max-width: 800px;
    margin: 20px auto 0 auto;
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-info-box h3 { 
    color: var(--c-gold); 
    margin-bottom: 15px; 
    font-family: var(--f-body); 
    text-transform: uppercase; 
    font-size: 1rem; 
    letter-spacing: 1px; 
}

.payment-list { 
    list-style: none; 
}

.payment-list li { 
    margin-bottom: 10px; 
    font-size: 0.9rem; 
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start; 
    gap: 10px; 
}

.payment-list li i { 
    color: var(--c-gold); 
    margin-top: 5px; 
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; 
}

.payment-list strong { 
    color: var(--c-white); 
    font-weight: 700; 
}

.payment-warning { 
    font-size: 0.8rem; 
    color: #eee; 
    font-style: italic; 
    margin-top: 5px; 
    display: block; 
    padding-left: 25px;
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 900px; 
    padding: 20px; 
    margin-bottom: 0; 
}

.hero h1 { 
    font-size: 4.5rem; 
    color: var(--c-white); 
    margin-bottom: 10px; 
    text-shadow: 2px 2px 15px rgba(0,0,0,0.6); 
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem; 
    margin-bottom: 30px; 
    font-weight: 400; 
    opacity: 0.9; 
    letter-spacing: 1px; 
    text-transform: uppercase;
}

.hero-buttons { 
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    gap: 20px; 
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center; 
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
    margin-bottom: 20px; 
}

.btn-hero {
    background: var(--c-gold); 
    color: var(--c-white); 
    padding: 18px 40px; 
    border-radius: 50px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 1rem;
    border: 2px solid var(--c-gold); 
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-hero:hover { 
    background: transparent; 
    color: var(--c-gold); 
    -webkit-transform: translateY(-3px); 
    -moz-transform: translateY(-3px); 
    -ms-transform: translateY(-3px); 
    -o-transform: translateY(-3px); 
    transform: translateY(-3px); 
    -webkit-box-shadow: 0 15px 35px rgba(0,0,0,0.4); 
    -moz-box-shadow: 0 15px 35px rgba(0,0,0,0.4); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.4); 
}

.btn-hero.outline { 
    background: transparent; 
    border: 2px solid var(--c-white); 
    color: var(--c-white); 
}

.btn-hero.outline:hover { 
    background: var(--c-white); 
    color: var(--c-deep-blue); 
    border-color: var(--c-white); 
}

/* BENEFITS SECTION */
.hero-benefits {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    z-index: 5;
    background: rgba(14, 77, 86, 0.85); 
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding: 25px 0;
}

.benefits-grid { 
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    -webkit-box-pack: space-evenly;
    -moz-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    -webkit-justify-content: space-around;
    justify-content: space-around; 
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; 
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
    gap: 20px; 
}

.benefit-item { 
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; 
    gap: 12px; 
    color: var(--c-white); 
}

.benefit-item i { 
    font-size: 1.8rem; 
    color: var(--c-gold); 
}

.benefit-text { 
    text-align: left; 
    line-height: 1.2; 
    font-size: 0.9rem; 
}

.benefit-text strong { 
    display: block; 
    font-size: 1rem; 
    margin-bottom: 2px; 
}

/* Mobile styles */
@media (max-width: 900px) {
    /* HERO FIX */
    .hero { 
        height: auto;           
        min-height: 70vh;      
        padding-top: 80px;     
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start; 
    }
    
    .hero h1 { 
        font-size: 2.2rem; 
        margin-top: 30px; 
    }
    
    .hero-subtitle { 
        font-size: 0.9rem; 
        margin-bottom: 20px; 
    }
    
    .btn-hero { 
        padding: 12px 15px; 
        width: 100%; 
        font-size: 0.85rem; 
    }
    
    /* HERO RESORT PAGE */
    .page-hero { 
        min-height: 70vh; 
        padding: 80px 20px 30px 20px; 
        background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/hero.jpg') center/cover no-repeat;
        background: -moz-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/hero.jpg') center/cover no-repeat;
        background: -o-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/hero.jpg') center/cover no-repeat;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/hero.jpg') center/cover no-repeat;
    }
    
    .page-hero h1 { 
        font-size: 1.8rem; 
        margin-bottom: 15px;
    }
    
    .hero-tagline { 
        font-size: 1rem; 
        margin-bottom: 25px; 
    }
    
    .hero-buttons { 
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column; 
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center; 
        gap: 15px; 
        margin-bottom: 30px; 
    }
    
    .btn-hero { 
        width: 100%; 
        max-width: 300px; 
    }
    
    .hero-info-box { 
        padding: 20px; 
        margin-top: 20px; 
    }
    
    .hero-info-box h3 { 
        font-size: 1rem; 
        margin-bottom: 10px; 
    }
    
    .payment-list li { 
        margin-bottom: 8px; 
        font-size: 0.8rem; 
    }
    
    .payment-warning { 
        font-size: 0.7rem; 
        padding-left: 20px;
    }
    
    /* BENEFITS SECTION FIX */
    .hero-benefits { 
        position: relative;     
        margin-top: 50px;       
        bottom: auto;
        background: rgba(14, 77, 86, 0.95);
    }
    
    .benefits-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr; 
        gap: 20px;
        padding: 10px;
    }
    
    .benefit-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column; 
        text-align: center;
        gap: 10px;
    }
    
    .benefit-text { 
        text-align: center; 
    }
}