:root{
    --primary:#11c5c0;
    --primary-dark:#0aa6a0;
    --text:#0e2230;
    --muted:#6b7c88;
    --white:#ffffff;
    --border:#dfeef1;
    --shadow:0 10px 40px rgba(15,34,48,0.10);
    --shadow-soft:0 6px 20px rgba(15,34,48,0.08);
    --heading:'Poppins', sans-serif;
    --body:'Inter', sans-serif;
    --container:1320px;
    --transition:all .35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--body);
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

button{
    font-family:inherit;
    cursor:pointer;
}

.container{
    width:100%;
    max-width:var(--container);
    margin:0 auto;
    padding:0 20px;
}

#scroll-progress{
    position:fixed;
    top:0;
    left:0;
    height:3px;
    width:0%;
    background:linear-gradient(90deg,var(--primary),var(--primary-dark));
    z-index:9999;
}

/* Header */
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:18px 0;
    transition:var(--transition);
}

.site-header.scrolled{
    background:rgba(10,21,31,.90);
    backdrop-filter:blur(14px);
    box-shadow:0 8px 30px rgba(0,0,0,.14);
    padding:12px 0;
}

.navbar-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.site-logo img{
    height:56px;
    width:auto;
    object-fit:contain;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:30px;
}

.main-nav a{
    position:relative;
    color:#fff;
    font-family:var(--heading);
    font-size:14px;
    font-weight:500;
    padding:6px 0;
}

.main-nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:var(--transition);
}

.main-nav a:hover,
.main-nav a.active{
    color:var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after{
    width:100%;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.nav-call-btn,
.nav-wa-btn,
.mobile-call-btn,
.mobile-wa-btn,
.hero-btn-primary,
.hero-btn-secondary,
.small-teal-btn,
.view-all-outline,
.tour-detail-btn,
.footer-cta-wa,
.footer-cta-call{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-family:var(--heading);
    font-weight:600;
}

.nav-call-btn,
.nav-wa-btn{
    height:44px;
    padding:0 18px;
    border-radius:8px;
    font-size:14px;
    white-space:nowrap;
}

.nav-call-btn{
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
    background:rgba(255,255,255,.04);
}

.nav-wa-btn{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    box-shadow:0 10px 30px rgba(17,197,192,.22);
}

.mobile-menu-toggle{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:rgba(255,255,255,.08);
    border-radius:10px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.mobile-menu-toggle span{
    width:22px;
    height:2px;
    background:#fff;
    border-radius:10px;
    transition:transform .35s ease, opacity .25s ease;
}

.mobile-menu-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2){
    opacity:0;
}

.mobile-menu-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(8,18,28,.97);
    backdrop-filter:blur(14px);
    z-index:998;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:var(--transition);
}

.mobile-menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:24px;
}

.mobile-menu-inner a{
    color:#fff;
    font-size:26px;
    font-weight:700;
    font-family:var(--heading);
}

.mobile-menu-inner a.active,
.mobile-menu-inner a:hover{
    color:var(--primary);
}

.mobile-menu-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:20px;
    width:100%;
}

.mobile-call-btn,
.mobile-wa-btn{
    min-width:240px;
    padding:14px 20px;
    border-radius:10px;
    font-size:15px;
}

.mobile-call-btn{
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
}

.mobile-wa-btn{
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
}

/* Hero */
.hero-section{
    position:relative;
    min-height:100vh;
    min-height:100svh;
    min-height:100dvh;
    display:flex;
    align-items:stretch;
    overflow:hidden;
    background:#09141d;
    isolation:isolate;
}

.hero-swiper{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-swiper .swiper-slide,
.hero-swiper .swiper-slide img{
    width:100%;
    height:100%;
}

.hero-swiper .swiper-slide img{
    object-fit:cover;
    object-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(6,17,26,.82) 0%,rgba(6,17,26,.55) 45%,rgba(6,17,26,.22) 100%);
    z-index:2;
}

.hero-content-wrap{
    position:relative;
    z-index:3;
    width:100%;
    min-height:100vh;
    min-height:100svh;
    min-height:100dvh;
    display:flex;
    align-items:center;
    padding-top:120px;
    padding-bottom:88px;
}

.hero-content{
    max-width:700px;
    width:100%;
}

.hero-script{
    font-size:34px;
    color:var(--primary);
    font-style:italic;
    margin-bottom:10px;
    font-family:cursive;
    line-height:1.2;
}

.hero-content h1{
    font-family:var(--heading);
    font-size:clamp(38px, 6vw, 70px);
    line-height:1.05;
    font-weight:800;
    color:#fff;
    letter-spacing:-1.5px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.hero-content h1 span{
    color:var(--primary);
}

.hero-content p{
    color:#f3f7f9;
    font-size:clamp(16px, 2vw, 22px);
    line-height:1.55;
    margin-bottom:28px;
    max-width:560px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.hero-btn-primary,
.hero-btn-secondary{
    height:54px;
    padding:0 26px;
    border-radius:8px;
    font-size:15px;
}

.hero-btn-primary{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    box-shadow:0 15px 35px rgba(17,197,192,.24);
}

.hero-btn-secondary{
    border:1px solid rgba(255,255,255,.65);
    color:#fff;
    background:rgba(255,255,255,.02);
}

.hero-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:4;
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.6);
    background:rgba(255,255,255,.06);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-prev{
    left:16px;
}

.hero-next{
    right:16px;
}

.hero-pagination{
    position:absolute;
    left:50%;
    bottom:24px;
    transform:translateX(-50%);
    z-index:4;
    display:flex;
    align-items:center;
    gap:8px;
}

.hero-pagination .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#fff;
    opacity:.55;
}

.hero-pagination .swiper-pagination-bullet-active{
    opacity:1;
    background:var(--primary);
}

/* Scroll roller */
.scroll-roller{
    position:absolute;
    left:50%;
    bottom:58px;
    transform:translateX(-50%);
    display:inline-flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    text-decoration:none;
    z-index:5;
    transition:opacity .3s ease, transform .3s ease;
}

.scroll-roller:hover{
    transform:translateX(-50%) translateY(-2px);
}

.scroll-roller-text{
    font-size:12px;
    font-weight:700;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:#ffffff;
    opacity:.9;
    font-family:var(--heading);
}

.scroll-roller-mouse{
    width:30px;
    height:52px;
    border:2px solid rgba(255,255,255,.75);
    border-radius:999px;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding-top:8px;
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(4px);
    box-shadow:0 8px 24px rgba(0,0,0,.14);
}

.scroll-roller-wheel{
    width:4px;
    height:10px;
    border-radius:999px;
    background:#ffffff;
    animation:scrollWheelMove 1.6s ease-in-out infinite;
}

.scroll-roller:focus-visible{
    outline:2px solid rgba(255,255,255,.8);
    outline-offset:5px;
    border-radius:12px;
}

@keyframes scrollWheelMove{
    0%{
        opacity:0;
        transform:translateY(0);
    }
    20%{
        opacity:1;
    }
    70%{
        opacity:1;
    }
    100%{
        opacity:0;
        transform:translateY(16px);
    }
}

/* Common */
.section-mini-title{
    display:inline-block;
    color:var(--primary);
    font-size:14px;
    font-weight:700;
    font-family:var(--heading);
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-center-head{
    text-align:center;
    margin-bottom:34px;
}

.section-center-head h2,
.section-top-row h2{
    font-family:var(--heading);
    font-size:46px;
    font-weight:700;
    color:var(--text);
}

/* Destinations */
.destinations-section{
    padding:72px 0 68px;
    background:#fff;
}

.destinations-grid{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:30px;
    align-items:center;
}

.destinations-left h2{
    font-family:var(--heading);
    font-size:54px;
    line-height:1.08;
    margin-bottom:16px;
    font-weight:700;
}

.destinations-left p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:24px;
    font-size:17px;
    max-width:280px;
}

.small-teal-btn{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    padding:13px 22px;
    border-radius:6px;
    font-size:14px;
}

.destinations-right{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    align-items:flex-start;
}

.destination-card{
    text-align:center;
}

.destination-card h3{
    margin-top:14px;
    font-family:var(--heading);
    font-size:28px;
    font-weight:700;
    color:#0f1f2d;
    text-transform:uppercase;
}

.destination-oval{
    position:relative;
    width:100%;
    max-width:190px;
    height:240px;
    margin:0 auto;
    border-radius:50% / 42%;
    padding:5px;
    background:linear-gradient(180deg,#8cf0ea 0%, #13c5c0 50%, #b7f8f4 100%);
    box-shadow:0 10px 30px rgba(17,197,192,.18);
}

.destination-oval img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50% / 42%;
    border:4px solid #fff;
}

.destination-icon{
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    width:52px;
    height:52px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    border:4px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
}

/* Why */
.why-section{
    padding:72px 0;
    background:linear-gradient(180deg,#f8fcfd 0%, #f4fafb 100%);
}

.why-card-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.why-card{
    background:#fff;
    border-radius:14px;
    padding:34px 22px 28px;
    text-align:center;
    box-shadow:var(--shadow-soft);
    border:1px solid #edf6f7;
    height:100%;
}

.why-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin:0 auto 20px;
}

.why-card h3{
    font-family:var(--heading);
    font-size:22px;
    margin-bottom:10px;
    font-weight:700;
}

.why-card p{
    font-size:15px;
    line-height:1.7;
    color:var(--muted);
}

.why-mobile-slider-wrap{
    display:none;
}

/* Featured tours */
.featured-tours-section{
    padding:70px 0;
    background:#fff;
}

.section-top-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:26px;
}

.view-all-outline{
    border:1px solid var(--primary);
    color:var(--primary);
    padding:12px 18px;
    border-radius:6px;
    font-size:14px;
    white-space:nowrap;
}

.tour-cards-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.tour-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    border:1px solid #e9f3f5;
    box-shadow:0 10px 30px rgba(15,34,48,.06);
    transition:var(--transition);
}

.tour-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 34px rgba(15,34,48,.10);
}

.tour-image-wrap{
    position:relative;
    height:190px;
    overflow:hidden;
}

.tour-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.tour-badge{
    position:absolute;
    top:12px;
    left:12px;
    z-index:2;
    font-size:11px;
    font-weight:700;
    color:#fff;
    padding:6px 10px;
    border-radius:6px;
    font-family:var(--heading);
    text-transform:uppercase;
}

.badge-orange{
    background:#ff8a34;
}

.badge-green{
    background:#21bf73;
}

.badge-pink{
    background:#ff5f7a;
}

.tour-card-body{
    padding:16px 16px 18px;
}

.tour-card-body h3{
    font-size:22px;
    font-family:var(--heading);
    font-weight:700;
    margin-bottom:12px;
    color:var(--text);
}

.tour-meta{
    display:flex;
    flex-direction:column;
    gap:8px;
    font-size:14px;
    color:var(--muted);
    margin-bottom:16px;
}

.tour-meta span i{
    color:var(--primary);
    margin-right:7px;
}

.tour-bottom-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:12px;
    margin-bottom:16px;
}

.tour-price strong{
    display:block;
    font-size:26px;
    color:var(--text);
    font-family:var(--heading);
    font-weight:700;
    line-height:1;
}

.tour-price span{
    font-size:13px;
    color:var(--muted);
}

.tour-rating{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    color:var(--muted);
    white-space:nowrap;
}

.tour-rating i{
    color:#ffb300;
}

.home-tour-card-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.home-tour-card-actions .tour-detail-btn{
    flex:1;
}

.tour-detail-btn{
    width:100%;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #b7eae7;
    color:var(--primary-dark);
    border-radius:8px;
    font-size:14px;
}

.home-tour-wa-btn{
    width:46px;
    height:46px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25d366;
    color:#fff;
    flex-shrink:0;
    font-size:18px;
}

/* Testimonials */
.testimonials-section{
    padding:68px 0 58px;
    background:linear-gradient(180deg,#f9fcfd 0%, #f6fbfc 100%);
}

.testimonial-slider-wrap{
    position:relative;
    margin-top:42px;
}

.testimonial-card-swiper{
    position:relative;
    padding:8px 6px 60px;
    overflow:hidden;
}

.testimonial-card-swiper .swiper-wrapper{
    align-items:stretch;
}

.testimonial-card-swiper .swiper-slide{
    height:auto;
    display:flex;
}

.testimonial-card{
    background:#fff;
    border:1px solid #edf5f7;
    border-radius:14px;
    padding:26px 24px;
    box-shadow:var(--shadow-soft);
    height:100%;
    display:flex;
    flex-direction:column;
}

.quote-icon{
    color:var(--primary);
    font-size:20px;
    margin-bottom:14px;
}

.testimonial-card p{
    color:#516571;
    line-height:1.8;
    font-size:15px;
    margin-bottom:22px;
    flex-grow:1;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:14px;
}

.testimonial-user img{
    width:54px;
    height:54px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h4{
    font-family:var(--heading);
    font-size:16px;
    margin-bottom:2px;
    color:var(--text);
}

.testimonial-user span{
    display:block;
    color:var(--muted);
    font-size:13px;
    margin-bottom:6px;
}

.stars{
    display:flex;
    gap:3px;
    color:#ffb300;
    font-size:12px;
}

.testimonial-swiper-dots{
    position:relative;
    margin-top:26px;
    text-align:center;
    display:flex;
    justify-content:center;
    gap:8px;
}

.testimonial-swiper-dots .swiper-pagination-bullet{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#c5d8db;
    opacity:1;
    transition:var(--transition);
    margin:0 5px !important;
}

.testimonial-swiper-dots .swiper-pagination-bullet-active{
    width:28px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    transform:none;
}

/* Premium slider controls */
.slider-arrow{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#ffffff;
    color:var(--text);
    box-shadow:0 10px 30px rgba(15,34,48,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;
    transition:var(--transition);
}

.slider-arrow:hover{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
}

.why-arrow-prev,
.testimonial-arrow-prev{
    left:-10px;
}

.why-arrow-next,
.testimonial-arrow-next{
    right:-10px;
}

.why-swiper-pagination,
.testimonial-swiper-dots{
    margin-top:22px;
    display:flex;
    justify-content:center;
    gap:8px;
}

.why-swiper-pagination .swiper-pagination-bullet{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#c5d8db;
    opacity:1;
    transition:var(--transition);
}

.why-swiper-pagination .swiper-pagination-bullet-active{
    width:28px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
}

/* Footer */
.footer-cta-strip{
    background:linear-gradient(90deg,rgba(8,24,35,.72),rgba(8,24,35,.44)),url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding:48px 0;
}

.footer-cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.footer-cta-mini{
    display:block;
    font-size:30px;
    color:#8aeae6;
    font-style:italic;
    font-family:cursive;
    margin-bottom:4px;
}

.footer-cta-left h2{
    color:#fff;
    font-family:var(--heading);
    font-size:56px;
    line-height:1;
    margin-bottom:10px;
    font-weight:800;
    text-transform:uppercase;
}

.footer-cta-left p{
    color:#d8e8ec;
    font-size:16px;
}

.footer-cta-right{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.footer-cta-wa,
.footer-cta-call{
    height:50px;
    padding:0 22px;
    border-radius:8px;
    font-size:14px;
}

.footer-cta-wa{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
}

.footer-cta-call{
    border:1px solid rgba(255,255,255,.55);
    color:#fff;
}

.site-footer{
    background:#081722;
}

.footer-main{
    padding:56px 0 28px;
}

.footer-brand img{
    height:54px;
    width:auto;
    margin-bottom:18px;
}

.footer-brand p{
    color:#a9bac3;
    line-height:1.8;
    font-size:14px;
    max-width:260px;
    margin-bottom:18px;
}

.footer-socials{
    display:flex;
    gap:10px;
}

.footer-socials a{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0f2a39;
    color:var(--primary);
    font-size:14px;
}

.site-footer h4{
    color:#fff;
    font-size:18px;
    font-weight:700;
    font-family:var(--heading);
    margin-bottom:20px;
}

.site-footer ul{
    list-style:none;
}

.site-footer ul li{
    margin-bottom:12px;
}

.site-footer ul li a,
.site-footer ul li span{
    color:#b5c4cc;
    font-size:14px;
    line-height:1.7;
}

.footer-contact-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.footer-contact-list li i{
    color:var(--primary);
    margin-top:4px;
    min-width:14px;
}

.footer-news-text{
    color:#b5c4cc;
    font-size:14px;
    line-height:1.7;
    margin-bottom:16px;
}

.newsletter-input-wrap{
    display:flex;
    align-items:center;
    background:#0f2a39;
    border:1px solid #17394c;
    border-radius:6px;
    overflow:hidden;
}

.newsletter-input-wrap input{
    flex:1;
    height:44px;
    background:transparent;
    border:none;
    outline:none;
    color:#fff;
    padding:0 14px;
    font-size:14px;
}

.newsletter-input-wrap button{
    width:48px;
    height:44px;
    border:none;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
}

.footer-bottom{
    border-top:1px solid #102a38;
    padding:18px 0;
}

.footer-bottom-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom-inner p,
.footer-bottom-links a,
.footer-bottom-links span{
    color:#9fb0ba;
    font-size:13px;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:10px;
}

.floating-contact-buttons{
    position:fixed;
    right:20px;
    bottom:90px;
    z-index:999;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.floating-contact-buttons a{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    box-shadow:0 14px 30px rgba(0,0,0,.15);
}

.float-whatsapp{
    background:#25d366;
}

.float-call{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
}

.mobile-bottom-bar{
    display:none;
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    z-index:999;
    background:#081722;
    grid-template-columns:1fr 1fr;
}

.mobile-bottom-bar a{
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-weight:600;
    color:#fff;
    font-family:var(--heading);
    font-size:14px;
}

.mobile-bottom-wa{
    background:#1fb95c;
}

.mobile-bottom-call{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
}

/* Responsive */
@media (max-width: 1199px){
    .nav-actions{
        display:none;
    }

    .destinations-grid{
        grid-template-columns:1fr;
    }

    .destinations-left p{
        max-width:100%;
    }

    .tour-cards-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-card-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 991px){
    .main-nav{
        display:none;
    }

    .mobile-menu-toggle{
        display:flex;
    }

    .hero-content-wrap{
        padding-top:110px;
        padding-bottom:82px;
    }

    .hero-content h1{
        font-size:clamp(40px, 8vw, 52px);
    }

    .hero-content p{
        font-size:18px;
    }

    .destinations-right{
        grid-template-columns:repeat(2,1fr);
        justify-items:center;
    }

    .footer-cta-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-bottom-inner{
        flex-direction:column;
        text-align:center;
    }

    .testimonial-card-swiper .testimonial-arrow-prev,
    .testimonial-card-swiper .testimonial-arrow-next{
        display:none;
    }
}

@media (max-width: 767px){
    .site-header{
        padding:14px 0;
    }

    .site-logo img{
        height:48px;
    }

    .hero-section{
        min-height:100vh;
        min-height:100svh;
        min-height:100dvh;
    }

    .hero-content-wrap{
        min-height:100vh;
        min-height:100svh;
        min-height:100dvh;
        padding-top:96px;
        padding-bottom:92px;
        align-items:center;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-script{
        font-size:24px;
    }

    .hero-content h1{
        font-size:clamp(34px, 9vw, 40px);
        line-height:1.1;
        margin-bottom:14px;
    }

    .hero-content p{
        font-size:16px;
        margin-bottom:22px;
        max-width:100%;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        height:48px;
        padding:0 18px;
        font-size:14px;
    }

    .hero-nav{
        display:none;
    }

    .hero-pagination{
        bottom:18px;
    }

    .scroll-roller{
        bottom:46px;
        gap:8px;
    }

    .scroll-roller-text{
        font-size:11px;
        letter-spacing:.18em;
    }

    .scroll-roller-mouse{
        width:26px;
        height:46px;
        padding-top:7px;
    }

    .scroll-roller-wheel{
        height:9px;
    }

    .destinations-section,
    .why-section,
    .featured-tours-section,
    .testimonials-section{
        padding:56px 0;
    }

    .destinations-left h2,
    .section-top-row h2,
    .section-center-head h2{
        font-size:34px;
    }

    .why-desktop-grid,
    .testimonial-desktop-grid,
    .testimonial-desktop-dots{
        display:none;
    }

    .why-mobile-slider-wrap,
    .testimonial-mobile-slider-wrap{
        display:block;
    }

    .tour-cards-grid{
        grid-template-columns:1fr;
    }

    .section-top-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .tour-image-wrap{
        height:220px;
    }

    .slider-arrow{
        width:40px;
        height:40px;
    }

    .footer-cta-left h2{
        font-size:38px;
    }

    .footer-cta-right{
        width:100%;
    }

    .footer-cta-wa,
    .footer-cta-call{
        width:100%;
    }

    .floating-contact-buttons{
        display:none;
    }

    .mobile-bottom-bar{
        display:grid;
    }

    body{
        padding-bottom:56px;
    }
}

@media (max-width: 575px){
    .container{
        padding:0 16px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .destinations-right{
        grid-template-columns:1fr 1fr;
        gap:14px;
    }

    .destination-card h3{
        font-size:18px;
    }

    .tour-price strong{
        font-size:24px;
    }

    .footer-cta-left h2{
        font-size:32px;
    }

    .why-arrow-prev,
    .testimonial-arrow-prev{
        left:-4px;
    }

    .why-arrow-next,
    .testimonial-arrow-next{
        right:-4px;
    }
}

@media (min-width: 992px){
    .testimonial-card-swiper{
        padding-left:14px;
        padding-right:14px;
        padding-bottom:70px;
    }

    .testimonial-swiper-dots{
        margin-top:30px;
    }
}

@media (prefers-reduced-motion: reduce){
    .scroll-roller-wheel{
        animation:none;
        opacity:1;
        transform:none;
    }

    .scroll-roller,
    .scroll-roller:hover{
        transition:none;
    }
}
/* tour page */
/* ==============================
   TOURS PAGE
============================== */
.inner-hero{
    position:relative;
    padding:170px 0 90px;
    background:linear-gradient(90deg, rgba(7,20,30,.88), rgba(7,20,30,.62)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color:#fff;
}
.inner-hero-content{
    max-width:760px;
}
.inner-hero-content h1{
    font-family:var(--heading);
    font-size:58px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:16px;
    text-transform:uppercase;
}
.inner-hero-content p{
    font-size:18px;
    color:#d6e3e8;
    line-height:1.8;
    margin-bottom:24px;
    max-width:680px;
}
.breadcrumb-nav{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    font-size:14px;
}
.breadcrumb-nav a{
    color:var(--primary);
    font-weight:600;
}
.breadcrumb-nav span{
    color:#d5e3e8;
}

.tours-page-section{
    /* padding:70px 0; */
    background:#fff;
}
.tours-toolbar{
    background:linear-gradient(180deg,#f8fcfd 0%, #f4fafb 100%);
    border:1px solid #e6f1f4;
    border-radius:18px;
    padding:24px;
    margin-bottom:34px;
    box-shadow:var(--shadow-soft);
}
.tours-toolbar-left{
    margin-bottom:18px;
}
.results-count{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    background:#fff;
    border:1px solid #dbeef1;
    color:var(--text);
    font-weight:600;
    font-size:14px;
}
.tour-filter-form{
    width:100%;
}
.tour-filter-grid{
    display:grid;
    grid-template-columns:1fr 1fr auto;
    gap:16px;
    align-items:end;
}
.tour-filter-field label{
    display:block;
    font-size:13px;
    font-weight:700;
    color:var(--text);
    margin-bottom:8px;
    font-family:var(--heading);
}
.tour-filter-field input,
.tour-filter-field select{
    width:100%;
    height:52px;
    border:1px solid #d8e9ee;
    border-radius:10px;
    padding:0 16px;
    outline:none;
    background:#fff;
    color:var(--text);
    font-size:14px;
}
.tour-filter-field input:focus,
.tour-filter-field select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(17,197,192,.10);
}
.tour-filter-actions{
    display:flex;
    align-items:center;
    gap:12px;
}
.filter-btn-primary,
.filter-btn-reset{
    height:52px;
    padding:0 20px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-weight:600;
    font-family:var(--heading);
    white-space:nowrap;
}
.filter-btn-primary{
    border:none;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    box-shadow:0 14px 30px rgba(17,197,192,.18);
}
.filter-btn-reset{
    color:var(--text);
    border:1px solid #d8e9ee;
    background:#fff;
}
.tours-page-grid{
    grid-template-columns:repeat(3,1fr);
}
.tour-card-extra{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:16px;
}
.tour-feature-chip{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 12px;
    border-radius:999px;
    background:#f4fbfb;
    color:var(--primary-dark);
    font-size:12px;
    font-weight:600;
    border:1px solid #daf0ef;
}
.empty-tour-state{
    text-align:center;
    background:linear-gradient(180deg,#f8fcfd 0%, #f4fafb 100%);
    border:1px solid #e6f1f4;
    border-radius:18px;
    padding:60px 24px;
}
.empty-tour-icon{
    width:82px;
    height:82px;
    margin:0 auto 18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    font-size:28px;
    box-shadow:0 14px 30px rgba(17,197,192,.18);
}
.empty-tour-state h2{
    font-family:var(--heading);
    font-size:32px;
    margin-bottom:12px;
    color:var(--text);
}
.empty-tour-state p{
    max-width:540px;
    margin:0 auto 22px;
    color:var(--muted);
    line-height:1.8;
}
.tours-info-strip{
    padding:0 0 70px;
    background:#fff;
}
.tours-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.tours-info-card{
    background:linear-gradient(180deg,#f8fcfd 0%, #f4fafb 100%);
    border:1px solid #e6f1f4;
    border-radius:16px;
    padding:28px 24px;
    box-shadow:var(--shadow-soft);
}
.tours-info-card i{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    font-size:22px;
    margin-bottom:18px;
}
.tours-info-card h3{
    font-family:var(--heading);
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}
.tours-info-card p{
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
}

@media (max-width: 1199px){
    .tours-page-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (max-width: 991px){
    .inner-hero-content h1{
        font-size:46px;
    }
    .tour-filter-grid{
        grid-template-columns:1fr;
    }
    .tour-filter-actions{
        width:100%;
        flex-wrap:wrap;
    }
    .tours-info-grid{
        grid-template-columns:1fr;
    }
}
@media (max-width: 767px){
    .inner-hero{
        padding:140px 0 70px;
    }
    .inner-hero-content h1{
        font-size:36px;
    }
    .inner-hero-content p{
        font-size:16px;
    }
    .tours-page-section{
        padding:56px 0;
    }
    .tours-toolbar{
        padding:18px;
        border-radius:16px;
    }
    .tours-page-grid{
        grid-template-columns:1fr;
    }
    .filter-btn-primary,
    .filter-btn-reset{
        width:100%;
    }
    .empty-tour-state h2{
        font-size:28px;
    }
}




/* ==============================
   TOUR DETAIL PAGE
============================== */
.detail-hero{
    background:linear-gradient(90deg, rgba(7,20,30,.88), rgba(7,20,30,.62)),
    url('https://images.unsplash.com/photo-1518684079-3c830dcef090?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.tour-detail-section{
    padding:70px 0;
    background:#fff;
}
.tour-detail-grid{
    display:grid;
    grid-template-columns:minmax(0, 1.4fr) 380px;
    gap:28px;
    align-items:start;
}
.tour-detail-main{
    display:flex;
    flex-direction:column;
    gap:24px;
}
.tour-detail-gallery,
.tour-detail-card,
.tour-booking-card,
.tour-help-card{
    background:#fff;
    border:1px solid #e6f1f4;
    border-radius:18px;
    box-shadow:var(--shadow-soft);
}
.tour-detail-gallery{
    padding:20px;
}
.tour-main-image{
    border-radius:16px;
    overflow:hidden;
    margin-bottom:14px;
}
.tour-main-image img{
    width:100%;
    height:460px;
    object-fit:cover;
}
.tour-thumb-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}
.tour-thumb-btn{
    border:none;
    background:none;
    border-radius:12px;
    overflow:hidden;
    padding:0;
    cursor:pointer;
}
.tour-thumb-btn img{
    width:100%;
    height:92px;
    object-fit:cover;
}
.tour-detail-card{
    padding:28px;
}
.tour-detail-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:14px;
}
.tour-detail-rating{
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--muted);
    font-size:14px;
}
.tour-detail-rating i{
    color:#ffb300;
}
.tour-detail-card h2{
    font-family:var(--heading);
    font-size:38px;
    line-height:1.15;
    margin-bottom:18px;
    color:var(--text);
}
.tour-detail-meta{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-bottom:22px;
}
.tour-detail-meta-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:16px;
    border:1px solid #e8f2f4;
    border-radius:14px;
    background:linear-gradient(180deg,#fbfefe 0%,#f5fbfc 100%);
}
.tour-detail-meta-item i{
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    flex-shrink:0;
}
.tour-detail-meta-item span{
    display:block;
    font-size:12px;
    color:var(--muted);
    margin-bottom:4px;
    text-transform:uppercase;
    letter-spacing:.4px;
}
.tour-detail-meta-item strong{
    color:var(--text);
    font-size:15px;
    line-height:1.5;
}
.tour-detail-copy p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:20px;
}
.tour-highlight-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}
.tour-highlight-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:14px 16px;
    border:1px solid #e8f2f4;
    border-radius:14px;
    background:#fbfefe;
}
.tour-highlight-item i{
    color:var(--primary);
    margin-top:3px;
}
.detail-section-head{
    margin-bottom:18px;
}
.detail-section-head h3{
    font-family:var(--heading);
    font-size:30px;
    color:var(--text);
}
.detail-two-column-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}
.detail-two-column-list ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:14px;
}
.detail-two-column-list li{
    display:flex;
    gap:10px;
    line-height:1.7;
    color:var(--muted);
    padding:12px 14px;
    border-radius:12px;
    background:#fbfefe;
    border:1px solid #e8f2f4;
}
.detail-two-column-list li i.fa-check{
    color:#1ea96b;
    margin-top:4px;
}
.detail-two-column-list li i.fa-xmark{
    color:#d14f63;
    margin-top:4px;
}
.tour-detail-sidebar{
    position:sticky;
    top:110px;
    display:flex;
    flex-direction:column;
    gap:20px;
}
.tour-booking-card{
    padding:28px 24px;
}
.booking-label{
    display:inline-block;
    color:var(--primary-dark);
    background:#eefafa;
    border:1px solid #d9f1f0;
    padding:8px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:12px;
}
.booking-price{
    font-family:var(--heading);
    font-size:46px;
    font-weight:800;
    line-height:1;
    color:var(--text);
    margin-bottom:8px;
}
.booking-per-person{
    color:var(--muted);
    font-size:14px;
    margin-bottom:22px;
}
.booking-mini-points{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:22px;
}
.booking-mini-points div{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
}
.booking-mini-points i{
    color:var(--primary);
    margin-top:3px;
}
.booking-action-stack{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.booking-btn-primary,
.booking-btn-secondary{
    width:100%;
    min-height:54px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-weight:700;
    font-family:var(--heading);
}
.booking-btn-primary{
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    box-shadow:0 14px 30px rgba(17,197,192,.18);
}
.booking-btn-secondary{
    color:var(--text);
    border:1px solid #d8e9ee;
    background:#fff;
}
.tour-help-card{
    padding:24px;
}
.tour-help-card h3{
    font-family:var(--heading);
    font-size:24px;
    margin-bottom:10px;
    color:var(--text);
}
.tour-help-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:18px;
}
.tour-help-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:700;
    color:var(--primary-dark);
}
.faq-accordion{
    display:flex;
    flex-direction:column;
    gap:14px;
}
.faq-item{
    border:1px solid #e7f1f4;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
}
.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:18px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    text-align:left;
    font-family:var(--heading);
    font-size:16px;
    font-weight:700;
    color:var(--text);
}
.faq-question i{
    color:var(--primary-dark);
    transition:var(--transition);
}
.faq-item.active .faq-question i{
    transform:rotate(45deg);
}
.faq-answer{
    display:none;
    padding:0 18px 18px;
}
.faq-answer p{
    color:var(--muted);
    line-height:1.8;
    margin:0;
}
.related-tours-section{
    padding:0 0 70px;
    background:#fff;
}

@media (max-width: 1199px){
    .tour-detail-grid{
        grid-template-columns:1fr;
    }
    .tour-detail-sidebar{
        position:static;
    }
}
@media (max-width: 991px){
    .tour-detail-card h2{
        font-size:32px;
    }
    .tour-detail-meta{
        grid-template-columns:1fr;
    }
    .tour-highlight-list{
        grid-template-columns:1fr;
    }
    .detail-two-column-list{
        grid-template-columns:1fr;
    }
}
@media (max-width: 767px){
    .tour-detail-section{
        padding:56px 0;
    }
    .tour-detail-gallery,
    .tour-detail-card,
    .tour-booking-card,
    .tour-help-card{
        border-radius:16px;
    }
    .tour-detail-gallery,
    .tour-detail-card{
        padding:18px;
    }
    .tour-main-image img{
        height:280px;
    }
    .tour-thumb-grid{
        grid-template-columns:repeat(4,1fr);
        gap:8px;
    }
    .tour-thumb-btn img{
        height:68px;
    }
    .tour-detail-card h2{
        font-size:28px;
    }
    .detail-section-head h3{
        font-size:26px;
    }
    .booking-price{
        font-size:40px;
    }
}
.form-alert{
    padding:16px 18px;
    border-radius:12px;
    margin-bottom:24px;
    font-weight:600;
    border:1px solid transparent;
}
.alert-success{
    background:#edf9f2;
    color:#197245;
    border-color:#bfe7cf;
}
.alert-error{
    background:#fff1f2;
    color:#b42338;
    border-color:#f7c7cd;
}

.booking-old-price{
    color:var(--muted);
    font-size:14px;
    text-decoration:line-through;
    margin-bottom:18px;
}

.booking-form-card .detail-section-head{
    margin-bottom:16px;
}
.booking-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}
.booking-form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}
.booking-form-group label{
    font-size:13px;
    font-weight:700;
    color:var(--text);
    font-family:var(--heading);
}
.booking-form-group input,
.booking-form-group textarea{
    width:100%;
    border:1px solid #d8e9ee;
    border-radius:12px;
    background:#fff;
    color:var(--text);
    outline:none;
    padding:14px 16px;
    font-size:14px;
}
.booking-form-group input{
    height:52px;
}
.booking-form-group textarea{
    resize:vertical;
    min-height:110px;
}
.booking-form-group input:focus,
.booking-form-group textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(17,197,192,.10);
}
.booking-submit-btn{
    width:100%;
    min-height:54px;
    border:none;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-weight:700;
    font-family:var(--heading);
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    box-shadow:0 14px 30px rgba(17,197,192,.18);
}

.itinerary-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.itinerary-item{
    display:grid;
    grid-template-columns:120px 1fr;
    gap:18px;
    align-items:flex-start;
    padding:18px;
    border:1px solid #e8f2f4;
    border-radius:16px;
    background:linear-gradient(180deg,#fbfefe 0%,#f5fbfc 100%);
}
.itinerary-day{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:10px 16px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    font-weight:700;
    font-family:var(--heading);
    font-size:14px;
}
.itinerary-content h4{
    font-family:var(--heading);
    font-size:20px;
    margin-bottom:6px;
    color:var(--text);
}
.itinerary-content p{
    color:var(--muted);
    line-height:1.8;
    margin:0;
}

.tour-thumb-btn.active{
    outline:3px solid rgba(17,197,192,.35);
    transform:translateY(-1px);
}

@media (max-width: 767px){
    .itinerary-item{
        grid-template-columns:1fr;
        gap:12px;
    }
}
.booking-submit-btn{
    position:relative;
    overflow:hidden;
    transition:var(--transition);
}

.booking-submit-btn.is-loading{
    pointer-events:none;
    opacity:.9;
    cursor:not-allowed;
}

.booking-submit-btn.is-loading .btn-text{
    opacity:.85;
}

.booking-submit-btn .btn-spinner{
    display:none;
    width:16px;
    height:16px;
    border:2px solid rgba(255,255,255,.35);
    border-top-color:#fff;
    border-radius:50%;
    animation:bookingSpin .7s linear infinite;
}

.booking-submit-btn.is-loading .btn-spinner{
    display:inline-block;
}

.booking-submit-btn.is-loading i:not(.btn-spinner){
    display:none;
}

.booking-form.is-submitting{
    pointer-events:none;
}

.booking-form.is-submitting .booking-form-group input,
.booking-form.is-submitting .booking-form-group textarea{
    background:#f7fbfc;
}

@keyframes bookingSpin{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}


/* ==============================
   GALLERY PAGE
============================== */
.gallery-hero{
    background:linear-gradient(90deg, rgba(7,20,30,.88), rgba(7,20,30,.62)),
    url('https://images.unsplash.com/photo-1595815771614-ade501356fc2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.gallery-page-section{
    padding:70px 0;
    background:#fff;
}

.gallery-topbar{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
    margin-bottom:34px;
}

.gallery-topbar-text h2{
    font-family:var(--heading);
    font-size:40px;
    margin-bottom:10px;
    color:var(--text);
}

.gallery-topbar-text p{
    max-width:680px;
    color:var(--muted);
    line-height:1.8;
}

.gallery-filter-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.gallery-filter-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 18px;
    border-radius:999px;
    border:1px solid #d8e9ee;
    background:#fff;
    color:var(--text);
    font-weight:700;
    font-family:var(--heading);
    transition:var(--transition);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    border-color:transparent;
    box-shadow:0 14px 30px rgba(17,197,192,.18);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.gallery-card{
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    border:1px solid #e6f1f4;
    box-shadow:var(--shadow-soft);
}

.gallery-card-btn{
    width:100%;
    border:none;
    background:none;
    text-align:left;
    padding:0;
    cursor:pointer;
}

.gallery-image-wrap{
    position:relative;
    overflow:hidden;
}

.gallery-image-wrap img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:transform .5s ease;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(7,20,30,.55), rgba(7,20,30,.12));
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:var(--transition);
}

.gallery-overlay-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(6px);
    font-size:20px;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-card:hover .gallery-image-wrap img{
    transform:scale(1.08);
}

.gallery-card-content{
    padding:18px;
}

.gallery-category{
    display:inline-flex;
    align-items:center;
    padding:7px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    color:var(--primary-dark);
    background:#eefafa;
    border:1px solid #d9f1f0;
    margin-bottom:12px;
}

.gallery-card-content h3{
    font-family:var(--heading);
    font-size:22px;
    color:var(--text);
    line-height:1.3;
}

.gallery-cta-strip{
    padding:0 0 70px;
    background:#fff;
}

.gallery-cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
    padding:34px;
    border-radius:20px;
    background:linear-gradient(135deg,#061923 0%, #0a2430 100%);
    color:#fff;
}

.gallery-cta-box h2{
    font-family:var(--heading);
    font-size:38px;
    margin:10px 0 8px;
}

.gallery-cta-box p{
    color:#d3e2e8;
    line-height:1.8;
    max-width:680px;
}

.gallery-cta-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

/* LIGHTBOX */
.gallery-lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
}

.gallery-lightbox.active{
    display:block;
}

.gallery-lightbox-backdrop{
    position:absolute;
    inset:0;
    background:rgba(4,10,15,.82);
    backdrop-filter:blur(6px);
}

.gallery-lightbox-dialog{
    position:relative;
    z-index:2;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 100px;
}

.gallery-lightbox-content{
    max-width:1100px;
    width:100%;
    text-align:center;
}

.gallery-lightbox-image-wrap{
    border-radius:18px;
    overflow:hidden;
    background:#0c1821;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.gallery-lightbox-image-wrap img{
    width:100%;
    max-height:78vh;
    object-fit:contain;
    background:#09141b;
}

.gallery-lightbox-caption{
    padding-top:18px;
    color:#fff;
}

.gallery-lightbox-caption span{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    color:#7fe4df;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:8px;
}

.gallery-lightbox-caption h3{
    font-family:var(--heading);
    font-size:30px;
    line-height:1.3;
    margin:0;
}

.gallery-lightbox-close,
.gallery-lightbox-nav{
    position:absolute;
    z-index:3;
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.14);
    color:#fff;
    backdrop-filter:blur(8px);
    cursor:pointer;
    transition:var(--transition);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover{
    background:rgba(255,255,255,.24);
}

.gallery-lightbox-close{
    top:24px;
    right:24px;
    font-size:22px;
}

.gallery-lightbox-nav.prev{
    left:24px;
    top:50%;
    transform:translateY(-50%);
}

.gallery-lightbox-nav.next{
    right:24px;
    top:50%;
    transform:translateY(-50%);
}

@media (max-width: 1199px){
    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width: 991px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-topbar-text h2{
        font-size:34px;
    }

    .gallery-cta-box h2{
        font-size:32px;
    }

    .gallery-lightbox-dialog{
        padding:30px 70px;
    }
}

@media (max-width: 767px){
    .gallery-page-section{
        padding:56px 0;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .gallery-image-wrap img{
        height:240px;
    }

    .gallery-topbar-text h2{
        font-size:28px;
    }

    .gallery-cta-box{
        padding:24px;
    }

    .gallery-cta-box h2{
        font-size:28px;
    }

    .gallery-lightbox-dialog{
        padding:70px 16px 24px;
    }

    .gallery-lightbox-nav{
        width:46px;
        height:46px;
    }

    .gallery-lightbox-nav.prev{
        left:10px;
    }

    .gallery-lightbox-nav.next{
        right:10px;
    }

    .gallery-lightbox-close{
        top:14px;
        right:14px;
        width:46px;
        height:46px;
    }

    .gallery-lightbox-caption h3{
        font-size:24px;
    }
}



/* ==============================
   ABOUT PAGE
============================== */
.about-hero{
    background:linear-gradient(90deg, rgba(7,20,30,.88), rgba(7,20,30,.62)),
    url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.about-story-section,
.about-values-section,
.about-stats-section,
.about-process-section,
.about-trust-section,
.about-cta-section{
    background:#fff;
}

.about-story-section,
.about-values-section,
.about-process-section,
.about-trust-section{
    padding:70px 0;
}

.about-stats-section{
    padding:0 0 70px;
}

.about-cta-section{
    padding:0 0 70px;
}

.about-story-grid{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:34px;
    align-items:center;
}

.about-story-content h2,
.about-process-content h2,
.about-trust-content h2{
    font-family:var(--heading);
    font-size:42px;
    line-height:1.15;
    margin:10px 0 16px;
    color:var(--text);
}

.about-story-content p,
.about-process-content p,
.about-trust-content p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:16px;
}

.about-feature-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:22px;
}

.about-feature-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:14px 16px;
    border-radius:14px;
    background:#f8fcfd;
    border:1px solid #e6f1f4;
    color:var(--text);
    line-height:1.7;
}

.about-feature-item i{
    color:var(--primary);
    margin-top:4px;
}

.about-story-media{
    position:relative;
}

.about-story-main-image{
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
}

.about-story-main-image img{
    width:100%;
    height:560px;
    object-fit:cover;
}

.about-floating-card{
    position:absolute;
    left:-20px;
    bottom:24px;
    max-width:280px;
    padding:20px 18px;
    border-radius:18px;
    background:#fff;
    border:1px solid #e6f1f4;
    box-shadow:0 24px 50px rgba(8,28,38,.15);
}

.about-floating-card strong{
    display:block;
    font-size:26px;
    font-family:var(--heading);
    color:var(--text);
    margin-bottom:6px;
}

.about-floating-card span{
    color:var(--muted);
    line-height:1.7;
    font-size:14px;
}

.section-heading.center{
    text-align:center;
    max-width:760px;
    margin:0 auto 36px;
}

.section-heading.center h2{
    font-family:var(--heading);
    font-size:42px;
    margin:10px 0 12px;
    color:var(--text);
}

.section-heading.center p{
    color:var(--muted);
    line-height:1.8;
}

.about-values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.about-value-card{
    padding:28px 22px;
    border-radius:18px;
    background:linear-gradient(180deg,#f8fcfd 0%, #f4fafb 100%);
    border:1px solid #e6f1f4;
    box-shadow:var(--shadow-soft);
}

.about-value-icon{
    width:62px;
    height:62px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    font-size:22px;
    margin-bottom:18px;
}

.about-value-card h3{
    font-family:var(--heading);
    font-size:22px;
    margin-bottom:10px;
    color:var(--text);
}

.about-value-card p{
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
}

.about-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.about-stat-card{
    padding:30px 20px;
    border-radius:18px;
    text-align:center;
    background:linear-gradient(135deg,#061923 0%, #0a2430 100%);
    color:#fff;
    box-shadow:var(--shadow-soft);
}

.about-stat-card h3{
    font-family:var(--heading);
    font-size:44px;
    line-height:1;
    margin-bottom:10px;
}

.about-stat-card p{
    color:#d2e1e8;
    line-height:1.7;
    margin:0;
}

.about-process-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:32px;
    align-items:start;
}

.about-process-steps{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.about-step-card{
    position:relative;
    padding:26px 24px 24px;
    border-radius:18px;
    background:#fff;
    border:1px solid #e6f1f4;
    box-shadow:var(--shadow-soft);
}

.about-step-card span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    font-weight:800;
    font-family:var(--heading);
    margin-bottom:16px;
}

.about-step-card h3{
    font-family:var(--heading);
    font-size:24px;
    margin-bottom:8px;
    color:var(--text);
}

.about-step-card p{
    color:var(--muted);
    line-height:1.8;
    margin:0;
}

.about-trust-grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:34px;
    align-items:center;
}

.about-trust-image{
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
}

.about-trust-image img{
    width:100%;
    height:520px;
    object-fit:cover;
}

.about-trust-points{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:20px;
}

.about-trust-points div{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:var(--text);
    line-height:1.8;
}

.about-trust-points i{
    color:var(--primary);
    margin-top:5px;
}

.about-cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
    padding:34px;
    border-radius:20px;
    background:linear-gradient(135deg,#061923 0%, #0a2430 100%);
    color:#fff;
}

.about-cta-box h2{
    font-family:var(--heading);
    font-size:38px;
    margin:10px 0 8px;
}

.about-cta-box p{
    color:#d3e2e8;
    line-height:1.8;
}

.about-cta-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

@media (max-width: 1199px){
    .about-values-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 991px){
    .about-story-grid,
    .about-process-grid,
    .about-trust-grid{
        grid-template-columns:1fr;
    }

    .about-story-content h2,
    .about-process-content h2,
    .about-trust-content h2,
    .section-heading.center h2{
        font-size:34px;
    }

    .about-story-main-image img,
    .about-trust-image img{
        height:420px;
    }

    .about-floating-card{
        position:static;
        margin-top:18px;
        max-width:100%;
    }
}

@media (max-width: 767px){
    .about-story-section,
    .about-values-section,
    .about-process-section,
    .about-trust-section{
        padding:56px 0;
    }

    .about-stats-section,
    .about-cta-section{
        padding:0 0 56px;
    }

    .about-feature-list,
    .about-values-grid,
    .about-stats-grid{
        grid-template-columns:1fr;
    }

    .about-story-content h2,
    .about-process-content h2,
    .about-trust-content h2,
    .section-heading.center h2{
        font-size:28px;
    }

    .about-story-main-image img,
    .about-trust-image img{
        height:320px;
    }

    .about-cta-box{
        padding:24px;
    }

    .about-cta-box h2{
        font-size:28px;
    }

    .about-stat-card h3{
        font-size:36px;
    }

    .about-step-card h3{
        font-size:22px;
    }
}


/* ==============================
   CONTACT PAGE
============================== */
.contact-hero{
    background:linear-gradient(90deg, rgba(7,20,30,.88), rgba(7,20,30,.62)),
    url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.contact-page-section,
.contact-map-section{
    background:#fff;
}

.contact-page-section{
    padding:70px 0;
}

.contact-map-section{
    padding:0 0 70px;
}

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:34px;
}

.contact-info-card{
    padding:24px 20px;
    border-radius:18px;
    background:linear-gradient(180deg,#f8fcfd 0%, #f4fafb 100%);
    border:1px solid #e6f1f4;
    box-shadow:var(--shadow-soft);
}

.contact-info-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    font-size:20px;
    margin-bottom:16px;
}

.contact-info-card h3{
    font-family:var(--heading);
    font-size:22px;
    margin-bottom:8px;
    color:var(--text);
}

.contact-info-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:12px;
    font-size:15px;
}

.contact-info-card a,
.contact-static-text{
    color:var(--primary-dark);
    font-weight:700;
    line-height:1.7;
}

.contact-main-grid{
    display:grid;
    grid-template-columns:minmax(0,1.2fr) 380px;
    gap:28px;
    align-items:start;
}

.contact-form-wrap{
    padding:30px;
    border-radius:20px;
    background:#fff;
    border:1px solid #e6f1f4;
    box-shadow:var(--shadow-soft);
}

.contact-form-wrap .detail-section-head h2{
    font-family:var(--heading);
    font-size:38px;
    margin:10px 0 10px;
    color:var(--text);
}

.contact-form-wrap .detail-section-head p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:0;
}

.contact-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-bottom:16px;
}

.contact-sidebar{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-side-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:18px;
}

.contact-support-card{
    padding:24px;
    border-radius:18px;
    background:linear-gradient(180deg,#f8fcfd 0%, #f4fafb 100%);
    border:1px solid #e6f1f4;
    box-shadow:var(--shadow-soft);
}

.contact-support-card h3{
    font-family:var(--heading);
    font-size:24px;
    margin:10px 0 14px;
    color:var(--text);
}

.contact-support-points{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.contact-support-points div{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:var(--text);
    line-height:1.8;
}

.contact-support-points i{
    color:var(--primary);
    margin-top:5px;
}

.contact-map-box{
    border-radius:22px;
    overflow:hidden;
    border:1px solid #e6f1f4;
    box-shadow:var(--shadow-soft);
}

.contact-map-box iframe{
    display:block;
}

@media (max-width: 1199px){
    .contact-info-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-main-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width: 767px){
    .contact-page-section{
        padding:56px 0;
    }

    .contact-map-section{
        padding:0 0 56px;
    }

    .contact-info-grid,
    .contact-form-grid{
        grid-template-columns:1fr;
    }

    .contact-form-wrap{
        padding:20px;
        border-radius:16px;
    }

    .contact-form-wrap .detail-section-head h2{
        font-size:28px;
    }
}



/**/
/* =====================
   FOOTER DEV CREDIT
===================== */
.footer-devby{
    text-align:center;
    padding:10px 0 14px;
    font-size:13px;
    color:#6a7f8a;
    font-family:var(--body);
}

.footer-devby a{
    color:var(--primary);
    font-weight:600;
    text-decoration:none;
}

.footer-devby a:hover{
    color:var(--primary-dark);
}

/* =====================
   POLICY MODALS
===================== */
.policy-modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(6,16,26,.88);
    backdrop-filter:blur(10px);
    z-index:10000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    visibility:hidden;
    transition:opacity .3s ease, visibility .3s ease;
}

.policy-modal-overlay.active{
    opacity:1;
    visibility:visible;
}

.policy-modal-box{
    background:#fff;
    border-radius:16px;
    width:100%;
    max-width:760px;
    max-height:88vh;
    display:flex;
    flex-direction:column;
    box-shadow:0 24px 60px rgba(0,0,0,.22);
    overflow:hidden;
    transform:translateY(16px);
    transition:transform .3s ease;
}

.policy-modal-overlay.active .policy-modal-box{
    transform:translateY(0);
}

.policy-modal-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px 28px;
    border-bottom:1px solid var(--border);
    background:#f8fcfd;
    flex-shrink:0;
}

.policy-modal-header h2{
    font-family:var(--heading);
    font-size:22px;
    font-weight:700;
    color:var(--text);
}

.policy-modal-close{
    width:38px;
    height:38px;
    border:none;
    background:rgba(17,197,192,.10);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-dark);
    font-size:16px;
    cursor:pointer;
    transition:var(--transition);
    flex-shrink:0;
}

.policy-modal-close:hover{
    background:var(--primary);
    color:#fff;
}

.policy-modal-body{
    padding:28px;
    overflow-y:auto;
    flex:1;
    scroll-behavior:smooth;
}

.policy-effective{
    font-size:13px;
    color:var(--muted);
    margin-bottom:22px;
    font-style:italic;
}

.policy-modal-body h3{
    font-family:var(--heading);
    font-size:16px;
    font-weight:700;
    color:var(--text);
    margin:22px 0 8px;
}

.policy-modal-body h3:first-of-type{
    margin-top:0;
}

.policy-modal-body p{
    font-size:14px;
    line-height:1.8;
    color:#4a5f6b;
    margin-bottom:8px;
}

.policy-modal-body ul{
    padding-left:18px;
    margin-bottom:8px;
}

.policy-modal-body ul li{
    font-size:14px;
    color:#4a5f6b;
    line-height:1.8;
    margin-bottom:4px;
    list-style:disc;
}

.policy-modal-body a{
    color:var(--primary-dark);
    font-weight:500;
}

.policy-modal-body a:hover{
    color:var(--primary);
}

@media (max-width: 575px){
    .policy-modal-box{
        max-height:92vh;
        border-radius:12px;
    }

    .policy-modal-header{
        padding:16px 18px;
    }

    .policy-modal-header h2{
        font-size:18px;
    }

    .policy-modal-body{
        padding:18px;
    }

    .footer-devby{
        font-size:12px;
    }
}

