*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#f8f8f8;
    overflow-x:hidden;
}

/* ================= TOP BAR ================= */
.top-bar{
    background:#f2f2f2;
    padding:8px 5%;
    display:flex;
    justify-content:space-between;
    font-size:14px;
}

/* ================= NAVBAR ================= */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 5%;
    background:#fff;
    position:relative;
}

.logo{
    font-size:22px;
    font-weight:700;
    color:#b08d57;
}

/* NAV LINKS */
.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#b08d57;
}

/* HAMBURGER */
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
}

.hamburger span{
    width:25px;
    height:3px;
    background:#333;
    transition:0.3s;
}

/* MOBILE MENU */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:70%;
    height:100vh;
    background:#fff;
    box-shadow:-5px 0 20px rgba(0,0,0,0.1);
    padding:80px 30px;
    transition:0.4s ease;
    z-index:999;
}

.mobile-menu ul{
    list-style:none;
}

.mobile-menu li{
    margin-bottom:25px;
}

.mobile-menu a{
    text-decoration:none;
    color:#333;
    font-size:18px;
    font-weight:500;
}

.mobile-menu.active{
    right:0;
}

/* ================= HERO ================= */
.hero{
    position:relative;
    height:100vh;
    display:flex;
    align-items:center;
    padding:0 5%;
    color:#fff;
    overflow:hidden;
}

/* Desktop Video */
.hero-video-desktop,
.hero-video-mobile{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

/* Hide mobile video on desktop */
.hero-video-mobile{
    display:none;
}

/* Overlay */
.hero::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    z-index:-1;
}

/* Hero Content */
.hero-content{
    max-width:600px;
}

.hero h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
}

.hero h1 span{
    color:#d4a762;
}

.hero p{
    margin:20px 0;
    font-size:18px;
    font-weight:300;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    background:#d4a762;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:4px;
    transition:0.3s;
}

.btn:hover{
    background:#b08d57;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
    .hero h1{
        font-size:40px;
    }
}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    /* Switch Videos */
    .hero-video-desktop{
        display:none;
    }

    .hero-video-mobile{
        display:block;
    }

    .hero{
        text-align:center;
        justify-content:center;
        height:85vh;
    }

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:15px;
    }

    .top-bar{
        flex-direction:column;
        gap:5px;
        text-align:center;
    }
}


/* ================= ABOUT SECTION ================= */

.about{
    padding:100px 5%;
    background:#fff;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* IMAGE SIDE */
.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:8px;
}

.experience-badge{
    position:absolute;
    bottom:20px;
    left:20px;
    background:#d4a762;
    color:#fff;
    padding:20px 30px;
    border-radius:6px;
    text-align:center;
}

.experience-badge h2{
    font-size:28px;
}

/* CONTENT SIDE */
.about-content h5{
    color:#d4a762;
    letter-spacing:2px;
    margin-bottom:10px;
}

.about-content h2{
    font-size:36px;
    margin-bottom:20px;
}

.about-content p{
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

.about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:30px;
}

.point{
    font-size:15px;
    color:#333;
}

/* ================= STATS ================= */

.stats{
    background:#f8f8f8;
    padding:60px 5%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    gap:20px;
}

.stat-box h2{
    font-size:32px;
    color:#d4a762;
    margin-bottom:10px;
}

.stat-box p{
    color:#555;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .about-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-points{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .stats{
        grid-template-columns:1fr;
    }

    .experience-badge{
        padding:15px 20px;
    }

    .experience-badge h2{
        font-size:22px;
    }
}

/* ================= SERVICES SECTION ================= */

.services{
    padding:100px 5%;
    background:#fff;
}

.services-header{
    text-align:center;
    margin-bottom:60px;
}

.services-header h5{
    color:#d4a762;
    letter-spacing:2px;
    margin-bottom:10px;
}

.services-header h2{
    font-size:36px;
}

/* GRID */
.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

/* SERVICE BOX */
.service-box{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    cursor:pointer;
}

.service-box img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
    transition:0.5s ease;
}

/* OVERLAY */
.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    opacity:0;
    transition:0.4s ease;
}

.overlay h3{
    font-size:28px;
    margin-bottom:10px;
}

.overlay span{
    background:#d4a762;
    padding:10px 20px;
    border-radius:4px;
    font-size:14px;
    font-weight:600;
}

/* HOVER EFFECT */
.service-box:hover img{
    transform:scale(1.1);
}

.service-box:hover .overlay{
    opacity:1;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .services-grid{
        gap:25px;
    }

    .service-box img{
        height:300px;
    }
}

@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .service-box img{
        height:250px;
    }

    .services-header h2{
        font-size:28px;
    }
}

/* ================= FOOTER ================= */

.footer{
    background:#111;
    color:#ccc;
    padding:80px 5% 30px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    margin-bottom:40px;
}

/* LOGO */
.footer-logo{
    color:#d4a762;
    margin-bottom:20px;
}

/* COLUMN TITLES */
.footer-col h3{
    color:#fff;
    margin-bottom:20px;
    position:relative;
}

.footer-col h3::after{
    content:"";
    width:40px;
    height:2px;
    background:#d4a762;
    position:absolute;
    bottom:-8px;
    left:0;
}

/* TEXT */
.footer-col p{
    margin-bottom:10px;
    font-size:14px;
    line-height:1.6;
}

/* LINKS */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#ccc;
    font-size:14px;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#d4a762;
    padding-left:5px;
}

/* SOCIAL LINKS */
.social-links{
    margin-top:20px;
}

.social-links a{
    display:inline-block;
    margin-right:10px;
    width:35px;
    height:35px;
    line-height:35px;
    text-align:center;
    background:#222;
    color:#d4a762;
    border-radius:50%;
    font-size:14px;
    transition:0.3s;
    text-decoration:none;
}

.social-links a:hover{
    background:#d4a762;
    color:#111;
}

/* BOTTOM BAR */
.footer-bottom{
    border-top:1px solid #222;
    text-align:center;
    padding-top:20px;
    font-size:14px;
    color:#888;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .footer-container{
        grid-template-columns:1fr;
    }

    .footer{
        padding:60px 5% 20px;
    }
}

/* ================= PACKAGES SECTION ================= */

.packages{
    padding:100px 5%;
    background:#f8f8f8;
}

.packages-header{
    text-align:center;
    margin-bottom:60px;
}

.packages-header h5{
    color:#d4a762;
    letter-spacing:2px;
    margin-bottom:10px;
}

.packages-header h2{
    font-size:36px;
}

/* GRID */
.packages-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:40px;
}

/* CARD */
.package-card{
    position:relative;
    height:500px;
    border-radius:12px;
    overflow:hidden;
    color:#fff;
}

.bg-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
    z-index:0;
    pointer-events:none; /* prevents accidental clicks */
}

/* Overlay */
.package-card::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    top:0;
    left:0;
    z-index:1;
}

.package-content{
    position:relative;
    z-index:2;
    padding:40px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.package-content h3{
    font-size:28px;
}

.package-content ul{
    list-style:none;
    line-height:2;
    font-size:15px;
}

.price{
    font-weight:600;
    color:#d4a762;
    margin-top:10px;
}

/* Play Button */
.play-btn{
    align-self:flex-start;
    background:#d4a762;
    border:none;
    color:#111;
    padding:10px 18px;
    font-size:18px;
    border-radius:50px;
    cursor:pointer;
    transition:0.3s;
}

.play-btn:hover{
    background:#fff;
}

/* VIDEO MODAL */
.video-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.video-modal video{
    width:80%;
    max-width:900px;
}

.video-modal.active{
    display:flex;
}

.close-btn{
    position:absolute;
    top:30px;
    right:40px;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}



@media(max-width:992px){
   
}

@media(max-width:768px){
   

    .package-card{
        height:400px;
    }

    .packages-header h2{
        font-size:28px;
    }
}



/* ================= VIDEO BANNER ================= */

.video-banner{
    position:relative;
    height:70vh;
    width:100%;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.banner-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/* Hide mobile video on desktop */
.mobile-video{
    display:none;
}

/* Dark overlay */
.video-banner::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    z-index:1;
}

/* Text */
.video-overlay{
    position:relative;
    z-index:2;
    text-align:center;
}

.video-overlay h1{
    font-size:80px;
    color:#fff;
    font-weight:800;
    letter-spacing:2px;
}

/* ✅ Switch videos on mobile */
@media(max-width:768px){

    .video-banner{
        height:50vh;
    }

    .desktop-video{
        display:none;
    }

    .mobile-video{
        display:block;
    }

    .video-overlay h1{
        font-size:36px;
    }
}