﻿:root {
      --teal-deep:   #075E5E;
      --teal-mid:    #0A8080;
      --teal-light:  #12A3A3;
      --teal-pale:   #E6F5F5;
      --amber:       #F59E0B;
      --amber-dark:  #D97706;
      --navy:        #0D1F2D;
      --navy-mid:    #1B3A52;
      --white:       #FFFFFF;
      --off-white:   #F7FDFB;
      --gray-100:    #F3F4F6;
      --gray-300:    #D1D5DB;
      --gray-500:    #6B7280;
      --gray-700:    #374151;
      --red-cta:     #E53E3E;
      --green-badge: #10B981;
      --shadow-sm:   0 2px 8px rgba(7,94,94,.10);
      --shadow-md:   0 8px 30px rgba(7,94,94,.14);
      --shadow-lg:   0 20px 60px rgba(7,94,94,.18);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }
body.landing-page {
      font-family: 'Cairo', 'Tajawal', sans-serif;
      background: var(--off-white);
      color: var(--navy);
      direction: rtl;
      overflow-x: hidden;
    }

    /* ── STICKY HEADER ── */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--teal-deep);
      box-shadow: 0 2px 12px rgba(0,0,0,.20);
      padding: 0 24px;
    }
    .header-inner {
      max-width: 1100px;
      margin: 0 auto;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .logo-image {
      height: 38px;
      width: auto;
      display: block;
      flex-shrink: 0;
    }
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .logo-text .main { color: #fff; font-weight: 800; font-size: 15px; }
    .logo-text .sub  { color: rgba(255,255,255,.65); font-size: 11px; font-weight: 400; }
    .header-ctas {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .btn-whatsapp {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #25D366;
      color: #fff;
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      transition: filter .2s;
    }
    .btn-whatsapp:hover { filter: brightness(1.08); }
    .btn-call {
      display: flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
      color: #fff;
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      transition: filter .2s;
    }
    .btn-call:hover { filter: brightness(1.08); }
    @media(max-width:480px){
      .logo-text .sub { display: none; }
      .btn-call { display: none; }
    }

    /* ── URGENCY STRIP ── */
    .urgency-strip {
      background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
      color: #fff;
      text-align: center;
      font-weight: 700;
      font-size: 13px;
      padding: 8px 16px;
      letter-spacing: .3px;
      animation: pulse-bg 3s ease-in-out infinite;
    }
    @keyframes pulse-bg {
      0%,100% { opacity: 1; }
      50%      { opacity: .88; }
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--teal-deep) 0%, var(--navy-mid) 60%, var(--navy) 100%);
      position: relative;
      overflow: hidden;
      padding: 56px 24px 64px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 48px;
      align-items: start;
      position: relative;
      z-index: 1;
    }
    @media(max-width:820px){
      .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    }

    .badge-official {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(245,158,11,.18);
      border: 1px solid rgba(245,158,11,.45);
      color: var(--amber);
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .hero h1 {
      color: #fff;
      font-size: clamp(26px, 4.5vw, 42px);
      font-weight: 900;
      line-height: 1.3;
      margin-bottom: 12px;
    }
    .hero h1 span { color: var(--amber); }
    .hero-desc {
      color: rgba(255,255,255,.75);
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 28px;
      max-width: 560px;
    }
    .hero-checks {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 32px;
    }
    .hero-check {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,.90);
      font-size: 15px;
      font-weight: 500;
    }
    .hero-check .chk {
      width: 22px; height: 22px;
      background: var(--green-badge);
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      font-size: 12px;
      color: #fff;
    }
    .hero-img-wrap {
      position: relative;
    }
    .hero-img {
      width: 100%;
      max-width: 360px;
      border-radius: 20px;
      object-fit: cover;
      aspect-ratio: 3/2;
      box-shadow: var(--shadow-lg);
      display: block;
    }
    .hero-img-placeholder {
      width: 100%;
      max-width: 360px;
      aspect-ratio: 3/2;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
      border: 2px dashed rgba(255,255,255,.20);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: rgba(255,255,255,.40);
      font-size: 40px;
    }
    .hero-img-placeholder span { font-size: 14px; }
    .price-pill {
      position: absolute;
      top: -16px;
      left: -16px;
      background: var(--amber);
      color: var(--navy);
      border-radius: 14px;
      padding: 10px 16px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(245,158,11,.40);
      animation: float 3s ease-in-out infinite;
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-6px); }
    }
    .price-pill .from { font-size: 11px; font-weight: 600; }
    .price-pill .amount { font-size: 22px; font-weight: 900; }
    .price-pill .sar { font-size: 12px; font-weight: 600; }

    /* ── BOOKING CARD ── */
    .booking-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      box-shadow: var(--shadow-lg);
      border-top: 4px solid var(--amber);
    }
    .booking-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--teal-deep);
      margin-bottom: 4px;
    }
    .booking-card p {
      font-size: 13px;
      color: var(--gray-500);
      margin-bottom: 20px;
    }
    .form-group {
      margin-bottom: 14px;
    }
    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--gray-700);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--gray-300);
      border-radius: 10px;
      font-family: 'Cairo', sans-serif;
      font-size: 14px;
      color: var(--navy);
      background: #fff;
      direction: rtl;
      transition: border-color .2s, box-shadow .2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--teal-mid);
      box-shadow: 0 0 0 3px rgba(10,128,128,.12);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    @media(max-width:380px) { .form-row { grid-template-columns: 1fr; } }

    .btn-book {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
      color: #fff;
      border: none;
      border-radius: 12px;
      font-family: 'Cairo', sans-serif;
      font-size: 17px;
      font-weight: 800;
      cursor: pointer;
      transition: transform .15s, box-shadow .15s;
      box-shadow: 0 6px 20px rgba(7,94,94,.35);
      margin-top: 4px;
    }
    .btn-book:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(7,94,94,.40);
    }
    .btn-book:active { transform: translateY(0); }
    .form-privacy {
      text-align: center;
      font-size: 11px;
      color: var(--gray-500);
      margin-top: 10px;
    }

    /* ── TRUST BADGES ── */
    .trust-row {
      background: var(--teal-deep);
      padding: 20px 24px;
    }
    .trust-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,.90);
    }
    .trust-icon {
      font-size: 22px;
    }
    .trust-text {
      font-size: 13px;
      font-weight: 600;
    }

    /* ── SECTION WRAPPER ── */
    .section {
      padding: 64px 24px;
    }
    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .section-label {
      display: inline-block;
      background: var(--teal-pale);
      color: var(--teal-mid);
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: .5px;
    }
    .section-title {
      font-size: clamp(22px, 3.5vw, 34px);
      font-weight: 900;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 8px;
    }
    .section-title span { color: var(--teal-mid); }
    .section-sub {
      font-size: 15px;
      color: var(--gray-500);
      margin-bottom: 40px;
      max-width: 600px;
    }

    /* ── OFFER CARDS ── */
    .offers-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    @media(max-width:700px){
      .offers-grid { grid-template-columns: 1fr; }
    }
    .offer-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: transform .25s, box-shadow .25s;
      position: relative;
      border: 2px solid transparent;
    }
    .offer-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--teal-light);
    }
    .offer-card.featured {
      border-color: var(--amber);
    }
    .offer-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--amber);
      color: var(--navy);
      font-size: 11px;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 20px;
      z-index: 2;
    }
    .offer-img {
      width: 100%;
      aspect-ratio: 16/7;
      object-fit: cover;
      background: linear-gradient(135deg, var(--teal-pale), #d0efef);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
    }
    .offer-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .offer-img-placeholder {
      width: 100%;
      aspect-ratio: 16/7;
      background: linear-gradient(135deg, var(--teal-pale), #d0efef);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
    }
    .offer-body {
      padding: 22px 22px 24px;
    }
    .offer-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.45;
      margin-bottom: 12px;
    }
    .offer-includes {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 18px;
    }
    .offer-includes li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13.5px;
      color: var(--gray-700);
    }
    .offer-includes li::before {
      content: '✓';
      color: var(--green-badge);
      font-weight: 900;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .offer-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--gray-100);
      padding-top: 16px;
      gap: 12px;
      flex-wrap: wrap;
    }
    .offer-price {
      display: flex;
      flex-direction: column;
    }
    .offer-price .label { font-size: 11px; color: var(--gray-500); font-weight: 500; }
    .offer-price .amount {
      font-size: 34px;
      font-weight: 900;
      color: var(--teal-deep);
      line-height: .9;
      letter-spacing: -.02em;
    }
    .offer-price .currency { font-size: 13px; color: var(--gray-500); }
    .btn-offer {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
      color: #fff;
      text-decoration: none;
      padding: 11px 20px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 700;
      transition: transform .15s, box-shadow .15s;
      box-shadow: 0 4px 14px rgba(7,94,94,.30);
      white-space: nowrap;
    }
    .btn-offer:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(7,94,94,.40);
    }
    .btn-offer.amber {
      background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
      color: #fff;
      box-shadow: 0 4px 14px rgba(7,94,94,.30);
    }
    .btn-offer.amber:hover { box-shadow: 0 8px 20px rgba(7,94,94,.40); }

    /* ── WHY US ── */
    .why-section {
      background: linear-gradient(135deg, var(--teal-pale) 0%, #fff 100%);
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .why-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px 20px;
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: transform .2s, box-shadow .2s;
    }
    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .why-icon {
      width: 56px; height: 56px;
      background: var(--teal-pale);
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-size: 24px;
      margin: 0 auto 14px;
    }
    .why-title {
      font-size: 15px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .why-desc {
      font-size: 13px;
      color: var(--gray-500);
      line-height: 1.7;
    }

    /* ── STEPS ── */
    .steps-section { background: #fff; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0;
      position: relative;
    }
    .step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px 16px;
      position: relative;
    }
    .step-item:not(:last-child)::after {
      content: '←';
      position: absolute;
      left: -12px;
      top: 36px;
      color: var(--teal-light);
      font-size: 22px;
    }
    @media(max-width:600px) {
      .step-item:not(:last-child)::after { display: none; }
    }
    .step-num {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
      color: #fff;
      font-size: 20px;
      font-weight: 900;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      box-shadow: 0 6px 18px rgba(7,94,94,.30);
    }
    .step-title {
      font-size: 15px;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .step-desc {
      font-size: 13px;
      color: var(--gray-500);
      line-height: 1.7;
    }

    /* ── TESTIMONIALS ── */
    .testimonials-section { background: var(--off-white); }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .review-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
      border-right: 4px solid var(--teal-mid);
    }
    .review-stars { color: var(--amber); font-size: 16px; margin-bottom: 10px; }
    .review-text {
      font-size: 14px;
      color: var(--gray-700);
      line-height: 1.8;
      margin-bottom: 16px;
      font-style: italic;
    }
    .reviewer {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .reviewer-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--teal-pale);
      display: grid;
      place-items: center;
      font-size: 16px;
      font-weight: 700;
      color: var(--teal-deep);
      flex-shrink: 0;
    }
    .reviewer-name { font-size: 14px; font-weight: 700; color: var(--navy); }
    .reviewer-role { font-size: 12px; color: var(--gray-500); }

    /* ── BIG FORM SECTION ── */
    .form-section { background: linear-gradient(135deg, var(--teal-deep), var(--navy)); }
    .form-section-inner {
      max-width: 780px;
      margin: 0 auto;
    }
    .form-section .section-title,
    .form-section .section-sub { color: #fff; }
    .form-section .section-sub { color: rgba(255,255,255,.70); }
    .booking-card-secondary {
      max-width: 420px;
      margin: 0 auto;
    }
    .big-form-card {
      background: #fff;
      border-radius: 24px;
      padding: 36px 32px;
      box-shadow: var(--shadow-lg);
    }
    @media(max-width:480px){ .big-form-card { padding: 24px 18px; } }
    .form-section-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--teal-deep);
      margin-bottom: 4px;
    }
    .form-section-sub {
      font-size: 13px;
      color: var(--gray-500);
      margin-bottom: 24px;
    }
    .form-3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
    .form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media(max-width:600px){
      .form-3col { grid-template-columns: 1fr; }
      .form-2col { grid-template-columns: 1fr; }
    }
    .btn-submit-big {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
      color: #fff;
      border: none;
      border-radius: 14px;
      font-family: 'Cairo', sans-serif;
      font-size: 18px;
      font-weight: 900;
      cursor: pointer;
      transition: transform .15s, box-shadow .15s;
      box-shadow: 0 6px 20px rgba(7,94,94,.35);
      margin-top: 4px;
    }
    .btn-submit-big:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(7,94,94,.45);
    }
    .contact-row {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 28px;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.85);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: color .2s;
    }
    .contact-item:hover { color: var(--amber); }
    .contact-item .icon { font-size: 20px; }

    /* ── FOOTER ── */
    .footer {
      background: var(--navy);
      color: rgba(255,255,255,.65);
      text-align: center;
      padding: 28px 24px;
      font-size: 13px;
    }
    .footer a { color: var(--amber); text-decoration: none; }
    .footer-brand {
      font-size: 16px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 6px;
    }

    /* ── FLOATING CTA ── */
    .floating-cta {
      position: fixed;
      bottom: 20px;
      left: 20px;
      z-index: 200;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .fab {
      width: 52px; height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 24px;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0,0,0,.25);
      transition: transform .2s;
    }
    .fab:hover { transform: scale(1.1); }
    .fab-wa { background: #25D366; }
    .fab-tel { background: var(--amber); }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── SUCCESS MSG ── */
    .success-msg {
      display: none;
      background: var(--green-badge);
      color: #fff;
      padding: 14px 20px;
      border-radius: 12px;
      text-align: center;
      font-weight: 700;
      font-size: 15px;
      margin-top: 12px;
    }
    .error-msg {
      display: none;
      background: #c62828;
      color: #fff;
      padding: 14px 20px;
      border-radius: 12px;
      text-align: center;
      font-weight: 700;
      font-size: 14px;
      margin-top: 12px;
    }

    /* ── TICKER ── */
    .ticker {
      background: var(--navy);
      color: rgba(255,255,255,.80);
      font-size: 13px;
      padding: 7px 0;
      overflow: hidden;
    }
    .ticker-inner {
      display: flex;
      animation: ticker-scroll 20s linear infinite;
      white-space: nowrap;
      gap: 40px;
    }
    .ticker-inner span { flex-shrink: 0; }
    @keyframes ticker-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

.lp-label-invert { background: rgba(255,255,255,.15); color: #fff; }
.lp-accent-amber { color: var(--amber); }
.lp-mb-14 { margin-bottom: 14px; }
.lp-m-0 { margin: 0; }
.lp-form-privacy-note { text-align: center; margin-top: 12px; font-size: 12px; color: var(--gray-500); }
.lp-footer-links { margin-top: 6px; }
.lp-footer-copy { margin-top: 10px; font-size: 12px; opacity: .5; }
.d-none { display: none !important; }

.landing-state {
  background: #fff;
  border: 1px solid rgba(7,94,94,.10);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  padding: 18px 20px;
  text-align: center;
}

.landing-state-error {
  border-color: rgba(229,62,62,.20);
  color: var(--red-cta);
}

.offer-media {
  background: linear-gradient(135deg, rgba(7,94,94,.06), rgba(10,128,128,.12));
  min-height: 200px;
  overflow: hidden;
}

.offer-img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.btn-offer-disabled {
  cursor: not-allowed;
  opacity: .75;
}
