/* =====================
   GLOBAL RESET
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8f9fb;
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* =====================
   HEADER
===================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* IMPORTANT */
  gap: 12px;
}


.logo img {
    height: 70px;
    width:250px;
}

/* TIMER */
.deal-timer {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #ff5722;
}

.deal-timer span {
    background: #fff3ed;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
}

/* CONTACT */
.contact-info a {
    display: block;
    font-size: 14px;
    color: #333;
}

.contact-info a:hover {
    color: #ff5722;
}


/* =====================
   MOBILE (up to 768px)
===================== */
@media (max-width: 768px) {

  .main-header {
      position: relative;   /* override sticky ONLY on mobile */
      height: auto;
      overflow: visible;
  }

  .nav-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      width: 100%;
  }

  .logo img {
      height: 60px;
      width: auto;
  }

  .deal-timer {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 6px;
      font-size: 13px;
      width: 100%;
  }

  .contact-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  .contact-info a {
      font-size: 13px;
  }
}

/* =====================
   HERO / LANDING SECTION
   (NEW – SAFE TO ADD)
===================== */

.hero-section {
    position: relative;
    min-height: 85vh;
    background: url("../../images/hero-himachal.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 70px 16px;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(6, 18, 45, 0.92) 0%,
        rgba(6, 18, 45, 0.65) 55%,
        rgba(6, 18, 45, 0.25) 100%
    );
}

.hero-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
}

/* LEFT CONTENT */
.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content h1 span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #ffd54f;
    margin-top: 10px;
}

.hero-subtitle {
    margin: 18px 0 28px;
    font-size: 17px;
    opacity: 0.9;
}

/* DESTINATION TAGS */
.destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.destinations span {
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.14);
    font-size: 14px;
    backdrop-filter: blur(4px);
}

/* POINT LIST */
.hero-points {
    list-style: none;
}

.hero-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
}

.hero-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd54f;
    font-weight: 700;
}

/* RIGHT FORM */
.hero-form {
    background: #ffffff;
    color: #333;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.hero-form h3 {
    text-align: center;
    margin-bottom: 22px;
    font-size: 20px;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.hero-form button {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: #ffcc33;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-form button:hover {
    background: #f2b900;
}

/* =====================
   HERO RESPONSIVE ONLY
===================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-form {
        padding: 26px;
    }
}







.states-section {
  background: rgba(0,0,0,0.75);
  color: #f8d248;
  padding: 60px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.states-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.states-list li {
  flex: 1 1 160px;
  max-width: 180px;
  text-align: center;
  border-right: 1px solid rgba(248, 210, 72, 0.4);
  padding: 0 15px;
  position: relative;
}

.states-list li:last-child {
  border-right: none;
}

.states-list img {
  width: 40px;
  margin-bottom: 12px;
  filter: brightness(0) saturate(100%) invert(85%) sepia(76%) saturate(2451%) hue-rotate(5deg) brightness(94%) contrast(89%);
}

.states-list h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.states-list p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .states-list {
    justify-content: space-around;
  }
  .states-list li {
    max-width: 140px;
    flex: 1 1 130px;
    border-right: none;
    padding: 0 10px;
  }
}

@media (max-width: 600px) {
  .states-list {
    flex-direction: column;
    align-items: center;
  }
  .states-list li {
    max-width: none;
    border-right: none;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(248, 210, 72, 0.4);
  }
  .states-list li:last-child {
    border-bottom: none;
  }
}

.tour-section {
  padding: 64px 20px;
  background: #f8fafc;
}

.tour-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.tour-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Image */
.tour-image {
  position: relative;
  height: 350px;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badges */
.badge {
  position: absolute;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.discount {
  top: 14px;
  left: 14px;
  background: #22c55e;
}

.category {
  top: 14px;
  right: 14px;
  background: #f97316;
}

/* =====================
   TOUR CONTENT
===================== */

.tour-content {
  padding: 22px;
}

.tour-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.duration {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 10px;
}

/* =====================
   ICONS (FIXED SIZE)
===================== */

.icons {
  display: flex;
  gap: 16px;
  font-size: 22px; /* BIGGER ICONS */
  margin-bottom: 14px;
}

.icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =====================
   ROUTE
===================== */

.route {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

/* =====================
   CARD FOOTER
===================== */

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

/* PRICE */

.price del {
  color: #94a3b8;
  font-size: 14px;
}

.price span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

/* =====================
   ACTION BUTTON GROUP
===================== */

.card-actions {
  display: flex;
  align-items: center;
  gap: 12px; /* CONTROLLED GAP */
}

/* =====================
   BUTTONS
===================== */

.btn {
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* QUOTE BUTTON */

.btn.quote-btn {
  background: #facc15;
  color: #0f172a;
}

.btn.quote-btn:hover {
  background: #eab308;
}

/* =====================
   WHATSAPP BUTTON
===================== */

.btn.whatsapp {
  background: #25d366;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  padding: 0;
  transition: all 0.3s ease;
}

.btn.whatsapp i {
  font-size: 22px;
  color: #fff;
}

.btn.whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.6);
}

.btn.whatsapp:active {
  transform: scale(0.95);
}

/* =====================
   MOBILE IMPROVEMENTS
===================== */

@media (max-width: 640px) {
  .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .card-actions {
    display: flex;
    gap: 10px;
  }

  .btn.quote-btn {
    flex: 1;
    text-align: center;
  }
}


/* Modal styles */
.modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: auto; /* Allows scrolling if viewport is small */
}

.modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  max-height: 70vh;       /* Limit height */
  overflow-y: auto;       /* Scroll inside modal if content overflows */
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.close-btn {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  color: #333;
  transition: color 0.3s ease;
}
.close-btn:hover {
  color: #facc15;
}

.modal-content h2 {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 22px;
  color: #222;
}

form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #444;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form select {
  width: 100%;
  padding: 8px 12px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form input[type="number"]:focus,
form select:focus {
  outline: none;
  border-color: #facc15;
  box-shadow: 0 0 6px #facc15;
}

form button.btn {
  margin-top: 20px;
  width: 100%;
  background: #facc15;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

form button.btn:hover {
  background: #eab308;
}

.tour-icons {
  display: flex;
  gap: 24px;
  margin: 16px 0;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #222;
  width: 60px;
}

.icon-item span:first-child {
  font-size: 28px;
  margin-bottom: 6px;
}

.icon-item.disabled {
  color: #ccc;
}

/* Section Wrapper */
.travel-benefits {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  font-family: "Poppins", sans-serif;
}

/* Container */
.travel-benefits .container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Cards */
.benefit-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.benefit-card:hover::before {
  opacity: 0.08;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */
.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #ffffff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

/* Card Text */
.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .travel-benefits {
    padding: 60px 15px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.about-bvt {
  padding: 90px 20px;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  font-family: "Poppins", sans-serif;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 60px 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.about-content {
  text-align: center;
}

.about-tag {
  display: inline-block;
  background: rgba(251, 191, 36, 0.15);
  color: #f59e0b;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content h2 span {
  color: #f59e0b;
}

.about-content p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 18px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
  max-width: 700px;
  margin: 35px auto 45px;
  text-align: left;
}

.point {
  background: #f9fafb;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #374151;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.about-btn {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #ffffff;
  padding: 16px 38px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35);
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.45);
}

@media (max-width: 480px) {
  .about-content h2 {
    font-size: 1.9rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }
}

/* =====================
   FAQs
===================== */
.faq-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  font-family: "Poppins", sans-serif;
}

.faq-container {
  max-width: 1000px;
  margin: auto;
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.faq-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: #f59e0b;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-item summary {
    font-size: 1rem;
  }
}

.custom-tour-v2 {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  font-family: "Poppins", sans-serif;
}

.custom-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.custom-pill {
  display: inline-block;
  background: #fff4d6;
  color: #f59e0b;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.custom-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f2933;
  line-height: 1.2;
  margin-bottom: 22px;
}

.custom-left h2 span {
  color: #f59e0b;
}

.custom-desc {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 30px;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #374151;
}

.custom-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f59e0b;
  font-weight: 700;
}

/* CTA BUTTON */
.custom-call-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #ffffff;
  padding: 18px 42px;
  border-radius: 60px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.45);
  transition: all 0.35s ease;
}

.custom-call-btn span {
  font-size: 0.95rem;
  opacity: 0.9;
}

.custom-call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(245, 158, 11, 0.6);
}

/* RIGHT CARD */
.custom-right .info-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f2933;
}

.info-card p {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .custom-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .custom-left h2 {
    font-size: 2.3rem;
  }

  .custom-right {
    order: -1;
  }
}

@media (max-width: 480px) {
  .custom-left h2 {
    font-size: 2rem;
  }

  .custom-call-btn {
    width: 100%;
  }
}

/* =====================
   FOOTER
===================== */
.main-footer {
    background: #0b1d39;
    color: #ffffff;
    padding: 70px 16px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-box h3,
.footer-box h4 {
    margin-bottom: 14px;
}

.footer-box p,
.footer-box a {
    font-size: 14px;
    color: #dcdcdc;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a:hover {
    color: #ff5722;
}

/* NEWSLETTER */
.newsletter {
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: none;
}

.newsletter button {
    background: #ff5722;
    border: none;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    color: #bbb;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter {
        flex-direction: column;
    }
}

/* Tourism Approval – Trust Badge Style */
.tourism-approval {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tourism-approval span {
    font-size: 13px;
    color: #cfd8e3;
    font-weight: 500;
    white-space: nowrap;
}

.tourism-approval img {
    max-width: 70px;
    height: auto;
    opacity: 0.95;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .tourism-approval {
        justify-content: center;
    }
}
