﻿:root {
  --teal: #ff6b35;
  --teal-dark: #1f3a5f;
  --pink: #ff6b35;
  --yellow: #f4b942;
  --dark: #0f172a;
  --text: #2f2f35;
  --soft: #f8f4ec;
  --line: #e7dfd1;
  --topbar-height: 44px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1300px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--teal-dark);
  color: #fff;
  font-size: 0.88rem;
}

.topbar-wrap {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-left {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.top-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.top-social a {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
}

.top-social a:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.top-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: var(--topbar-height);
  z-index: 70;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--teal-dark);
  font-size: 1.5rem;
}

.logo-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 600;
  font-size: 0.94rem;
  margin-left: auto;
}

.nav a:hover {
  color: var(--teal);
}

.nav-link:hover {
  color: var(--teal);
}

.nav-item {
  position: relative;
}

.nav-link {
  font: inherit;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.caret {
  font-size: 0.72em;
  margin-left: 4px;
}

.has-mega {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1130px, 96vw);
  background: #f7f2e8;
  border-radius: 4px;
  padding: 1.8rem 1.8rem 1.4rem;
  border: 1px solid #e7dfd1;
  box-shadow: 0 14px 30px rgba(17, 27, 25, 0.12);
  display: none;
  z-index: 90;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem 2rem;
}

.mega-grid ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.mega-grid a {
  display: block;
  padding: 0.26rem 0;
  color: #444;
  font-weight: 500;
}

.mega-grid a:hover {
  color: var(--pink);
}

/* Agent should open as a compact dropdown, not a full-width mega menu */
#agentMenuItem {
  position: relative;
}

#agentMenuItem .mega-menu {
  left: 0;
  transform: none;
  width: 190px;
  padding: 0.55rem 0.65rem;
}

#agentMegaMenu .mega-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

#agentMegaMenu .mega-grid ul {
  gap: 0.12rem;
}

#agentMegaMenu .mega-grid a {
  padding: 0.45rem 0.3rem;
}

@media (min-width: 1025px) {
  .has-mega:hover .mega-menu,
  .has-mega:focus-within .mega-menu,
  .has-mega.open .mega-menu {
    display: block;
  }
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 0 10px;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-btn span {
  width: 100%;
  height: 2px;
  background: var(--dark);
}

.hero {
  min-height: 560px;
  background: url("../images/packages/www.antrikshtravel.com/wp-content/uploads/2024/06/sreehari-devadas-j4hGnHYl8ic-unsplash-636x426__68f3468b.webp") center/cover no-repeat;
  position: relative;
  display: grid;
  place-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 900px;
}

.sub-title {
  font-family: "La Belle Aurore", cursive;
  color: var(--yellow);
  font-size: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.1;
  margin: 0.4rem 0 0.8rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 0;
  border: none;
  color: #fff;
  font-weight: 700;
}

.btn-pink {
  background: var(--pink);
}

.btn-green {
  background: var(--teal);
}

.strip-section {
  padding: 1.2rem 0 0;
}

.pt-small {
  padding-top: 0.6rem;
}

.strip-title {
  margin-bottom: 0.8rem;
  color: #4a4a4a;
  font-size: 1.05rem;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.strip-section:first-of-type .strip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strip-card {
  background: #fdf2ea;
  border: 1px solid #f2d7c8;
}

.strip-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.strip-card h4 {
  text-align: center;
  font-size: 0.95rem;
  padding: 0.7rem 0.5rem;
  font-weight: 700;
}

.section {
  padding: 6rem 0 4rem;
}

.soft {
  background: var(--soft);
}

.head {
  margin-bottom: 1.35rem;
}

.head h2 {
  color: #444;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.domestic-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
  margin: 1.1rem 0 1.6rem;
}

.domestic-tabs span {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.domestic-tabs span.active {
  background: #fa4d61;
  color: #fff;
  min-width: 170px;
  text-align: center;
}

.domestic-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.domestic-card {
  background: #fff;
  border: 1px solid #dce2e1;
  border-radius: 12px;
  overflow: hidden;
}

.domestic-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.domestic-card h3 {
  padding: 0.85rem 0.8rem;
  font-size: 1.06rem;
  line-height: 1.35;
  min-height: 76px;
}

.domestic-card .dur {
  border-top: 1px solid #e3e8e7;
  border-bottom: 1px solid #e3e8e7;
  padding: 0.62rem 0.8rem;
  font-size: 0.95rem;
  text-align: center;
}

.domestic-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.72rem 0.8rem;
}

.domestic-price-row strong {
  color: #111;
  font-size: 1.2rem;
}

.mini-btn {
  background: #fa4d61;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.32rem 0.85rem;
}

.center-text {
  text-align: center;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tab {
  border: 1px solid #cfd8d7;
  background: #fff;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  font-weight: 600;
}

.tab.active {
  background: var(--teal-dark);
  color: #fff;
  border-color: var(--teal-dark);
}

.panel {
  display: none;
}

.panel.active {
  display: block;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.tour-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem;
}

.tour-card h4 {
  font-size: 0.98rem;
  color: #222;
  margin-bottom: 0.35rem;
}

.tour-card p {
  font-size: 0.88rem;
  color: #666;
}

.tour-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.tour-package-card {
  background: #fff;
  border: 1px solid #d9dde3;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

.tour-card-image-link {
  display: block;
}

.tour-card-image-link img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.tour-card-body {
  padding: 1rem 1rem 0.9rem;
}

.tour-package-card h4 {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0;
  color: #1f2b3d;
}

.tour-card-duration {
  margin: 0.8rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid #e7eaee;
  font-size: 1rem;
  color: #646b77;
}

.tour-card-footer {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.tour-card-price {
  margin: 0;
  font-size: 2.05rem;
  font-weight: 800;
  color: #1f2b3d;
}

.tour-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0.55rem 0.95rem;
  border-radius: 9px;
  background: #ff4f7d;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}

.center {
  text-align: center;
  margin-top: 1.3rem;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.dest-card {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.dest-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.dest-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  padding: 1rem;
}

.intl-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.counter-grid article {
  text-align: center;
  background: #fff;
  padding: 2rem 1rem;
  border-right: 1px solid var(--line);
}

.counter-grid article:last-child {
  border-right: 0;
}

.counter-grid h3 {
  color: var(--dark);
  font-size: 2rem;
}

.narrow {
  max-width: 760px;
}

.testimonial-box {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem;
  min-height: 165px;
}

.testimonial {
  display: none;
  text-align: center;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem;
}

.blog-card h4 {
  margin-bottom: 0.5rem;
  color: #111;
}

.site-footer {
  background: var(--teal-dark);
  color: #fff;
  margin-top: 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.2rem;
  padding: 4rem 0;
}

.site-footer h3 {
  color: #fff98a;
  margin-bottom: 0.7rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer-logo {
  height: 54px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.sub-footer {
  background: #000;
  color: #fff;
}

.sub-wrap {
  min-height: 48px;
  display: flex;
  align-items: center;
}

.whatsapp-fab,
.call-fab {
  position: fixed;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 14px;
  overflow: hidden;
  white-space: nowrap;
  z-index: 70;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: width 0.28s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab {
  bottom: 16px;
  background: #25d366;
}

.call-fab {
  bottom: 84px;
  background: #1f3a5f;
}

.whatsapp-fab:hover,
.call-fab:hover,
.whatsapp-fab:focus-visible,
.call-fab:focus-visible {
  width: 210px;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.25);
  animation-play-state: paused;
}

.call-fab,
.whatsapp-fab {
  animation: fab-bounce 2s infinite ease-in-out;
}

.whatsapp-fab {
  animation-delay: 0.18s;
}

.whatsapp-fab svg,
.call-fab svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: currentColor;
}

.fab-label {
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  transition: max-width 0.28s ease, opacity 0.22s ease, margin-left 0.22s ease;
}

.whatsapp-fab:hover .fab-label,
.call-fab:hover .fab-label,
.whatsapp-fab:focus-visible .fab-label,
.call-fab:focus-visible .fab-label {
  max-width: 145px;
  opacity: 1;
  margin-left: 10px;
}

@keyframes fab-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-4px);
  }
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.lead-popup.show {
  display: block;
}

.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
}

.lead-popup-card {
  position: relative;
  width: min(460px, 92%);
  margin: 7vh auto 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 1.2rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.lead-popup-card h3 {
  color: var(--teal-dark);
  margin-bottom: 0.85rem;
}

.lead-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: #666;
  cursor: pointer;
}

.lead-form {
  display: grid;
  gap: 0.45rem;
}

.lead-form label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #333;
}

.lead-form input {
  border: 1px solid #d7dddc;
  border-radius: 8px;
  padding: 0.68rem 0.7rem;
  font: inherit;
}

.lead-form button {
  margin-top: 0.7rem;
}

@media (max-width: 1024px) {
  .logo-img {
    height: 50px;
    max-width: 220px;
  }

  .nav {
    position: absolute;
    top: 90px;
    right: 4%;
    left: 4%;
    background: #fff;
    border: 1px solid var(--line);
    padding: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.45rem;
    padding: 0.85rem 0.95rem;
    box-shadow: none;
    border-radius: 8px;
    border-color: #dfe6e5;
    display: none;
  }

  .has-mega.open .mega-menu {
    display: block;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .mega-grid ul {
    gap: 0.2rem;
  }

  .nav.show {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
  }

  .tour-grid,
  .dest-grid,
  .blog-grid,
  .footer-grid,
  .domestic-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .counter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .counter-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .counter-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --topbar-height: 78px;
  }


  .topbar-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.45rem 0;
    text-align: center;
  }

  .top-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 500px;
  }

  .sub-title {
    font-size: 1.45rem;
  }

  .strip-section:first-of-type .strip-grid,
  .strip-grid,
  .tour-grid,
  .dest-grid,
  .intl-grid,
  .blog-grid,
  .footer-grid,
  .counter-grid,
  .domestic-card-grid {
    grid-template-columns: 1fr;
  }

  .strip-card img {
    height: 210px;
  }

  .section {
    padding: 4.4rem 0 3rem;
  }

  .lead-popup-card {
    margin-top: 10vh;
    padding: 1rem;
  }
}


/* ----------------------------------       About Us            --------------------------*/
.about-page {
      background:
        radial-gradient(circle at 0% 0%, rgba(255, 107, 53, 0.08), transparent 40%),
        radial-gradient(circle at 100% 20%, rgba(31, 58, 95, 0.09), transparent 44%),
        #f8fafc;
      color: #172033;
    }

    .about-wrap {
      width: min(1260px, 92%);
      margin: 0 auto;
      padding: 3.2rem 0 4.4rem;
      display: grid;
      gap: 2.6rem;
    }

    .about-intro {
      background: #fff;
      border: 1px solid #e7ecf3;
      border-radius: 22px;
      padding: 2rem;
      display: grid;
      grid-template-columns: 1.06fr 1fr;
      align-items: center;
      gap: 2rem;
      box-shadow: 0 20px 40px rgba(14, 23, 40, 0.08);
    }

    .about-intro h1 {
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      line-height: 1.15;
      color: #122746;
      margin-bottom: 0.8rem;
    }

    .about-intro p {
      font-size: 1.04rem;
      line-height: 1.9;
      text-align: justify;
      color: #253247;
    }

    .about-intro img,
    .about-split img {
      width: 100%;
      border-radius: 18px;
      object-fit: cover;
      display: block;
    }

    .about-intro img {
      min-height: 390px;
      box-shadow: 0 16px 30px rgba(8, 20, 40, 0.18);
    }

    .why-strip {
      background: linear-gradient(135deg, #0f203b, #1f3a5f);
      color: #fff;
      border-radius: 22px;
      padding: 2.5rem 2.2rem;
      text-align: center;
      box-shadow: 0 20px 40px rgba(10, 22, 40, 0.18);
    }

    .why-strip h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      letter-spacing: 0.05em;
      margin-bottom: 0.4rem;
    }

    .why-strip .underline {
      width: 98px;
      height: 4px;
      border-radius: 999px;
      background: #ff6b35;
      margin: 0 auto 1.25rem;
    }

    .why-strip p {
      max-width: 1120px;
      margin: 0 auto 0.9rem;
      font-size: 1.02rem;
      line-height: 1.8;
      color: #e8effd;
    }

    .about-split {
      display: grid;
      grid-template-columns: 1fr 0.95fr;
      align-items: start;
      gap: 2.2rem;
    }

    .about-split img {
      min-height: 560px;
      box-shadow: 0 16px 34px rgba(9, 24, 46, 0.18);
    }

    .why-card {
      background: #fff;
      border: 1px solid #e6ebf2;
      border-radius: 20px;
      padding: 1.8rem;
      box-shadow: 0 14px 30px rgba(17, 32, 56, 0.1);
    }

    .why-card h3 {
      font-size: 1.7rem;
      color: #122746;
      margin-bottom: 1rem;
    }

    .why-list {
      list-style: none;
      display: grid;
      gap: 1rem;
    }

    .why-list li {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 0.85rem;
      align-items: start;
      padding-bottom: 0.9rem;
      border-bottom: 1px solid #edf1f7;
      font-size: 1rem;
      line-height: 1.72;
      color: #253247;
    }

    .why-list li:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .dot {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      border: 2px solid #ffd6c9;
      background: #fff7f4;
      margin-top: 0.18rem;
    }

    .why-cta {
      margin-top: 1.15rem;
      display: inline-block;
      width: 100%;
      text-align: center;
      background: linear-gradient(135deg, #ff6b35, #ff4d6d);
      color: #fff;
      font-weight: 700;
      padding: 0.8rem 0.9rem;
      border-radius: 9px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .why-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 16px rgba(255, 77, 109, 0.35);
    }

    @media (max-width: 1024px) {
      .about-intro,
      .about-split {
        grid-template-columns: 1fr;
      }

      .about-intro img {
        min-height: 300px;
      }

      .about-split img {
        min-height: 340px;
      }
    }

    @media (max-width: 680px) {

      .about-wrap {
        padding: 2.2rem 0 3.2rem;
      }

      .about-intro,
      .why-strip,
      .why-card {
        border-radius: 16px;
      }

      .about-intro {
        padding: 1.2rem;
      }

      .why-strip {
        padding: 1.6rem 1rem;
      }
    }


    /* -------------------------------             Contact Page            ------------------------------*/

    .contact-page {
      background: #f4f6f8;
    }

    .contact-map {
      height: 360px;
      overflow: hidden;
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .contact-shell {
      width: min(1240px, 92%);
      margin: -56px auto 0;
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e6ecf2;
      padding: 3rem 2.2rem 2.4rem;
      box-shadow: 0 18px 36px rgba(13, 24, 39, 0.1);
      position: relative;
      z-index: 5;
    }

    .contact-head {
      text-align: center;
      margin-bottom: 2.2rem;
    }

    .contact-head .mini {
      color: #00b894;
      font-size: 1.95rem;
      margin-bottom: 0.2rem;
      display: block;
    }

    .contact-head h1 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      margin-bottom: 0.4rem;
      color: #0f1f35;
    }

    .contact-head p {
      font-size: 1.02rem;
      color: #4e5f73;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.45fr;
      gap: 1.8rem;
      align-items: start;
    }

    .contact-left {
      padding-right: 1rem;
      border-right: 1px solid #e7edf3;
      display: grid;
      gap: 1rem;
    }

    .contact-info {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 0.85rem;
      align-items: start;
    }

    .icon-box {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #00b894;
      background: #e8f8f4;
    }

    .icon-box svg {
      width: 28px;
      height: 28px;
      fill: currentColor;
    }

    .contact-info h3 {
      font-size: 1.18rem;
      margin-bottom: 0.2rem;
      color: #102136;
    }

    .contact-info p {
      color: #46566a;
      font-size: 1rem;
      line-height: 1.65;
    }

    .help-box {
      margin-top: 0.4rem;
      border: 1px solid #e5ebf2;
      border-radius: 12px;
      padding: 1rem;
      background: #fff;
    }

    .help-box h4 {
      font-size: 1.2rem;
      margin-bottom: 0.2rem;
      color: #112440;
    }

    .help-box p {
      color: #5c6c7f;
      font-size: 0.96rem;
    }

    .help-box .phone {
      color: #ff4d6d;
      font-weight: 800;
      display: inline-block;
      margin: 0.3rem 0 0.9rem;
      font-size: 1.2rem;
    }

    .chat-btn {
      width: 100%;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border: 1px solid #ff4d6d;
      color: #ff4d6d;
      border-radius: 9px;
      padding: 0.65rem 0.8rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

    .help-box small {
      display: block;
      color: #6e7c8f;
      font-size: 0.92rem;
      margin-top: 0.35rem;
    }

    .contact-form-wrap h2 {
      font-size: 2.2rem;
      color: #0f1f35;
      margin-bottom: 0.3rem;
    }

    .contact-form-wrap .note {
      color: #607188;
      margin-bottom: 0.95rem;
      font-size: 0.98rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .contact-form-wrap input,
    .contact-form-wrap textarea {
      width: 100%;
      border: 1px solid #d8e0ea;
      border-radius: 8px;
      padding: 0.8rem 0.8rem;
      font: inherit;
      color: #24354a;
      background: #fff;
    }

    .contact-form-wrap textarea {
      margin-top: 0.9rem;
      min-height: 138px;
      resize: vertical;
    }

    .submit-btn {
      margin-top: 1rem;
      width: 100%;
      border: 0;
      background: #ff4d6d;
      color: #fff;
      border-radius: 8px;
      padding: 0.95rem 1rem;
      font-weight: 700;
      font-size: 1.03rem;
      cursor: pointer;
    }

    @media (max-width: 980px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .contact-left {
        border-right: 0;
        padding-right: 0;
        border-bottom: 1px solid #e7edf3;
        padding-bottom: 1.2rem;
      }
    }

    @media (max-width: 640px) {
      .contact-shell {
        padding: 1.6rem 1rem 1.4rem;
        margin-top: -36px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }
    }


/* ----------------------------             Packages page                 ------------------------------*/

    .andaman-page {
      background: #f2f4f6;
    }

    .category-hero {
      background: linear-gradient(180deg, rgba(19, 39, 62, 0.62), rgba(19, 39, 62, 0.62)),
        var(--category-hero-image, url("../images/packages/images.unsplash.com/photo-1593693397690-362cb9666fc2__13b675fd.jpg")) center/cover no-repeat;
      min-height: 170px;
      display: grid;
      place-items: center;
      text-align: center;
      color: #fff;
    }

    .category-hero h1 {
      font-size: clamp(1.7rem, 3vw, 2.35rem);
      margin-bottom: 0.25rem;
    }

    .breadcrumb {
      font-size: 0.9rem;
      color: #d7e4f8;
    }

    .breadcrumb a {
      color: #8ec8ff;
    }

    .andaman-wrap {
      width: min(1320px, 93%);
      margin: 1.8rem auto 2.6rem;
      display: grid;
      grid-template-columns: 3.2fr 1.15fr;
      gap: 1.2rem;
      align-items: start;
    }

    .andaman-main {
      background: transparent;
    }

    .intro-card {
      background: #fff;
      border: 1px solid #e4e9ef;
      border-radius: 10px;
      padding: 1.2rem;
      margin-bottom: 1rem;
    }

    .intro-card h2 {
      font-size: 2rem;
      color: #17263f;
      margin-bottom: 0.5rem;
    }

    .intro-card p {
      color: #5b6c80;
      line-height: 1.75;
      font-size: 0.95rem;
      max-width: 94%;
    }

    .intro-card p.is-collapsed {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .pkg-detail-section p.is-collapsed {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .read-more-btn {
      display: inline-block;
      margin-top: 0.65rem;
      background: #ff4d6d;
      color: #fff;
      border-radius: 6px;
      padding: 0.35rem 0.62rem;
      font-size: 0.82rem;
      font-weight: 700;
    }

    .pkg-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
      transition: opacity 0.22s ease;
    }

    .package-fade.is-fading {
      opacity: 0;
    }

    .pkg-item {
      background: #fff;
      border: 1px solid #e3e8ee;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .pkg-item img {
      width: 100%;
      height: 168px;
      object-fit: cover;
      display: block;
      transition: transform 0.28s ease;
    }

    .pkg-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 28px rgba(18, 34, 55, 0.18);
      border-color: #cfd9e6;
    }

    .pkg-item:hover img {
      transform: scale(1.04);
    }

    .pkg-body {
      padding: 0.6rem 0.55rem 0.72rem;
    }

    .pkg-title {
      font-size: 0.87rem;
      color: #111;
      min-height: 38px;
      margin-bottom: 0.55rem;
      font-weight: 600;
    }

    .pkg-meta {
      font-size: 0.73rem;
      color: #666;
      border-top: 1px solid #eceff3;
      padding-top: 0.5rem;
      margin-top: 0.2rem;
      text-align: center;
    }

    .pkg-location {
      font-size: 0.75rem;
      color: #4d6077;
      text-align: center;
      margin-top: 0.42rem;
    }

    .pkg-foot {
      margin-top: 0.6rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.45rem;
    }

    .pkg-price {
      font-weight: 800;
      color: #1c2533;
      font-size: 1.05rem;
    }

    .pkg-btn {
      background: #ff4d6d;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      border-radius: 5px;
      padding: 0.22rem 0.6rem;
    }

    .page-nav {
      margin: 1.5rem 0 0.2rem;
      display: flex;
      justify-content: center;
      gap: 0.4rem;
    }

    .page-nav button {
      border: 0;
      width: 30px;
      height: 30px;
      border-radius: 4px;
      background: #e3e8ee;
      color: #5f6f82;
      font-weight: 700;
      cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .page-nav button:hover {
      background: #cfd8e4;
    }

    .page-nav button.active {
      background: #ff4d6d;
      color: #fff;
    }

    .andaman-side {
      display: grid;
      gap: 0.8rem;
    }

    .side-card {
      background: #fff;
      border: 1px solid #e3e8ef;
      border-radius: 10px;
      padding: 1rem;
    }

    .filter-fields {
      display: grid;
      gap: 0.72rem;
    }

    .filter-field {
      display: grid;
      gap: 0.32rem;
    }

    .filter-field label {
      font-size: 0.84rem;
      color: #34465d;
      font-weight: 600;
    }

    .search-box {
      display: grid;
      grid-template-columns: 1fr 32px;
      gap: 0.5rem;
      align-items: center;
    }

    .search-box input,
    .cat-select,
    .side-advice input {
      width: 100%;
      border: 1px solid #d9e1ea;
      border-radius: 6px;
      padding: 0.55rem 0.6rem;
      font: inherit;
      background: #fff;
    }

    .search-icon {
      text-align: center;
      color: #7a8ba0;
    }

    .side-title {
      font-size: 1.25rem;
      margin-bottom: 0.65rem;
      color: #15263f;
      border-left: 3px solid #ff4d6d;
      padding-left: 0.5rem;
      font-weight: 700;
    }

    .price-range {
      width: 100%;
      accent-color: #ff4d6d;
      margin: 0.55rem 0 0.45rem;
    }

    .filter-row {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.79rem;
      color: #6a7789;
    }

    .filter-btn {
      border: 0;
      background: #1e2634;
      color: #fff;
      border-radius: 999px;
      padding: 0.22rem 0.75rem;
      font-size: 0.78rem;
      cursor: pointer;
    }

    .empty-state {
      grid-column: 1 / -1;
      text-align: center;
      background: #fff;
      border: 1px dashed #c9d5e3;
      border-radius: 10px;
      padding: 1.1rem;
      color: #4d6077;
    }

    .side-advice {
      background: #085872;
      border-radius: 10px;
      padding: 1.05rem;
      color: #fff;
    }

    .side-advice h3 {
      font-size: 1.6rem;
      text-align: center;
      margin-bottom: 0.85rem;
    }

    .side-advice input {
      margin-bottom: 0.55rem;
      font-size: 0.84rem;
    }

    .side-advice button {
      border: 0;
      width: 100%;
      border-radius: 5px;
      padding: 0.5rem 0.7rem;
      background: #ff4d6d;
      color: #fff;
      font-weight: 700;
      cursor: pointer;
    }

    @media (max-width: 1100px) {
      .andaman-wrap {
        grid-template-columns: 1fr;
      }

      .pkg-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {

      .pkg-grid {
        grid-template-columns: 1fr;
      }
    }

/* ----------------------------             Package Detail Page            ------------------------------*/
    .pkg-detail-page {
      background: #f4f6f8;
      padding-bottom: 2rem;
    }

    .pkg-detail-breadcrumb {
      padding: 1.05rem 0 0.7rem;
      font-size: 0.82rem;
      color: #6a7789;
    }

    .pkg-detail-breadcrumb a {
      color: #6a7789;
    }

    .pkg-detail-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.55rem 0 1.2rem;
    }

    .pkg-detail-head h1 {
      color: #101d31;
      font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .pkg-top-points {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 1.3rem;
    }

    .pkg-top-points > div {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      color: #2f3d51;
      min-width: 118px;
    }

    .pt-icon {
      font-size: 1rem;
      color: #ff4d6d;
    }

    .pkg-top-points strong {
      display: block;
      font-size: 0.82rem;
      color: #192b44;
    }

    .pkg-top-points p {
      font-size: 0.82rem;
      color: #586b82;
    }

    .pkg-hero-band {
      background: #dfe9eb;
      padding: 1rem 0;
    }

    .pkg-hero-grid {
      display: grid;
      grid-template-columns: 2fr 0.9fr 1.6fr;
      gap: 1rem;
      align-items: start;
    }

    .pkg-image-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
    }

    .pkg-image-wrap img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .pkg-carousel-track {
      position: relative;
    }

    .pkg-carousel-slide {
      opacity: 0;
      transition: opacity 0.35s ease;
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .pkg-carousel-slide.active {
      opacity: 1;
      position: relative;
      pointer-events: auto;
    }

    .pkg-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 999px;
      background: rgba(16, 29, 49, 0.62);
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      z-index: 2;
    }

    .pkg-carousel-btn.prev {
      left: 10px;
    }

    .pkg-carousel-btn.next {
      right: 10px;
    }

    .pkg-carousel-dots {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 12px;
      display: flex;
      gap: 0.42rem;
      z-index: 2;
    }

    .pkg-carousel-dots button {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: 0;
      background: rgba(255, 255, 255, 0.65);
      cursor: pointer;
      padding: 0;
    }

    .pkg-carousel-dots button.active {
      background: #ff4d6d;
    }

    .pkg-features-list {
      list-style: none;
      display: grid;
      gap: 0.72rem;
      color: #2e3f55;
      margin-top: 0.5rem;
    }

    .pkg-features-list li {
      border-bottom: 1px solid #cdd8dc;
      padding-bottom: 0.44rem;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .pkg-price-panel {
      background: #fff;
      border: 1px solid #d8e2e8;
      border-radius: 10px;
      padding: 1rem;
    }

    .pkg-price-panel h3 {
      color: #ff3f5d;
      text-align: center;
      font-size: 2rem;
      margin-bottom: 0.9rem;
      font-family: "La Belle Aurore", cursive;
    }

    .pkg-price-meta p {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      border-bottom: 1px solid #edf1f4;
      padding: 0.52rem 0;
      font-size: 0.86rem;
      color: #3f4f64;
    }

    .pkg-price-meta span {
      font-weight: 700;
      color: #1c2d45;
    }

    .price-red {
      color: #f24257;
    }

    .pkg-custom-btn {
      margin-top: 0.8rem;
      display: inline-flex;
      width: 100%;
      justify-content: center;
      align-items: center;
      background: #00b894;
      color: #fff;
      border-radius: 6px;
      padding: 0.72rem 0.9rem;
      font-weight: 700;
      font-size: 0.9rem;
    }

    .pkg-content-grid {
      display: grid;
      grid-template-columns: 2.1fr 1fr;
      gap: 1.3rem;
      margin-top: 1.4rem;
      align-items: start;
    }

    .pkg-detail-section {
      margin-bottom: 1.5rem;
    }

    .pkg-detail-section h2 {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      color: #121f32;
      margin-bottom: 0.75rem;
    }

    .pkg-detail-section p {
      color: #4e5f73;
      line-height: 1.75;
      font-size: 0.96rem;
    }

    .tour-day-card {
      background: #fff;
      border: 1px solid #e3eaf1;
      border-radius: 8px;
      margin-bottom: 0.9rem;
    }

    .tour-day-card h4 {
      font-size: 1rem;
      color: #1d2d44;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.5rem;
    }

    .tour-day-card h4 span {
      background: #ff4d6d;
      color: #fff;
      border-radius: 4px;
      padding: 0.15rem 0.48rem;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .day-dropdown summary {
      list-style: none;
      cursor: pointer;
      font-size: 1rem;
      color: #1d2d44;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.9rem 1rem;
      font-weight: 700;
      position: relative;
    }

    .day-dropdown summary::-webkit-details-marker {
      display: none;
    }

    .day-dropdown summary::after {
      content: "+";
      margin-left: auto;
      color: #5d6f84;
      font-size: 1.15rem;
      line-height: 1;
    }

    .day-dropdown[open] summary::after {
      content: "-";
    }

    .day-dropdown summary span {
      background: #ff4d6d;
      color: #fff;
      border-radius: 4px;
      padding: 0.15rem 0.48rem;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .day-dropdown-body {
      border-top: 1px solid #e9eef3;
      padding: 0.8rem 1rem 1rem;
    }

    .inc-list {
      list-style: none;
      display: grid;
      gap: 0.45rem;
    }

    .inc-list li {
      font-size: 0.92rem;
      color: #394b62;
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
    }

    .inc-list li::before {
      content: "•";
      font-weight: 900;
      margin-top: -1px;
    }

    .inc-list li.yes::before {
      color: #00b894;
    }

    .inc-list li.no::before {
      color: #ff4d6d;
    }

    .deal-box {
      background: #fff;
      border: 1px solid #dfe7ef;
      border-radius: 8px;
      padding: 0.75rem 0.95rem;
      margin-bottom: 0.7rem;
      color: #24354a;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .deal-box a {
      color: #24354a;
      font-weight: 700;
    }

    .pkg-sticky-side {
      position: sticky;
      top: 100px;
    }

    .may-like-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    @media (max-width: 1100px) {
      .pkg-detail-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .pkg-hero-grid,
      .pkg-content-grid {
        grid-template-columns: 1fr;
      }

      .pkg-sticky-side {
        position: static;
      }

      .may-like-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {

      .pkg-image-wrap img {
        height: 230px;
      }

      .may-like-grid {
        grid-template-columns: 1fr;
      }

      .deal-box {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* ----------------------------             Domestic Directory                 ------------------------------*/

    .domestic-directory-page {
      background: #f2f4f6;
    }

    .domestic-hero {
      min-height: 130px;
      background: linear-gradient(180deg, rgba(16, 31, 52, 0.62), rgba(16, 31, 52, 0.62)),
        url("../images/packages/www.antrikshtravel.com/wp-content/uploads/2024/06/ahmed-siddiqui-dJ3Nn_RnMug-unsplash-636x426__4eceea34.webp") center/cover no-repeat;
    }

    .domestic-directory-wrap {
      width: min(1240px, 92%);
      margin: 1.6rem auto 2.6rem;
      display: grid;
      grid-template-columns: 3.1fr 1fr;
      gap: 1rem;
      align-items: start;
    }

    .domestic-directory-intro {
      background: #fff;
      border: 1px solid #e4e9ef;
      border-radius: 10px;
      padding: 1rem;
      margin-bottom: 0.95rem;
    }

    .domestic-directory-intro h2 {
      font-size: 2rem;
      color: #17263f;
      margin-bottom: 0.45rem;
    }

    .domestic-directory-intro p {
      color: #5b6c80;
      line-height: 1.72;
      font-size: 0.92rem;
      max-width: 96%;
    }

    .domestic-state-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.05rem 0.95rem;
    }

    .domestic-state-card {
      display: block;
      text-align: center;
    }

    .domestic-state-card img {
      width: 100%;
      height: 170px;
      border-radius: 6px;
      object-fit: cover;
      display: block;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .domestic-state-card p {
      margin-top: 0.32rem;
      font-size: 0.76rem;
      font-weight: 700;
      color: #151f2f;
      line-height: 1.35;
    }

    .domestic-state-card span {
      background: #ffe600;
      padding: 0.02rem 0.18rem;
      border-radius: 2px;
      margin-left: 0.2rem;
      font-size: 0.73rem;
      color: #111;
    }

    .domestic-state-card:hover img {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(14, 23, 36, 0.18);
    }

    .domestic-directory-side {
      display: grid;
      gap: 0.82rem;
      position: sticky;
      top: 104px;
    }

    .domestic-directory-side .side-title {
      font-size: 1.1rem;
    }

    .domestic-directory-side .side-advice h3 {
      font-size: 1.35rem;
    }

    @media (max-width: 1100px) {
      .domestic-directory-wrap {
        grid-template-columns: 1fr;
      }

      .domestic-state-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .domestic-directory-side {
        position: static;
      }
    }

    @media (max-width: 680px) {

      .domestic-state-grid {
        grid-template-columns: 1fr;
      }
    }

/* ----------------------------             Travel Leads                     ------------------------------*/

    .travel-lead-page {
      background: #f1f2f4;
    }

    .travel-lead-hero {
      position: relative;
      min-height: 430px;
      background: url("../images/about-client.jpg") center/cover no-repeat;
      display: flex;
      align-items: center;
    }

    .travel-lead-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(5, 15, 35, 0.72), rgba(5, 15, 35, 0.28));
    }

    .travel-lead-hero-content {
      position: relative;
      color: #fff;
      padding: 2.5rem 0;
    }

    .travel-lead-hero-content h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      line-height: 1.2;
      max-width: 560px;
      margin-bottom: 1.15rem;
      font-weight: 700;
    }

    .travel-lead-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #ef1d24;
      color: #fff;
      font-weight: 700;
      padding: 0.62rem 1rem;
      border-radius: 8px;
      font-size: 0.95rem;
      transition: background 0.2s ease;
    }

    .travel-lead-cta:hover {
      background: #ce1218;
    }

    .travel-lead-intro {
      padding: 3.6rem 0 3rem;
      background: #efefef;
    }

    .travel-lead-intro-grid {
      display: grid;
      grid-template-columns: 1.25fr 1fr;
      align-items: center;
      gap: 3rem;
    }

    .travel-lead-copy {
      color: #26303f;
      font-size: 0.98rem;
      line-height: 1.9;
    }

    .travel-lead-device-wrap {
      position: relative;
      min-height: 260px;
    }

    .travel-lead-laptop {
      width: 92%;
      margin-left: auto;
      background: #f8fafc;
      border: 2px solid #d8dfe7;
      border-radius: 16px;
      padding: 1.2rem;
      box-shadow: 0 20px 40px rgba(19, 35, 64, 0.18);
      transform: rotate(-2deg);
    }

    .travel-lead-laptop h3 {
      color: #121f33;
      text-align: center;
      margin-bottom: 0.8rem;
      font-size: 1.3rem;
    }

    .travel-lead-lines {
      display: grid;
      gap: 0.55rem;
    }

    .travel-lead-lines span {
      display: block;
      height: 14px;
      background: linear-gradient(90deg, #ffebee, #f8fafc);
      border: 1px solid #f0cfd2;
      border-radius: 6px;
    }

    .travel-lead-phone {
      position: absolute;
      left: 8%;
      bottom: -26px;
      width: 110px;
      background: #0f172a;
      border-radius: 18px;
      padding: 8px;
      box-shadow: 0 12px 26px rgba(18, 31, 52, 0.3);
    }

    .travel-lead-phone .travel-lead-lines {
      background: #fff;
      border-radius: 12px;
      padding: 0.65rem 0.5rem;
    }

    .travel-lead-phone .travel-lead-lines span {
      height: 10px;
    }

    .travel-lead-agent {
      padding: 1.5rem 0 2.4rem;
    }

    .travel-lead-agent-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      align-items: center;
    }

    .travel-lead-agent-image img {
      width: 100%;
      display: block;
      border: 1px solid #d8dee8;
      box-shadow: 0 12px 30px rgba(22, 35, 56, 0.12);
    }

    .travel-lead-agent-content h2 {
      font-size: clamp(1.7rem, 3vw, 2.5rem);
      margin-bottom: 1rem;
      color: #1d2e45;
      line-height: 1.15;
    }

    .travel-lead-agent-content h2 span {
      color: #ed1e24;
    }

    .travel-lead-agent-content ul {
      display: grid;
      gap: 0.65rem;
      padding-left: 1rem;
      color: #4b5a6d;
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .travel-lead-plans {
      padding: 1.3rem 0 2.6rem;
    }

    .travel-lead-plan-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .travel-lead-plan-card {
      background: #fff;
      border: 1px solid #dbe3ee;
      border-radius: 14px;
      padding: 1.2rem 1.2rem 1.4rem;
      box-shadow: 0 12px 26px rgba(23, 36, 56, 0.08);
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .travel-lead-plan-card h3 {
      font-size: 2rem;
      text-align: center;
      color: #101f33;
      margin-bottom: 0.75rem;
      border-bottom: 1px solid #cfd7e2;
      padding-bottom: 0.55rem;
      line-height: 1.2;
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 500;
    }

    .travel-lead-plan-card ul {
      list-style: none;
      display: grid;
      gap: 0.55rem;
      color: #334760;
      font-size: 0.93rem;
      margin-bottom: 1rem;
      margin-top: 0.4rem;
    }

    .travel-lead-plan-card li {
      position: relative;
      padding-left: 1.1rem;
    }

    .travel-lead-plan-card li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: #2a88f3;
      font-weight: 700;
    }

    .travel-lead-plan-price {
      margin-top: auto;
      text-align: center;
      background: #ef1d24;
      color: #fff;
      width: fit-content;
      align-self: center;
      padding: 0.55rem 1.3rem;
      border-radius: 999px;
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    .travel-lead-why {
      padding: 3rem 0 2.8rem;
      background: #ededee;
    }

    .travel-lead-why h2 {
      text-align: center;
      font-size: clamp(1.8rem, 4vw, 3rem);
      margin-bottom: 2rem;
      color: #141f32;
      line-height: 1.2;
    }

    .travel-lead-why-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .travel-lead-why-card {
      text-align: center;
      padding: 0.8rem 0.6rem;
    }

    .travel-lead-why-icon {
      width: 50px;
      height: 50px;
      margin: 0 auto 0.75rem;
      border-radius: 999px;
      background: #dce9ff;
      color: #163b72;
      display: grid;
      place-items: center;
      font-size: 1.3rem;
      font-weight: 700;
    }

    .travel-lead-why-card h3 {
      color: #1b2a43;
      font-size: 1.8rem;
      margin-bottom: 0.35rem;
      line-height: 1.15;
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 700;
    }

    .travel-lead-why-card p {
      color: #4d5d71;
      font-size: 0.9rem;
      line-height: 1.55;
    }

    .travel-lead-bottom-strip {
      background: linear-gradient(105deg, #061a45 0%, #152d62 58%, #1f3d7a 100%);
      color: #fff;
      padding: 1.6rem 0;
    }

    .travel-lead-bottom-grid {
      display: grid;
      grid-template-columns: 1.7fr 1fr;
      gap: 1rem;
      align-items: center;
    }

    .travel-lead-bottom-grid h2 {
      font-size: clamp(1.6rem, 3.6vw, 2.5rem);
      line-height: 1.24;
      max-width: 700px;
    }

    .travel-lead-bottom-grid ul {
      list-style: none;
      display: grid;
      gap: 0.48rem;
      font-size: 1.03rem;
      font-weight: 600;
    }

    @media (max-width: 1100px) {
      .travel-lead-intro-grid,
      .travel-lead-agent-grid,
      .travel-lead-bottom-grid {
        grid-template-columns: 1fr;
      }

      .travel-lead-device-wrap {
        margin-top: 0.8rem;
      }

      .travel-lead-plan-grid,
      .travel-lead-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .travel-lead-hero {
        min-height: 360px;
      }

      .travel-lead-intro {
        padding-top: 2.5rem;
      }

      .travel-lead-plan-grid,
      .travel-lead-why-grid {
        grid-template-columns: 1fr;
      }

      .travel-lead-plan-card h3,
      .travel-lead-why-card h3 {
        font-size: 1.65rem;
      }
    }

/* ----------------------------             Agent Signup                     ------------------------------*/

    .agent-signup-page {
      min-height: 100vh;
      padding: 3rem 1rem;
      background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.2) 1.5px, transparent 2px) 0 0 / 180px 180px,
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.2) 1.5px, transparent 2px) 0 0 / 220px 220px,
        linear-gradient(180deg, #244b93 0%, #244b93 34%, #234785 34%, #234785 66%, #2a4f96 66%, #2a4f96 100%);
    }

    .agent-signup-wrap {
      width: min(980px, 100%);
      margin: 0 auto;
      background: #ececec;
      border: 1px solid #d7d7d7;
      box-shadow: 0 16px 44px rgba(10, 26, 58, 0.24);
      padding: 0.65rem 0.8rem 1.1rem;
    }

    .agent-signup-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.55rem;
    }

    .agent-signup-head h1 {
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      color: #23262c;
      font-weight: 600;
      line-height: 1.2;
    }

    .agent-signup-head p {
      font-size: 1rem;
      color: #343a43;
      white-space: nowrap;
    }

    .agent-signup-head a {
      color: #225cc4;
      text-decoration: underline;
      font-weight: 600;
    }

    .agent-signup-form {
      border: 1px solid #d8d8d8;
      background: #efefef;
      padding: 0.7rem 1.1rem 1.2rem;
    }

    .agent-signup-section {
      border-bottom: 1px solid #dddddd;
      padding: 0.25rem 0 0.9rem;
      margin-bottom: 0.95rem;
    }

    .agent-signup-section:last-of-type {
      margin-bottom: 0.4rem;
    }

    .agent-signup-section h2 {
      font-size: 1.18rem;
      color: #1e2430;
      margin-bottom: 1rem;
      padding-left: 0.6rem;
      border-left: 3px solid #1e78ff;
      font-weight: 700;
    }

    .agent-signup-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.95rem 1rem;
      margin-bottom: 0.95rem;
    }

    .agent-signup-grid-3 {
      grid-template-columns: 0.5fr 1fr 1fr;
    }

    .agent-signup-form label,
    .agent-signup-form fieldset {
      display: grid;
      gap: 0.35rem;
      border: 0;
      padding: 0;
      min-width: 0;
    }

    .agent-signup-form span,
    .agent-signup-form legend {
      font-size: 0.98rem;
      color: #212734;
      font-weight: 700;
      margin-bottom: 0.08rem;
    }

    .agent-signup-form em {
      color: #ff2b2b;
      font-style: normal;
      font-weight: 700;
    }

    .agent-signup-form input,
    .agent-signup-form select,
    .agent-signup-form textarea {
      width: 100%;
      border: 1px solid #cfd3da;
      border-radius: 7px;
      background: #f5f5f5;
      min-height: 48px;
      padding: 0.66rem 0.8rem;
      font-size: 0.96rem;
      color: #2a313d;
      outline: none;
    }

    .agent-signup-form textarea {
      min-height: 95px;
      resize: vertical;
    }

    .agent-signup-form input:focus,
    .agent-signup-form select:focus,
    .agent-signup-form textarea:focus {
      border-color: #558de9;
      box-shadow: 0 0 0 3px rgba(65, 119, 220, 0.16);
      background: #fff;
    }

    .agent-phone-field {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 0;
    }

    .agent-country-code {
      border-right: 0 !important;
      border-radius: 7px 0 0 7px !important;
      text-align: center;
      padding-left: 0.2rem !important;
      padding-right: 0.2rem !important;
    }

    .agent-phone-field input:last-child {
      border-radius: 0 7px 7px 0;
    }

    .agent-signup-radio {
      align-self: end;
    }

    .agent-signup-radio legend {
      margin-bottom: 0.75rem;
    }

    .agent-signup-radio label {
      display: inline-flex;
      align-items: center;
      margin-right: 1rem;
      gap: 0.36rem;
      font-size: 0.97rem;
      color: #2d3442;
      font-weight: 500;
    }

    .agent-signup-radio input[type="radio"] {
      width: 17px;
      height: 17px;
      min-height: 17px;
      accent-color: #2c63cd;
    }

    .agent-signup-consent {
      display: inline-flex !important;
      align-items: center;
      gap: 0.55rem !important;
      margin: 0.2rem 0 1rem;
      font-weight: 500 !important;
    }

    .agent-signup-consent input {
      width: 18px;
      height: 18px;
      min-height: 18px;
      accent-color: #2c63cd;
    }

    .agent-signup-btn {
      background: #f01417;
      color: #fff;
      border: 0;
      border-radius: 7px;
      min-height: 52px;
      padding: 0 1.75rem;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 22px rgba(186, 20, 26, 0.32);
      transition: background 0.2s ease;
    }

    .agent-signup-btn:hover {
      background: #d80c10;
    }

    @media (max-width: 920px) {
      .agent-signup-grid,
      .agent-signup-grid-3 {
        grid-template-columns: 1fr;
      }

      .agent-signup-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .agent-signup-head p {
        white-space: normal;
      }
    }

