
:root {
    --primary: #064e3b;   
    --primary-dark: #022c22;
    --accent: #d97706;    
    --accent-hover: #b45309;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f0fdf4;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(6, 78, 59, 0.15);
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



        * {
            margin: 0; padding: 0; box-sizing: border-box;
            text-decoration: none; scroll-behavior: smooth;
            -webkit-tap-highlight-color: transparent;
        }

     body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  width: 100%;
}


       h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Clash Display', sans-serif;
}

        ul { list-style: none; }
        img { width: 100%; height: auto; display: block; }

        /* VIEW CONTAINER (For switching) */
        .view-section {
            display: none; /* Hidden by default */
            animation: fadeIn 0.5s ease;
        }
        .view-section.active-view {
            display: block; /* Show active */
        }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* =========================================
           2. NAVIGATION BAR
           ========================================= */
        header {
            position: fixed; top: 0; left: 0; width: 100%; padding: 16px 6%;   /* 🔥 REAL FIX */     min-height: 72px;   /* 🔥 premium feel */
            display: flex; justify-content: space-between; align-items: center;
            background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
            z-index: 1000; box-shadow: 0 4px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .logo {
            font-size: 1.8rem; font-weight: 700; color: var(--primary);
            display: flex; align-items: center; gap: 10px; cursor: pointer;
            z-index: 1002;
        }

        .nav-links { display: flex; gap: 35px; }
        .nav-links li a {
            color: var(--text-dark); font-weight: 500; font-size: 0.95rem;
            transition: var(--transition); position: relative; cursor: pointer;
        }
        .nav-links li a:hover, .nav-links li a.active { color: var(--primary); }
        .nav-links li a::after {
            content: ''; position: absolute; width: 0%; height: 2px;
            background: var(--accent); bottom: -5px; left: 50%;
            transform: translateX(-50%); transition: var(--transition);
        }
        .nav-links li a:hover::after { width: 100%; }

        .btn-book {
            padding: 12px 30px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white); border-radius: 50px; font-weight: 600;
            transition: var(--transition); box-shadow: 0 10px 20px rgba(6, 78, 59, 0.2);
            white-space: nowrap;
        }
        .btn-book:hover {
            transform: translateY(-3px); background: linear-gradient(135deg, var(--accent), var(--accent-hover));
        }

        .menu-toggle { display: none; font-size: 1.8rem; color: var(--primary); cursor: pointer; }

        /* =========================================
           3. HOME PAGE STYLES
           ========================================= */
        #home-hero {
            min-height: 100vh; display: flex; align-items: center; justify-content: center;
            padding: 140px 7% 80px; background: radial-gradient(circle at top right, #ecfccb 0%, #f0fdf4 40%, #fff 100%);
            position: relative; overflow: hidden;
        }
        .hero-content { flex: 1; z-index: 2; }
        .hero-tag {
            color: var(--accent); font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; font-size: 0.9rem; margin-bottom: 15px;
            display: inline-block; background: #fffbeb; padding: 5px 15px; border-radius: 20px;
        }
        .hero-content h1 { font-size: 4.2rem; line-height: 1.15; color: var(--primary-dark); margin-bottom: 25px; }
        .hero-content p { color: var(--text-light); font-size: 1.15rem; line-height: 1.8; margin-bottom: 40px; max-width: 520px; }
        
        .btn-cta {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 16px 40px; background: var(--accent); color: var(--white);
            font-weight: 600; border-radius: 50px; transition: var(--transition);
            box-shadow: 0 10px 25px rgba(217, 119, 6, 0.25);
        }
        .btn-cta:hover { background: var(--primary); transform: translateY(-5px); }
        
        .hero-image { flex: 1; text-align: right; z-index: 2; }
        .hero-image img {
            max-width: 90%; margin-left: auto; border-radius: 30px 0 30px 0;
            box-shadow: 20px 20px 0px rgba(6, 78, 59, 0.1); animation: float 5s ease-in-out infinite;
        }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

        /* Search Bar */
       /* --- Modern Search Bar Styles --- */
.search-container {
    width: 85%;
    max-width: 900px;
    margin: -75px auto 20px; /* Floating overlap effect */
    background: rgba(255, 255, 255, 0.95); /* Semi-transparent white */
    backdrop-filter: blur(12px); /* Frosted glass effect */
    border-radius: 100px; /* Makes it a capsule/pill shape */
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); /* Deep, soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 100;
}

.search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Individual Input Groups */
.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 25px;
    position: relative;
    transition: all 0.3s ease;
    border-right: 1px solid #e0e0e0; /* Vertical divider */
}

/* Remove border from the last group */
.input-group:nth-child(3) {
    border-right: none;
}

/* Hover effect for groups */
.input-group:hover {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 30px;
}

.input-group i {
    font-size: 1.4rem;
    color: var(--primary); /* Uses your theme color */
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.input-group:hover i {
    transform: scale(1.2); /* Icon pops on hover */
    color: var(--accent);
}

.input-field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-field label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 2px;
    cursor: pointer;
}

.input-field input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.input-field input::placeholder {
    color: #ccc;
    font-weight: 400;
}

/* The Search Button */
.search-btn {
    padding: 5px;
}

.search-btn button {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent), #ea580c); /* Gradient Orange */
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn button:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4) !important;
}

 

   .footer-contact a {
       color: #ffffff !important;
       text-decoration: none !important;
   }

   .footer-contact a:hover {
       color: #ffcc00 !important;
   }

/* ===== EXTRA UI STYLES (moved from inline style) ===== */

.testi-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  color: #2d3748;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .dest-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-links a[href^="mailto"] {
    font-size: 14.5px;
    word-break: break-word;
  }
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 10px;
  margin: 10px 0;
  text-align: center;
}

.features-grid span {
  font-size: 0.85rem;
  color: #555;
  background: #f5f5f5;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.features-grid span:hover {
  background: #e8efe9;
}

.package-desc {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .features-grid span {
    font-size: 0.8rem;
    padding: 5px 6px;
  }
}

.price-box {
  background: #f2f6f3;
  padding: 10px;
  border-radius: 10px;
  margin: 10px 0;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a5a2e;
  display: block;
}

.price-label {
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 768px) {
  .price-amount {
    font-size: 1.3rem;
  }

  .price-label {
    font-size: 0.8rem;
  }
}

/* --- Mobile Responsive Design --- */
@media (max-width: 768px) {
    .search-container {
        border-radius: 30px; /* Boxy shape on mobile */
        padding: 25px;
        width: 90%;
        margin-top: -40px;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .input-group {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px 10px;
    }
    
    .input-group:nth-child(3) {
        border-bottom: none;
    }

    .search-btn {
        margin-top: 15px;
    }

    .search-btn button {
        width: 100%; /* Full width button on mobile */
        height: 55px;
        border-radius: 15px;
        font-size: 1.2rem;
    }
    
    .search-btn button:hover {
        transform: scale(1.02); /* Don't rotate on mobile, just scale */
    }
}
        /* Sections */
        section { padding: 50px 7%; }
        .section-header { text-align: center; max-width: 650px; margin: 0 auto 60px; }
        .section-header h2 { font-size: 3rem; color: var(--primary-dark); margin-bottom: 15px; position: relative; display: inline-block; }
        .section-header h2::after {
            content: ''; position: absolute; width: 60px; height: 3px;
            background: var(--accent); bottom: -10px; left: 50%; transform: translateX(-50%);
        }
        .section-header p { color: var(--text-light); font-size: 1.05rem; margin-top: 25px; }

        /* Cards */
        .swiper { padding-bottom: 50px !important; padding-top: 20px !important; }
        .card {
            background: var(--white); border-radius: var(--radius); overflow: hidden;
            box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.03); 
            transition: var(--transition); position: relative; height: 100%;
        }
        .card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
        .card-img { height: 260px; overflow: hidden; position: relative; }
        .card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
        .card:hover .card-img img { transform: scale(1.1); }
        .card-body { padding: 25px; }
        .card-body h3 { font-size: 1.4rem; color: var(--primary-dark); margin-bottom: 8px; }
        .card-body p { font-size: 0.9rem; color: #888; margin-bottom: 20px; display: flex; align-items: center; gap: 5px; }
        .card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 20px; border-top: 1px dashed #e2e8f0; }
     

        .btn-sm { padding: 8px 20px; background: transparent; color: var(--primary); border: 2px solid var(--primary); border-radius: 50px; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
        .btn-sm:hover { background: var(--primary); color: white; }
        .agency { display: flex; align-items: center; gap: 10px; padding: 12px 25px; background: #f8fafc; border-top: 1px solid #f1f5f9; }
        .agency img { width: 25px; height: 25px; object-fit: contain; }
        .agency span { font-size: 0.85rem; font-weight: 600; color: #64748b; }

        /* Destinations */
    /* Desktop Gap Fix */
#destination {
    padding-top: 20px !important;
    margin-top: 0px !important;
}

#destination .section-header {
    margin-bottom: 10px !important;
}

/* MOBILE GAP FIX */
     .dest-item { position: relative; height: 400px; border-radius: 30px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow); }
        .dest-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
        .dest-item:hover img { transform: scale(1.15); }
        .dest-overlay {
            position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px;
            background: linear-gradient(to top, rgba(2, 44, 34, 0.9), transparent);
            color: white; z-index: 2; transform: translateY(10px); transition: var(--transition);
        }
        .dest-item:hover .dest-overlay { transform: translateY(0); }
        .rating {
            position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.2);
            backdrop-filter: blur(5px); color: white; padding: 6px 14px; border-radius: 50px;
            font-size: 0.9rem; font-weight: 600; z-index: 2; border: 1px solid rgba(255,255,255,0.4);
        }
        .dest-overlay h3 { font-size: 1.8rem; margin-bottom: 5px; }
        
 

        /* Testimonials */
        #testimonials { background: #fff; position: relative; }
        .testi-container { display: flex; flex-wrap: wrap; align-items: center; gap: 60px; position: relative; z-index: 2; }
        .testi-left { flex: 1 1 400px; }
        .testi-left img { border-radius: 30px; box-shadow: var(--shadow); }
        .testi-right { flex: 1 1 400px; min-width: 0; }
        .testi-card {
            background: #ffffff; padding: 50px; border-radius: 0 30px 30px 30px;
            border: 2px solid #e2e8f0; position: relative; box-shadow: var(--shadow); margin: 20px 5px;
        }
        .testi-card i {
            position: absolute; top: -25px; left: 30px; width: 50px; height: 50px;
            background: var(--accent); color: white; display: flex; align-items: center; justify-content: center;
            border-radius: 50%; font-size: 1.2rem; box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
        }
        
        .user-info { display: flex; align-items: center; gap: 15px; }
        .user-info img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
        .user-info h4 { font-size: 1.1rem; color: var(--text-dark); margin: 0; }
        .user-info small { color: var(--text-light); font-size: 0.85rem; }

        /* Newsletter */
        #newsletter {
            margin: 0px 7% 100px; padding: 80px 40px; border-radius: 30px;
            background: linear-gradient(to right, rgba(6, 78, 59, 0.9), rgba(6, 78, 59, 0.7)), url('images/newsletter.webp');
            background-size: cover; background-position: center; text-align: center; color: white;
        }
        #newsletter h2 { color: white; margin-bottom: 15px; font-size: 2.5rem; }
        .news-form {
            max-width: 600px; margin: 30px auto 0; background: rgba(255,255,255,0.1); padding: 8px;
            border-radius: 60px; display: flex; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);
        }
        .news-form input { flex: 1; border: none; background: transparent; padding: 15px 30px; outline: none; font-size: 1rem; color: white; }
        .news-form input::placeholder { color: #e2e8f0; }
        .news-form button { padding: 15px 35px; border-radius: 50px; background: var(--accent); color: white; border: none; font-size: 1.1rem; cursor: pointer; transition: var(--transition); }
 /* =========================================
   POSTCARD TESTIMONIAL – FINAL LOCK
   ========================================= */

/* SECTION BASE */
.postcard-testimonials {
  margin: 0 7% 120px;
  padding: 120px 40px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      to right,
      rgba(6, 78, 59, 0.92),
      rgba(6, 78, 59, 0.78)
    ),
    url("images/feedback.webp");

  background-size: cover;
  background-position: center;
  color: #ffffff;
}

/* ===============================
   ❤️ HEARTS LAYER
   =============================== */
.postcard-testimonials::before {
  content: "❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️";
  position: absolute;
  inset: -25%;
  font-size: 1.4rem;
  letter-spacing: 90px;
  line-height: 160px;
  opacity: 0.35;
  animation: floatHearts 22s linear infinite;
  pointer-events: none;
  z-index: 1;
}

/* ===============================
   ⭐ STARS LAYER
   =============================== */
.postcard-testimonials::after {
  content: "⭐ ⭐ ⭐ ⭐ ⭐ ⭐ ⭐ ⭐ ⭐ ⭐";
  position: absolute;
  inset: -35%;
  font-size: 1.3rem;
  letter-spacing: 110px;
  line-height: 190px;
  opacity: 0.55;
  animation: floatStars 28s linear infinite;
  pointer-events: none;
  z-index: 1;
}

/* ANIMATIONS */
@keyframes floatHearts {
  from { transform: translateY(0); }
  to   { transform: translateY(-200px); }
}

@keyframes floatStars {
  from { transform: translateY(-200px); }
  to   { transform: translateY(0); }
}

/* KEEP CONTENT ABOVE ANIMATION */
.postcard-testimonials .section-header,
.postcard-testimonials .swiper,
.postcard-testimonials .postcard {
  position: relative;
  z-index: 2;
}

/* ===============================
   SECTION HEADER
   =============================== */
.postcard-testimonials .section-header h2 {
  color: #ffffff;
}

.postcard-testimonials .section-header p {
  color: #d1fae5;
}

/* ===============================
   SAME HEIGHT POSTCARDS
   =============================== */
.mySwipertest .swiper-slide {
  display: flex;
  align-items: stretch;
}

/* POSTCARD */
.postcard {
  background: rgba(255,255,255,0.96);
  color: #1f2933;
  border-radius: 22px;
  padding: 42px 36px;

  width: 100%;
  max-width: 420px;
  min-height: 260px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  margin: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* STAMP */
.postcard .stamp {
  position: absolute;
  top: -18px;
  right: 22px;
  font-size: 2rem;
  padding: 10px;
  border-radius: 50%;
  background: #ffffff;
  color: #065f46;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

/* TEXT */
.postcard h3 {
  color: #065f46;
}

.postcard-footer {
  color: #047857;
  font-weight: 700;
  margin-top: 20px;
}

/* ===============================
   CTA POSTCARD
   =============================== */
.cta-postcard {
  background: linear-gradient(135deg, #064e3b, #022c22);
  color: #ffffff;
  text-align: center;
}

/* CTA BUTTON */
.postcard-cta-btn {
  margin-top: 20px;
  padding: 14px 36px;
  background: #d97706;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.postcard-cta-btn:hover {
  background: #b45309;
  transform: translateY(-3px);
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */
@media (max-width: 768px) {

  .postcard-testimonials {
    padding: 90px 20px;
    margin: 0 5% 90px;
  }

  .postcard {
    min-height: 240px;
    padding: 32px 24px;
  }

  .postcard .stamp {
    font-size: 1.6rem;
    padding: 8px;
  }

  .postcard-testimonials::before {
    font-size: 1.1rem;
    letter-spacing: 60px;
    line-height: 120px;
  }

  .postcard-testimonials::after {
    font-size: 1rem;
    letter-spacing: 80px;
    line-height: 140px;
  }
}

@media (max-width: 768px) {

  .postcard-testimonials {
    background-size: 100%;        /* thoda zoom */
    background-position: top center;
  }

}

        
        /* Footer */
        footer { background: #020617; color: #94a3b8; padding: 80px 7% 30px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 60px; margin-bottom: 60px; }
        .footer-col h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 30px; display: flex; align-items: center; gap: 10px; }
        .social-links a {
            display: inline-flex; justify-content: center; align-items: center; width: 45px; height: 45px;
            background: rgba(255,255,255,0.05); color: white; border-radius: 50%; margin-right: 12px;
            transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
        }
        .social-links a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
        .footer-links li { margin-bottom: 15px; }
        .footer-links a { color: #94a3b8; transition: var(--transition); display: inline-block; cursor: pointer; }
        .footer-links a:hover { color: var(--accent); transform: translateX(5px); }
        .footer-contact li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; }
        .footer-contact i { color: var(--accent); font-size: 1.2rem; margin-top: 3px; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #1e293b; color: #64748b; font-size: 0.9rem; }

        /* =========================================
           4. TERMS PAGE STYLES
           ========================================= */
        .page-header-terms {
            height: 350px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex; align-items: center; justify-content: center;
            text-align: center; color: white; padding-top: 60px;
            padding-left: 5%; padding-right: 5%;
        }
        .page-header-terms h1 { font-size: 3rem; margin-bottom: 10px; }
        .page-header-terms p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

        .terms-container {
            max-width: 900px; margin: -60px auto 120px;
            background: white; padding: 60px; border-radius: 20px;
            box-shadow: var(--shadow); position: relative; z-index: 10;
        }

        .terms-section { margin-bottom: 40px; border-bottom: 1px solid #e2e8f0; padding-bottom: 30px; }
        .terms-section:last-child { border-bottom: none; border: none; padding-bottom: 0; }

        .terms-section h2 { color: var(--primary); font-size: 1.8rem; margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
        .terms-section h2 i { color: var(--accent); font-size: 1.4rem; background: rgba(217, 119, 6, 0.1); padding: 10px; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; }

        .terms-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 15px; font-size: 0.95rem; }
        
        .terms-list { list-style: none; margin-top: 15px; }
        .terms-list li {
            position: relative; padding-left: 25px; margin-bottom: 12px;
            color: var(--text-dark); line-height: 1.6; font-size: 0.95rem;
        }
        .terms-list li::before {
            content: '\f00c'; font-family: "Font Awesome 6 Free"; font-weight: 900;
            position: absolute; left: 0; top: 3px; color: var(--accent); font-size: 0.8rem;
        }

        /* Action Bar (Terms Sticky) */
        .action-bar {
            position: fixed; bottom: 0; left: 0; width: 100%; height: 64px;
            background: white; padding: 20px 7%; box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
            display: flex; justify-content: space-between; align-items: center;
            z-index: 2000; transform: translateY(100%); transition: transform 0.4s ease;
            padding-bottom: calc(20px + env(safe-area-inset-bottom));
        }
        .action-bar.visible { transform: translateY(0); }

        .scroll-hint { font-size: 0.9rem; color: var(--primary); display: flex; align-items: center; gap: 10px; cursor: pointer; font-weight: 600; }
        .scroll-hint i { animation: bounce 2s infinite; }

        .accept-btn {
            padding: 12px 40px; background: #cbd5e1; color: white;
            border: none; border-radius: 50px; font-size: 1rem; font-weight: 600;
            cursor: not-allowed; transition: 0.3s;
        }
        .accept-btn.active { cursor: pointer; background: var(--accent); box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4); }
        .accept-btn.active:hover { background: var(--accent-hover); transform: translateY(-2px); }

        @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
            background-color: #25d366; color: #FFF; border-radius: 50px;
            text-align: center; font-size: 30px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 10000; display: flex; align-items: center; justify-content: center;
            transition: all 0.3s; animation: pulse 2s infinite;
        }
        .whatsapp-float:hover { transform: scale(1.1); }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* =========================================
           5. RESPONSIVE (IPHONE & MOBILE OPTIMIZED)
           ========================================= */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 1s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }

      /* Tablet */
@media (max-width: 991px) {

    .hero-content h1 { font-size: 3.2rem; }
    section { padding: 60px 5%; }

    .testi-container { flex-direction: column; }
    .testi-left, .testi-right { width: 100%; }

    .testi-card {
        border-radius: 20px;
        text-align: center;
        padding: 40px 30px;
    }

    .testi-card i {
        left: 50%;
        transform: translateX(-50%);
    }

    .user-info { justify-content: center; }

    .terms-container {
        padding: 40px 30px;
        margin-top: -40px;
        width: 90%;
    }

    /* ==== MOBILE NAV FIX INSIDE SAME MEDIA QUERY ==== */

    .menu-toggle {
        display: block;
        z-index: 1003;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

}

           

            #home-hero { flex-direction: column-reverse; padding-top: 100px; padding-bottom: 50px; text-align: center; }
            .hero-image { margin-bottom: 30px; width: 100%; }
            .hero-content { width: 100%; }
            .hero-content h1 { font-size: 2.8rem; }
            .hero-content p { margin: 0 auto 30px; }
            
            .search-container { width: 92%; padding: 25px 20px; margin-top: -30px; }
            .search-form { flex-direction: column; gap: 0; }
            .input-group { width: 100%; border-right: none; border-bottom: 1px solid #e2e8f0; padding: 15px 0; }
            .search-btn { width: 100%; margin-top: 15px; }
            .search-btn button { width: 100%; border-radius: 15px; height: 50px; }
            
            .section-header h2 { font-size: 2rem; }
            
            #newsletter { padding: 60px 20px; margin: 0 5% 80px; }
            .news-form { flex-direction: column; background: transparent; padding: 0; border: none; backdrop-filter: none; }
            .news-form input { background: rgba(255,255,255,0.2); margin-bottom: 15px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.3); }
            .news-form button { width: 100%; }
            
            /* Terms Mobile */
            .page-header-terms { height: 300px; padding-top: 80px; }
            .page-header-terms h1 { font-size: 2.2rem; }
            .terms-container { padding: 30px 20px; margin-top: -30px; width: 94%; margin-bottom: 140px; }
            .terms-section h2 { font-size: 1.4rem; }
            .action-bar { flex-direction: column; gap: 15px; text-align: center; padding: 20px 5%; padding-bottom: 110px; }
            .accept-btn { width: 100%; padding: 15px; }
        

        /* Small Phones */
        @media (max-width: 480px) {
            .hero-content h1 { font-size: 2.2rem; }
            .testi-card { padding: 40px 20px; } 
            .dest-item { height: 320px; }
            .card-img { height: 200px; }
        }
/* =========================================
   CUSTOM ALERT MODAL
   ========================================= */
.custom-alert-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px);
    z-index: 10001; /* Highest priority */
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: all 0.3s ease;
}

.custom-alert-overlay.active {
    opacity: 1; pointer-events: all;
}

.custom-alert-box {
    background: white; width: 90%; max-width: 400px;
    padding: 30px; border-radius: 25px; text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: scale(0.8); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-alert-overlay.active .custom-alert-box {
    transform: scale(1);
}

.alert-icon {
    font-size: 3.5rem; color: var(--primary);
    margin-bottom: 15px; display: inline-block;
    animation: popIn 0.5s ease;
}

.custom-alert-box h3 {
    font-size: 1.5rem; color: var(--text-dark); margin-bottom: 10px;
}

.custom-alert-box p {
    color: var(--text-light); font-size: 1rem; margin-bottom: 25px;
}

.alert-btn {
    padding: 12px 35px; background: var(--accent); color: white;
    border: none; border-radius: 50px; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: 0.3s; box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
}

.alert-btn:hover {
    background: var(--accent-hover); transform: translateY(-2px);
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
/* --- Modern Card Design --- */
.card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.15); /* Greenish shadow match theme */
}

/* Image Area */
.card-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img img {
    transform: scale(1.1);
}

/* Badge overlay */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Card Content */
.card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #64748b;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-meta i {
    color: var(--accent);
}

/* Footer Area */
.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.price {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 800;
     font-family: 'Poppins', sans-serif;
}

/* Button */
.btn-outline {
    padding: 10px 20px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(6, 78, 59, 0.2);
}

/* Agency verification strip at bottom */
.verified-strip {
    background: #f8fafc;
    padding: 8px 25px;
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #f1f5f9;
}
.verified-strip i { color: #3b82f6; } /* Blue checkmark */

/* ==== Cinematic Hero ==== */
.hero-cinematic {
    background: var(--primary-dark);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
   font-family: 'Poppins', sans-serif;
}
.hero-cinematic h1 { font-family: 'Clash Display', sans-serif; }

.hero-bg {
    position: absolute; inset: 0; opacity: 0.4;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2074&auto=format&fit=crop') center/cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--primary-dark) 90%);
}
.plane-track { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.plane-svg {
    width: 280px;
    position: absolute;
    animation: flightPath 10s linear infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    fill: white;
    transform: rotate(90deg);
    transform-origin: center;
}

@keyframes flightPath {
  0% {
    left: -30%;
    top: 30%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 130%;
    top: 30%;
    opacity: 0;
  }
}

.hero-inner { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }
.hero-badge {
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 26px;
    border-radius: 50px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}


.hero-title span {
    background: linear-gradient(to right, #93c5fd, #fff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { color: #cbd5e1; font-size: 1.15rem; max-width: 600px; margin: 0 auto 40px; }

@media (max-width: 768px) {

  .hero-cinematic {
      min-height: 95vh;
      padding-top: 40px;
  }

  .hero-inner {
      padding-top: 40px;
  }

  .hero-badge {
      margin-top: 40px;
      display: inline-block;
      font-size: 0.7rem;
      padding: 6px 14px;
  }

  .suggestions {
      position: absolute;
      background: white;
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      max-height: 200px;
      overflow-y: auto;
      z-index: 9999;
      display: none;
  }

  .suggestions div {
      padding: 10px 15px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
      font-size: 14px;
  }

  .suggestions div:hover {
      background: #f2f2f2;
  }

  /* MOBILE NAV FIX INSIDE SAME MEDIA QUERY */

  .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: white;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-shadow: -10px 0 30px rgba(0,0,0,0.1);
      transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1001;
  }

  .nav-links.active {
      right: 0;
  }

  header .btn-book {
      display: none;
  }

}
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 230px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    display: none;
    z-index: 999;
    padding: 10px 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #0d6efd;
    color: white;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile Friendly */

@media (max-width: 768px) {
    .dropdown-menu {
        position: relative;
        box-shadow: none;
        border-radius: 0;
    }
}
/* ===== MOBILE DROPDOWN FIX ===== */

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 220px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* MOBILE VIEW DROPDOWN */

@media (max-width: 768px) {

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: #f7f7f7;
        border-radius: 0;
        padding: 0;
    }

    .dropdown-menu li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu li a {
        display: block;
        padding: 10px;
        font-size: 16px;
    }

    /* IMPORTANT â€“ toggle system */

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

}
/* FOOTER DROPDOWN */

.footer-dropdown {
    position: relative;
}

.footer-dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 10px;
    margin-top: 5px;
}

.footer-dropdown-menu li {
    margin: 6px 0;
}

.footer-dropdown-menu li a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

.footer-dropdown-menu li a:hover {
    text-decoration: underline;
}

/* Desktop hover */

.footer-dropdown:hover .footer-dropdown-menu {
    display: block;
}

/* Mobile click support */

@media (max-width: 768px) {

    .footer-dropdown-menu {
        display: none;
    }

    .footer-dropdown.active .footer-dropdown-menu {
        display: block;
    }
}
/* ===== MOBILE HEADER SPACING FIX ===== */

@media (max-width: 768px) {

    .terms-container {
        margin-top: 35px !important;
        padding-top: 20px !important;
    }

    .terms-section {
        margin-top: 15px !important;
    }

    .terms-section h2 {
        margin-top: 10px !important;
        padding-top: 10px !important;
    }

}
/* ===== MOBILE TERMS HEADING SIZE FIX ===== */

@media (max-width: 768px) {

    .terms-section h2 {
        font-size: 17px !important;
        line-height: 1.4 !important;
        padding: 10px 12px !important;
    }

    .terms-container h1,
    .terms-container .main-title {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }

}
/* ===== Booking Tabs Final Professional Styling ===== */

.search-container .booking-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: white;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 700;
 font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  color: #064e3b;
}

.tab-btn i {
  font-size: 15px;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--accent), #ea580c);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.tab-btn:hover {
  transform: translateY(-2px);
}

/* Flights & Hotels forms same layout as Tours */

#flightForm,
#hotelForm {
  animation: fadeIn 0.3s ease;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Fix */
@media (max-width: 768px) {
  .search-container .booking-tabs {
    flex-wrap: wrap;
    padding: 8px;
  }

  .tab-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  #flightForm,
  #hotelForm {
    flex-direction: column;
    gap: 12px;
  }
}
.suggestions-box{
  position:absolute;
  background:white;
  border-radius:10px;
  max-height:220px;
  overflow-y:auto;
  width:100%;
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
  z-index:999;
}

.suggestions-box div{
  padding:10px;
  cursor:pointer;
  font-size:14px;
  border-bottom:1px solid #eee;
 font-family: 'Poppins', sans-serif;
}

.suggestions-box div:hover{
  background:#f1f5f9;
}
.input-field {
  position: relative;
}



.search-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.search-action-btn i {
  font-size: 1em;
}


@media (max-width: 768px) {
  input[type="date"] {
    font-size: 16px;
  }
}
  .booking-tabs button {
    font-size: 14px;
    padding: 8px 10px;
  }

.search-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;

  font-family: inherit;        /* ðŸ”¥ MAIN FIX */
  font-size: inherit;          /* ðŸ”¥ MAIN FIX */
  font-weight: 600;            /* same as site buttons */
  letter-spacing: 0.2px;

  white-space: nowrap;
}
.search-action-btn i {
  font-size: 1em;              /* text ke size ke equal */
}
h3 {
  display: flex;
  align-items: center;   /* ðŸ”¥ logo + text same line */
  gap: 8px;              /* ðŸ”¥ controlled spacing */
  margin-bottom: 8px;    /* neeche ka gap control */
}

.site-logo {
 height: 80px;   
  width: auto;
  display: block;
}

/* Mobile â€“ package support email fix */
@media (max-width: 768px) {
  .footer-links a[href^="mailto"],
  .footer-contact a[href^="mailto"] {
    font-size: 13px;          /* thoda chhota */
    word-break: break-word;  /* cut hone se bachega */
    line-height: 1.4;
  }
}
@media (max-width:768px){
    header{
        padding: 12px 16px;
        min-height: 60px;
    }

    .site-logo{
        height: 80px;
    }
}
/* ===== NAV LINK COLOR FIX (DESKTOP + MOBILE) ===== */

.nav-links a,
.nav-links a:link,
.nav-links a:visited,
.nav-links a:hover,
.nav-links a:active,
.nav-links a:focus {
  color: #1e293b !important;     /* clean dark */
  text-decoration: none !important;
  outline: none !important;
}
/* dropdown hover – subtle */
.nav-links .dropdown-menu li a:hover,
.nav-links .dropdown-menu li a:focus {
  background: #f1f5f9 !important;
  color: #064e3b !important;     /* brand green only */
}

/* ================================
 TRUST STATS – ULTRA PREMIUM
================================ */

.trust-stats {
  background: #020617;
  padding: 70px 20px;
  color: #fff;
}

.trust-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* BADGES */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.trust-badges span {
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* HEAD */
.trust-head .since {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 40px;
  font-size: 13px;
  margin-bottom: 12px;
}

.trust-head h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-head p {
  color: #cbd5e1;
  font-size: 15px;
  margin-bottom: 60px; 
}


/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* BOX – SMALL & CLEAN */
.trust-box {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 15px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.trust-box h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 6px;
}

.trust-box span {
  font-size: 14px;
  color: #cbd5e1;
}

.trust-box:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
}

/* ================================
 RESPONSIVE
================================ */

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr); /* 🔥 2/2 layout */
    gap: 18px;
  }

  .trust-box {
    padding: 22px 12px;   /* thoda compact */
  }

  .trust-box h3 {
    font-size: 26px;      /* number balance */
  }

  .trust-box span {
    font-size: 13px;
  }
}
/* GOVT BADGE – GLASS + VERIFIED */
.govt-badge {
  position: relative;
  background: linear-gradient(
  
    135deg,
    rgba(34,197,94,0.35),
    rgba(22,163,74,0.35)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #ffffff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 
    0 10px 30px rgba(34,197,94,0.35),
    inset 0 0 20px rgba(255,255,255,0.12);
}

/* VERIFIED ICON – SUBTLE PULSE */
.verify-icon {
  animation: pulseTick 2.4s infinite;
}

@keyframes pulseTick {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}


/* ================================
 DESKTOP – COMPACT TRUST BOXES
================================ */

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 240px));
    justify-content: center;
    gap: 26px;
  }

  .trust-box {
    padding: 24px 18px;
  }

  .trust-box h3 {
    font-size: 28px;
  }

  .trust-box span {
    font-size: 13.5px;
  }
}
/* TRUST SUBTEXT – MOBILE SINGLE LINE FIX */
@media (max-width: 480px) {
  .trust-subtext {
    display: block;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    margin: 10px auto 30px;
    max-width: 100%;
  }
}
.micro-cta {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 10px;
  color: #666;
}

.micro-cta a {
  color: var(--accent);
  font-weight: 600;
}
/* ================================
   ABOUT US – PREMIUM EXECUTION
================================ */

.about-hero {
  padding: 70px 20px 40px;
  text-align: center;
}
.about-hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.about-hero p {
  max-width: 760px;
  margin: auto;
  color: #555;
}

/* WHY GRID */
.about-why {
  padding: 60px 20px;
  text-align: center;
}
.about-why h2 {
  font-size: 32px;
  margin-bottom: 30px;
}
.why-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  transition: .3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,.08);
}
.why-card i {
  font-size: 36px;
  color: #2563eb;
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14.5px;
  color: #555;
}

/* INDIAN TRAVELLER BLOCK */
.about-indian {
  padding: 60px 20px;
  background: #0b1220;
  color: #fff;
  text-align: center;
}
.about-indian h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
.about-indian p {
  max-width: 820px;
  margin: auto;
  color: #cbd5f5;
}

/* WHO WE ARE */
.about-who {
  padding: 60px 20px 20px;
  text-align: center;
}
.about-who h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
.about-who p {
  max-width: 820px;
  margin: auto;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero h1 { font-size: 28px; }
  .about-why h2,
  .about-indian h2,
  .about-who h2 { font-size: 24px; }
}
/* ================================
   ABOUT PAGE HEADER – PREMIUM ONLY
================================ */

.page-header-about {
  background: linear-gradient(135deg, #064e3b, #022c22);
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-header-about h1 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.page-header-about p {
  font-size: 14px;
  color: #c7d2cc;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
  .page-header-about h1 {
    font-size: 26px;
  }
}
/* Fix: Content hidden under fixed header */
#view-about {
  padding-top: 90px;
}

/* ================================
   WHY DREAM DESTINATIONS – ORANGE THEME
================================ */

/* Icons color */
.why-card i {
  color: #f97316; /* 🔥 orange */
}

/* Headings color (optional but recommended) */
.why-card h3 {
  color: #0f172a; /* dark text, clean */
}

/* Icon hover (desktop) */
.why-card:hover i {
  color: #ea580c; /* darker orange on hover */
}
.footer-secure {
  margin-top: 14px;
}

.footer-secure span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #ccc;
  font-weight: 500;
}

.footer-secure i {
  color: #f7941d;
}

.footer-payments {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-payments span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #ccc;
  background: rgba(255,255,255,0.06);
  padding: 5px 12px;
  border-radius: 18px;
}

.footer-payments i {
  color: #f7941d;
  font-size: 13px;
}
.form-privacy {
  text-align: center;   /* 👈 center alignment */
  font-size: 12px;
  color: #aaa;
  margin-top: 8px;
}

.form-privacy a {
  color: #f7941d;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-contact a[href^="mailto:"] {
    font-size: 12.7px;
    word-break: break-all;
  }
}
@media (max-width: 768px) {
  .form-privacy {
    font-size: 10px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .footer-contact a[href^="tel:"] {
    font-size: 13px;
  }
}
.footer-disclaimer {
  font-size: 12px;
  opacity: 0.8;
}
@media (max-width: 768px) {
.footer-disclaimer {
  font-size: 8px;
  opacity: 0.8;
/* ================================
 POSTCARD TESTIMONIALS STYLE
================================ */

.postcard-testimonials {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fff7d6, #fff);
}

.postcard-testimonials .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.postcard-testimonials h2 {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
}

.postcard-testimonials p {
  color: #555;
}

/* POSTCARD CARD */
.postcard {
  position: relative;
  background: #fffbe8;
  border-radius: 18px;
  padding: 35px;
  max-width: 420px;
  margin: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 2px dashed #f2c94c;
}

.postcard h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

.postcard p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* STAMP */
.postcard .stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 28px;
  transform: rotate(12deg);
}

/* FOOTER */
.postcard-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #777;
}

.postcard-footer strong {
  color: #222;
}

/* SWIPER */
.mySwipertest {
  padding-bottom: 50px;
}

.mySwipertest .swiper-pagination-bullet {
  background: #f2c94c;
}

/* MOBILE */
@media (max-width: 768px) {
  .postcard {
    padding: 28px;
  }

  .postcard-testimonials h2 {
    font-size: 28px;
  }
}
/* ================================
   POSTCARD STYLE – PREMIUM PAPER
================================ */

.postcard {
  background: #fffaf2;
  background-image:
    linear-gradient(0deg, rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 6px 6px;
  border-radius: 14px;
  padding: 26px 24px 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  font-family: "Georgia", serif;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.postcard:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Stamp icon */
.postcard .stamp {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 28px;
  opacity: 0.85;
  transform: rotate(8deg);
}

/* Heading */
.postcard h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2b2b2b;
}

/* Text */
.postcard p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Footer */
.postcard-footer {
  margin-top: 16px;
  border-top: 1px dashed rgba(0,0,0,0.15);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.postcard-footer strong {
  font-size: 14px;
  color: #111;
}

.postcard-footer span {
  font-size: 13px;
  color: #777;
}
/* ================================
   CTA POSTCARD
================================ */

.cta-postcard {
  text-align: center;
  background: linear-gradient(135deg, #fff4e6, #ffffff);
}

.cta-postcard h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.cta-postcard p {
  font-size: 15px;
  margin-bottom: 20px;
}

/* CTA Button */
.postcard-cta-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #ff7a18;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255,122,24,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.postcard-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,122,24,0.45);
}
/* ================================
   FEEDBACK / TESTIMONIALS BACKGROUND
================================ */

.postcard-testimonials {
  position: relative;
  background-image: url("images/feedback.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;

  min-height: 750px;
  padding: 140px 7% !important;
}

/* dark overlay for readability */
.postcard-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* content upar rahe */
.postcard-testimonials > * {
  position: relative;
  z-index: 1;
}

/* text white */
.postcard-testimonials h2,
.postcard-testimonials p {
  color: #ffffff;
}
/* Force reCAPTCHA smaller */
#newsletter .captcha-wrap {
  display: flex;
  justify-content: center;
  margin: 16px 0 20px;
}


