   :root {
      --blue: #1a3bb8;
      --blue-dark: #f06f1a;
      --gold: #e8b84b;
      --snow: #f4f7ff;
      --text: #1a1d2e;
      --muted: #6b7280;
      --border: #e2e8f0;
        --blue: #1a33cc;
      --text: #1a1d2e;
      --muted: #6b7280;
      --border: #d1d5db;
      --snow: #f4f7ff;
    }
a.navbar-brand img {
    width: 75px;
}

a.nav-link {
    font-weight: 600 !important;
}
    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #fff;
      color: var(--text);
      overflow-x: hidden;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ TOPBAR Ã¢â€â‚¬Ã¢â€â‚¬ */
    .topbar {
      background: #111827;
      color: #d1d5db;
      font-size: 0.8rem;
      padding: 8px 0;
    }
    .topbar a { color: #d1d5db; text-decoration: none; }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ NAV Ã¢â€â‚¬Ã¢â€â‚¬ */
    .main-nav {
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky; top: 0; z-index: 100;
      padding: 14px 0;
    }
    .main-nav .brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--blue);
      text-decoration: none;
      letter-spacing: -0.5px;
    }
    .main-nav .nav-link {
      color: var(--text);
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 0 14px;
    }
    .main-nav .nav-link:hover { color: var(--blue); }


    .hero-e {
    width: 100%;
    height: 900px;
    background: url("./img/Himachal_11zon.webp") no-repeat center center !important;
    background-size: cover;
}

/* Mobile View */
@media (max-width: 768px) {
    .hero-e {
        height: 500px;
        background: url("./img/pf.png") no-repeat center center !important;
        background-size: cover;
    }
}
    /* Ã¢â€â‚¬Ã¢â€â‚¬ HERO Ã¢â€â‚¬Ã¢â€â‚¬ */
    /* .hero {
      position: relative;
      height: 92vh;
      min-height: 560px;
      background: url('img/Agra-Main-Itinierary-image-16_11zon-1.webp') center/cover no-repeat;
      display: flex;
      align-items: flex-end;
      padding-bottom: 80px;
    } */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,15,40,0.92) 0%, rgba(10,15,40,0.3) 60%, transparent 100%);
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-badge {
      display: inline-block;
      background: var(--gold);
      color: #111;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 2px;
      margin-bottom: 16px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 900;
      color: #fff;
      line-height: 1;
      letter-spacing: -1px;
      margin-bottom: 12px;
    }
    .hero h1 span { color: var(--gold); }
    .hero p {
      color: rgba(255,255,255,0.8);
      font-size: 1.1rem;
      margin-bottom: 28px;
    }
    .btn-book {
      background: var(--blue-dark);
      color: #fff;
      border: none;
      padding: 14px 40px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      transition: all .25s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-book:hover { background: var(--gold); color: #111; transform: translateY(-2px); }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ HIGHLIGHTS BAR Ã¢â€â‚¬Ã¢â€â‚¬ */
.highlights {
    background: #013b6f;
    border-bottom: 7px solid #ff8b42;
    padding: 11px 0;
    color: white !important;
}
    .highlight-item { text-align: center; }
    .highlight-item .icon {
      font-size: 2rem;
      color: #ffffff;
      margin-bottom: 6px;
    }
  .highlight-item .label {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
    .highlight-item .value {
      font-size: 1.3rem;
      font-weight: 700;
      color: #ffffff;
    }
.icon img {
    width: 51px;
}
    /* Ã¢â€â‚¬Ã¢â€â‚¬ TABS Ã¢â€â‚¬Ã¢â€â‚¬ */
    .tab-bar {
      background: #fff;
      border-bottom: 2px solid var(--border);
      padding: 0;
      position: sticky;
      top: 57px;
      z-index: 90;
    }
    .tab-bar .nav-link {
      color: var(--muted);
      font-weight: 600;
      font-size: 0.88rem;
      padding: 16px 24px;
      border: none;
      border-bottom: 3px solid transparent;
      border-radius: 0;
      margin-bottom: -2px;
      letter-spacing: 0.3px;
    }
    .tab-bar .nav-link.active {
      color: var(--blue);
      border-bottom-color: var(--blue);
      background: transparent;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ SECTION HEADINGS Ã¢â€â‚¬Ã¢â€â‚¬ */
    .sec-heading {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }
    .sec-underline {
      width: 40px; height: 3px;
      background: var(--blue);
      border-radius: 2px;
      margin-bottom: 24px;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ DAY ACCORDION Ã¢â€â‚¬Ã¢â€â‚¬ */
  .day-accordion .accordion-button {
    background: #debf7442;
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px !important;
}
 .day-accordion .accordion-button:not(.collapsed) {
    background: #ffe0b6;
    color: #000000;
    box-shadow: none;
}
    .day-accordion .accordion-button::after {
      filter: invert(1);
    }
    .day-accordion .accordion-item {
      border: none;
      margin-bottom: 8px;
    }
    .day-accordion .accordion-body {
      background: var(--snow);
      border-radius: 0 0 6px 6px;
      font-size: 0.93rem;
      color: var(--muted);
      line-height: 1.7;
    }
    .day-tag {
      background: var(--gold);
      color: #111;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 3px;
      margin-right: 8px;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ PACKAGE COST CARD Ã¢â€â‚¬Ã¢â€â‚¬ */
.cost-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    padding: 25px !important;
    box-shadow: 0 4px 24px rgb(26 59 184 / 21%);
}
  .cost-card .cost-header {
    background: #ffbb5d73;
    color: #000000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 14px 20px;
}
    .cost-card .cost-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      font-size: 0.93rem;
    }
    .cost-card .cost-row:last-child { border-bottom: none; }
    .cost-card .cost-row .amount { font-weight: 700; color: var(--blue); }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ CONTACT CARD Ã¢â€â‚¬Ã¢â€â‚¬ */
    .contact-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
      box-shadow: 0 4px 24px rgba(26,59,184,0.08);
    }
    .contact-card .form-control {
      border: none;
      border-bottom: 1.5px solid var(--border);
      border-radius: 0;
      padding: 10px 0;
      font-size: 0.9rem;
      outline: none;
      box-shadow: none;
    }
    .contact-card .form-control:focus {
      border-bottom-color: var(--blue);
      box-shadow: none;
    }
    .contact-card label {
      font-size: 0.78rem;
      color: var(--muted);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .btn-submit {
      background: var(--blue);
      color: #fff;
      width: 100%;
      padding: 13px;
      border: none;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      transition: background .2s;
      margin-top: 10px;
    }
    .btn-submit:hover { background: var(--blue-dark); }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ NOTES Ã¢â€â‚¬Ã¢â€â‚¬ */
    .notes-card {
      background: var(--snow);
      border-left: 4px solid var(--blue);
      border-radius: 0 8px 8px 0;
      padding: 24px 28px;
    }
    .notes-card ul { padding-left: 0; list-style: none; }
    .notes-card ul li {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.7;
      padding: 6px 0 6px 20px;
      position: relative;
      border-bottom: 1px solid var(--border);
    }
    .notes-card ul li:last-child { border-bottom: none; }
    .notes-card ul li::before {
      content: '*';
      color: var(--blue);
      font-weight: 700;
      position: absolute; left: 0;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ POLICY TABS Ã¢â€â‚¬Ã¢â€â‚¬ */
    .policy-tabs .nav-link {
      background: #fff;
     
      color: var(--text);
      font-weight: 600;
      font-size: 0.85rem;
      border-radius: 6px 6px 0 0;
      margin-right: 4px;
    }
    .policy-tabs .nav-link.active {
      background: var(--blue-dark);
      color: #fff;
      
    }
    .policy-content {
      background: var(--snow);
      border: 1px solid var(--border);
      border-radius: 0 8px 8px 8px;
      padding: 24px 28px;
    }
    .policy-content p, .policy-content li {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.8;
    }
    .policy-content strong { color: var(--text); }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ TRUST STRIP Ã¢â€â‚¬Ã¢â€â‚¬ */
.trust-strip {
    /* background: #fff588; */
    padding: 24px 0;
    color: #000000;
}
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 0.9rem;
    }
    .trust-item i { font-size: 1.4rem; color: var(--gold); }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬ */
    footer {
      background: #0d1124;
      color: #9ca3af;
    }
    footer .footer-links a {
      color: #9ca3af;
      text-decoration: none;
      font-size: 0.83rem;
      margin: 0 12px;
    }
    footer .footer-links a:hover { color: var(--gold); }
    footer .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px; height: 38px;
      border: 1px solid #374151;
      border-radius: 50%;
      color: #9ca3af;
      font-size: 1rem;
      text-decoration: none;
      transition: all .2s;
    }
    footer .social-icons a:hover { border-color: var(--gold); color: var(--gold); }
    footer .copyright {
      background: #060a16;
      font-size: 0.78rem;
      padding: 14px 0;
      text-align: center;
      color: #6b7280;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ WHATSAPP FAB Ã¢â€â‚¬Ã¢â€â‚¬ */
    .whatsapp-fab {
      position: fixed; bottom: 24px; right: 24px; z-index: 999;
      background: #25d366;
      color: #fff;
      width: 52px; height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 16px rgba(37,211,102,0.4);
      text-decoration: none;
      transition: transform .2s;
    }
    .whatsapp-fab:hover { transform: scale(1.1); color: #fff; }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ ANIMATIONS Ã¢â€â‚¬Ã¢â€â‚¬ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp 0.7s ease both; }
    .fade-up-2 { animation: fadeUp 0.7s 0.15s ease both; }
    .fade-up-3 { animation: fadeUp 0.7s 0.3s ease both; }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ MONTH FILTER BUTTONS Ã¢â€â‚¬Ã¢â€â‚¬ */
    .month-btn {
      border: 1.5px solid var(--border);
      background: #fff;
      color: var(--text);
      font-weight: 600;
      font-size: 0.88rem;
      padding: 8px 22px;
      border-radius: 6px;
      cursor: pointer;
      transition: all .2s;
    }
    .month-btn:hover { border-color: var(--blue); color: var(--blue); }
    .month-btn.active {
      background: var(--blue);
      color: #fff;
      border-color: var(--blue);
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ DATE SLOT Ã¢â€â‚¬Ã¢â€â‚¬ */
    .date-slot {
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 14px 20px;
      font-size: 0.9rem;
      color: var(--text);
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      transition: border-color .2s, box-shadow .2s;
    }
    .date-slot:hover { border-color: var(--blue); box-shadow: 0 2px 10px rgba(26,59,184,.1); }
    .date-slot.selected { border-color: var(--blue); background: var(--snow); }
    .date-slot .seats-badge {
      font-size: 0.78rem;
      color: #16a34a;
      font-weight: 600;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      padding: 3px 10px;
      border-radius: 20px;
    }
    .date-slot .seats-badge.low { color: #dc2626; background: #fef2f2; border-color: #fecaca; }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ BOOK NOW OUTLINE Ã¢â€â‚¬Ã¢â€â‚¬ */
    .btn-book-outline {
      display: inline-block;
      border: 2px solid var(--blue);
      color: var(--blue);
      background: #fff;
      padding: 11px 36px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.92rem;
      text-decoration: none;
      transition: all .2s;
    }
    .btn-book-outline:hover { background: var(--blue); color: #fff; }

    @media (max-width: 768px) {
      .hero { height: 70vh; padding-bottom: 50px; }
      .hero h1 { font-size: 2.8rem; }
      .tab-bar { overflow-x: auto; white-space: nowrap; top: 56px; }
    }










    /* ================================== */
    
 
    /* Ã¢â€â‚¬Ã¢â€â‚¬ MAIN Ã¢â€â‚¬Ã¢â€â‚¬ */
    main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 16px 60px;
    }
    .wizard-wrap { width: 100%; max-width: 900px; }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ STEP TITLE Ã¢â€â‚¬Ã¢â€â‚¬ */
    .step-title {
      text-align: center;
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 28px;
      letter-spacing: -0.3px;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ CARD Ã¢â€â‚¬Ã¢â€â‚¬ */
    .wizard-card {
      border: 2px solid var(--blue);
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 24px rgba(26,51,204,0.08);
    }
    .wizard-card-header {
      background: var(--blue-dark);
      color: #fff;
      text-align: center;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 16px 24px;
      letter-spacing: 0.3px;
    }
    .wizard-card-body {
      padding: 32px 40px 28px;
      min-height: 220px;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ STEP 1 Ã¢â‚¬â€œ BATCH DATES Ã¢â€â‚¬Ã¢â€â‚¬ */
    .month-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .month-nav-btn {
      background: rgba(255,255,255,0.2);
      border: none;
      color: #fff;
      width: 34px; height: 34px;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .month-nav-btn:hover { background: rgba(255,255,255,0.35); }
    .month-nav-label { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.3px; }

    .date-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      padding: 32px 0 16px;
    }
    .date-pill {
      border: 1.5px solid var(--border);
      background: #fff;
      color: var(--text);
      font-size: 0.88rem;
      font-weight: 500;
      padding: 10px 20px;
      border-radius: 40px;
      cursor: pointer;
      transition: all .2s;
    }
    .date-pill:hover { border-color: var(--blue); color: var(--blue); }
    .date-pill.selected {
      border-color: var(--blue);
      background: var(--blue);
      color: #fff;
    }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ STEP 2 Ã¢â‚¬â€œ ROOM SHARING Ã¢â€â‚¬Ã¢â€â‚¬ */
    .room-table { width: 100%; border-collapse: collapse; }
    .room-table thead tr {
      background: #f3f4f6;
      border-bottom: 2px solid var(--border);
    }
    .room-table thead th {
      padding: 12px 16px;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .room-table tbody tr {
      border-bottom: 1px solid var(--border);
    }
    .room-table tbody tr:last-child { border-bottom: none; }
    .room-table tbody td {
      padding: 16px 16px;
      font-size: 0.93rem;
      vertical-align: middle;
    }
    .room-table tbody td:first-child { font-weight: 700; }
    .room-table tbody td.price { color: var(--text); font-weight: 600; }

    .qty-control {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
    }
    .qty-btn {
      background: none;
      border: 1.5px solid var(--border);
      color: var(--text);
      width: 28px; height: 28px;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      transition: all .15s;
    }
    .qty-btn:hover { border-color: var(--blue); color: var(--blue); }
    .qty-val { min-width: 20px; text-align: center; font-weight: 600; }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ STEP 3 Ã¢â‚¬â€œ USER DETAILS Ã¢â€â‚¬Ã¢â€â‚¬ */
    .details-form { max-width: 440px; margin: 0 auto; }
    .details-form .field-group { margin-bottom: 20px; }
    .details-form label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
    }
    .details-form label span.req { color: #dc2626; margin-left: 2px; }
    .details-form input {
      width: 100%;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      padding: 10px 14px;
      font-size: 0.92rem;
      font-family: inherit;
      outline: none;
      transition: border-color .2s;
    }
    .details-form input:focus { border-color: var(--blue); }
    .details-form input.error { border-color: #dc2626; }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ STEP 4 Ã¢â‚¬â€œ REVIEW Ã¢â€â‚¬Ã¢â€â‚¬ */
    .review-trip-title {
      font-size: 1.05rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }
    .review-meta {
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .review-meta span {
      font-size: 0.88rem;
      color: var(--muted);
      display: flex; align-items: center; gap: 8px;
    }
    .review-meta span i { color: var(--blue); font-size: 0.9rem; }

    .payment-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
    .payment-table thead tr {
      background: var(--blue);
      color: #fff;
    }
    .payment-table thead th {
      padding: 11px 14px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.3px;
    }
    .payment-table tbody tr { border-bottom: 1px solid var(--border); }
    .payment-table tbody td {
      padding: 12px 14px;
      font-size: 0.9rem;
    }
    .payment-table tfoot tr { background: #f3f4f6; }
    .payment-table tfoot td {
      padding: 12px 14px;
      font-weight: 700;
      font-size: 0.95rem;
    }

    .info-box {
      background: #f9fafb;
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 12px 16px;
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 8px;
      line-height: 1.6;
    }
    .info-box.highlight { color: var(--blue); font-weight: 600; border-color: #c7d2fe; background: #eef2ff; }
    .info-box strong { color: var(--text); }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ STEPPER DOTS Ã¢â€â‚¬Ã¢â€â‚¬ */
    .stepper-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 28px;
      padding: 0 4px;
    }
    .dots { display: flex; gap: 10px; }
    .dot {
      width: 14px; height: 14px;
      border-radius: 50%;
      border: 2px solid #9ca3af;
      background: #fff;
      cursor: pointer;
      transition: all .2s;
    }
    .dot.active { border-color: var(--blue); background: var(--blue); }
    .dot.done { border-color: var(--blue); background: #c7d2fe; }

    .btn-nav {
      padding: 10px 28px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
      transition: all .2s;
    }
    .btn-back {
      background: var(--blue);
      color: #fff;
    }
    .btn-back:hover { background: var(--blue-dark); }
    .btn-next {
      background: #6b7280;
      color: #fff;
    }
    .btn-next:hover { background: #4b5563; }
    .btn-next.enabled { background: var(--blue); }
    .btn-next.enabled:hover { background: var(--blue-dark); }

    /* WHATSAPP / CALL */
    .contact-btns { display: flex; justify-content: center; gap: 12px; margin-bottom: 24px; }
    .btn-wa {
      background: #25d366; color: #fff;
      border: none; border-radius: 6px;
      padding: 10px 24px; font-weight: 600; font-size: 0.88rem;
      cursor: pointer; display: flex; align-items: center; gap: 8px;
      text-decoration: none; transition: opacity .2s;
    }
    .btn-wa:hover { opacity: .85; color: #fff; }
    .btn-call {
      background: var(--blue); color: #fff;
      border: none; border-radius: 6px;
      padding: 10px 24px; font-weight: 600; font-size: 0.88rem;
      cursor: pointer; display: flex; align-items: center; gap: 8px;
      text-decoration: none; transition: opacity .2s;
    }
    .btn-call:hover { opacity: .85; color: #fff; }

    /* Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬ */
footer {
    background: #000000;
    color: rgba(255,255,255,0.85);
    padding: 28px 0 0;
}
    footer .footer-links {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    footer .footer-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.85rem; font-weight: 500; }
    footer .footer-links a:hover { color: #fff; }
    footer .footer-social {
      display: flex; justify-content: center; gap: 14px;
      padding: 20px 0 16px;
    }
    footer .footer-social a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 38px; height: 38px;
      border: 1.5px solid rgba(255,255,255,0.4);
      border-radius: 50%;
      color: rgba(255,255,255,0.85);
      font-size: 1rem;
      text-decoration: none;
      transition: all .2s;
    }
    footer .footer-social a:hover { border-color: #fff; color: #fff; }
    footer .footer-address {
      text-align: center;
      font-size: 0.83rem;
      color: rgba(255,255,255,0.75);
      padding-bottom: 20px;
      line-height: 1.9;
    }
    footer .footer-address a { color: rgba(255,255,255,0.9); text-decoration: none; }
    footer .copyright {
      background: rgba(0,0,0,0.25);
      text-align: center;
      padding: 12px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
    }

    @media (max-width: 600px) {
      .wizard-card-body { padding: 20px 16px 20px; }
      .date-pills { gap: 8px; }
      .date-pill { font-size: 0.8rem; padding: 8px 14px; }
      .room-table thead th, .room-table tbody td { padding: 10px 8px; font-size: 0.82rem; }
    }
















    /* banner */
     
/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   ROOT
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
:root{
  --orange:#e8560a;
  --orange-m:#f47820;
  --orange-l:#fef0e8;
  --cream:#fdf6f0;
  --cream-d:#f5e8dc;
  --text:#1a1a1a;
  --muted:#7a6a5a;
  --illus:rgba(232,86,10,0.13);
  --illus-stroke:rgba(232,86,10,0.2);
}
 
/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   BANNER
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.hs-banner{
  position:relative;
  min-height:100svh;
  width:100%;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:var(--cream);
}
 
/* radial warm glow */
.hs-glow{
  position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(244,120,32,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(232,86,10,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 80%, rgba(232,86,10,0.05) 0%, transparent 60%);
}
 
/* subtle dot grid */
.hs-grid{
  position:absolute;inset:0;z-index:0;pointer-events:none;
  background-image:radial-gradient(circle, rgba(232,86,10,0.07) 1px, transparent 1px);
  background-size:36px 36px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
 

 
/* Ã¢â€â‚¬Ã¢â€â‚¬ CONTENT Ã¢â€â‚¬Ã¢â€â‚¬ */
.hs-content{
  position:relative;z-index:5;
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 0px;
 
}
 
/* Pill */
.hs-pill{
  display:inline-flex;align-items:center;gap:8px;
  border:1.5px solid rgba(232,86,10,0.25);
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(8px);
  color:var(--muted);
  font-size:12px;font-weight:500;
  padding:7px 20px;border-radius:30px;
  letter-spacing:0.5px;
  margin-bottom:28px;
  animation:fade-up 0.7s 0.1s ease both;
}
.hs-pill-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--orange-m);
  animation:blink-dot 2s ease-in-out infinite;
}
@keyframes blink-dot{0%,100%{opacity:1}50%{opacity:0.3}}
 
/* Headline */
.hs-h1{
  font-family:'Fraunces',serif;
  font-size:clamp(32px,6.5vw,78px);
  font-weight:900;
  color: #ffffff;
  line-height:1.07;
  margin-bottom:18px;
  max-width:800px;
  animation:fade-up 0.7s 0.22s ease both;
}
.hs-h1 .brand{
  color:var(--orange);
  font-style:italic;
  position:relative;
  display:inline-block;
}
.hs-h1 .brand::after{
  content:'';
  position:absolute;
  left:4px;right:4px;bottom:-5px;height:4px;
  background:linear-gradient(90deg,var(--orange),var(--orange-m),#f4c060);
  border-radius:2px;
  transform:scaleX(0);transform-origin:left;
  animation:grow-line 0.7s 1s cubic-bezier(0.34,1.4,0.64,1) both;
}
@keyframes grow-line{to{transform:scaleX(1)}}
 
/* Sub */
.hs-sub{
  font-size:clamp(14px,2vw,18px);
  color: #ffffff;
  line-height:1.75;
  max-width:560px;
  margin:0 auto 36px;
  animation:fade-up 0.7s 0.36s ease both;
}
 
/* Buttons */
.hs-btns{
  display:flex;flex-wrap:wrap;gap:14px;
  justify-content:center;
  animation:fade-up 0.7s 0.5s ease both;
  margin-bottom:52px;
}
.hs-btn-p{
  background:var(--orange);color:#fff;
  padding:15px 36px;border-radius:50px;
  font-size:15px;font-weight:700;text-decoration:none;
  display:inline-flex;align-items:center;gap:10px;
  border:none;cursor:pointer;
  box-shadow:0 6px 28px rgba(232,86,10,0.35),0 2px 8px rgba(232,86,10,0.2);
  transition:all 0.25s;
}
.hs-btn-p:hover{transform:translateY(-3px);box-shadow:0 12px 36px rgba(232,86,10,0.45);}
.hs-btn-o{
  background:transparent;color:var(--orange);
  padding:14px 34px;border-radius:50px;
  font-size:15px;font-weight:700;text-decoration:none;
  display:inline-flex;align-items:center;gap:10px;
  border:2px solid var(--orange);
  transition:all 0.2s;
}
.hs-btn-o:hover{background:var(--orange-l);}
 
/* Trust badges */
.hs-trust{
  display:flex;flex-wrap:wrap;gap:16px;
  justify-content:center;
  animation:fade-up 0.7s 0.65s ease both;
}
.hs-trust-item{
  display:flex;
  align-items:center;
  gap:7px;
  font-size:13px;
  font-weight:500;
  color: #ffffff;
}
.hs-trust-item svg{flex-shrink:0;}
.hs-trust-sep{width:4px;height:4px;border-radius:50%;background:rgba(232,86,10,0.25);}
 
/* Typing text */
.hs-typing{
  display:inline;
  color:var(--orange);
  font-weight:700;
}
 

 
/* Floating cards */
.hs-float-left{
  position:absolute;left:calc(50% - 480px);top:38%;z-index:6;
  background:rgba(255,255,255,0.85);backdrop-filter:blur(12px);
  border:1px solid rgba(232,86,10,0.15);border-radius:16px;
  padding:14px 18px;display:flex;align-items:center;gap:12px;
  box-shadow:0 8px 32px rgba(232,86,10,0.1);
  animation:float-l 5s ease-in-out infinite, fade-up 0.8s 0.8s ease both;
}
@keyframes float-l{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.hs-float-right{
  position:absolute;right:calc(50% - 480px);top:45%;z-index:6;
  background:rgba(255,255,255,0.85);backdrop-filter:blur(12px);
  border:1px solid rgba(232,86,10,0.15);border-radius:16px;
  padding:14px 18px;display:flex;align-items:center;gap:12px;
  box-shadow:0 8px 32px rgba(232,86,10,0.1);
  animation:float-r 6s 1s ease-in-out infinite, fade-up 0.8s 1s ease both;
}
@keyframes float-r{0%,100%{transform:translateY(0)}50%{transform:translateY(8px)}}
.hs-fcard-ico{
  width:38px;height:38px;border-radius:10px;
  background:var(--orange-l);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;flex-shrink:0;
}
.hs-fcard-t1{font-size:13px;font-weight:700;color:var(--text);}
.hs-fcard-t2{font-size:11px;color:var(--muted);}
 
/* Stars rating */
.hs-stars{color:var(--orange-m);font-size:12px;letter-spacing:1px;}
 
/* Ã¢â€â‚¬Ã¢â€â‚¬ BOTTOM DESTINATIONS STRIP Ã¢â€â‚¬Ã¢â€â‚¬ */
.hs-dest-strip{
  position:relative;z-index:5;
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(16px);
  border-top:1px solid rgba(232,86,10,0.1);
  padding:20px 24px;
  display:flex;gap:0;overflow-x:auto;scrollbar-width:none;
}
.hs-dest-strip::-webkit-scrollbar{display:none;}
.hs-dest-item{
  display:flex;flex-direction:column;align-items:center;gap:6px;
  padding:0 28px;border-right:1px solid rgba(232,86,10,0.1);
  flex-shrink:0;cursor:pointer;transition:all 0.2s;
}
.hs-dest-item:last-child{border:none;}
.hs-dest-item:hover .hs-dest-ico{background:var(--orange);color:#fff;}
.hs-dest-ico{
  width:44px;height:44px;border-radius:12px;
  background:var(--orange-l);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;transition:all 0.2s;
}
.hs-dest-name{font-size:12px;font-weight:700;color:var(--text);}
.hs-dest-count{font-size:10px;color:var(--muted);}
 
/* Ã¢â€â‚¬Ã¢â€â‚¬ ANIMATIONS Ã¢â€â‚¬Ã¢â€â‚¬ */
@keyframes fade-up{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

@media(max-width:1100px){
  .hs-float-left,.hs-float-right{display:none;}
  .hs-scroll{display:none;}
}
@media(max-width:768px){
  .hs-content{padding:70px 0px;}
  .hs-btns{flex-direction:column;align-items:center;}
  .hs-btn-p,.hs-btn-o{width:100%;max-width:300px;justify-content:center;}
  .hs-trust{gap:10px;}
  .hs-dest-item{padding:0 18px;}
  .hs-dest-strip{justify-content:flex-start;}
  .hs-banner {
   
    min-height: 70svh !important;
   
}
}
@media(max-width:480px){
  .hs-h1{font-size:32px;}
  .hs-landmarks svg{transform:scale(0.7);transform-origin:bottom;}
}

.fa-light, .fal {
    font-family: "Font Awesome 6 Pro" !important;
    font-weight: 300;
}
.package-wrapper6 .content .meta-content .location {
    color: var(--color-primary);
    font-weight: 500;
}

.package-wrapper6 .content .meta-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    margin-bottom: 1px;
}
.premium-card img {
    width: 100%;
    transition: 0.5s;
    height: 320px !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: 0.5s;
}
.premium-card .title a {
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}
.day {
    font-weight: 600;
}

a{
  text-decoration: none !important;
}
.rts-breadcrumb-area.two {
    padding: 120px 0;
}
h1.title {
    color: white;
}