

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* --- Main Navbar --- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 100px;
    padding: 0 28px;

    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 71, 116, 0.08);

    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
    transform: translateY(-1px);
}

/* --- Logo (Transparent Background) --- */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
}

.logo img {
    height: 92px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    mix-blend-mode: normal;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6b6b, #ff9f4e);
    box-shadow: 0 16px 30px rgba(255, 106, 106, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(255, 106, 106, 0.28);
}


/* --- Desktop Nav Links --- */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 6px;
    height: 100%;
}

.nav-links > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.nav-links > li > a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #001f3f;
    font-size: 14.5px;
    font-weight: 600;
    padding: 0 14px;
    height: 100%;
    letter-spacing: 0.3px;
    transition: color 0.3s ease, background-color 0.3s ease;
    white-space: nowrap;
    position: relative;
}

/* Active underline effect */
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    background: #001f3f;
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-links > li > a:hover {
    color: #003366;
    background-color: rgba(0, 31, 63, 0.04);
}

.nav-links > li > a:hover::after {
    transform: scaleX(1);
}

/* --- Dropdown Menu (Desktop) --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #ffffff;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    border-radius: 0 0 16px 16px;
    border-top: 3px solid #0d7c66;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
    list-style: none;
}

.dropdown-menu > .dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 22px;
    text-decoration: none;
    color: #001f3f;
    font-size: 13.5px;
    font-weight: 700;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.dropdown-menu > .dropdown-submenu:hover > a,
.dropdown-menu > .dropdown-submenu > a:hover {
    background-color: rgba(0, 31, 63, 0.06);
    color: #003366;
    border-left-color: #001f3f;
    padding-left: 28px;
}

.dropdown-menu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 260px;
    background: #ffffff;
    margin-left: 1px;
    padding: 8px 0;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
    border-radius: 0 14px 14px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.dropdown-menu > .dropdown-submenu:hover .submenu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu .submenu {
    left: auto;
    right: 100%;
}

.dropdown-menu .submenu li a {
    display: block;
    padding: 10px 22px;
    text-decoration: none;
    color: #1f2937;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu .submenu li a:hover {
    background-color: rgba(0, 31, 63, 0.06);
    color: #003366;
    border-left-color: #001f3f;
    padding-left: 28px;
}

.dropdown-menu .group-title {
    padding: 10px 22px 6px;
    margin-top: 10px;
    color: #4b5563;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(0, 31, 63, 0.08);
}

.dropdown-menu .group-title:first-of-type {
    margin-top: 0;
}

/* --- Hamburger Menu Button (Hidden on Desktop) --- */
.menu-btn {
    display: none;
    font-size: 28px;
    color: #001f3f;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    user-select: none;
    line-height: 1;
    z-index: 1001;
    position: relative;
    background: transparent;
    border: none;
}

.menu-btn:hover {
    background-color: rgba(0, 31, 63, 0.08);
}

.menu-btn i {
    pointer-events: none;
}

/* ============================================
   SIDE MENU (Mobile Only)
   ============================================ */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 310px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    overflow-y: auto;
    padding: 30px 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(100%);
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.side-menu.active {
    transform: translateX(0) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 500px) {
    .side-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateX(100%) !important;
    }
    
    .side-menu.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #001f3f;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    background-color: rgba(0, 31, 63, 0.1);
    color: #003366;
}

/* Side Menu Links */
.side-menu > a {
    display: block;
    padding: 14px 25px;
    text-decoration: none;
    color: #001f3f;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 31, 63, 0.06);
    transition: all 0.25s ease;
}

.side-menu > a:hover {
    background-color: rgba(0, 31, 63, 0.06);
    padding-left: 32px;
    color: #003366;
}

/* Mobile Dropdown */
.mobile-dropdown {
    border-bottom: 1px solid rgba(0, 31, 63, 0.06);
}

.mobile-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 25px;
    color: #001f3f;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.mobile-title:hover {
    background-color: rgba(0, 31, 63, 0.06);
}

.mobile-title span {
    font-size: 22px;
    font-weight: 700;
    color: #001f3f;
    transition: transform 0.3s ease;
    line-height: 1;
}

.mobile-dropdown.open .mobile-title span {
    transform: rotate(45deg);
}

/* Mobile Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 31, 63, 0.03);
}

.mobile-dropdown.open .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu a {
    display: block;
    padding: 11px 25px 11px 40px;
    text-decoration: none;
    color: #001f3f;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.mobile-group-title {
    padding: 12px 25px 6px;
    margin-top: 10px;
    color: #4b5563;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mobile-submenu a:hover {
    background-color: rgba(0, 31, 63, 0.08);
    border-left-color: #001f3f;
    padding-left: 48px;
    color: #003366;
}

/* Side Menu Overlay */
.side-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.side-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   RESPONSIVE - TABLET (below 1100px)
   ============================================ */
@media (max-width: 1100px) {
    .navbar {
        padding: 0 20px;
        height: 70px;
    }

    .nav-links > li > a {
        font-size: 13px;
        padding: 0 10px;
    }

    .nav-links > li > a::after {
        left: 10px;
        right: 10px;
    }

    .dropdown-menu {
        min-width: 240px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (below 850px)
   ============================================ */
@media (max-width: 850px) {
    .navbar {
        height: 65px;
        padding: 0 16px;
    }

    /* Hide desktop nav links */
    .nav-links {
        display: none !important;
    }

    /* Show hamburger button */
    .menu-btn {
        display: block;
    }

    .logo img {
        height: 45px;
        max-width: 160px;
    }

    /* Side menu adjustments */
    .side-menu {
        width: 290px;
    }

    .side-menu > a,
    .mobile-title {
        padding: 13px 20px;
        font-size: 14.5px;
    }

    .mobile-submenu a {
        padding: 10px 20px 10px 35px;
        font-size: 13px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (below 400px)
   ============================================ */
@media (max-width: 400px) {
    .navbar {
        height: 58px;
        padding: 0 12px;
    }

    .logo img {
        height: 38px;
        max-width: 130px;
    }

    .menu-btn {
        font-size: 24px;
        padding: 6px 8px;
    }

    .side-menu {
        width: 100%;
        max-width: 100vw;
    }
}

/* ============================================
   SCROLLBAR STYLING (Side Menu)
   ============================================ */
.side-menu::-webkit-scrollbar {
    width: 5px;
}

.side-menu::-webkit-scrollbar-track {
    background: transparent;
}

.side-menu::-webkit-scrollbar-thumb {
    background: rgba(0, 31, 63, 0.2);
    border-radius: 10px;
}

.side-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 31, 63, 0.4);
}

/* ============================================
   SELECTION COLOR
   ============================================ */
.navbar ::selection,
.side-menu ::selection {
    background: #001f3f;
    color: #ffffff;
}
/* HAMBURGER */
/* (Removed duplicate .menu-btn override at bottom to avoid color/visibility conflicts) */


.hero{ position:relative; width:100%; height:100vh; overflow:hidden; }
.hero-video{ position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; object-position:center; }

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:purple;
    z-index:2;
    width:90%;
}

.hero-content h1{ font-size:90px; font-weight:800; margin-bottom:20px; text-shadow:0 5px 25px rgba(0,0,0,.4); }
.hero-content p{ font-size:22px; max-width:850px; margin:auto; line-height:1.8; margin-bottom:35px; }

.hero-btn{
    display:inline-block;
    padding:18px 45px;
    background:linear-gradient(135deg, #ff5a5f, #ff7b00);
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    border-radius:50px;
    transition:.4s;
}

.hero-btn:hover{ transform:translateY(-5px); box-shadow:0 15px 35px rgba(255,90,95,.4); }

.hero-overlay{ position:absolute; inset:0; background:rgba(0,0,0,.35); z-index:1; }
.hero-actions{ display:flex; justify-content:center; gap:18px; flex-wrap:wrap; margin-top:24px; z-index:2; }
.hero-content{ color:#fff; }
.hero-btn-alt{ background:rgba(255,255,255,.15); color:#fff; border:1px solid rgba(255,255,255,.4); }
.hero-btn-alt:hover{ background:rgba(255,255,255,.3); }

.btn{ display:inline-flex; align-items:center; justify-content:center; padding:14px 26px; border-radius:999px; font-weight:700; text-decoration:none; transition: all .3s ease; }
.btn-primary{ background: linear-gradient(135deg, #0d7c66, #12a885); color: #fff; }
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 35px rgba(13,124,102,.24); }

.tour-info{ padding:24px; }
.tour-info h3{ margin-top:0; font-size:24px; color:#0d7c66; }
.tour-info p{ color:#475569; line-height:1.8; margin:16px 0; min-height:80px; }

/* =========================
   DESCRIPTION SECTION
========================= */
.discription{
    width:100%;
    padding:120px 8%;
    background:linear-gradient(135deg, #ffffff, #f7faff, #fffaf0);
    position:relative;
    overflow:hidden;
    text-align:center;
}

.discription::before{ content:""; position:absolute; top:-150px; left:-150px; width:350px; height:350px; background:rgba(255,215,0,.08); border-radius:50%; filter:blur(100px); }
.discription::after{ content:""; position:absolute; bottom:-150px; right:-150px; width:350px; height:350px; background:rgba(255,90,95,.08); border-radius:50%; filter:blur(100px); }

#hh{ font-size:64px; font-weight:900; color:#071330; margin-bottom:20px; letter-spacing:-1px; position:relative; }

#hh::after{ content:""; position:absolute; left:50%; bottom:-18px; transform:translateX(-50%); width:140px; height:5px; border-radius:50px; background:linear-gradient(90deg, #FFD700, #ff7b00); }
.stories{ font-size:24px; font-weight:700; color:#ff7b00; margin-bottom:45px; text-transform:uppercase; letter-spacing:2px; }

.story{
    max-width:1150px;
    margin:auto;
    background:#fff;
    padding:60px;
    border-radius:30px;
    font-size:20px;
    line-height:2;
    color:#444;
    border-top:6px solid #ff7b00;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.5s;
}

.story:hover{ transform:translateY(-10px); box-shadow:0 30px 80px rgba(0,0,0,.12), 0 15px 40px rgba(255,123,0,.15); }
.story::first-letter{ font-size:42px; font-weight:800; color:#ff5a5f; line-height:1; }

/* =========================
   WHATSAPP
========================= */
.wa-button{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
}

.wa-button:hover{ transform:scale(1.1); }
.wa-button img{ width:38px; height:38px; }
.wa-button span{ display:none; }

.wa-popup{
    position:fixed;
    right:20px;
    bottom:90px;
    width:360px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    display:none;
    z-index:9999;
}

.wa-popup.active{ display:block; }
.wa-header{ background:#075E54; color:#fff; padding:20px; display:flex; justify-content:space-between; align-items:center; }
.wa-header h3{ margin:0; }
.wa-header span{ cursor:pointer; font-size:28px; }
.wa-body{ padding:20px; }
.wa-message{ background:#f1f1f1; padding:15px; border-radius:10px; margin-bottom:20px; line-height:1.6; }
.start-chat{ display:block; text-align:center; background:#25D366; color:#fff; text-decoration:none; padding:14px; border-radius:8px; font-weight:bold; }

/* =========================
   TOUR SECTION
========================= */
.tour-section { width: 90%; margin: auto; padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
    position: relative;
    display: inline-block;
}

.section-title h2::after{ content: ""; width: 80px; height: 4px; background: linear-gradient(90deg,#ff4d4d,#ff9f43); position: absolute; left: 50%; bottom: -12px; transform: translateX(-50%); border-radius: 20px; }
.section-title p { color: #777; font-size: 20px; margin-top: 18px; }

.tour-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.tour-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    transition:all .5s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    animation:fadeUp .8s ease forwards;
}

.tour-card::before{ content:""; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent); transition:.8s; z-index:2; }
.tour-card:hover::before{ left:100%; }
.tour-card:hover{ transform:translateY(-12px); box-shadow:0 20px 45px rgba(0,0,0,.18); }
.tour-card img { width: 100%; height: 250px; object-fit: cover; display:block; transition:all .7s ease; }
.tour-card:hover img{ transform:scale(1.12); }

.tour-info{ padding:24px; }
.tour-info h3{ margin-top:0; font-size:24px; color:#0d7c66; }
.tour-info p{ color:#475569; line-height:1.8; margin:16px 0; min-height:80px; }

.tour-section.equalize .tour-cards{ align-items: stretch; }
.tour-section.equalize .tour-card{ height: 100%; display:flex; flex-direction:column; }
.tour-section.equalize .tour-info{ margin-top:auto; }

.read-more {
    position: absolute;
    top: 210px;
    left: 15px;
    background:linear-gradient(135deg, #ff4d4d, #ff7b00);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 30px;
    transition: .4s;
    z-index:5;
    box-shadow:0 8px 20px rgba(255,77,77,.4);
}

.read-more:hover{ transform:translateY(-3px) scale(1.05); background:linear-gradient(135deg, #ff7b00, #ff4d4d); }
.tour-info { padding: 20px; transition:.4s; }
.tour-info h3 { font-size: 22px; margin-bottom: 10px; font-weight: 700; transition:.3s; }
.tour-card:hover .tour-info h3{ color:#ff4d4d; }
.tour-info p { color: #666; margin-bottom: 15px; font-size: 16px; }

.tour-info span {
    font-weight: bold;
    color: #333;
    display:inline-block;
    margin-top:10px;
    padding:8px 16px;
    background:#f5f5f5;
    border-radius:30px;
    transition:.4s;
}

.tour-card:hover .tour-info span{ background:#ff4d4d; color:#fff; }

@keyframes fadeUp{ from{ opacity:0; transform:translateY(30px); } to{ opacity:1; transform:translateY(0); } }

/* =========================
   WHY CHOOSE US
========================= */
.why-choose-us{ padding:100px 8%; background:linear-gradient(180deg,#ffffff,#f7f8fc); }
.features-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:35px; }

.feature-card{
    background:#fff;
    padding:45px 35px;
    border-radius:25px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.5s;
    border:1px solid rgba(255,215,0,.15);
    box-shadow:0 15px 35px rgba(0,0,0,.08), 0 5px 15px rgba(255,215,0,.10);
}

.feature-card::before{ content:''; position:absolute; top:0; left:0; width:100%; height:5px; background:linear-gradient(90deg,#FFD700,#ff8c00); }
.feature-card:hover{ transform:translateY(-15px) scale(1.03); box-shadow:0 25px 60px rgba(0,0,0,.15), 0 10px 30px rgba(255,215,0,.25); }

.icon-box{
    width:110px;
    height:110px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:52px;
    background:linear-gradient(135deg, #fff4c2, #ffd24d);
    box-shadow:0 10px 25px rgba(255,193,7,.4);
    margin-bottom:30px;
    transition:.5s;
    animation:floatIcon 3s ease-in-out infinite;
}

.feature-card:hover .icon-box{ transform:rotate(10deg) scale(1.15); }
@keyframes floatIcon{ 0%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } 100%{ transform:translateY(0); } }
.feature-card h3{ font-size:32px; font-weight:800; margin-bottom:18px; color:#111; }
.feature-card p{ font-size:18px; line-height:1.9; color:#444; font-weight:500; }

/* =========================
   FOOTER
========================= */
.footer{
    background: radial-gradient(circle at top left, rgba(255,133,99,0.22), transparent 32%),
                radial-gradient(circle at bottom right, rgba(13,124,102,0.18), transparent 28%),
                linear-gradient(180deg, #01121c 0%, #04080f 45%, #020509 100%);
    color:#f5f5f5;
    padding:70px 0 30px;
    position:relative;
    overflow:hidden;
}
.footer::before{
    content:'';
    position:absolute;
    top:-120px;
    left:-120px;
    width:260px;
    height:260px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
}
.footer::after{
    content:'';
    position:absolute;
    bottom:-140px;
    right:-140px;
    width:320px;
    height:320px;
    background:rgba(13,124,102,0.08);
    border-radius:50%;
}
.footer-container{ width:92%; max-width:1320px; margin:auto; display:grid; grid-template-columns:2.4fr 1fr 1fr 1fr; gap:32px; padding-bottom:50px; position:relative; z-index:1; }
.footer-logo img{ max-width:170px; display:block; }
.footer-brand p{ margin-top:20px; color:#d4d4d4; max-width:480px; line-height:1.85; }
.footer-brand-meta{ display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
.footer-brand-meta span{ background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); border-radius:999px; color:#f8f8f8; font-size:0.88rem; padding:10px 14px; }
.footer-social{ display:flex; gap:14px; margin-top:28px; }
.footer-social a{ width:50px; height:50px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:rgba(255,255,255,0.08); color:#fff; transition:all .3s ease; border:1px solid rgba(255,255,255,0.08); }
.footer-social a:hover{ transform:translateY(-6px); background:linear-gradient(135deg,#ff6b6b,#ff8e53); color:#fff; box-shadow:0 18px 30px rgba(255,106,106,0.22); }

.footer-col h3{ color:#fff; font-size:1.55rem; margin-bottom:24px; font-weight:800; position:relative; }
.footer-col h3::after{ content:''; position:absolute; left:0; bottom:-10px; width:55px; height:4px; background:linear-gradient(90deg,#ff6b6b,#ff8e53); border-radius:999px; }

.footer-col ul{ list-style:none; padding:0; margin:0; }
.footer-col ul li{ margin-bottom:16px; }
.footer-col ul li a{ color:#bfc3cc; text-decoration:none; transition:.3s ease; }
.footer-col ul li a:hover{ color:#fff; padding-left:6px; }

.footer-contact-col .contact-row{
    display:flex; gap:14px; align-items:flex-start; margin-bottom:18px;
    color:#d4d4d4;
}
.footer-contact-col .contact-row i{ font-size:1.05rem; color:#ff8e53; margin-top:4px; min-width:24px; }
.footer-contact-col .contact-row a{ color:#d4d4d4; text-decoration:none; transition:.3s ease; }
.footer-contact-col .contact-row a:hover{ color:#fff; }

.footer-action{ margin-top:20px; }
.btn-footer{ display:inline-flex; align-items:center; justify-content:center; padding:14px 24px; border-radius:999px; background:linear-gradient(135deg,#ff6b6b,#ff8e53); color:#fff; text-decoration:none; font-weight:700; box-shadow:0 18px 30px rgba(255,106,106,0.24); transition:all .3s ease; }
.btn-footer:hover{ transform:translateY(-2px); }

.footer-bottom{ border-top:1px solid rgba(255,255,255,0.08); padding:25px 5%; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; position:relative; z-index:1; }
.footer-bottom p{ color:#a8a8a8; font-size:0.92rem; margin:0; }
.footer-links{ display:flex; flex-wrap:wrap; gap:18px; }
.footer-links a{ text-decoration:none; color:#d3d3d3; font-size:0.95rem; transition:.3s ease; }
.footer-links a:hover{ color:#fff; }


/* =========================================
   ONLY ONE RESPONSIVE SECTION (NO DUPLICATES)
========================================= */

@media(max-width:1100px){
    .footer-container{ grid-template-columns:repeat(2,1fr); }
    .features-grid{ grid-template-columns:1fr; }
}

@media(max-width:992px){
    .nav-links{
        display:none !important; /* Desktop menu hide */
    }
    .nav-cta{
        display:none !important; /* Hide CTA button on mobile */
    }
    .menu-btn{
        display:block !important;
        margin-right:20px;
    }
    .navbar{
        padding: 8px 20px;
    }
    .logo img{
        width: 160px;
    }
}

@media(max-width:768px){
    .navbar{
        padding: 8px 15px;
    }
    .logo img{
        width: 130px;
    }
    
    .side-menu{
        right: -320px !important; /* Force side menu to be hidden on mobile */
    }
    
    .hero{ height:80vh; }
    .hero-content h1{ font-size:42px; }
    .hero-content p{ font-size:16px; line-height:1.6; }
    .hero-btn{ padding:14px 30px; font-size:16px; }

    .discription{ padding:80px 20px; }
    #hh{ font-size:38px; }
    .stories{ font-size:18px; letter-spacing:1px; }
    .story{ padding:25px; font-size:16px; line-height:1.9; border-radius:20px; }
    .story::first-letter{ font-size:34px; }

    .tour-cards{ grid-template-columns:1fr; }
    .section-title h2{ font-size:28px; }
    .tour-card img{ height:200px; }
    .read-more{ top:160px; padding:8px 15px; font-size:14px; }
    .tour-card:hover{ transform:none; }
    .tour-card:hover img{ transform:scale(1.05); }

    .wa-popup{ width:90%; right:5%; bottom:90px; }
    .wa-button{ width:55px; height:55px; right:15px; bottom:15px; }
    .wa-button img{ width:32px; height:32px; }

    .why-choose-us{ padding:70px 20px; }
    .section-title h2{ font-size:40px; }
    .section-title p{ font-size:16px; }
    .feature-card{ padding:35px 25px; }
    .feature-card h3{ font-size:26px; }
    .feature-card p{ font-size:16px; }
    .icon-box{ width:90px; height:90px; font-size:42px; }

    .footer-container{ grid-template-columns:1fr; gap:35px; }
    .footer-bottom{ flex-direction:column; gap:15px; text-align:center; }
    .footer-links{ justify-content:center; flex-wrap:wrap; }
}

@media(max-width:400px){
    .navbar{ padding: 8px 10px; }
    .logo img{ width: 110px; }
}
