  :root {
    --navy: #003c97;
    --navy-mid: #102040;
    --navy-light: #1a3a6b;
    --red: #e8192c;
    --red-dark: #c0121f;
    --red-light: #ff3347;
    --gold: #f5a623;
    --white: #ffffff;
    --off-white: #f7f8fc;
    --gray-100: #eef0f5;
    --gray-200: #d8dce8;
    --gray-400: #9099b0;
    --gray-600: #525c74;
    --gray-800: #2c3349;
    --font-display: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 2px 12px rgba(10,22,40,0.08);
    --shadow-md: 0 8px 32px rgba(10,22,40,0.14);
    --shadow-lg: 0 20px 60px rgba(10,22,40,0.22);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── TOP BAR ─── */
  .topbar {
    background: #003c97;
    color: var(--gray-200);
    font-size: 12.5px;
    padding: 7px 0;
  }
  .topbar .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .topbar a { color: var(--gray-200); text-decoration: none; }
  .topbar a:hover { color: var(--red-light); }
  .topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
  .topbar-icon { display: flex; align-items: center; gap: 5px; }
  .social-links { display: flex; gap: 10px; }
  .social-links a {
    width: 26px; height: 26px;
    background: var(--navy-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    transition: background var(--transition);
  }
  .social-links a:hover { background: var(--red); }

  /* ─── NAVBAR ─── */
  nav {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(10,22,40,0.09);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-icon {
    width: 46px; height: 46px;
    background: var(--red);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.5px;
    box-shadow: 0 4px 14px rgba(232,25,44,0.35);
  }
  .logo-text { line-height: 1.15; }
  .logo-text strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
  }
  .logo-text span {
    font-size: 11px;
    color: var(--gray-400);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a {
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--red);
    background: rgba(232,25,44,0.06);
  }
  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .btn-outline {
    padding: 9px 20px;
    border: 1.5px solid var(--navy-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
  }
  .btn-outline:hover { background: var(--navy); color: white; }
  .btn-primary {
    padding: 9px 22px;
    background: var(--red);
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(232,25,44,0.28);
  }
  .btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232,25,44,0.38);
  }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    width: 24px; height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80');
    background-size: cover;
    background-position: center 40%;
  }
  .hero-overlay {
    position: absolute; inset: 0;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,25,44,0.18);
    border: 1px solid rgba(232,25,44,0.4);
    color: #ff8089;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--red-light); border-radius: 50%; }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--red-light);
    display: block;
  }
  .hero p {
    color: rgba(255,255,255,0.75);
    font-size: clamp(15px, 2vw, 18px);
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
  .btn-hero-primary {
    padding: 16px 36px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 6px 24px rgba(232,25,44,0.4);
    text-decoration: none;
  }
  .btn-hero-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,25,44,0.5); }
  .btn-hero-secondary {
    padding: 16px 36px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
  }
  .btn-hero-secondary:hover { background: #f11212; border-color: rgba(255,255,255,0.5); }
  /* ─── HERO SEARCH ─── */
  .hero-search {
      width: 100%;
      max-width: 960px;
      background: var(--white);
      border-radius: 24px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
      overflow: hidden;
      transition: all var(--transition);
    }

    .search-header {
      background: var(--navy);
      padding: 6px 24px 0 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .search-tabs {
      display: flex;
      gap: 8px;
    }

    .search-tab {
      padding: 14px 28px;
      background: transparent;
      border: none;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.65);
      cursor: pointer;
      transition: all var(--transition);
      position: relative;
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .search-tab i {
      font-size: 15px;
    }

    .search-tab.active {
      color: var(--white);
      background: rgba(232, 25, 44, 0.15);
      border-radius: 12px 12px 0 0;
    }

    .search-tab.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--red);
      border-radius: 3px 3px 0 0;
    }

    .search-tab:hover:not(.active) {
      color: var(--white);
      background: rgba(255, 255, 255, 0.08);
    }

    .tab-panel-wrapper {
      padding: 32px 32px 36px;
      background: var(--white);
    }

    .tab-panel {
      display: none;
      animation: fadeInUp 0.35s ease;
    }

    .tab-panel.active {
      display: block;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .search-fields {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      align-items: end;
      margin-bottom: 28px;
    }

    .field-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .field-group label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: var(--navy);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .field-group label i {
      color: var(--red);
      font-size: 12px;
    }

    .field-group input,
    .field-group select {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--gray-200);
      border-radius: 14px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--gray-800);
      background: var(--white);
      transition: all var(--transition);
      outline: none;
    }

    .field-group input::placeholder {
      color: var(--gray-400);
    }

    .field-group input:focus,
    .field-group select:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(232, 25, 44, 0.12);
    }

    .btn-search {
      width: 100%;
      padding: 13px 20px;
      background: var(--red);
      color: white;
      border: none;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: all var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 4px 14px rgba(232, 25, 44, 0.3);
    }

    .btn-search:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(232, 25, 44, 0.4);
    }

    .search-footer-note {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--gray-100);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--gray-400);
    }

    .search-footer-note span i {
      margin-right: 6px;
      color: var(--red);
    }

    /* RESPONSIVE FOR SEARCH */
    @media (max-width: 900px) {
      .search-fields {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }

      .search-tab {
        padding: 12px 18px;
        font-size: 12px;
      }

      .tab-panel-wrapper {
        padding: 24px;
      }
    }

    @media (max-width: 640px) {
      .search-fields {
        grid-template-columns: 1fr;
      }

      .search-tabs {
        flex-wrap: wrap;
        gap: 4px;
      }

      .search-tab {
        padding: 10px 16px;
      }
    }

  /* ─── AUTH PAGES ─── */
  .auth-section {
    background: var(--off-white);
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
  }
  .auth-card {
    background: var(--white);
    width: 100%;
    max-width: 480px;
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
  }
  .auth-header { margin-bottom: 32px; }
  .auth-header .logo-icon { margin: 0 auto 20px; width: 64px; height: 64px; font-size: 24px; }
  .auth-header h2 { font-size: 28px; color: var(--navy); font-weight: 800; margin-bottom: 8px; }
  .auth-header p { color: var(--gray-400); font-size: 15px; }

  .auth-form { text-align: left; }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
    margin-bottom: 8px;
  }
  .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition);
    outline: none;
  }
  .form-control:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(232,25,44,0.1); }
  
  .auth-footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--gray-100); color: var(--gray-400); font-size: 14px; }
  .auth-footer a { color: var(--red); font-weight: 700; text-decoration: none; }
  .auth-footer a:hover { text-decoration: underline; }

  /* ─── GRID UTILS ─── */
  .grid-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; }
  .card { background: var(--white); border-radius: 18px; padding: 30px; box-shadow: var(--shadow-sm); }
  .badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
  .bg-light { background: var(--gray-100); color: var(--gray-600); }
  .bg-success { background: #e6fffa; color: #047857; }
  .bg-warning { background: #fffbeb; color: #b45309; }
  .bg-info { background: #eff6ff; color: #1d4ed8; }
  
  .table-responsive { overflow-x: auto; }
  table { width: 100%; border-collapse: collapse; margin-top: 20px; }
  th { text-align: left; padding: 12px; font-size: 13px; color: var(--gray-400); text-transform: uppercase; border-bottom: 1px solid var(--gray-100); }
  td { padding: 16px 12px; font-size: 14px; color: var(--gray-800); border-bottom: 1px solid var(--gray-100); }

  .profile-tabs { display: flex; gap: 20px; border-bottom: 1px solid var(--gray-100); margin-bottom: 30px; }
  .profile-tab { padding: 12px 0; font-size: 15px; font-weight: 600; color: var(--gray-400); background: none; border: none; cursor: pointer; position: relative; }
  .profile-tab.active { color: var(--navy); }
  .profile-tab.active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 3px; background: var(--red); border-radius: 3px 3px 0 0; }

  @media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
  }

  /* ─── SECTION COMMON ─── */
  section { padding: 90px 24px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 14px;
    justify-content: center;
  }
  .section-label::before, .section-label::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1.5px;
    background: var(--red);
    opacity: 0.4;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .section-sub {
    text-align: center;
    color: var(--gray-400);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 52px;
    font-weight: 300;
  }

  /* ─── LOAD MORE ─── */
  .load-more-wrap {
    text-align: center;
    margin-top: 40px;
  }
  .btn-load-more {
    padding: 14px 40px;
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-load-more:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .btn-load-more.hidden { display: none; }
  .package-card.hidden-card { display: none; }
  .package-card.revealed { display: block; }

  /* ─── PACKAGES ─── */
  .packages-section { background: var(--off-white); }
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
  }
  .package-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
  }
  .package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  .package-img {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  .package-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .package-card:hover .package-img img { transform: scale(1.07); }
  .package-badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .badge-sale { background: var(--red); color: white; }
  .badge-new { background: var(--gold); color: var(--navy); }
  .badge-popular { background: var(--navy); color: white; }
  .package-duration {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(10,22,40,0.75);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(6px);
  }
  .package-body { padding: 20px; }
  .package-location {
    font-size: 11px;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: flex; align-items: center; gap: 4px;
  }
  .package-body h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .package-features {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .pkg-feat {
    font-size: 11.5px;
    color: var(--gray-400);
    display: flex; align-items: center; gap: 4px;
  }
  .package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
  }
  .price-tag { line-height: 1.1; }
  .price-from { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; }
  .price-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--red);
    font-family: var(--font-display);
  }
  .price-amount sup { font-size: 13px; font-weight: 700; }
  .btn-view {
    padding: 9px 18px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
  }
  .btn-view:hover { background: var(--red); }

  /* ─── WHY CHOOSE US ─── */
  .why-section {
    background: #003c97;
    position: relative;
    overflow: hidden;
  }
  .why-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,25,44,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }
  .why-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(26,58,107,0.8) 0%, transparent 70%);
    border-radius: 50%;
  }
  .why-section .section-title { color: white; }
  .why-section .section-sub { color: rgba(255,255,255,0.55); }
  .why-section .section-label { color: var(--red-light); }
  .why-section .section-label::before, .why-section .section-label::after { background: var(--red-light); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
    position: relative; z-index: 1;
  }
  .why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
  }
  .why-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(232,25,44,0.4);
    transform: translateY(-4px);
  }
  .why-icon {
    width: 62px; height: 62px;
    background: rgba(232,25,44,0.15);
    border: 1.5px solid rgba(232,25,44,0.3);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    transition: all var(--transition);
  }
  .why-card:hover .why-icon {
    background: rgba(232,25,44,0.25);
    border-color: var(--red);
  }
  .why-num {
    font-size: 11px;
    font-weight: 700;
    color: rgba(232,25,44,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .why-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
  }
  .why-card p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7; }

  /* ─── PARTNER SECTION ─── */
  .partner-section {
    background: white;
    padding: 60px 24px;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
  }
  .partner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .partner-left {}
  .partner-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
  }
  .partner-label::before { content: ''; width: 24px; height: 1.5px; background: var(--red); }
  .partner-left h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .partner-left p { color: var(--gray-600); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
  .partner-features { display: flex; flex-direction: column; gap: 12px; }
  .pf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-800);
    font-weight: 500;
  }
  .pf-check {
    width: 22px; height: 22px;
    background: rgba(232,25,44,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 11px;
    flex-shrink: 0;
  }
  .partner-right {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .partner-right::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(232,25,44,0.2) 0%, transparent 70%);
  }
  .mx-logo {
    width: 90px; height: 90px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
  }
  .partner-right h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .partner-right p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }

  /* ─── MODERN PAGE HEADER ─── */
  .modern-page-header {
    background: var(--off-white);
    padding: 40px 24px 60px;
    border-bottom: 1px solid var(--gray-100);
  }
  .modern-page-header .container { max-width: 1200px; margin: 0 auto; }
  .modern-page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .modern-page-header .breadcrumb a { color: var(--navy); text-decoration: none; border-bottom: 1px solid transparent; transition: all var(--transition); }
  .modern-page-header .breadcrumb a:hover { border-bottom-color: var(--navy); }
  .modern-page-header .breadcrumb span { color: var(--gray-400); }
  .modern-page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .modern-page-header p {
    color: var(--gray-600);
    font-size: 16px;
    max-width: 600px;
    line-height: 1.6;
  }

  /* ─── NEWS ─── */
  .news-section { background: white; padding: 80px 24px; }
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
  }
  .news-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
  }
  .news-card:hover { transform: translateY(-6px); }
  .news-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    margin: 10px;
  }
  .news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .news-card:hover .news-card-img img { transform: scale(1.05); }
  .news-card-category {
    position: absolute;
    bottom: 14px; left: 14px;
    background: var(--red);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .news-card-body { padding: 14px 24px 24px; flex: 1; }
  .news-card-date { font-size: 13px; color: var(--gray-400); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
  .news-card-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .news-card-body p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
  .news-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    transition: gap var(--transition);
  }
  .news-card-more:hover { gap: 10px; }

  /* ─── GALLERY ─── */
  .gallery-section { background: white; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 220px 220px;
    gap: 12px;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(10,22,40,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    font-size: 28px;
    color: white;
  }
  .g1 { grid-column: span 5; grid-row: span 2; }
  .g2 { grid-column: span 4; }
  .g3 { grid-column: span 3; }
  .g4 { grid-column: span 3; }
  .g5 { grid-column: span 4; }

  /* ─── REVIEWS ─── */
  .reviews-section { background: var(--off-white); }
  .rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }
  .rating-big {
    text-align: center;
  }
  .rating-num {
    font-size: 64px;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1;
  }
  .stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; margin: 4px 0; }
  .rating-count { font-size: 13px; color: var(--gray-400); }
  .rating-divider { width: 1px; height: 70px; background: var(--gray-200); }
  .rating-platform { display: flex; align-items: center; gap: 8px; }
  .google-icon {
    width: 36px; height: 36px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: var(--red);
    box-shadow: var(--shadow-sm);
  }
  .btn-review {
    padding: 10px 22px;
    background: #4285F4;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    margin-left: 8px;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  .review-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
  }
  .review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .reviewer-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
  }
  .reviewer-info {}
  .reviewer-name { font-weight: 700; font-size: 14px; color: var(--navy); }
  .review-meta { font-size: 11px; color: var(--gray-400); display: flex; align-items: center; gap: 6px; }
  .review-stars { color: var(--gold); font-size: 13px; }
  .review-text { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 70px 24px 0;
  }
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    margin: 16px 0 24px;
    color: rgba(255,255,255,0.5);
  }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-decoration: none;
    transition: all var(--transition);
  }
  .footer-social a:hover { background: var(--red); color: white; transform: translateY(-2px); }
  .footer-col h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13.5px;
    transition: color var(--transition);
    display: flex; align-items: center; gap: 6px;
  }
  .footer-links a::before { content: '›'; color: var(--red); font-weight: 700; }
  .footer-links a:hover { color: white; }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
  }
  .contact-icon {
    width: 28px; height: 28px;
    background: rgba(232,25,44,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    color: var(--red-light);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.35);
  }
  .footer-bottom a { color: var(--red-light); text-decoration: none; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
  }
  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.25s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.55s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.7s; }

  /* ─── MOBILE NAV ─── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 200;
    flex-direction: column;
    padding: 80px 32px 40px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
  }
  .mobile-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-display);
    transition: color var(--transition);
  }
  .mobile-menu a:hover { color: var(--red-light); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .partner-inner { grid-template-columns: 1fr; gap: 36px; }
    .news-grid { grid-template-columns: 1fr; }
    .news-small { grid-template-columns: 100px 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .gallery-grid { grid-template-rows: 180px 180px; }
  }

  @media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .hero { height: 80vh; }
    .hero-search { padding: 20px 18px 22px; }
    .search-fields { grid-template-columns: 1fr; }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(3, 160px);
    }
    .g1, .g2, .g3, .g4, .g5 { grid-column: span 1; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .topbar .inner { justify-content: center; }
    .why-grid, .packages-grid, .reviews-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 480px) {
    section { padding: 60px 16px; }
    .hero-stats { gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }
