*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Poppins,sans-serif;

background:#071C2C;

color:white;

overflow-x:hidden;

}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    z-index: 1000;

    background: transparent;
    transition: .5s ease;
}

.navbar.scrolled{

    background: rgba(7,28,44,.82);

    backdrop-filter: blur(18px);

    box-shadow: 0 10px 30px rgba(0,0,0,.25);

}

.logo{

font-size:32px;

font-family:Cinzel,serif;

font-weight:bold;

color:#D4AF37;

}

.navbar ul{

display:flex;

list-style:none;

gap:35px;

}

.navbar a{

color:white;

text-decoration:none;

transition:.3s;

}

.navbar a:hover{

color:#D4AF37;

}





.book-btn{

padding:14px 28px;

background:#D4AF37;

color:#071C2C;

border-radius:40px;

font-weight:600;

}

.hero{

height:100vh;

position:relative;

overflow:hidden;

}

.hero video{

width:100%;

height:100%;

object-fit:cover;

}

.overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.45);

}

.hero-content{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

text-align:center;

max-width:800px;

}

.hero-content h1{

font-size:70px;

font-family:Cinzel,serif;

letter-spacing:3px;

}

.hero-content span{

display:block;

color:#D4AF37;

margin-top:10px;

}

.hero-content p{

margin-top:20px;

font-size:20px;

line-height:1.8;

}

#beginJourney{

    margin-top:40px;

    padding:18px 45px;

    border:none;

    border-radius:50px;

    background:#D4AF37;

    color:#071C2C;

    font-size:18px;

    cursor:pointer;

    animation: floatButton 3s infinite ease-in-out;

    transition:.4s;

}

#beginJourney:hover{

    transform:scale(1.08);

}

@keyframes floatButton{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

.explorer{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

justify-content:center;

overflow:hidden;

}

.explorer-bg{

position:absolute;

inset:0;

}

.explorer-bg img{

width:100%;

height:100%;

object-fit:cover;

transition:1s;

}

.dark-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.55);

backdrop-filter:blur(2px);

}

.explorer-content{

position:relative;

z-index:2;

text-align:center;

max-width:1100px;

padding:40px;

}

.explorer-content h2{

font-size:55px;

font-family:Cinzel,serif;

color:#D4AF37;

margin-bottom:20px;

}

.explorer-content p{

font-size:20px;

margin-bottom:60px;

}

.destination-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(230px,1fr));

gap:30px;

}

.destination-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border-radius:20px;

    padding:40px;

    opacity:0;

    transform:translateY(60px);

    transition:.8s;

    font-size:55px;

}

.destination-card.show{

    opacity:1;

    transform:translateY(0);

}


.destination-card h3{

margin-top:20px;

font-size:24px;

}

.destination-card:hover{

transform:translateY(-15px) scale(1.05);

background:rgba(212,175,55,.25);

}

/* ==========================
HAMBURGER
========================== */

.hamburger{

display:none;

flex-direction:column;

gap:6px;

cursor:pointer;

z-index:2000;

}

.hamburger span{

width:30px;

height:3px;

background:white;

border-radius:10px;

transition:.4s;

}

/* ==========================
MOBILE MENU
========================== */

.mobile-menu{

position:fixed;

top:0;

right:-100%;

width:85%;

max-width:340px;

height:100vh;

background:#071C2C;

padding:100px 30px 40px;

display:flex;

flex-direction:column;

gap:18px;

transition:.45s ease;

z-index:2000;

overflow-y:auto;

}

.mobile-menu a{

display:flex;

align-items:center;

padding:15px 18px;

border-radius:15px;

font-size:18px;

color:#fff;

text-decoration:none;

transition:.3s;

}

.mobile-menu a:hover{

background:rgba(212,175,55,.15);

color:#D4AF37;

}

.mobile-menu.active{

right:0;

}

.mobile-book{

margin-top:20px;

justify-content:center;

background:#D4AF37;

color:#071C2C !important;

font-weight:700;

}

.mobile-whatsapp{

justify-content:center;

background:#25D366;

color:#fff !important;

font-weight:700;

}



.hamburger.open span:nth-child(1){

transform:rotate(45deg) translateY(12px);

}

.hamburger.open span:nth-child(2){

opacity:0;

}

.hamburger.open span:nth-child(3){

transform:rotate(-45deg) translateY(-12px);

}

.package-panel{

position:fixed;

left:0;
top:0;

width:100%;
height:100vh;

background:white;

overflow-y:auto;

transform:translateY(100%);

transition:.6s ease;

z-index:9999;

}

.package-panel.show{

transform:translateY(0);

}

.popup-slider{
    position:relative;
    height:45vh;
    overflow:hidden;
    background:#000;
}

.popup-slider img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transform:scale(1.15);
    transition:opacity 1.5s ease;
}

.popup-slider img.active{
    opacity:1;
    animation:kenburns 6s linear forwards;
}

.popup-slider::after{

content:"";

position:absolute;

left:0;
right:0;
bottom:0;

height:180px;

background:linear-gradient(

transparent,

rgba(0,0,0,.75)

);

pointer-events:none;

}

.popup-content{

margin-top:-130px;

position:relative;

z-index:20;

padding:35px;

}

#packageTitle{

color:white;

font-size:42px;

font-family:Cinzel,serif;

margin-bottom:25px;

text-shadow:0 4px 15px rgba(0,0,0,.5);

}

@keyframes kenburns{

    from{
        transform:scale(1.15);
    }

    to{
        transform:scale(1);
    }

}

.package-badges{

display:flex;

gap:15px;

margin:25px 0;

flex-wrap:wrap;

}

.package-badges span{

background:#f4f4f4;

padding:12px 20px;

border-radius:50px;

font-weight:600;

}

.features{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:18px;

margin-top:30px;

}

.feature-card{

display:flex;

align-items:center;

gap:15px;

padding:18px;

background:#000;

border-radius:18px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

transition:.3s;

}

.feature-card{

opacity:0;

transform:translateY(30px);

animation:fadeFeature .6s forwards;

}

.feature-card:nth-child(1){animation-delay:.1s;}
.feature-card:nth-child(2){animation-delay:.2s;}
.feature-card:nth-child(3){animation-delay:.3s;}
.feature-card:nth-child(4){animation-delay:.4s;}
.feature-card:nth-child(5){animation-delay:.5s;}
.feature-card:nth-child(6){animation-delay:.6s;}

@keyframes fadeFeature{

to{

opacity:1;

transform:translateY(0);

}

}

.feature-card:hover{

transform:translateY(-5px);

background:#D4AF37;

}

.feature-icon{

font-size:30px;

}

.feature-title{

font-weight:600;

}

.bookHoliday{

display:flex;

justify-content:center;

align-items:center;

gap:12px;

width:100%;

margin-top:40px;

padding:20px;

border:none;

border-radius:60px;

background:linear-gradient(135deg,#D4AF37,#F4D03F);

color:#071C2C;

font-size:20px;

font-weight:700;

cursor:pointer;

transition:.4s;

box-shadow:0 18px 40px rgba(212,175,55,.35);

position:relative;

overflow:hidden;

}

.bookHoliday:hover{

transform:translateY(-5px);

box-shadow:0 25px 50px rgba(212,175,55,.45);

}

.bookHoliday:active{

transform:scale(.98);

}

.bookHoliday::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:60%;

height:100%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.45),

transparent

);

transform:skewX(-25deg);

transition:.8s;

}

.bookHoliday:hover::before{

left:150%;

}

.package-badges{

display:flex;

gap:15px;

flex-wrap:wrap;

margin-bottom:40px;

}

.package-badges span{

padding:12px 22px;

background:white;

border-radius:50px;

font-weight:600;

color:#071C2C;

box-shadow:0 8px 25px rgba(0,0,0,.12);

}

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:18px;

    margin-top:30px;

}

.feature-item{

display:flex;

align-items:center;

padding:18px;

background:#f8f8f8;

border-radius:18px;

font-size:18px;

font-weight:500;

color:#071C2C;

box-shadow:0 6px 18px rgba(0,0,0,.08);

transition:.35s;

}

.feature-item:hover{

transform:translateY(-5px);

background:#D4AF37;

}

.feature-icon{

    font-size:30px;

}

.feature-text{

    font-size:17px;

    color:#071C2C;

    font-weight:500;

}

.book-now{

width:100%;

padding:20px;

background:linear-gradient(135deg,#D4AF37,#E8C766);

border:none;

border-radius:50px;

font-size:20px;

font-weight:700;

cursor:pointer;

transition:.35s;

box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.book-now:hover{

transform:translateY(-3px);

box-shadow:0 20px 45px rgba(212,175,55,.45);

}

.close-panel{

position:absolute;

top:20px;

right:20px;

width:50px;

height:50px;

border-radius:50%;

border:none;

background:white;

font-size:22px;

cursor:pointer;

z-index:999;

box-shadow:0 10px 20px rgba(0,0,0,.2);

}

.about{

padding:120px 8%;

background:#fff;

}

.about .section-title span{

    color:#D4AF37;

}

.about .section-title h2{

    color:#071C2C;

}

.about-banner{

margin:70px auto;

overflow:hidden;

border-radius:30px;

}

.about-banner img{

width:100%;

height:520px;

object-fit:cover;

transition:1.2s;

}

.about-banner:hover img{

transform:scale(1.08);

}

.about-story{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:70px;

align-items:center;

margin-top:80px;

}

.story-text span{

color:#D4AF37;

font-weight:700;

letter-spacing:3px;

}

.story-text h2{

font-size:48px;

margin:18px 0;

font-family:Cinzel,serif;

color:#071C2C;

}

.story-text p{

line-height:2;

font-size:18px;

color:#666;

}

.story-points{

display:grid;

gap:20px;

}

.point{

padding:22px;

background:#fafafa;

border-radius:18px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

font-weight:600;

color:#071C2C;

transition:.4s;

}

.point:hover{

background:#D4AF37;

transform:translateX(12px);

}

.reveal{

opacity:0;

transform:translateY(70px);

transition:1.2s ease;

}

.reveal-left{

opacity:0;

transform:translateX(-120px);

transition:1.4s ease;

}

.reveal-right{

opacity:0;

transform:translateX(120px);

transition:1.4s ease;

}

.reveal.active,

.reveal-left.active,

.reveal-right.active{

opacity:1;

transform:translate(0);

}

.mission{

padding:80px 8%;

background:#071C2C;

}

.mission-card{

max-width:900px;

margin:auto;

padding:60px;

border-radius:30px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(20px);

text-align:center;

color:white;

}

.mission-card h2{

font-size:40px;

color:#D4AF37;

margin-bottom:25px;

font-family:Cinzel,serif;

}

.mission-card p{

font-size:19px;

line-height:1.9;

}

.why-us{

padding:120px 8%;

background:#F8F9FB;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

margin-top:60px;

}

.why-card{

background:#fff;

padding:35px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.why-card span{

font-size:48px;

display:block;

margin-bottom:20px;

}

.why-card h3{

color:#071C2C;

margin-bottom:15px;

}

.why-card p{

color:#666;

line-height:1.8;

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.holiday-builder{

padding:120px 8%;

background:#fff;

}

.builder-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.builder-left span{

color:#D4AF37;

font-weight:700;

}

.builder-left h2{

font-size:48px;

margin:20px 0;

color:#071C2C;

font-family:Cinzel,serif;

}

.builder-left p{

line-height:1.9;

color:#555;

margin-bottom:40px;

}

.builder-left img{

width:100%;

border-radius:25px;

}

.builder-right form{

display:grid;

gap:18px;

background:#fafafa;

padding:40px;

border-radius:30px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.builder-right input,

.builder-right select,

.builder-right textarea{

padding:18px;

border:1px solid #ddd;

border-radius:15px;

font-size:16px;

outline:none;

transition:.3s;

}

.builder-right input:focus,

.builder-right select:focus,

.builder-right textarea:focus{

border-color:#D4AF37;

}

.builder-right button{

padding:18px;

border:none;

background:#D4AF37;

font-size:18px;

font-weight:700;

border-radius:40px;

cursor:pointer;

transition:.35s;

}

.builder-right button:hover{

transform:translateY(-4px);

}

@media(max-width:768px){

.builder-container{

grid-template-columns:1fr;

}

.builder-left{

text-align:center;

}

.builder-left h2{

font-size:36px;

}

.builder-right form{

padding:25px;

}

}

.reviews{

    background:#F8F9FB;

    padding:120px 8%;

}

.reviews .section-title span{

    color:#D4AF37;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}  

.reviews .section-title h2{

    color:#071C2C;

    font-family:'Cinzel', serif;

}

.reviews .section-title p{

    color:#555;

    max-width:700px;

    margin:20px auto 0;

    line-height:1.8;

}

.review-slider{

overflow:hidden;

margin-top:70px;

}

.review-track{

display:flex;

gap:35px;

animation:reviews 25s linear infinite;

width:max-content;

}

.review-card{

width:360px;

background:white;

padding:35px;

border-radius:25px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

text-align:center;

transition:.35s;

}

.review-card:hover{

transform:translateY(-10px);

}

.review-card img{

width:90px;

height:90px;

border-radius:50%;

object-fit:cover;

margin-bottom:20px;

border:4px solid #D4AF37;

}

.review-card h3{

color:#071C2C;

margin-bottom:10px;

}

.stars{

font-size:22px;

margin-bottom:20px;

}

.review-card p{

line-height:1.8;

color:#666;

}

@keyframes reviews{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

.travel-blog{

padding:120px 8%;

background:white;

}

.travel-blog .section-title span{

    color:#D4AF37;

}

.travel-blog .section-title h2{

    color:#071C2C;

}

.travel-blog .section-title p{

    color:#555;

}

.blog-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

margin-top:70px;

}

.blog-card{

position:relative;

background:white;

border-radius:25px;

overflow:hidden;

box-shadow:0 18px 40px rgba(0,0,0,.08);

transition:.4s;

}

.blog-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.18);

}

.blog-image{

height:250px;

overflow:hidden;

}

.blog-image img{

width:100%;

height:100%;

object-fit:cover;

transition:1s;

}

.blog-card:hover img{

transform:scale(1.12);

}

.blog-content{

padding:30px;

}

.blog-category{

display:inline-block;

padding:8px 18px;

background:#D4AF37;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:18px;

}

.blog-content h3{

margin-bottom:18px;

color:#071C2C;

}

.blog-content p{

line-height:1.8;

color:#666;

margin-bottom:25px;

}

.blog-content a{

text-decoration:none;

font-weight:700;

color:#071C2C;

}

.special-offers{

padding:120px 8%;

background:url("gallery/offers-bg.jpg") center/cover;

position:relative;

}

.special-offers::before{

content:"";

position:absolute;

inset:0;

background:rgba(7,28,44,.88);

}

.offers-overlay{

position:relative;

z-index:2;

text-align:center;

color:white;

}

.offers-overlay span{

color:#D4AF37;

font-weight:700;

letter-spacing:3px;

}

.offers-overlay h2{

font-size:52px;

margin:20px 0;

font-family:Cinzel,serif;

}

.offer-cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

margin:60px 0;

}

.offer-card{

background:rgba(255,255,255,.1);

backdrop-filter:blur(15px);

padding:35px;

border-radius:25px;

transition:.35s;

}

.offer-card:hover{

transform:translateY(-10px);

background:rgba(212,175,55,.18);

}

.offer-card del{

opacity:.7;

margin-right:10px;

}

.offer-card strong{

color:#D4AF37;

font-size:24px;

}

.offer-button{

display:inline-block;

padding:18px 45px;

background:#D4AF37;

color:#071C2C;

text-decoration:none;

font-weight:700;

border-radius:50px;

transition:.3s;

}

.offer-button:hover{

transform:translateY(-4px);

}

.contact-section{

padding:120px 8%;

background:#071C2C;

}

.contact-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

margin-top:70px;

align-items:center;

}

.contact-info{

background:rgba(255,255,255,.08);

padding:45px;

border-radius:30px;

backdrop-filter:blur(20px);

}

.contact-info h3{

font-size:36px;

margin-bottom:40px;

color:#D4AF37;

font-family:Cinzel,serif;

}

.contact-item{

display:flex;

gap:20px;

margin-bottom:28px;

align-items:flex-start;

}

.contact-icon{

width:55px;

height:55px;

border-radius:50%;

background:#D4AF37;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

flex-shrink:0;

}

.contact-item h4{

margin-bottom:6px;

color:white;

}

.contact-item p{

color:#ddd;

line-height:1.7;

}

.contact-card{

background:white;

border-radius:30px;

overflow:hidden;

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.2);

}

.contact-card img{

width:100%;

height:280px;

object-fit:cover;

}

.contact-card h3{

margin:30px 0 15px;

font-size:34px;

color:#071C2C;

font-family:Cinzel,serif;

}

.contact-card p{

padding:0 35px;

color:#666;

line-height:1.8;

}

.contact-btn,

.whatsapp-btn{

display:block;

width:85%;

margin:20px auto;

padding:18px;

border-radius:40px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.contact-btn{

background:#D4AF37;

color:#071C2C;

}

.whatsapp-btn{

background:#25D366;

color:white;

}

.contact-btn:hover,

.whatsapp-btn:hover{

transform:translateY(-5px);

}

.socials{

display:flex;

gap:18px;

margin-top:40px;

}

.socials a{

width:50px;

height:50px;

border-radius:50%;

background:#D4AF37;

display:flex;

justify-content:center;

align-items:center;

text-decoration:none;

font-size:22px;

transition:.3s;

}

.socials a:hover{

transform:scale(1.1);

}

.socials{

display:flex;

gap:20px;

margin-top:40px;

}

.socials a{

width:55px;

height:55px;

background:#D4AF37;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

text-decoration:none;

font-size:24px;

transition:.35s;

}

.socials a:hover{

transform:translateY(-6px);

}

footer{

background:#04131E;

padding:80px 8% 30px;

color:white;

}

.footer-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:50px;

}

.footer-container h3{

margin-bottom:20px;

color:#D4AF37;

}

.footer-container a{

display:block;

margin-bottom:12px;

text-decoration:none;

color:#ddd;

transition:.3s;

}

.footer-container a:hover{

color:#D4AF37;

padding-left:8px;

}

.footer-container input{

width:100%;

padding:15px;

border:none;

border-radius:40px;

margin:20px 0;

}

.footer-container button{

width:100%;

padding:15px;

background:#D4AF37;

border:none;

border-radius:40px;

font-weight:700;

cursor:pointer;

}

.copyright{

text-align:center;

margin-top:60px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.15);

color:#bbb;

}

.travel-policies{

padding:120px 8%;

background:#fff;

}

.travel-policies .section-title span{

    color:#D4AF37;

}

.travel-policies .section-title h2{

    color:#071C2C;

}

.travel-policies .section-title p{

    color:#555;

}

.accordion{

max-width:900px;

margin:auto;

}

.accordion-item{

margin-bottom:20px;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.accordion-header{

width:100%;

padding:22px;

background:#071C2C;

color:white;

border:none;

font-size:18px;

font-weight:600;

cursor:pointer;

text-align:left;

display:flex;

justify-content:space-between;

align-items:center;

}

.accordion-header::after{

content:"+";

font-size:28px;

}

.accordion-item.active .accordion-header::after{

content:"−";

}

.accordion-content{

max-height:0;

overflow:hidden;

background:white;

transition:max-height .4s ease;

}

.accordion-content p{

padding:25px;

line-height:1.8;

color:#555;

}

/* ===== LIGHT BACKGROUND SECTION TITLES ===== */

.about .section-title span,
.why-us .section-title span,
.reviews .section-title span,
.travel-blog .section-title span,
.travel-policies .section-title span{

    color:#D4AF37 !important;

}

.about .section-title h2,
.why-us .section-title h2,
.reviews .section-title h2,
.travel-blog .section-title h2,
.travel-policies .section-title h2{

    color:#071C2C !important;

}

.about .section-title p,
.why-us .section-title p,
.reviews .section-title p,
.travel-blog .section-title p,
.travel-policies .section-title p{

    color:#555 !important;

}

/* ===== Travel Details ===== */

.form-section{

margin:50px 0 25px;

}

.form-section h3{

font-size:30px;

color:#071C2C;

font-family:'Cinzel',serif;

position:relative;

padding-bottom:15px;

}

.form-section h3::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:80px;

height:4px;

background:#D4AF37;

border-radius:50px;

}

.travellers{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

margin-top:30px;

}

.traveller-card{

background:#fff;

border:2px solid #eee;

border-radius:20px;

padding:25px;

text-align:center;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.traveller-card:hover{

border-color:#D4AF37;

transform:translateY(-5px);

}

.traveller-card label{

display:block;

margin-bottom:15px;

font-weight:700;

color:#071C2C;

}

.traveller-card input{

width:90px;

padding:12px;

text-align:center;

font-size:18px;

border:1px solid #ddd;

border-radius:12px;

outline:none;

}

@media(max-width:768px){

.travellers{

grid-template-columns:1fr;

}

}

/* ===== Interests ===== */

.interest-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(150px,1fr));

gap:20px;

margin-top:30px;

}

.interest-card{

position:relative;

background:#fff;

border:2px solid #eee;

border-radius:20px;

padding:30px 20px;

text-align:center;

cursor:pointer;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.interest-card input{

display:none;

}

.interest-card span{

font-size:38px;

display:block;

margin-bottom:15px;

}

.interest-card h4{

color:#071C2C;

font-size:18px;

}

.interest-card:hover{

transform:translateY(-8px);

border-color:#D4AF37;

}

.interest-card input:checked + span{

transform:scale(1.2);

}

.interest-card:has(input:checked){

background:#D4AF37;

border-color:#D4AF37;

}

.interest-card:has(input:checked) h4{

color:#071C2C;

font-weight:bold;

}

/* ===== Accommodation ===== */

.accommodation-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-top:30px;

}

.accommodation-card{

background:#fff;

border:2px solid #eee;

border-radius:25px;

padding:35px;

text-align:center;

cursor:pointer;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.accommodation-card input{

display:none;

}

.accommodation-card span{

font-size:45px;

display:block;

margin-bottom:15px;

}

.accommodation-card h4{

color:#071C2C;

}

.accommodation-card:hover{

transform:translateY(-8px);

border-color:#D4AF37;

}

.accommodation-card:has(input:checked){

background:#071C2C;

border-color:#D4AF37;

}

.accommodation-card:has(input:checked) h4{

color:#fff;

}

.accommodation-card:has(input:checked) span{

transform:scale(1.15);

}

@media(max-width:768px){

.accommodation-grid{

grid-template-columns:1fr;

}

}

/* ===== Date Range ===== */

.date-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

margin-top:12px;

}

.small-label{

display:block;

margin-bottom:10px;

font-size:14px;

font-weight:600;

color:#666;

}

@media(max-width:768px){

.date-grid{

grid-template-columns:1fr;

}

}

/* ===== Submit Button ===== */

.submit-area{

margin-top:60px;

text-align:center;

}

.submit-itinerary{

display:inline-flex;

align-items:center;

justify-content:center;

gap:12px;

padding:18px 50px;

border:none;

border-radius:60px;

background:linear-gradient(135deg,#D4AF37,#F4D03F);

color:#071C2C;

font-size:20px;

font-weight:700;

cursor:pointer;

transition:.35s;

box-shadow:0 15px 35px rgba(212,175,55,.35);

width:100%;
max-width:420px;

}

.submit-itinerary:hover{

transform:translateY(-5px);

box-shadow:0 25px 45px rgba(212,175,55,.45);

}

.submit-itinerary:disabled{

background:#999;

color:white;

cursor:not-allowed;

transform:none;

box-shadow:none;

}

.submit-note{

margin-top:18px;

font-size:14px;

color:#666;

}

/* ===== Holiday Form Text ===== */

.holiday-builder label{

    color:#071C2C;

    font-weight:600;

}

.holiday-builder h3{

    color:#071C2C;

}

.holiday-builder p{

    color:#555;

}

.holiday-builder input,
.holiday-builder textarea,
.holiday-builder select{

    color:#333;

    background:#fff;

    border:1px solid #ddd;

}

.holiday-builder input::placeholder,
.holiday-builder textarea::placeholder{

    color:#888;

}

.form-status{

margin-top:20px;

font-weight:600;

color:#28a745;

text-align:center;

}

.holiday-container{

max-width:900px;

margin:60px auto 0;

background:#fff;

padding:50px;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.form-group{

margin-bottom:25px;

}

.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:25px;

margin-bottom:25px;

}

.form-group input,
.form-group textarea{

width:100%;

padding:18px;

border-radius:15px;

font-size:16px;

}

@media(max-width:768px){

.form-row{

grid-template-columns:1fr;

}

.holiday-container{

padding:25px;

}

}

@media (max-width:768px){

    .submit-itinerary{

        width:100%;

        min-width:unset;

        padding:16px 20px;

        font-size:18px;

    }

    .submit-area{

        width:100%;

        padding:0 10px;

    }

}