    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --primary: #cd2c22;
      --primary-light: #1B5E72;
      --accent: #cd2c22;
      --accent-light: #F0B840;
      --cream: #FAF7F2;
      --white: #FFFFFF;
      --dark: #161616;
      --text: #2E2E2E;
      --muted: #6B6B6B;
      --border: #E5DDD5;
      --badge-red: #E8453C;
      --radius: 10px;
      --shadow: 0 4px 24px rgba(14,61,77,0.10);
      --shadow-lg: 0 12px 48px rgba(14,61,77,0.16);
      --ff-display: Arial, Helvetica, sans-serif;
      --ff-body: Arial, Helvetica, sans-serif;
      --header-h: 72px;
    }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--ff-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }

    /* ===== UTILITY ===== */
    .container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
    .section { padding: 80px 0; }
    .section-alt { background: var(--cream); }
    .section-dark { background: var(--primary); color: var(--white); }
    .tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
    .section-title { font-family: var(--ff-display); font-size: clamp(28px,4vw,42px); font-weight: 600; color: var(--dark); line-height: 1.2; margin-bottom: 12px; }
    .section-sub { font-size: 15px; color: var(--muted); max-width: 580px; }
    .btn { display: inline-flex; align-items: center; gap: 6px; padding: 12px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; transition: all .22s ease; }
    .btn-primary { background: var(--accent); color: var(--white); }
    .btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,146,42,.35); }
    .btn-outline { border: 1.5px solid var(--primary); color: var(--primary); }
    .btn-outline:hover { background: var(--primary); color: var(--white); }
    .btn-white { background: var(--white); color: var(--primary); }
    .btn-white:hover { background: var(--accent); color: var(--white); }

    /* ===== TOPBAR ===== */
    .topbar { background: var(--primary); color: rgba(255,255,255,.85); font-size: 12px; padding: 7px 0; }
    .topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .topbar-left { display: flex; align-items: center; gap: 20px; }
    .topbar-left a { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.8); transition: color .2s; }
    .topbar-left a:hover { color: var(--accent-light); }
    .topbar-right { display: flex; align-items: center; gap: 14px; }
    .topbar-right a { color: rgba(255,255,255,.8); font-size: 13px; transition: color .2s; }
    .topbar-right a:hover { color: var(--accent-light); }

    /* ===== HEADER / NAV ===== */
    .site-header { position: sticky; top: 0; z-index: 1000; background:#f99926; box-shadow: 0 2px 16px rgba(0,0,0,.08); height: var(--header-h); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
    .logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .logo img { height: 73px; width: auto; }
    .logo-text { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--primary); }
    .logo-text span { color: var(--accent); }

    /* DESKTOP NAV */
    .main-nav { display: flex; align-items: center; gap: 3px;}
    .nav-item { position: relative; }
    .nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 16px; font-weight: 500; color: #000; border-radius: 6px; transition: all .2s; white-space: nowrap; }
    .nav-link:hover { color: var(--primary); background: rgba(14,61,77,.06); }
    .nav-link .arrow { transition: transform .2s; font-size: 23px; opacity: .6; }
    .nav-item:hover > .nav-link .arrow { transform: rotate(180deg); }
    .nav-cta { background: var(--accent); color: var(--white) !important; padding: 9px 20px !important; border-radius: 6px; }
    .nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }

    /* MEGA MENU */
    .mega-menu { position: absolute; top: calc(100% + 1px); left: 50%; transform: translateX(-50%); background: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 28px 32px; min-width: 640px; opacity: 0; visibility: hidden; transition: opacity .22s, visibility .22s, transform .22s; transform: translateX(-50%) translateY(8px); z-index: 999; pointer-events: none; }
    .nav-item:hover > .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
    .mega-menu-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
    .mega-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
    .mega-columns.two-col { grid-template-columns: repeat(2, 1fr); }
    .mega-columns.three-col { grid-template-columns: repeat(3, 1fr); }
    .mega-col { border-right: 1px solid var(--border); padding: 0 20px; }
    .mega-col:first-child { padding-left: 0; }
    .mega-col:last-child { border-right: none; padding-right: 0; }
    .mega-col-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
    .mega-link { display: block; padding: 6px 0; font-size: 13.5px; color: var(--text); font-weight: 400; transition: color .18s; }
    .mega-link:hover { color: var(--accent); }

    /* DROPDOWN SIMPLE */
    .dropdown { position: absolute; top: calc(100% + 10px); left: 0; background: var(--white); border-radius: 10px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 10px 0; min-width: 180px; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s, transform .2s; transform: translateY(6px); z-index: 999; pointer-events: none; }
    .nav-item:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
    .dropdown a { display: block; padding: 9px 20px; font-size: 13.5px; color: var(--text); transition: all .18s; }
    .dropdown a:hover { color: var(--accent); background: var(--cream); }

    /* HAMBURGER */
    .hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all .3s; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* MOBILE MENU */
    .mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1001; background: var(--white); overflow-y: auto; padding: 80px 24px 40px; }
    .mobile-nav.open { display: block; }
    .mobile-nav-close { position: absolute; top: 20px; right: 20px; font-size: 28px; color: var(--primary); cursor: pointer; line-height: 1; }
    .mobile-nav-item { border-bottom: 1px solid var(--border); }
    .mobile-nav-link { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; font-size: 16px; font-weight: 600; color: var(--text); }
    .mobile-sub { display: none; padding: 0 0 12px; }
    .mobile-sub.open { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
    .mobile-sub a { display: block; padding: 7px 0; font-size: 14px; color: var(--muted); }

    /* ===== HERO BANNER ===== */
    .hero { position: relative; background: url('https://travwelltrips.com/img/varanasi-travel-agent.jpg') center/cover no-repeat; display: flex; align-items: center; overflow: hidden; padding: 60px 0 40px; }
   
    .hero-content { position: relative; z-index: 3; align-items: center; max-width: 800px; }
    .hero-left { text-align:center; }
    .hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(200,146,42,.15); border: 1px solid rgba(200,146,42,.3); color: var(--accent-light); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 40px; margin-bottom: 20px; }
    .hero-title { font-family: var(--ff-display); font-size: clamp(36px, 5vw, 50px); font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 18px; }
    .hero-title em { font-style: italic; color: var(--accent-light); }
    .hero-sub { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 32px; line-height: 1.7; }
    .hero-actions { margin-bottom: 40px; }
    .hero-stats { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
    .stat-item { }
    .stat-num { font-family: var(--ff-display); font-size: 28px; font-weight: 700; color: var(--accent-light); line-height: 1; }
    .stat-lbl { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 3px; }

    /* HERO CARDS */
    .hero-right { display: flex; flex-direction: column; gap: 16px; }
    .hero-card { background: rgba(255,255,255,.07); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; overflow: hidden; display: flex; align-items: stretch; text-decoration: none; transition: transform .22s, box-shadow .22s; }
    .hero-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
    .hero-card-img { width: 110px; flex-shrink: 0; overflow: hidden; }
    .hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
    .hero-card-body { padding: 16px 18px; flex: 1; }
    .hero-card-badge { display: inline-block; background: var(--badge-red); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; margin-bottom: 8px; }
    .hero-card-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
    .hero-card-meta { display: flex; gap: 10px; font-size: 11px; color: rgba(255,255,255,.55); }
    .hero-card-price { margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--accent-light); }

    /* ===== PACKAGES SECTION ===== */
    .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
    .pkg-card { border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .24s, box-shadow .24s; }
    .pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .pkg-img { position: relative; height: 220px; overflow: hidden; }
    .pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .pkg-card:hover .pkg-img img { transform: scale(1.06); }
    .pkg-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%); }
    .pkg-rating { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,.92); border-radius: 20px; padding: 4px 10px; font-size: 12px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 3px; }
    .pkg-rating::before { content: '★'; color: #F4A017; }
    .pkg-body { padding: 20px; }
    .pkg-dest { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
    .pkg-name { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.25; }
    .pkg-covers { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
    .pkg-covers strong { color: var(--text); font-weight: 600; }
    .pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
    .pkg-price { }
    .pkg-price-label { font-size: 11px; color: var(--muted); }
    .pkg-price-val { font-size: 20px; font-weight: 700; color: var(--primary); font-family: var(--ff-display); }
    .pkg-price-pp { font-size: 11px; color: var(--muted); }
    .pkg-btns { display: flex; gap: 8px; }
    .btn-sm { padding: 8px 16px; font-size: 12px; border-radius: 6px; }

    /* ===== DESTINATIONS ===== */
    .dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
    .dest-card { position: relative; border-radius: 14px; overflow: hidden; height: 240px; display: block; }
    .dest-card:nth-child(1), .dest-card:nth-child(5) { grid-column: span 2; height: 240px; }
    .dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .dest-card:hover img { transform: scale(1.07); }
    .dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,61,77,.75) 0%, rgba(14,61,77,.1) 60%); transition: opacity .3s; }
    .dest-card:hover .dest-overlay { opacity: .9; }
    .dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
    .dest-name { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--white); }
    .dest-meta { display: flex; gap: 14px; margin-top: 4px; }
    .dest-meta span { font-size: 12px; color: rgba(255,255,255,.75); }

    /* ===== WHY CHOOSE ===== */
    .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
    .why-card { text-align: center; padding: 32px 24px; background: var(--white); border-radius: 14px; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,.04); transition: transform .24s, box-shadow .24s; }
    .why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
    .why-icon { width: 60px; height: 60px; background: rgba(14,61,77,.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 18px; }
    .why-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .why-text { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

    /* ===== REVIEWS ===== */
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
    .review-card { background: var(--white); border-radius: 14px; border: 1px solid var(--border); padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
    .review-stars { color: #F4A017; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
    .review-text { font-size: 14px; color: var(--text); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
    .reviewer { display: flex; align-items: center; gap: 12px; }
    .reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
    .reviewer-name { font-size: 14px; font-weight: 700; color: var(--dark); }
    .reviewer-role { font-size: 12px; color: var(--muted); }
    .review-badge { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--primary); color: var(--white); border-radius: 50px; padding: 14px 28px; margin: 0 auto 40px; width: fit-content; font-size: 14px; font-weight: 600; }
    .review-badge strong { font-size: 22px; font-family: var(--ff-display); color: var(--accent-light); }

    /* ===== ABOUT STRIP ===== */
    .about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
    .about-stat { text-align: center; padding: 20px 10px; background: rgba(255,255,255,.08); border-radius: 10px; }
    .about-stat-num { font-family: var(--ff-display); font-size: 32px; font-weight: 700; color: var(--accent-light); }
    .about-stat-lbl { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 4px; }
    .about-text { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.8; }
    .about-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
    .about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }

    /* ===== TEAM SECTION ===== */
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
    .team-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .24s, box-shadow .24s; }
    .team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .team-img-wrap { position: relative; height: 260px; overflow: hidden; background: var(--cream); }
    .team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s ease; }
    .team-card:hover .team-img-wrap img { transform: scale(1.05); }
    .team-social { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(14,61,77,.85) 0%, transparent 100%); padding: 28px 16px 14px; display: flex; gap: 10px; transform: translateY(100%); transition: transform .3s ease; }
    .team-card:hover .team-social { transform: translateY(0); }
    .team-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: var(--white); transition: background .2s; }
    .team-social a:hover { background: var(--accent); border-color: var(--accent); }
    .team-body { padding: 20px; }
    .team-name { font-family: var(--ff-display); font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
    .team-role { font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
    .team-bio { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
    .team-expertise { display: flex; flex-wrap: wrap; gap: 6px; }
    .expertise-tag { display: inline-block; background: rgba(205,44,34,.08); color: var(--primary); border: 1px solid rgba(205,44,34,.2); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; letter-spacing: .04em; }

    /* ===== BLOG ===== */
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
    .blog-card { border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,.04); transition: transform .24s, box-shadow .24s; }
    .blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .blog-img { height: 200px; overflow: hidden; position: relative; }
    .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .blog-card:hover .blog-img img { transform: scale(1.06); }
    .blog-cat { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--white); font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: .06em; }
    .blog-body { padding: 20px; }
    .blog-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
    .blog-title { font-family: var(--ff-display); font-size: 19px; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
    .blog-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
    .blog-read { font-size: 13px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; }

    /* ===== SEO CONTENT SECTION ===== */
    .seo-content { padding: 70px 0; background: var(--cream); }
    .seo-content h1 { font-family: var(--ff-display); font-size: 34px; font-weight: 700; color: var(--primary); margin-bottom: 18px; }
    .seo-content h2 { font-family: var(--ff-display); font-size: 24px; font-weight: 600; color: var(--dark); margin: 28px 0 12px; }
    .seo-content h3 { font-family: var(--ff-display); font-size: 19px; font-weight: 600; color: var(--primary); margin: 22px 0 10px; }
    .seo-content p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
    .seo-content a { color: var(--accent); font-weight: 500; }
    .seo-content a:hover { text-decoration: underline; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 24px 0; }
    .service-item { background: var(--white); border-radius: 10px; padding: 20px; border: 1px solid var(--border); }
    .service-item h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .service-item p { font-size: 13px; margin: 0; }

    /* ===== FAQ ===== */
    .faq-section { padding: 70px 0; }
    .faq-grid { margin-top: 40px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; }
    .faq-question h3 { font-size: 15px; font-weight: 600; color: var(--dark); padding-right: 20px; }
    .faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: transform .3s, background .2s; }
    .faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .faq-answer p { font-size: 14px; color: var(--muted); line-height: 1.8; padding-bottom: 16px; }

    /* ===== NEWSLETTER ===== */
    .newsletter { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 60px 0; }
    .newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
    .newsletter-text h2 { font-family: var(--ff-display); font-size: 30px; color: var(--white); font-weight: 600; margin-bottom: 6px; }
    .newsletter-text p { font-size: 14px; color: rgba(255,255,255,.7); }
    .newsletter-form { display: flex; gap: 10px; flex-shrink: 0; }
    .newsletter-form input { width: 280px; padding: 12px 18px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: var(--white); font-family: var(--ff-body); font-size: 14px; outline: none; }
    .newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
    .newsletter-form input:focus { border-color: var(--accent-light); }

    /* ===== ENQUIRY POPUP ===== */
    .popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .25s; backdrop-filter: blur(4px); }
    .popup-overlay.open { opacity: 1; visibility: visible; }
    .popup-box { background: var(--white); border-radius: 18px; padding: 36px; width: 100%; max-width: 480px; position: relative; transform: scale(.95) translateY(10px); transition: transform .25s; box-shadow: var(--shadow-lg); }
    .popup-overlay.open .popup-box { transform: scale(1) translateY(0); }
    .popup-close { position: absolute; top: 16px; right: 20px; font-size: 24px; color: var(--muted); cursor: pointer; line-height: 1; }
    .popup-close:hover { color: var(--dark); }
    .popup-title { font-family: var(--ff-display); font-size: 26px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
    .popup-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
    .form-row { margin-bottom: 14px; }
    .form-row label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 5px; letter-spacing: .03em; }
    .form-row input, .form-row select, .form-row textarea { width: 100%; padding: 11px 14px; border-radius: 8px; border: 1.5px solid var(--border); font-family: var(--ff-body); font-size: 14px; color: var(--text); outline: none; transition: border-color .2s; }
    .form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--primary); }
    .form-row textarea { resize: vertical; min-height: 90px; }
    .form-submit { width: 100%; padding: 13px; background: var(--primary); color: var(--white); border-radius: 8px; font-size: 15px; font-weight: 700; font-family: var(--ff-body); cursor: pointer; transition: background .2s; }
    .form-submit:hover { background: var(--accent); }

    /* ===== FOOTER ===== */
    footer { background: #0B2D38; color: rgba(255,255,255,.75); padding: 60px 0 0; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
    .footer-brand-logo { height: 60px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
    .footer-desc { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,.6); margin-bottom: 20px; max-width: 280px; }
    .footer-contact a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 8px; transition: color .2s; }
    .footer-contact a:hover { color: var(--accent-light); }
    .footer-col-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
    .footer-links a { display: block; font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 9px; transition: color .2s; }
    .footer-links a:hover { color: var(--accent-light); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.45); gap: 16px; flex-wrap: wrap; }
    .footer-bottom a { color: rgba(255,255,255,.6); margin-left: 14px; }
    .footer-bottom a:hover { color: var(--accent-light); }
    .payment-icons { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
    .partner-logos { display: flex; align-items: center; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
    .partner-logos img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: .5; transition: opacity .2s; }
    .partner-logos img:hover { opacity: 1; }

    /* ===== STICKY CTA BAR ===== */
    .sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; display: none; }
    .sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1240px; margin: 0 auto; }
	.btn-ft{color:#FFFFFF; font-size:16px;}
	.plantrip{width:60%; background: var(--accent); padding: 12px 20px; color:#FFFFFF; text-align:center;}
	.plantrip-call{width:20%; background:#000033;padding: 12px 20px; text-align:center;} .plantrip-call a{width:100%; color:#FFFFFF; }
	.plantrip-whatsap{width:20%; background: #25D366; color: var(--white);padding: 12px 20px; text-align:center;} .plantrip-whatsap a{width:100%; color:#FFFFFF; }
    @media (max-width: 768px) { .sticky-cta { display: block; } }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      .dest-grid { grid-template-columns: repeat(3, 1fr); }
      .dest-card:nth-child(1), .dest-card:nth-child(5) { grid-column: span 2; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 960px) {
      .packages-grid { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .about-strip { grid-template-columns: 1fr; }
      .about-img-wrap { display: none; }
      .hero-content { grid-template-columns: 1fr; gap: 40px; }
      .hero-right { display: none; }
    }
    @media (max-width: 768px) {
      :root { --header-h: 64px; }
      .topbar { display: none; }
      .main-nav { display: none; }
      .hamburger { display: flex; }
      .packages-grid { grid-template-columns: 1fr; }
      .dest-grid { grid-template-columns: 1fr 1fr; }
      .dest-card:nth-child(1), .dest-card:nth-child(5) { grid-column: span 2; }
      .reviews-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 28px; }
      .newsletter-inner { flex-direction: column; text-align: center; }
      .newsletter-form { flex-direction: column; width: 100%; }
      .newsletter-form input { width: 100%; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .hero-stats { gap: 20px; }
      .section { padding: 55px 0; }
      .team-social { transform: translateY(0); background: linear-gradient(to top, rgba(14,61,77,.7) 0%, transparent 100%); }
    }
    @media (max-width: 600px) {
      .team-grid { grid-template-columns: 1fr; }
      .team-img-wrap { height: 220px; }
    }
    @media (max-width: 480px) {
      .dest-grid { grid-template-columns: 1fr; }
      .dest-card:nth-child(1), .dest-card:nth-child(5) { grid-column: span 1; }
      .why-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .about-stats { grid-template-columns: 1fr 1fr; }
      .hero-stats { flex-wrap: wrap; gap: 16px; }
    }

    /* ANIMATIONS */
    @keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
    .fade-up { animation: fadeUp .6s ease both; }
    .delay-1 { animation-delay: .1s; }
    .delay-2 { animation-delay: .2s; }
    .delay-3 { animation-delay: .3s; }
