:root {
      --primary: #0097b2;
      --primary-dark: #034551;
      --bg: #f5f7fb;
      --card-bg: #ffffff;
      --accent: #24c18f;
      --text-main: #1a1a1a;
      --text-soft: #666666;
      --danger: #e63946;
      --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
      --radius-xl: 24px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", Roboto, sans-serif;
    }

    body {
      background: var(--bg);
      color: var(--text-main);
    }

    .page-wrapper {
      max-width: 480px;
      margin: 0 auto;
      padding: 16px 12px 80px;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .card {
      background: var(--card-bg);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      padding: 18px 16px;
      margin-bottom: 18px;
    }

    .badge-row {
      display: flex;
      gap: 8px;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }

    .badge {
      font-size: 14px;
      padding: 4px 8px;
      border-radius: 999px;
      background: #e6f4f6;
      color: #1657a5;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .hero {
      text-align: left;
    }

    .hero-title {
      font-size: 27px;
      line-height: 1.2;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .hero-subtitle {
      font-size: 14px;
      color: var(--text-soft);
      margin-bottom: 14px;
    }

    .price-highlight {
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
      padding: 8px 10px;
      border-radius: 999px;
      background: #e7f7ff;
      margin-bottom: 10px;
      font-size: 13px;
    }

    .price-highlight strong {
      font-size: 18px;
      color: var(--primary-dark);
    }

    .hero-bullets {
      list-style: none;
      font-size: 13px;
      margin-bottom: 12px;
    }

    .hero-bullets li {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 4px;
    }

    .hero-bullets span.icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: #e4f5ff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--primary-dark);
      flex-shrink: 0;
    }

    .hero-image {
      border-radius: 18px;
      overflow: hidden;
      margin-top: 8px;
    }

    .hero-image-placeholder {
      height: 180px;
      background: linear-gradient(135deg, #c4e0ff, #e7f0ff);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1d3557;
      font-weight: 600;
      font-size: 14px;
    }

    .trust-seal {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
      font-size: 11px;
      color: var(--text-soft);
    }

    .trust-icon {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      border: 1px solid #d1e4ff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: var(--primary-dark);
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
      border-radius: 999px;
      background: #0097b2;
      color: #ffffff;
      font-size: 15px;
      font-weight: 600;
      border: none;
      outline: none;
      cursor: pointer;
      text-decoration: none;
      width: 100%;
      box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
      margin-top: 4px;
      transition: background 0.3s, transform 0.2s;
    }

    .btn-primary:hover, .btn-primary:active {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 14px;
      border-radius: 999px;
      background: #eff4ff;
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 500;
      border: none;
      outline: none;
      cursor: pointer;
      text-decoration: none;
      width: 100%;
      margin-top: 8px;
      transition: background 0.3s;
    }

    .btn-secondary:hover {
      background: #e0e8ff;
    }

    .section-title {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .section-subtitle {
      font-size: 12px;
      color: var(--text-soft);
      margin-bottom: 10px;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .benefit-card {
      background: #f5f7ff;
      border-radius: 14px;
      padding: 10px;
      font-size: 12px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .benefit-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    .benefit-icon {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: var(--primary-dark);
    }

    .benefit-title {
      font-weight: 600;
      font-size: 16px;
    }

    .benefit-text {
      color: var(--text-soft);
      font-size: 14px;
    }

    .price-tag {
      font-size: 26px;
      font-weight: 800;
      color: var(--primary-dark);
      margin-bottom: 4px;
    }

    .price-caption {
      font-size: 13px;
      color: var(--text-soft);
      margin-bottom: 8px;
    }

    .includes-list {
      list-style: none;
      font-size: 12px;
      margin-bottom: 10px;
    }

    .includes-list li {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 4px;
    }

    .includes-list span.icon {
      width: 16px;
      height: 16px;
      border-radius: 4px;
      background: #e5fbf3;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--accent);
      flex-shrink: 0;
    }

    .urgency {
      margin-top: 6px;
      font-size: 11px;
      color: var(--danger);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .urgency-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--danger);
      animation: pulse 1.6s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.6); opacity: 0.4; }
      100% { transform: scale(1); opacity: 1; }
    }

    .hotel-gallery {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 6px;
      margin-top: 6px;
    }

    .hotel-card {
      flex: 0 0 70%;
      background: #eef3ff;
      /*border-radius: 18px;*/
      /*padding: 10px;*/
      font-size: 11px;
    }

    .hotel-image-placeholder {
      height: auto;
      border-radius: 4px;
      background: linear-gradient(135deg, #bddbff, #e3ecff);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      color: #1d3557;
      font-size: 11px;
    }

    .hotel-caption {
      font-size: 15px;
      color: var(--text-soft);
      line-height: 1.1;
    padding: 2px;
    }

    .route-wrapper {
      display: flex;
      gap: 12px;
    }

    .route-line {
      position: relative;
      width: 22px;
      display: flex;
      justify-content: center;
    }

    .route-line-inner {
      position: relative;
      width: 4px;
      background: #dbeafe;
      border-radius: 999px;
    }

    .route-line-inner::after {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--primary);
      transform: translate(-50%, 0);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
    }

    .route-steps {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .route-step {
      background: #f5f7ff;
      border-radius: 14px;
      padding: 8px 10px;
      font-size: 12px;
    }

    .route-step-title {
      font-weight: 600;
      margin-bottom: 3px;
    }

    .route-step-sub {
      font-size: 11px;
      color: var(--text-soft);
    }

    .ba-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: 8px;
    }

    .ba-card {
      background: #f5f7ff;
      border-radius: 14px;
      padding: 8px;
      font-size: 11px;
    }

    .ba-image-placeholder {
      height: 100px;
      border-radius: 10px;
      background: linear-gradient(135deg, #d1d5db, #e5e7eb);
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      color: #374151;
      font-size: 11px;
    }

    .review-carousel {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 6px;
      margin-top: 4px;
    }

    .review-card {
      flex: 0 0 80%;
      background: #f5f7ff;
      border-radius: 18px;
      padding: 10px;
      font-size: 11px;
    }

    .stars {
      color: #f59e0b;
      font-size: 11px;
      margin-bottom: 4px;
    }

    .review-text {
      color: var(--text-main);
      margin-bottom: 4px;
    }

    .review-author {
      color: var(--text-soft);
      font-size: 10px;
    }

    .faq-item {
      border-radius: 14px;
      background: #f5f7ff;
      margin-bottom: 8px;
      overflow: hidden;
      transition: background 0.3s;
    }

    .faq-item:hover {
      background: #eef2ff;
    }

    .faq-header {
      padding: 10px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      cursor: pointer;
    }

    .faq-q {
      font-weight: 600;
    }

    .faq-toggle {
      font-size: 16px;
      color: var(--primary-dark);
      margin-left: 10px;
      transition: transform 0.3s;
    }

    .faq-body {
      padding: 0 12px 8px;
      font-size: 11px;
      color: var(--text-soft);
      display: none;
    }

    .faq-item.open .faq-body {
      display: block;
    }

    .faq-item.open .faq-toggle {
      transform: rotate(45deg);
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 10px;
      font-size: 12px;
    }

    .form-group label {
      font-weight: 500;
    }

    .form-group input {
      border-radius: 10px;
      border: 1px solid #d1d5db;
      padding: 9px 10px;
      font-size: 13px;
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .form-group input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    }

    .form-hint {
      font-size: 11px;
      color: var(--text-soft);
      margin-top: 4px;
    }

    .final-cta {
      text-align: center;
      font-size: 14px;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .final-sub {
      text-align: center;
      font-size: 11px;
      color: var(--text-soft);
      margin-bottom: 10px;
    }

    .sticky-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 10px 12px 14px;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
      backdrop-filter: blur(12px);
      z-index: 50;
    }

    .sticky-inner {
      max-width: 480px;
      margin: 0 auto;
    }

    .sticky-label {
      font-size: 11px;
      color: #e5e7eb;
      margin-bottom: 4px;
    }

    .btn-sticky {
      width: 100%;
      border-radius: 999px;
      padding: 11px 14px;
      background: var(--accent);
      color: #ffffff;
      font-size: 14px;
      font-weight: 600;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-decoration: none;
      box-shadow: 0 12px 25px rgba(34, 197, 94, 0.35);
      transition: background 0.3s, transform 0.2s;
    }

    .btn-sticky:hover {
      background: #1ea97c;
      transform: translateY(-2px);
    }

    .btn-sticky span.icon {
      font-size: 16px;
    }

    /* Desktop Styles - Responsive Design */
    @media (min-width: 768px) {
      body {
        background: radial-gradient(circle at top left, #dbeafe, #f9fafb);
        padding: 20px;
        min-height: 100vh;
      }

      .page-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 0px 100px;
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-template-areas: 
          "hero hero"
          "why price"
          "hotel price"
          "route results"
          "reviews reviews"
          "faq form";
        gap: 20px;
        grid-auto-flow: dense;
      }

      /* Position each section in the grid */
      #hero { grid-area: hero; }
      #why { grid-area: why; }
      #price { grid-area: price; }
      #hotel { grid-area: hotel; }
      #route { grid-area: route; }
      #results { grid-area: results; }
      #reviews { grid-area: reviews; }
      #faq { grid-area: faq; }
      #lead-form { grid-area: form; }

      /* Adjustments for specific sections on desktop */
      .card {
        padding: 24px;
        margin-bottom: 0;
        transition: transform 0.3s, box-shadow 0.3s;
      }

      .card:hover {
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
      }

      /* Hero Section */
      .hero {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 30px;
        align-items: start;
      }

      .hero-content {
        order: 1;
      }

      .hero-visual {
        order: 2;
      }

      .hero-title {
        font-size: 28px;
      }

      .hero-subtitle {
        font-size: 16px;
      }

      .hero-bullets {
        font-size: 14px;
      }

      .hero-image-placeholder {
        height: 250px;
        font-size: 16px;
      }

      /* Benefits Grid */
      .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
      }

      .benefit-card {
        padding: 15px;
        font-size: 13px;
      }

      .benefit-title {
        font-size: 16px;
      }

      .benefit-text {
        font-size: 14px;
      }

      /* Price Section - Sticky on desktop */
      #price {
        position: sticky;
        top: 108px;
        height: fit-content;
        align-self: start;
      }

      .price-tag {
        font-size: 32px;
      }

      /* Hotel Gallery */
      .hotel-gallery {
        overflow-x: visible;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
      }

      .hotel-card {
        flex: 1;
      }

      .hotel-image-placeholder {
        height: auto;
       
      }

      /* Route Section */
      .route-wrapper {
        gap: 20px;
      }

      .route-step {
        padding: 12px 15px;
        font-size: 13px;
      }

      .route-step-title {
        font-size: 14px;
      }

      /* Before/After Grid */
      .ba-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
      }

      .ba-image-placeholder {
        height: 150px;
      }

      /* Reviews Carousel */
      .review-carousel {
        overflow-x: visible;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
      }

      .review-card {
        flex: 1;
      }

      /* FAQ Section */
      .faq-header {
        padding: 15px 20px;
        font-size: 14px;
      }

      .faq-body {
        font-size: 13px;
      }

      /* Form Section */
      .form-group label {
        font-size: 13px;
      }

      .form-group input {
        padding: 12px 15px;
        font-size: 14px;
      }

      /* Buttons */
      .btn-primary, .btn-secondary {
        width: auto;
        min-width: 200px;
        display: inline-flex;
      }

      .hero .btn-primary, .hero .btn-secondary {
        width: 44%;
      }

      /* Section Titles */
      .section-title {
        font-size: 30px;
      }

      .section-subtitle {
        font-size: 14px;
      }

      /* Badges */
      .badge {
        font-size: 12px;
        padding: 6px 12px;
      }

      /* Sticky Bar */
      .sticky-bar {
        display: none; /* Hide sticky bar on desktop */
      }
    }

    /* Large Desktop Screens */
    @media (min-width: 1200px) {
      .page-wrapper {
        grid-template-columns: 3fr 1fr;
        grid-template-areas: 
          "hero hero"
          "why price"
          "hotel price"
          "route results"
          "hotel2 results"
          "reviews reviews"
          "faq faq"
          "form form";
        gap: 20px;
        grid-auto-flow: dense;
      }

      /* Add new grid area for the second hotel section */
  #hotel2 { grid-area: hotel2; }
  

      .hero-title {
        font-size: 32px;
      }

      .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .hotel-image-placeholder {
        height: auto;
      }
    }

    /* Medium Tablet Screens */
    @media (min-width: 520px) and (max-width: 767px) {
      .page-wrapper {
        max-width: 100%;
        padding: 20px;
        margin-top: 0;
        margin-bottom: 90px;
      }

      .card {
        padding: 20px;
      }

      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-title {
        font-size: 24px;
      }

      .hero-image-placeholder {
        height: 200px;
      }
    }

    /* Fix for scroll behavior on desktop */
    @media (min-width: 768px) {
      html {
        scroll-behavior: smooth;
      }
    }

/* ==========================================================
   OLD HEADER STYLE – Exact clone
========================================================== */
.afd-old-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    display: flex;
    justify-content: center;
}

.afd-old-header__box {
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0px 1px 13px 0px rgba(0, 0, 0, 0.17);
}

.afd-old-header__logo {
    height: 43px;
    display: block;
    object-fit: cover;
}

.afd-old-header__btn {
    background-color: #0097b2;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 1em;
    letter-spacing: 0px;
    word-spacing: 0em;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0097b2;
    border-radius: 100px 100px 100px 100px;
    padding: 16px 45px 16px 45px;
    transition: all .3s;
    text-align: center;
}

.afd-old-header__btn:hover {
    background-color: #02010100;
    color: #048484;
}

/* Responsive */

@media (max-width: 1024px) {
    .afd-old-header__box {
        max-width: 96%;
    }

}

@media (max-width: 768px) {
    .afd-old-header__btn {
        font-size: 14px;
        padding: 10px 22px;
    }

    .afd-hero {
        padding: 0px 10px 10px;
    }

    .afd-old-header__logo {
        height: 30px;
    }

}



.hero-highlight {
    background: linear-gradient(120deg, #1d4ed8, #0ea5e9, #22c55e);
    -webkit-background-clip: text;
    color: transparent;
}

.flag-icon {
    width: 15px;
    height: auto;
    vertical-align: middle;
}


.leftpromo{
  font-size: 23px!important;
}



/*New css for new model form */
/* Text input styling (already in your CSS, just confirming) */
.form-group input {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 9px 10px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Textarea styling */
.form-group textarea {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 9px 10px;
  font-size: 13px;
  outline: none;
  width: 100%;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Radio group styling */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  padding: 6px 0;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: var(--primary);
  background-color: var(--primary);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
}

.radio-option:hover .radio-custom {
  border-color: var(--primary);
}

/* Desktop adjustments */
@media (min-width: 768px) {
  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .radio-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .radio-option {
    padding: 8px 12px;
    background: #f5f7ff;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .radio-option:hover {
    background: #eef2ff;
  }
}




/*Footer css*/
/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #034551, #0097b2);
  color: white;
  padding: 30px 20px;
  margin-top: 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
}

.footer-description strong {
  color: #fff;
  font-weight: 600;
}

.footer-menu h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: white;
  font-weight: 600;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: white;
  text-decoration: underline;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.footer-note {
  font-size: 12px;
  opacity: 0.7;
  max-width: 800px;
  margin: 10px auto 0;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .footer {
    padding: 25px 15px;
  }
  
  .footer-logo {
    height: 35px;
  }
  
  .footer-description {
    font-size: 13px;
  }
  
  .footer-menu,
  .footer-contact {
    margin-bottom: 25px;
  }
  
  .footer-bottom p {
    font-size: 12px;
  }
}

/* Desktop Layout */
@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


