    :root {
      --ocean: #0077b6;
      --deep: #023e8a;
      --coral: #f03e3e;
      --gold: #ffd166;
      --green: #2f9e44;
      --purple: #7048e8;
      --amber: #f59f00;
      --dark: #0f172a;
      --muted: #64748b;
      --lb: #e0f2fe;
      --bg: #f8fafc;
      --bdr: #e2e8f0;
    }
a{
  text-decoration: none;
  color: inherit;
}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Georgia, 'Times New Roman', serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ========== NAV ========== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 40px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 119, 182, 0.1);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo-icon {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--ocean), var(--deep));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
    }

    .nav-logo-text {
      font-size: 1.1rem;
      font-weight: bold;
      color: var(--deep);
      letter-spacing: -0.3px;
    }

    .nav-logo-text span {
      color: var(--coral);
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--dark);
      font-family: Arial, sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: color 0.2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--coral);
      transform: scaleX(0);
      transition: transform 0.25s;
    }

    .nav-links a:hover {
      color: var(--ocean);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-phone-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--ocean);
      color: white;
      padding: 10px 22px;
      border-radius: 50px;
      text-decoration: none;
      font-family: Arial, sans-serif;
      font-size:1rem;
      font-weight: 700;
      transition: all 0.25s;
      box-shadow: 0 4px 14px rgba(0, 119, 182, 0.35);
    }

    .nav-phone-btn:hover {
      background: var(--deep);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0, 119, 182, 0.45);
    }

    /* ========== HERO ========== */
    .hero {
      min-height: 100vh;
      background: linear-gradient(160deg, #023e8a 0%, #0077b6 45%, #00b4d8 100%);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 52px;
    }

    .hero-waves {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 200px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%23ffffff' d='M0,100 C240,180 480,20 720,100 C960,180 1200,20 1440,100 L1440,200 L0,200 Z'/%3E%3C/svg%3E") no-repeat bottom;
      background-size: cover;
    }

    .hero-bg-circles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
    }

    .hero-circle-1 {
      width: 600px;
      height: 600px;
      top: -200px;
      right: -100px;
    }

    .hero-circle-2 {
      width: 300px;
      height: 300px;
      bottom: 100px;
      left: -80px;
    }

    .hero-circle-3 {
      width: 200px;
      height: 200px;
      top: 100px;
      right: 200px;
      background: rgba(255, 154, 86, 0.15);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 40px;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: white;
      padding: 6px 16px;
      border-radius: 50px;
      font-family: Arial, sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .hero-tag::before {
      content: '✈';
      font-size: 12px;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 5vw, 3rem);
      color: white;
      line-height: 1.15;
      margin-bottom: 22px;
      font-weight: bold;
    }

    .hero h1 em {
      color: #ffd166;
      font-style: normal;
    }

    .hero-desc {
      font-family: Arial, sans-serif;
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 36px;
      /* max-width: 580px; */
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-main {
      background: var(--coral);
      color: white;
      padding: 15px 36px;
      border-radius: 50px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 6px 20px rgba(255, 107, 107, 0.45);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-main:hover {
      background: #e55555;
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(255, 107, 107, 0.55);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.5);
      color: white;
      padding: 14px 32px;
      border-radius: 50px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      backdrop-filter: blur(6px);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.28);
      border-color: white;
    }

    /* Hero Search Card */
    .hero-search-card {
      background: white;
      border-radius: 24px;
      padding: 34px;
      box-shadow: 0 30px 80px rgba(2, 62, 138, 0.25);
    }

    .search-title {
      font-size: 1.25rem;
      font-weight: bold;
      color: var(--deep);
      margin-bottom: 6px;
    }

    .search-sub {
      font-family: Arial, sans-serif;
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 24px;
    }

    .trip-type {
      display: flex;
      gap: 8px;
      margin-bottom: 20px;
    }

    .trip-btn {
      flex: 1;
      padding: 9px;
      border-radius: 8px;
      border: 2px solid #e5e7eb;
      font-family: Arial, sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      text-align: center;
      transition: all 0.2s;
      background: white;
      color: var(--muted);
    }

    .trip-btn.active {
      border-color: var(--ocean);
      background: var(--light-blue);
      color: var(--ocean);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }

    .form-row.single {
      grid-template-columns: 1fr;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .form-field label {
      font-family: Arial, sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--muted);
    }

    .form-field input,
    .form-field select {
      padding: 12px 14px;
      border: 2px solid #e5e7eb;
      border-radius: 10px;
      font-family: Arial, sans-serif;
      font-size: 0.92rem;
      color: var(--dark);
      outline: none;
      transition: border 0.2s;
      background: white;
      cursor: pointer;
    }

    .form-field input:focus,
    .form-field select:focus {
      border-color: var(--ocean);
    }

    .search-submit {
      width: 100%;
      margin-top: 16px;
      padding: 15px;
      background: linear-gradient(135deg, var(--ocean), var(--deep));
      color: white;
      border: none;
      border-radius: 12px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.25s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: 0 6px 20px rgba(0, 119, 182, 0.35);
    }

    .search-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(0, 119, 182, 0.45);
    }

    /* ========== TRUST BAR ========== */
    .trust-bar {
      background: var(--sand);
      padding: 24px 40px;
    }

    .trust-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .trust-icon {
      width: 44px;
      height: 44px;
      background: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      flex-shrink: 0;
    }

    .trust-text strong {
      display: block;
      font-family: Arial, sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--deep);
    }

    .trust-text span {
      font-family: Arial, sans-serif;
      font-size: 0.95rem;
      color: var(--muted);
    }

    .trust-divider {
      width: 1px;
      height: 40px;
      background: #d1d5db;
    }

    /* ========== DESTINATIONS ========== */
    .destinations {
      padding: 80px 40px 56px;
      max-width: 1300px;
      margin: 0 auto;
    }

    /* TAG */
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--coral);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-tag::before {
      content: '';
      width: 26px;
      height: 2.5px;
      background: var(--coral);
      border-radius: 2px;
    }

    /* HEAD */
    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 36px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .section-head h2 {
      font-size: clamp(1.85rem, 3vw, 2.75rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--dark);
    }

    .section-head h2 span {
      display: block;
      color: var(--ocean);
    }

    .section-head p {
      font-size: .92rem;
      color: var(--muted);
      margin-top: 7px;
      line-height: 1.55;
      max-width: 440px;
    }

    .view-all {
      font-size: .88rem;
      font-weight: 700;
      color: var(--ocean);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
      transition: gap .2s;
      padding-bottom: 4px;
    }

    .view-all:hover {
      gap: 10px;
    }

    /* GRID */
    .dest-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 18px;
    }

    /* HERO CARD */
    .hero-card {
      position: relative;
      border-radius: var(--r);
      overflow: hidden;
      min-height: 580px;
      cursor: pointer;
      background: #023e8a;
    }

    .hero-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s cubic-bezier(.25, .46, .45, .94);
      display: block;
    }

    .hero-card:hover img {
      transform: scale(1.07);
    }

    .hero-grad {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(2, 62, 138, 0.98) 0%,
        rgba(2, 40, 100, 0.75) 45%,
        rgba(0, 0, 0, 0.1) 75%
      );
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px 28px 24px;
      transition: background .35s;
    }

    .hero-card:hover .hero-grad {
      background: linear-gradient(to top, rgba(2, 62, 138, 1) 0%, rgba(2, 40, 100, .65) 42%, rgba(0, 0, 0, .12) 65%);
    }

    .badge-popular {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--coral);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .3px;
      padding: 6px 13px;
      border-radius: 50px;
    }

    .fav-btn {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 3;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, .92);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .88rem;
      cursor: pointer;
      transition: transform .2s, background .2s;
    }

    .fav-btn:hover {
      transform: scale(1.15);
      background: #fff;
    }

    .hero-label {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 2.2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .hero-name {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.7rem, 2.6vw, 2.3rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 5px;
      line-height: 1.1;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 20px;
    }

    .tag-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(255, 255, 255, .14);
      border: 1px solid rgba(255, 255, 255, .22);
      color: rgba(255, 255, 255, .9);
      font-size: .73rem;
      font-weight: 600;
      padding: 5px 11px;
      border-radius: 50px;
      backdrop-filter: blur(4px);
    }

    .hero-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .price-block .from-txt {
      display: block;
      font-size: .75rem;
      color: rgba(255, 255, 255, .6);
      margin-bottom: 1px;
    }

    .price-block .big-price {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -.5px;
    }

    .price-block .pp {
      font-size: .78rem;
      color: rgba(255, 255, 255, .55);
    }

    .best-tag {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .best-tag .chk {
      width: 24px;
      height: 24px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .65rem;
      flex-shrink: 0;
    }

    .best-tag strong {
      color: #fff;
      display: block;
      font-size: .8rem;
      line-height: 1.2;
    }

    .best-tag span {
      color: rgba(255, 255, 255, .55);
      font-size: .7rem;
    }

    .book-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--coral);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-family: 'Outfit', sans-serif;
      font-size: .9rem;
      font-weight: 700;
      padding: 13px 22px;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, transform .2s;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .book-btn:hover {
      background: #c0392b;
      transform: translateY(-1px);
    }

    .btn-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
    }

    .call-hint {
      font-size: .67rem;
      color: rgba(255, 255, 255, .45);
    }

    /* RIGHT COL */
    .col-right {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    /* SMALL CARD */
    .sm-card {
      position: relative;
      border-radius: var(--r);
      overflow: hidden;
      min-height: 178px;
      flex: 1;
      cursor: pointer;
      background: #023e8a;
      border-radius: 5px;
    }

    .sm-card img {
      border-radius: 5px;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s cubic-bezier(.25, .46, .45, .94);
    }

    .sm-card:hover img {
      transform: scale(1.07);
    }

    .sm-grad {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.15) 100%
      );
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 13px 16px 14px;
      z-index: 2;
      transition: background .35s;
    }
    .sm-grad > * {
      position: relative;
      z-index: 3;
    }
    .sm-card img {
      z-index: 1;
    }

    .kona .sm-grad {
      background: linear-gradient(to top, rgba(25, 5, 55, .95) 0%, rgba(60, 15, 100, .35) 50%, rgba(0, 0, 0, .05) 70%);
    }

    .sm-card:hover .sm-grad {
      background: linear-gradient(to top, rgba(2, 62, 138, .97) 0%, rgba(0, 0, 0, .18) 50%);
    }

    .kona:hover .sm-grad {
      background: linear-gradient(to top, rgba(25, 5, 55, 1) 0%, rgba(60, 15, 100, .55) 50%, rgba(0, 0, 0, .1) 70%);
    }

    .sm-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .sm-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: #fff;
      font-size: .68rem;
      font-weight: 700;
      padding: 5px 11px;
      border-radius: 50px;
    }

    .sm-badge.hot {
      background: var(--amber);
    }

    .sm-badge.nature {
      background: var(--green);
    }

    .sm-badge.unique {
      background: var(--purple);
    }

    .sm-fav {
      width: 30px;
      height: 30px;
      background: rgba(255, 255, 255, .88);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .78rem;
      cursor: pointer;
      transition: transform .2s;
    }

    .sm-fav:hover {
      transform: scale(1.15);
    }

    .sm-label {
      font-size: .63rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--bdr);
      margin-bottom: 2px;
      opacity: 0.95;
    }

    .sm-name {
      font-family: 'Fraunces', serif;
      text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
      font-size: 1.25rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 1px;
      line-height: 1.1;
    }

    .sm-desc {
      font-size: .74rem;
       text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      color: rgba(255, 255, 255, .65);
      margin-bottom: 9px;
    }

    .sm-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 10px;
    }

    .sm-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(255, 255, 255, .14);
      border: 1px solid rgba(255, 255, 255, .2);
      color: rgba(255, 255, 255, .88);
      font-size: .67rem;
      font-weight: 600;
      padding: 4px 9px;
      border-radius: 50px;
    }

    .sm-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
    }

    .sm-price .sm-from {
      font-size: .7rem;
      color: rgba(255, 255, 255, .55);
      display: block;
    }

    .sm-price .sm-big {
      font-size: 1.55rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
    }

    .sm-price .sm-pp {
      font-size: .7rem;
      color: rgba(255, 255, 255, .5);
    }

    .sm-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 3px;
    }

    .sm-guarantee {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 3px;
    }

    .sm-guarantee .gc {
      width: 18px;
      height: 18px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .58rem;
      flex-shrink: 0;
    }

    .sm-guarantee strong {
      color: #fff;
      font-size: .74rem;
      display: block;
      line-height: 1.2;
    }

    .sm-guarantee span {
      color: rgba(255, 255, 255, .5);
      font-size: .66rem;
    }

    .book-sm {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--coral);
      color: #fff;
      border: none;
      border-radius: 9px;
      font-family: 'Outfit', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      padding: 9px 16px;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, transform .2s;
      white-space: nowrap;
    }

    .book-sm:hover {
      background: #c0392b;
      transform: translateY(-1px);
    }

    .sm-call {
      font-size: .63rem;
      color: rgba(255, 255, 255, .4);
      text-align: right;
      display: block;
    }

    .sm-name,
    .sm-desc,
    .sm-label,
    .sm-tag {
      color: #fff;
      text-shadow: 0 3px 12px rgba(0,0,0,0.6);
    }
    /* ── RESPONSIVE ── */
    @media(max-width:1060px) {
      .destinations {
        padding: 60px 28px 44px;
      }

      .dest-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-card {
        min-height: 500px;
      }
    }

    @media(max-width:768px) {
      .destinations {
        padding: 48px 20px 36px;
      }

      .section-head h2 {
        font-size: 1.65rem;
      }

      .section-head p {
        display: none;
      }

      .dest-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .hero-card {
        min-height: 430px;
      }

      .col-right {
        gap: 14px;
      }

      .sm-card {
        min-height: 200px;
      }
    }

    @media(max-width:540px) {
      .destinations {
        padding: 36px 14px 28px;
      }

      .section-tag {
        font-size: .64rem;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }

      .section-head h2 {
        font-size: 1.5rem;
      }

      .hero-card {
        min-height: 400px;
      }

      .hero-grad {
        padding: 20px 18px 18px;
      }

      .hero-name {
        font-size: 1.5rem;
      }

      .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .best-tag {
        display: none;
      }

      .book-btn {
        width: 100%;
        justify-content: center;
      }

      .call-hint {
        display: none;
      }

      .sm-card {
        min-height: 185px;
      }

      .sm-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      .sm-right {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        align-items: flex-start;
      }

      .sm-guarantee {
        display: none;
      }

      .book-sm {
        flex: 1;
        justify-content: center;
      }
    }

    @media(max-width:380px) {
      .sm-tags {
        display: none;
      }
    }

    /* ========== FEATURES ========== */
    .features {
      background: linear-gradient(135deg, var(--deep) 0%, #0077b6 100%);
      padding: 90px 40px;
      position: relative;
      overflow: hidden;
    }

    .features::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      pointer-events: none;
    }

    .features-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .features-inner .section-tag {
      color: #ffd166;
    }

    .features-inner .section-tag::before {
      background: #ffd166;
    }

    .features-inner h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      color: white;
      margin-bottom: 60px;
      max-width: 520px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 34px 28px;
      transition: all 0.3s;
      backdrop-filter: blur(8px);
    }

    .feature-card:hover {
      background: rgba(255, 255, 255, 0.14);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.909);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      font-size: 1.15rem;
      color: white;
      margin-bottom: 12px;
    }

    .feature-card p {
      font-family: Arial, sans-serif;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.7;
    }

    /* ========== ABOUT / STORY ========== */
    .about {
      padding: 100px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-img-main {
      width: 100%;
      border-radius: 24px;
      overflow: hidden;
      /* aspect-ratio: 4/3; */
      background: linear-gradient(135deg, #023e8a 0%, #00b4d8 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
    }

    .about-img-main img {
      width: 100%;
    }

    .about-float-card {
      position: absolute;
      background: white;
      border-radius: 16px;
      padding: 16px 20px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    .float-card-1 {
      bottom: -24px;
      right: -24px;
    }

    .float-card-2 {
      top: -24px;
      left: -24px;
    }

    .float-card-title {
      font-family: Arial, sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .float-card-val {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--deep);
    }

    .float-card-val span {
      font-size: 0.85rem;
      color: var(--muted);
      font-family: Arial, sans-serif;
      font-weight: normal;
    }

    .float-stars {
      color: var(--sunset);
      font-size: 1rem;
    }

    .about-content h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 1.2;
      margin-bottom: 22px;
    }

    .about-content h2 span {
      color: var(--ocean);
    }

    .about-content p {
      font-family: Arial, sans-serif;
      font-size: 0.97rem;
      color: #4b5563;
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .about-checklist {
      list-style: none;
      margin: 28px 0 36px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .about-checklist li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: Arial, sans-serif;
      font-size: 0.92rem;
      color: var(--dark);
      font-weight: 600;
    }

    .check-icon {
      width: 26px;
      height: 26px;
      background: var(--light-blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ocean);
      font-size: 13px;
      flex-shrink: 0;
      font-weight: bold;
    }

    .btn-ocean {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--ocean);
      color: white;
      padding: 14px 34px;
      border-radius: 50px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: 0.92rem;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 6px 20px rgba(0, 119, 182, 0.3);
    }

    .btn-ocean:hover {
      background: var(--deep);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(0, 119, 182, 0.4);
    }

    /* ========== HOW IT WORKS ========== */
    .how-it-works {
      background: var(--sand);
      padding: 90px 40px;
    }

    .how-inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .how-inner h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 14px;
    }

    .how-inner h2 span {
      color: var(--ocean);
    }

    .how-sub {
      font-family: Arial, sans-serif;
      color: var(--muted);
      font-size: 1rem;
      max-width: 520px;
      margin: 0 auto 64px;
      line-height: 1.7;
    }

    .steps-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .steps-row::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(12.5%);
      right: calc(12.5%);
      height: 2px;
      background: linear-gradient(90deg, var(--ocean), var(--coral));
      z-index: 0;
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    .step-num {
      width: 64px;
      height: 64px;
      background: white;
      border: 3px solid var(--ocean);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      font-weight: bold;
      color: var(--ocean);
      margin-bottom: 22px;
      box-shadow: 0 6px 20px rgba(0, 119, 182, 0.15);
      transition: all 0.3s;
    }

    .step:hover .step-num {
      background: var(--ocean);
      color: white;
      transform: scale(1.1);
    }

    .step h4 {
      font-size: 1rem;
      margin-bottom: 10px;
      color: var(--dark);
    }

    .step p {
      font-family: Arial, sans-serif;
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ========== DEALS ========== */
    .deals {
      padding: 90px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .deals-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 50px;
    }

    .deal-card {
      border: 2px solid #e5e7eb;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.3s;
      background: white;
    }

    .deal-card:hover {
      border-color: var(--ocean);
      box-shadow: 0 16px 44px rgba(0, 119, 182, 0.14);
      transform: translateY(-5px);
    }

    .deal-img {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative;
      overflow: hidden;
    }

    .deal-content {
      padding: 22px;
    }

    .deal-route {
      font-family: Arial, sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .deal-name {
      font-size: 1.18rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: var(--dark);
    }

    .deal-details {
      font-family: Arial, sans-serif;
      font-size: 0.84rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }

    .deal-details span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .deal-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid #f3f4f6;
    }

    .deal-price {
      font-family: Arial, sans-serif;
    }

    .deal-price .from {
      font-size: 0.78rem;
      color: var(--muted);
      display: block;
    }

    .deal-price .amount {
      font-size: 1.6rem;
      font-weight: bold;
      color: var(--deep);
    }

    .deal-price .amount sup {
      font-size: 0.9rem;
    }

    .btn-book-deal {
      background: var(--ocean);
      color: var(--bdr);
      padding: 10px 20px;
      border-radius: 50px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-book-deal:hover {
      background: var(--ocean);
      color: white;
    }

    /* ========== CTA STRIP ========== */
    .cta-strip {
      background: linear-gradient(90deg, #ff6b6b 0%, #ff9f43 100%);
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-strip::before {
      content: '✈ ✈ ✈';
      position: absolute;
      font-size: 8rem;
      opacity: 0.07;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      letter-spacing: 30px;
    }

    .cta-strip-inner {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-strip h2 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: white;
      margin-bottom: 14px;
    }

    .cta-strip p {
      font-family: Arial, sans-serif;
      color: rgba(255, 255, 255, 0.88);
      font-size: 1rem;
      margin-bottom: 32px;
      line-height: 1.65;
    }

    .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-white {
      background: white;
      color: var(--coral);
      padding: 14px 34px;
      border-radius: 50px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    }

    .btn-outline-white {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.7);
      color: white;
      padding: 13px 32px;
      border-radius: 50px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.25s;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: white;
    }
.faq-section {
  padding: 80px 20px;
  background: #f6f9ff;
}

.faq-container {
  max-width: 1000px;
  margin: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 20px;
}

.faq-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #023e8a;
}

.faq-header h2 span {
  color: #ff4d4d;
}

.faq-header p {
  color: #666;
  margin-top: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* FAQ ITEM */
.faq-item {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}

/* QUESTION */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: #ff4d4d;
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 20px;
  color: #555;
  line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 18px;
}

.faq-item.active .faq-question::after {
  content: "-";
}

/* RESPONSIVE */
@media(max-width: 600px) {
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }
}
    /* ========== FOOTER ========== */
    footer {
      background: var(--dark);
      padding: 70px 40px 30px;
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-top {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 50px;
    }

    .footer-brand h3 {
      color: white;
      font-size: 1.3rem;
      margin-bottom: 14px;
    }

    .footer-brand h3 span {
      color: var(--coral);
    }

    .footer-brand p {
      font-family: Arial, sans-serif;
      font-size: 0.88rem;
      line-height: 1.75;
      margin-bottom: 22px;
    }

    .footer-phone-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: white;
      padding: 12px 20px;
      border-radius: 50px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: 0.92rem;
      text-decoration: none;
      transition: all 0.25s;
    }

    .footer-phone-link:hover {
      background: var(--coral);
      border-color: var(--coral);
    }

    .footer-col h4 {
      color: white;
      font-size: 0.95rem;
      margin-bottom: 20px;
      font-family: Arial, sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .footer-col ul a {
      font-family: Arial, sans-serif;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul a:hover {
      color: white;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-family: Arial, sans-serif;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.4);
    }

    .footer-disclaimer {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 18px;
      font-family: Arial, sans-serif;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.662);
      line-height: 1.65;
    }

    /* ========== MOBILE CALL BTN ========== */
    .mobile-call {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--coral);
      color: white;
      padding: 16px;
      text-align: center;
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: 1rem;
      z-index: 2000;
      text-decoration: none;
      letter-spacing: 0.5px;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1.2fr 1fr;
        gap: 30px;
      }

      .dest-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .dest-card-large {
        grid-row: auto;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .features-grid {
        grid-template-columns: 1fr 1fr;
      }

      .steps-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }

      .steps-row::before {
        display: none;
      }
    }

    @media (max-width: 768px) {
      nav {
        padding: 0 20px;
      }

      .nav-links {
        display: none;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero-search-card {
        padding: 20px;
        border-radius: 16px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .about-inner {
        grid-template-columns: 1fr;
      }

      .about-visual {
        order: -1;
      }

      .float-card-1 {
        bottom: -12px;
        right: -10px;
      }

      .float-card-2 {
        top: -12px;
        left: -10px;
      }

      .deals-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .dest-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .steps-row {
        grid-template-columns: 1fr;
      }

      .trust-bar {
        padding: 20px;
      }

      .trust-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }

      .trust-divider {
        display: none;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .mobile-call {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
      }

      footer {
        padding-bottom: 70px;
      }

      .deals {
        padding: 60px 20px;
      }

      .about {
        padding: 60px 20px;
      }
    }