:root{
    --gold:#c5a358;
    --navy:#0f172a;
    --light-navy:#1e293b;
    --light-bg:#f1f5f9;
    --white:#fff;
    --text:#475569;
    --border:#e5e7eb;
    --shadow:0 15px 35px rgba(0,0,0,.06);
    --transition:all .4s cubic-bezier(.4,0,.2,1)
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif
}

html{
    scroll-behavior:smooth
}

body{
    background:var(--light-bg);
    color:var(--navy);
    overflow-x:hidden;
    line-height:1.6;
    -webkit-font-smoothing:antialiased
}

img{
    max-width:100%;
    height:auto
}

section{
    position:relative;
    padding:90px 8%
}

.section-white{
    background:#fff
}

.section-light{
    background:#f1f5f9
}

.reveal{
    opacity:0;
    transform:translateY(30px);
    transition:opacity .7s,transform .7s;
    will-change:opacity,transform
}

.reveal.active{
    opacity:1;
    transform:translateY(0)
}

.hero{
    min-height:75vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    background:
        linear-gradient(rgba(15,23,42,.72),rgba(15,23,42,.55)),
        url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2000&q=85")
        center/cover no-repeat
}

.hero-content{
    max-width:900px;
    padding:40px 20px
}

.hero-tag,
.section-tag{
    display:inline-block;
    color:var(--gold);
    font-size:.85rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px
}

.hero-tag{
    color:#fff
}

.hero h1{
    font-family:'Playfair Display',serif;
    font-size:clamp(2.8rem,7vw,5rem);
    line-height:1.1;
    margin-bottom:25px
}

.hero p{
    max-width:800px;
    margin:auto;
    font-size:1.15rem;
    color:rgba(255,255,255,.92)
}

.section-header{
    max-width:850px;
    margin:0 auto 55px;
    text-align:center
}

.section-header h2,
.why-left h2,
.seo-content h2,
.holiday-cta h2{
    font-family:'Playfair Display',serif;
    color:var(--navy);
    font-size:clamp(2.1rem,5vw,3.3rem);
    line-height:1.2;
    margin-bottom:18px
}

.section-header p{
    color:var(--text);
    max-width:750px;
    margin:auto
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    max-width:1250px;
    margin:auto
}

.card-link{
    text-decoration:none;
    color:inherit;
    display:block
}

.package-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
    height:100%
}

.package-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,0,0,.11)
}

.card-img{
    position:relative;
    height:245px;
    overflow:hidden
}

.card-img img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease
}

.package-card:hover .card-img img{
    transform:scale(1.08)
}

.badge{
    position:absolute;
    top:18px;
    right:18px;
    background:var(--gold);
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    font-size:.75rem;
    font-weight:600
}

.card-info{
    padding:28px
}

.card-category{
    display:block;
    color:var(--gold);
    font-size:.75rem;
    font-weight:700;
    letter-spacing:1.5px;
    margin-bottom:10px
}

.card-info h3{
    font-family:'Playfair Display',serif;
    font-size:1.65rem;
    color:var(--navy);
    margin-bottom:12px
}

.card-info p{
    color:var(--text);
    line-height:1.75;
    margin-bottom:22px
}

.card-action{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--navy);
    font-weight:600;
    transition:.3s
}

.card-action i{
    color:var(--gold);
    transition:.3s
}

.package-card:hover .card-action{
    color:var(--gold)
}

.package-card:hover .card-action i{
    transform:translateX(7px)
}

.steps-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px
}

.step-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    position:relative;
    transition:.35s
}

.step-card:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 35px rgba(0,0,0,.1)
}

.step-number{
    position:absolute;
    top:15px;
    right:18px;
    color:rgba(197,163,88,.25);
    font-size:2rem;
    font-weight:700
}

.step-card>i{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:10px auto 22px;
    border-radius:50%;
    background:rgba(197,163,88,.12);
    color:var(--gold);
    font-size:1.5rem
}

.step-card h3{
    font-size:1.1rem;
    margin-bottom:12px;
    color:var(--navy)
}

.step-card p{
    color:var(--text);
    font-size:.92rem
}

.why-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:80px;
    align-items:center
}

.why-left p{
    color:var(--text);
    max-width:500px;
    line-height:1.8
}

.why-right{
    display:flex;
    flex-direction:column;
    gap:25px
}

.why-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding-bottom:25px;
    border-bottom:1px solid #e8e8e8
}

.why-icon{
    width:50px;
    height:50px;
    min-width:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(197,163,88,.12);
    color:var(--gold)
}

.why-item h3{
    color:var(--navy);
    margin-bottom:7px;
    font-size:1.15rem
}

.why-item p{
    color:var(--text);
    line-height:1.7
}

.faq-container{
    max-width:900px;
    margin:auto
}

.faq-item{
    background:#fff;
    border-radius:12px;
    margin-bottom:16px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.05)
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    cursor:pointer;
    padding:22px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    text-align:left;
    color:var(--navy);
    font-size:1.05rem;
    font-weight:600
}

.faq-question span{
    color:var(--gold);
    font-size:1.7rem;
    min-width:25px;
    text-align:center
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease
}

.faq-answer p{
    padding:0 28px 25px;
    color:var(--text);
    line-height:1.8
}

.seo-content{
    max-width:1050px;
    margin:auto
}

.seo-content h2{
    margin-bottom:30px
}

.seo-content h3{
    font-family:'Playfair Display',serif;
    font-size:1.65rem;
    color:var(--navy);
    margin:35px 0 12px
}

.seo-content p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:20px
}

.holiday-cta{
    padding:80px 8%;
    background:linear-gradient(135deg,#039,#0057d8);
    color:#fff;
    text-align:center
}

.holiday-cta-content{
    max-width:850px;
    margin:auto
}

.holiday-cta-content>span{
    font-size:.85rem;
    font-weight:700;
    letter-spacing:2px
}

.holiday-cta h2{
    color:#fff;
    margin-top:12px
}

.holiday-cta p{
    color:rgba(255,255,255,.9);
    font-size:1.05rem;
    line-height:1.8;
    margin-bottom:35px
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s
}

.btn-primary{
    background:#fff;
    color:#039
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.2)
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff
}

.btn-secondary:hover{
    background:#fff;
    color:#039
}

@media(max-width:1000px){
    .steps-grid{
        grid-template-columns:repeat(2,1fr)
    }

    .why-wrapper{
        grid-template-columns:1fr;
        gap:45px
    }
}

@media(max-width:768px){
    section{
        padding:65px 5%
    }

    .hero{
        min-height:65vh
    }

    .hero h1{
        font-size:2.7rem
    }

    .hero p{
        font-size:1rem
    }

    .card-grid{
        grid-template-columns:1fr;
        gap:25px
    }

    .steps-grid{
        grid-template-columns:1fr
    }

    .card-img{
        height:230px
    }

    .faq-question{
        padding:19px 20px;
        font-size:.95rem
    }

    .faq-answer p{
        padding:0 20px 22px
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:320px
    }
}

@media(prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        animation:none!important;
        transition:none!important;
        scroll-behavior:auto!important
    }
}