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

    :root {
      --teal-deep: #0d4a3e;
      --teal-mid: #125c4e;
      --teal-light: #1a7862;
      --teal-pale: #c8e6de;
      --teal-xpale: #eef7f4;
      --beige: #f5ede0;
      --beige-dark: #e8d9c4;
      --beige-mid: #c9b99a;
      --cream: #faf6f0;
      --black: #1a1410;
      --text-mid: #4a3f35;
      --text-light: #8a7d6e;
      --white: #ffffff;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Cairo', sans-serif;
      background: var(--cream);
      color: var(--black);
      overflow-x: hidden;
      direction: rtl;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 5%;
      background: rgba(13, 74, 62, 0.97);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(200, 230, 222, 0.18);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }

    .nav-logo-img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      background: var(--beige);
      border: 2px solid rgba(200, 185, 154, 0.4);
    }

    .logo-text {
      color: var(--white);
    }

    .logo-text span {
      display: block;
      font-size: 0.72rem;
      font-weight: 300;
      color: var(--beige-dark);
      letter-spacing: 0.1em;
    }

    .logo-text strong {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 400;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--beige-dark);
    }

    .nav-cta {
      background: var(--beige);
      color: var(--teal-deep) !important;
      font-weight: 700 !important;
      padding: 0.55rem 1.4rem;
      border-radius: 30px;
      transition: background 0.3s, transform 0.2s !important;
    }

    .nav-cta:hover {
      background: var(--white) !important;
      transform: translateY(-1px);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: linear-gradient(140deg, var(--teal-deep) 0%, var(--teal-mid) 50%, #1e6b57 100%);
      display: flex;
      align-items: center;
      padding: 8rem 5% 5rem;
      position: relative;
      overflow: hidden;
    }

    /* Decorative circles */
    .hero::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: rgba(245, 237, 224, 0.05);
      border: 1px solid rgba(245, 237, 224, 0.08);
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -160px;
      left: -80px;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: rgba(245, 237, 224, 0.04);
    }

    .hero-deco-ring {
      position: absolute;
      top: 50%;
      right: 5%;
      transform: translateY(-50%);
      width: 340px;
      height: 340px;
      border-radius: 50%;
      border: 60px solid rgba(245, 237, 224, 0.06);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 4rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(245, 237, 224, 0.12);
      border: 1px solid rgba(245, 237, 224, 0.28);
      color: var(--beige-dark);
      font-size: 0.78rem;
      font-weight: 500;
      padding: 0.4rem 1.1rem;
      border-radius: 30px;
      margin-bottom: 1.5rem;
      letter-spacing: 0.07em;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--beige);
      display: block;
    }

    .hero p {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.85;
      margin-bottom: 2.5rem;
      max-width: 480px;
      font-weight: 300;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--beige);
      color: var(--teal-deep);
      font-weight: 700;
      font-size: 0.98rem;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s;
      font-family: 'Cairo', sans-serif;
      border: none;
      cursor: pointer;
      display: inline-block;
      letter-spacing: 0.02em;
    }

    .btn-primary:hover {
      background: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(13, 74, 62, 0.25);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      font-weight: 500;
      font-size: 0.98rem;
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s;
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      display: inline-block;
    }

    .btn-outline:hover {
      border-color: var(--beige-dark);
      color: var(--beige-dark);
      transform: translateY(-2px);
    }

    /* ── HERO RIGHT PANEL ── */
    .hero-visual {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      align-items: center;
    }

    .hero-doctor-img {
      width: 100%;
      max-width: 420px;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
      border: 3px solid var(--beige-mid, #c9a96e);
    }

    .hero-doctor-img img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 16px;
      padding: 1.4rem 1.6rem;
      width: 100%;
    }

    .hero-card-beige {
      background: rgba(245, 237, 224, 0.1);
      border-color: rgba(245, 237, 224, 0.22);
    }

    .card-row {
      display: flex;
      gap: 0.8rem;
    }

    .stat-box {
      flex: 1;
      text-align: center;
      padding: 1rem 0.6rem;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .stat-num {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--beige);
      display: block;
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .stat-label {
      font-size: 0.73rem;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 400;
    }

    .cert-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.45rem 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.88rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .cert-item:last-child {
      border: none;
      padding-bottom: 0;
    }

    .cert-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--beige-mid);
      flex-shrink: 0;
    }

    /* ── SECTION BASE ── */
    section {
      padding: 5rem 5%;
    }

    .section-center {
      text-align: center;
      max-width: 650px;
      margin: 0 auto 3.5rem;
    }

    .section-tag {
      display: inline-block;
      background: var(--teal-xpale);
      color: var(--teal-deep);
      font-size: 0.76rem;
      font-weight: 700;
      padding: 0.35rem 1.1rem;
      border-radius: 30px;
      letter-spacing: 0.09em;
      margin-bottom: 1rem;
      border: 1px solid var(--teal-pale);
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--teal-deep);
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .section-title em {
      font-style: normal;
      color: var(--teal-light);
    }

    .section-sub {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.85;
      font-weight: 300;
    }

    .beige-divider {
      width: 56px;
      height: 3px;
      background: linear-gradient(90deg, var(--teal-light), var(--beige-mid));
      border-radius: 2px;
      margin: 1.2rem auto;
    }

    /* ── CONTACT STRIP ── */
    .contact-strip {
      background: var(--beige);
      padding: 2.4rem 5%;
      border-top: 3px solid var(--teal-deep);
      border-bottom: 1px solid var(--beige-dark);
    }

    .contact-strip-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: #fff;
      border-radius: 16px;
      padding: 1.1rem 1.3rem;
      box-shadow: 0 2px 12px rgba(13, 74, 62, 0.07);
      border: 1px solid rgba(13, 74, 62, 0.07);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      text-decoration: none;
    }

    .contact-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(13, 74, 62, 0.13);
    }

    .contact-item--map {
      border-color: rgba(13, 74, 62, 0.18);
      background: linear-gradient(135deg, #fff 60%, var(--teal-pale) 100%);
      cursor: pointer;
    }

    .contact-item--call {
      border-color: rgba(13, 74, 62, 0.18);
      background: linear-gradient(135deg, #fff 60%, var(--teal-xpale) 100%);
      cursor: pointer;
    }

    .contact-icon--call {
      background: var(--teal-deep);
      color: #fff;
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--teal-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--teal-deep);
      flex-shrink: 0;
    }

    .contact-icon--map {
      background: var(--teal-deep);
      color: #fff;
    }

    .contact-label {
      font-size: 0.72rem;
      color: var(--text-light);
      margin-bottom: 0.18rem;
      font-weight: 500;
      letter-spacing: 0.04em;
    }

    .contact-val {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--teal-deep);
    }

    .contact-val--phone {
      text-align: right;
    }

    /* ── SERVICES ── */
    .services {
      background: var(--white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .service-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 2rem 1.6rem;
      border: 1px solid var(--beige-dark);
      transition: all 0.32s;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal-deep), var(--beige-mid));
      transform: scaleX(0);
      transition: transform 0.32s;
      transform-origin: right;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 50px rgba(13, 74, 62, 0.1);
      border-color: var(--teal-pale);
    }

    .service-card:hover::after {
      transform: scaleX(1);
    }

    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 13px;
      background: var(--teal-xpale);
      border: 1px solid var(--teal-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 1.1rem;
    }

    .service-card h3 {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--teal-deep);
      margin-bottom: 0.6rem;
    }

    .service-card p {
      font-size: 0.87rem;
      color: var(--text-mid);
      line-height: 1.75;
      font-weight: 300;
    }

    /* ── WHY US ── */
    .why {
      background: var(--teal-deep);
      position: relative;
      overflow: hidden;
    }

    .why-deco {
      position: absolute;
      top: -80px;
      left: -80px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      border: 70px solid rgba(245, 237, 224, 0.05);
      pointer-events: none;
    }

    .why .section-title {
      color: var(--white);
    }

    .why .section-sub {
      color: rgba(255, 255, 255, 0.62);
    }

    .why .section-tag {
      background: rgba(245, 237, 224, 0.1);
      color: var(--beige);
      border-color: rgba(245, 237, 224, 0.18);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.4rem;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .why-item {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 1.8rem 1.4rem;
      text-align: center;
      transition: all 0.3s;
    }

    .why-item:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px);
      border-color: rgba(245, 237, 224, 0.22);
    }

    .why-num {
      font-size: 2.6rem;
      font-weight: 900;
      color: var(--beige);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .why-label {
      font-size: 0.87rem;
      color: rgba(255, 255, 255, 0.68);
      font-weight: 400;
      line-height: 1.5;
    }

    /* ── TESTIMONIALS — Stagger Carousel ── */
    .testimonials {
      background: var(--beige);
      padding: 5rem 0 4rem;
    }

    .stagger-carousel {
      position: relative;
      height: 420px;
      overflow: hidden;
      max-width: 1100px;
      margin: 3rem auto 0;
    }

    .stagger-card {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 340px;
      padding: 2rem;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.5s cubic-bezier(.34,1.2,.64,1),
                  opacity 0.5s ease,
                  box-shadow 0.5s ease;
      clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
    }

    .stagger-card--center {
      background: var(--teal-deep);
      color: #fff;
      z-index: 10;
      box-shadow: 0 12px 0 4px rgba(13,74,62,0.25);
    }

    .stagger-card--side {
      background: var(--white);
      border: 1.5px solid var(--beige-dark);
      color: var(--black);
      z-index: 1;
    }

    .stagger-card::after {
      content: '';
      position: absolute;
      top: 40px;
      right: -2px;
      width: 58px;
      height: 1.5px;
      background: var(--beige-dark);
      transform: rotate(45deg);
      transform-origin: right top;
    }

    .stagger-card--center::after {
      background: rgba(255,255,255,0.2);
    }

    .stagger-stars {
      color: #c9961a;
      font-size: 0.85rem;
      letter-spacing: 2px;
      margin-bottom: 1rem;
    }

    .stagger-text {
      font-size: 0.93rem;
      line-height: 1.8;
      font-weight: 300;
    }

    .stagger-card--center .stagger-text { color: rgba(255,255,255,0.88); }
    .stagger-card--side   .stagger-text { color: var(--text-mid); }

    .stagger-reviewer {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-top: 1.5rem;
    }

    .stagger-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.78rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .stagger-card--center .stagger-avatar {
      background: rgba(255,255,255,0.18);
      color: #fff;
    }

    .stagger-card--side .stagger-avatar {
      background: var(--teal-pale);
      color: var(--teal-deep);
    }

    .stagger-name {
      font-weight: 700;
      font-size: 0.85rem;
    }

    .stagger-card--center .stagger-name { color: #fff; }
    .stagger-card--side   .stagger-name { color: var(--teal-deep); }

    .stagger-date {
      font-size: 0.74rem;
    }

    .stagger-card--center .stagger-date { color: rgba(255,255,255,0.55); }
    .stagger-card--side   .stagger-date { color: var(--text-light); }

    .stagger-nav {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .stagger-btn {
      width: 52px;
      height: 52px;
      border: 2px solid var(--teal-pale);
      background: var(--white);
      color: var(--teal-deep);
      border-radius: 4px;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .stagger-btn:hover {
      background: var(--teal-deep);
      color: #fff;
      border-color: var(--teal-deep);
    }


    /* ── BOOKING ── */
    .booking {
      background: linear-gradient(140deg, var(--teal-deep), var(--teal-mid));
      position: relative;
      overflow: hidden;
    }

    .booking::before {
      content: '';
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(245, 237, 224, 0.05);
    }

    .booking-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .booking .section-title {
      color: var(--white);
    }

    .booking .section-sub {
      color: rgba(255, 255, 255, 0.68);
    }

    .booking .section-tag {
      background: rgba(245, 237, 224, 0.1);
      color: var(--beige);
      border-color: rgba(245, 237, 224, 0.2);
    }

    .booking-form {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 20px;
      padding: 2.5rem;
      margin-top: 2.5rem;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-field label {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.68);
      font-weight: 500;
    }

    .form-field input,
    .form-field select {
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      color: var(--white);
      font-size: 0.9rem;
      font-family: 'Cairo', sans-serif;
      outline: none;
      transition: border-color 0.3s;
      direction: rtl;
      width: 100%;
    }

    .form-field input::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .form-field input:focus,
    .form-field select:focus {
      border-color: var(--beige-mid);
    }

    .form-field select option {
      background: var(--teal-deep);
      color: var(--white);
    }

    .btn-book {
      width: 100%;
      margin-top: 1rem;
      background: var(--beige);
      color: var(--teal-deep);
      font-weight: 800;
      font-size: 1.05rem;
      padding: 1rem;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      font-family: 'Cairo', sans-serif;
      transition: all 0.3s;
      letter-spacing: 0.03em;
    }

    .btn-book:hover {
      background: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(13, 74, 62, 0.25);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      padding: 2.2rem 5%;
      font-size: 0.84rem;
    }

    footer strong {
      color: var(--beige-mid);
    }

    /* ── ANIMATIONS ── */

    /* Hero entrance */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(36px);
      }

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

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes slideRight {
      from {
        opacity: 0;
        transform: translateX(-40px);
      }

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

    @keyframes slideLeft {
      from {
        opacity: 0;
        transform: translateX(40px);
      }

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

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.82);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes spinSlow {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-14px);
      }
    }

    @keyframes floatYReverse {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(14px);
      }
    }

    @keyframes pulseRing {
      0% {
        box-shadow: 0 0 0 0 rgba(245, 237, 224, 0.35), 0 0 0 0 rgba(245, 237, 224, 0.18);
      }

      60% {
        box-shadow: 0 0 0 18px rgba(245, 237, 224, 0), 0 0 0 36px rgba(245, 237, 224, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(245, 237, 224, 0), 0 0 0 0 rgba(245, 237, 224, 0);
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -400px 0;
      }

      100% {
        background-position: 400px 0;
      }
    }

    @keyframes borderGlow {

      0%,
      100% {
        border-color: rgba(200, 230, 222, 0.18);
      }

      50% {
        border-color: rgba(200, 185, 154, 0.45);
      }
    }

    @keyframes countUp {
      from {
        opacity: 0;
        transform: translateY(12px) scale(0.9);
      }

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

    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    @keyframes particleDrift {
      0% {
        transform: translateY(0) translateX(0) opacity(0.6);
      }

      33% {
        transform: translateY(-30px) translateX(12px);
      }

      66% {
        transform: translateY(-18px) translateX(-8px);
      }

      100% {
        transform: translateY(-60px) translateX(4px) scale(0);
        opacity: 0;
      }
    }

    @keyframes ripple {
      0% {
        transform: scale(0);
        opacity: 0.5;
      }

      100% {
        transform: scale(2.5);
        opacity: 0;
      }
    }

    @keyframes typewriter {
      from {
        width: 0;
      }

      to {
        width: 100%;
      }
    }

    @keyframes blink {

      0%,
      100% {
        border-color: transparent;
      }

      50% {
        border-color: var(--beige);
      }
    }

    @keyframes wobble {

      0%,
      100% {
        transform: rotate(0);
      }

      20% {
        transform: rotate(-6deg);
      }

      40% {
        transform: rotate(6deg);
      }

      60% {
        transform: rotate(-3deg);
      }

      80% {
        transform: rotate(3deg);
      }
    }

    @keyframes trailFade {
      0% {
        opacity: 1;
        transform: scale(1);
      }

      100% {
        opacity: 0;
        transform: scale(0.2);
      }
    }

    /* Hero entrance classes */
    .fade-up {
      animation: fadeUp 0.78s cubic-bezier(.22, .68, 0, 1.2) forwards;
      opacity: 0;
    }

    .fade-in {
      animation: fadeIn 0.8s ease forwards;
      opacity: 0;
    }

    .slide-r {
      animation: slideRight 0.75s cubic-bezier(.22, .68, 0, 1.1) forwards;
      opacity: 0;
    }

    .slide-l {
      animation: slideLeft 0.75s cubic-bezier(.22, .68, 0, 1.1) forwards;
      opacity: 0;
    }

    .scale-in {
      animation: scaleIn 0.75s cubic-bezier(.34, 1.56, .64, 1) forwards;
      opacity: 0;
    }

    .delay-1 {
      animation-delay: 0.15s;
    }

    .delay-2 {
      animation-delay: 0.32s;
    }

    .delay-3 {
      animation-delay: 0.50s;
    }

    .delay-4 {
      animation-delay: 0.68s;
    }

    /* Floating logo */
    .hero-doctor-img {
      animation: floatY 5s ease-in-out infinite;
    }

    /* Spinning orbit ring around logo */
    .logo-orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 260px;
      height: 260px;
      margin: -130px 0 0 -130px;
      border-radius: 50%;
      border: 1.5px dashed rgba(245, 237, 224, 0.28);
      animation: spinSlow 18s linear infinite;
      pointer-events: none;
    }

    .logo-orbit::before {
      content: '';
      position: absolute;
      top: -5px;
      left: 50%;
      width: 10px;
      height: 10px;
      background: var(--beige-mid);
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(201, 185, 154, 0.8);
    }

    /* Nav glow on scroll */
    nav.scrolled {
      animation: borderGlow 2.5s ease infinite;
      box-shadow: 0 4px 32px rgba(13, 74, 62, 0.35);
    }

    /* Animated gradient hero background */
    .hero {
      background-size: 200% 200% !important;
      animation: gradientShift 8s ease infinite;
    }

    /* Scroll-reveal base */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s cubic-bezier(.22, .68, 0, 1.1), transform 0.7s cubic-bezier(.22, .68, 0, 1.1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22, .68, 0, 1.1);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22, .68, 0, 1.1);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.88);
      transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.34, 1.56, .64, 1);
    }

    .reveal-scale.visible {
      opacity: 1;
      transform: scale(1);
    }

    /* Stagger children */
    .stagger>* {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.22, .68, 0, 1.1);
    }

    .stagger.visible>*:nth-child(1) {
      opacity: 1;
      transform: none;
      transition-delay: 0s;
    }

    .stagger.visible>*:nth-child(2) {
      opacity: 1;
      transform: none;
      transition-delay: 0.12s;
    }

    .stagger.visible>*:nth-child(3) {
      opacity: 1;
      transform: none;
      transition-delay: 0.24s;
    }

    .stagger.visible>*:nth-child(4) {
      opacity: 1;
      transform: none;
      transition-delay: 0.36s;
    }

    .stagger.visible>*:nth-child(5) {
      opacity: 1;
      transform: none;
      transition-delay: 0.48s;
    }

    .stagger.visible>*:nth-child(6) {
      opacity: 1;
      transform: none;
      transition-delay: 0.60s;
    }

    /* Service cards hover shimmer */
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(200, 230, 222, 0.12), transparent);
      transition: left 0.6s ease;
      pointer-events: none;
    }

    .service-card:hover::before {
      left: 160%;
    }

    /* Service icon bounce on card hover */
    .service-card:hover .service-icon {
      animation: wobble 0.5s ease;
    }

    /* Why items count-up entrance */
    .why-item.visible .why-num {
      animation: countUp 0.6s cubic-bezier(.34, 1.56, .64, 1) forwards;
    }

    /* Contact strip icons bounce */
    .contact-item:hover .contact-icon {
      animation: wobble 0.45s ease;
    }

    /* Divider expansion */
    .beige-divider {
      transition: width 0.6s ease;
    }

    .visible>.beige-divider,
    .beige-divider.visible {
      width: 100px !important;
    }

    /* Animated hero particles container */
    #particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 1;
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(245, 237, 224, 0.55);
      animation: particleDrift linear infinite;
    }

    /* Ripple on button click */
    .btn-ripple {
      position: relative;
      overflow: hidden;
    }

    .btn-ripple .ripple-effect {
      position: absolute;
      border-radius: 50%;
      background: rgba(13, 74, 62, 0.25);
      animation: ripple 0.6s linear;
      pointer-events: none;
    }

    /* Nav link underline slide */
    .nav-links a:not(.nav-cta) {
      position: relative;
    }

    .nav-links a:not(.nav-cta)::after {
      content: '';
      position: absolute;
      bottom: -3px;
      right: 0;
      width: 0;
      height: 1.5px;
      background: var(--beige-dark);
      transition: width 0.3s ease;
    }

    .nav-links a:not(.nav-cta):hover::after {
      width: 100%;
    }

    /* Scroll progress bar */
    #progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--teal-light), var(--beige-mid));
      z-index: 9999;
      transition: width 0.1s linear;
    }

    /* Floating WhatsApp label */
    .whatsapp-fab::after {
      content: 'تواصل معنا';
      position: absolute;
      left: 68px;
      background: #25d366;
      color: white;
      font-family: 'Cairo', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.3rem 0.75rem;
      border-radius: 20px;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(-8px);
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
      direction: rtl;
    }

    .whatsapp-fab:hover::after {
      opacity: 1;
      transform: translateX(0);
    }

    /* Section tags pulse on visible */
    .section-tag {
      transition: box-shadow 0.4s ease;
    }

    .reveal.visible .section-tag,
    .section-center.visible .section-tag {
      box-shadow: 0 0 0 4px rgba(200, 230, 222, 0.25);
    }

    /* Booking section animated mesh */
    .booking-mesh {
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: hidden;
      pointer-events: none;
    }

    .booking-mesh span {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(245, 237, 224, 0.1);
      animation: spinSlow linear infinite;
    }

    /* Input focus glow */
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      box-shadow: 0 0 0 3px rgba(200, 185, 154, 0.2);
      border-color: var(--beige-mid) !important;
    }

    /* Hero badge shimmer */
    .hero-badge {
      background-size: 200% auto;
      animation: shimmer 3s linear infinite;
      background-image: linear-gradient(90deg,
          rgba(245, 237, 224, 0.12) 0%,
          rgba(245, 237, 224, 0.22) 50%,
          rgba(245, 237, 224, 0.12) 100%);
    }

    /* ── BEFORE & AFTER GALLERY ── */
    .gallery {
      background: var(--white);
    }

    .gallery-tabs {
      display: flex;
      justify-content: center;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-bottom: 2.8rem;
    }

    .gtab {
      background: transparent;
      border: 1.5px solid var(--beige-dark);
      color: var(--text-mid);
      font-family: 'Cairo', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.5rem 1.3rem;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.25s;
      letter-spacing: 0.03em;
    }

    .gtab:hover {
      border-color: var(--teal-light);
      color: var(--teal-deep);
    }

    .gtab.active {
      background: var(--teal-deep);
      border-color: var(--teal-deep);
      color: var(--white);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      max-width: 960px;
      margin: 0 auto;
    }

    .ba-card {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--beige-dark);
      background: var(--cream);
      transition: all 0.35s cubic-bezier(.22, .68, 0, 1.1);
      box-shadow: 0 4px 20px rgba(13, 74, 62, 0.05);
    }

    .ba-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 52px rgba(13, 74, 62, 0.12);
      border-color: var(--teal-pale);
    }

    .ba-card.hidden {
      display: none;
    }

    .ba-label-top {
      padding: 0.75rem 1rem 0;
    }

    .ba-badge {
      display: inline-block;
      font-family: 'Cairo', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.28rem 0.85rem;
      border-radius: 20px;
      letter-spacing: 0.05em;
    }

    .ba-badge.smile {
      background: #e8f4ff;
      color: #2260a0;
      border: 1px solid #b8d8f8;
    }

    .ba-badge.whitening {
      background: #fff8e0;
      color: #907020;
      border: 1px solid #f0d880;
    }

    .ba-badge.implant {
      background: var(--teal-xpale);
      color: var(--teal-deep);
      border: 1px solid var(--teal-pale);
    }

    .ba-badge.ortho {
      background: #f8e8ff;
      color: #703090;
      border: 1px solid #e0b8f8;
    }

    /* The comparison slider */
    .ba-slider-wrap {
      position: relative;
      width: 100%;
      height: 280px;
      overflow: hidden;
      cursor: ew-resize;
      -webkit-user-select: none;
      user-select: none;
      touch-action: none;
    }

    .ba-before,
    .ba-after {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .ba-before svg,
    .ba-after svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* After is clipped — its width is controlled by JS */
    .ba-after {
      clip-path: inset(0 50% 0 0);
      transition: clip-path 0.02s linear;
    }

    /* Divider line + handle */
    .ba-divider {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 3px;
      background: white;
      transform: translateX(-50%);
      z-index: 10;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
    }

    .ba-handle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--teal-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 3px 12px rgba(13, 74, 62, 0.4);
      border: 2.5px solid white;
      transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1), background 0.2s;
      cursor: ew-resize;
    }

    .ba-slider-wrap:hover .ba-handle {
      transform: translate(-50%, -50%) scale(1.15);
      background: var(--teal-light);
    }

    .ba-tag-before,
    .ba-tag-after {
      position: absolute;
      bottom: 10px;
      font-family: 'Cairo', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.22rem 0.65rem;
      border-radius: 12px;
      pointer-events: none;
      z-index: 8;
    }

    .ba-tag-before {
      right: 10px;
      background: rgba(140, 90, 40, 0.75);
      color: #fff;
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }

    .ba-tag-after {
      left: 10px;
      background: rgba(13, 74, 62, 0.8);
      color: #fff;
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }

    .ba-meta {
      padding: 0.85rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.18rem;
    }

    .ba-meta strong {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--teal-deep);
    }

    .ba-meta span {
      font-size: 0.78rem;
      color: var(--text-light);
    }

    .gallery-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      margin: 3rem auto 0;
      padding: 2rem;
      background: var(--teal-xpale);
      border-radius: 16px;
      border: 1px solid var(--teal-pale);
      text-align: center;
      width: fit-content;
      max-width: 100%;
    }

    .gallery-cta video {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 55vh;
      border-radius: 12px;
      display: block;
    }

    .gallery-cta__text {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .gallery-cta p {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--teal-deep);
      margin: 0;
    }

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


    @keyframes fabPulse {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      }

      50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.1);
      }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 920px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        display: none;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stagger-carousel { height: 360px; }
      .stagger-card { width: 270px; padding: 1.5rem; }

      .contact-strip-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .nav-links li:not(:last-child) {
        display: none;
      }
    }

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

      .why-grid {
        grid-template-columns: 1fr;
      }

      .contact-strip-inner {
        grid-template-columns: 1fr;
      }
    }

    /* ── ABOUT DOCTOR ── */
    .about {
      background: var(--cream);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 4rem;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-photo-stack {
      position: relative;
      width: 300px;
      margin: 0 auto;
    }

    .about-photo-bg {
      position: absolute;
      inset: 0;
      background: var(--teal-deep);
      border-radius: 4px;
      transform: translate(18px, 18px);
      z-index: 0;
    }

    .about-photo-card {
      position: relative;
      z-index: 1;
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(13, 74, 62, 0.22);
    }

    .about-photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .about-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .about-stat {
      background: var(--white);
      border: 1px solid var(--beige-dark);
      border-radius: 14px;
      padding: 1.1rem 0.8rem;
      text-align: center;
      transition: all 0.3s;
    }

    .about-stat:hover {
      border-color: var(--teal-pale);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(13, 74, 62, 0.08);
    }

    .about-stat-num {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--teal-deep);
      display: block;
    }

    .about-stat-label {
      font-size: 0.72rem;
      color: var(--text-light);
      font-weight: 500;
    }


    .about-title-sub {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--teal-light);
      letter-spacing: 0.06em;
      margin-bottom: 0.5rem;
    }

    .about-name {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 900;
      color: var(--teal-deep);
      line-height: 1.2;
      margin-bottom: 0.4rem;
    }

    .about-tagline {
      font-size: 1rem;
      color: var(--beige-mid);
      font-weight: 600;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .about-bio {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.9;
      font-weight: 300;
      margin-bottom: 1.8rem;
    }

    .about-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.8rem;
    }

    .about-tag {
      background: var(--teal-xpale);
      border: 1px solid var(--teal-pale);
      color: var(--teal-deep);
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.35rem 0.9rem;
      border-radius: 20px;
    }

    .about-certs {
      border-top: 1px solid var(--beige-dark);
      padding-top: 1.2rem;
    }

    .about-cert-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.45rem 0;
      font-size: 0.88rem;
      color: var(--text-mid);
    }

    .about-cert-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--teal-xpale);
      border: 1px solid var(--teal-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    /* ── VIDEO SECTION ── */
    .video-section {
      background: var(--teal-deep);
      position: relative;
      overflow: hidden;
    }

    .video-section .section-title {
      color: var(--white);
    }

    .video-section .section-sub {
      color: rgba(255, 255, 255, 0.65);
    }

    .video-section .section-tag {
      background: rgba(245, 237, 224, 0.1);
      color: var(--beige);
      border-color: rgba(245, 237, 224, 0.18);
    }

    .video-section .beige-divider {
      background: linear-gradient(90deg, var(--beige-mid), rgba(245, 237, 224, 0.3));
    }

    .video-embed-wrap {
      max-width: 820px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
      border: 2px solid rgba(245, 237, 224, 0.12);
      position: relative;
      z-index: 2;
    }

    .video-placeholder {
      background: rgba(255, 255, 255, 0.05);
      border: 2px dashed rgba(245, 237, 224, 0.2);
      border-radius: 20px;
      padding: 4rem 2rem;
      text-align: center;
      max-width: 820px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .video-placeholder-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
      opacity: 0.7;
    }

    .video-placeholder-text {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .video-placeholder-sub {
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.82rem;
    }

    .video-url-input-wrap {
      margin-top: 1.5rem;
      display: flex;
      gap: 0.75rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .video-url-input {
      flex: 1;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      padding: 0.7rem 1rem;
      color: white;
      font-family: 'Cairo', sans-serif;
      font-size: 0.88rem;
      outline: none;
      direction: ltr;
    }

    .video-url-input::placeholder {
      color: rgba(255, 255, 255, 0.35);
    }

    .video-url-btn {
      background: var(--beige);
      color: var(--teal-deep);
      border: none;
      border-radius: 10px;
      padding: 0.7rem 1.2rem;
      font-family: 'Cairo', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .video-url-btn:hover {
      background: var(--white);
    }

    .video-deco {
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      border: 60px solid rgba(245, 237, 224, 0.04);
      pointer-events: none;
    }

    /* ── SMART BOOKING ── */
    .smart-booking {
      background: linear-gradient(140deg, var(--teal-deep), var(--teal-mid));
      position: relative;
      overflow: hidden;
    }

    .smart-booking .section-title {
      color: var(--white);
    }

    .smart-booking .section-sub {
      color: rgba(255, 255, 255, 0.68);
    }

    .smart-booking .section-tag {
      background: rgba(245, 237, 224, 0.1);
      color: var(--beige);
      border-color: rgba(245, 237, 224, 0.2);
    }

    .booking-wizard {
      max-width: 760px;
      margin: 2rem auto 0;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 24px;
      overflow: hidden;
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      position: relative;
      z-index: 2;
    }

    .wizard-steps-bar {
      display: flex;
      background: rgba(0, 0, 0, 0.15);
      padding: 0;
    }

    .wstep {
      flex: 1;
      padding: 1rem;
      text-align: center;
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.45);
      cursor: pointer;
      transition: all 0.3s;
      border-bottom: 2px solid transparent;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .wstep .wstep-num {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      font-size: 0.72rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2px;
    }

    .wstep.active {
      color: var(--beige);
      border-bottom-color: var(--beige-mid);
    }

    .wstep.active .wstep-num {
      background: var(--beige-mid);
      color: var(--teal-deep);
    }

    .wstep.done {
      color: rgba(200, 230, 222, 0.8);
    }

    .wstep.done .wstep-num {
      background: rgba(200, 230, 222, 0.25);
    }

    .wizard-body {
      padding: 2rem 2.5rem 2.5rem;
    }

    .wizard-panel {
      display: none;
    }

    .wizard-panel.active {
      display: block;
      animation: fadeUp 0.4s ease forwards;
    }

    /* Step 1 — service picker */
    .service-picker {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
    }

    .spick {
      background: rgba(255, 255, 255, 0.07);
      border: 1.5px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      padding: 1.1rem 0.8rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.25s;
    }

    .spick:hover {
      border-color: rgba(245, 237, 224, 0.35);
      background: rgba(255, 255, 255, 0.12);
    }

    .spick.selected {
      border-color: var(--beige-mid);
      background: rgba(245, 237, 224, 0.15);
    }

    .spick-icon {
      font-size: 1.8rem;
      margin-bottom: 0.4rem;
    }

    .spick-name {
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.3;
    }

    /* Step 2 — calendar */
    .cal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }

    .cal-month {
      font-size: 1rem;
      font-weight: 700;
      color: var(--beige);
    }

    .cal-nav {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      color: white;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.2s;
    }

    .cal-nav:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
    }

    .cal-day-name {
      text-align: center;
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.45);
      font-weight: 600;
      padding: 0.3rem 0;
    }

    .cal-day {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.82rem;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 500;
    }

    .cal-day:hover:not(.disabled):not(.empty) {
      background: rgba(245, 237, 224, 0.15);
      color: white;
    }

    .cal-day.today {
      border: 1px solid rgba(245, 237, 224, 0.3);
      color: var(--beige);
    }

    .cal-day.selected {
      background: var(--beige-mid);
      color: var(--teal-deep);
      font-weight: 700;
    }

    .cal-day.disabled {
      color: rgba(255, 255, 255, 0.2);
      cursor: not-allowed;
    }

    .cal-day.empty {
      cursor: default;
    }

    /* Step 2 — time slots */
    .time-slots {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.6rem;
      margin-top: 1.2rem;
    }

    .tslot {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      padding: 0.6rem;
      text-align: center;
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.75);
      cursor: pointer;
      transition: all 0.2s;
    }

    .tslot:hover {
      background: rgba(255, 255, 255, 0.14);
      color: white;
    }

    .tslot.selected {
      background: rgba(200, 185, 154, 0.25);
      border-color: var(--beige-mid);
      color: var(--beige);
    }

    .tslot.booked {
      background: rgba(255, 255, 255, 0.03);
      color: rgba(255, 255, 255, 0.2);
      cursor: not-allowed;
      text-decoration: line-through;
    }

    /* Step 3 — confirm */
    .confirm-summary {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      padding: 1.4rem;
      margin-bottom: 1.2rem;
    }

    .confirm-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.55rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .confirm-row:last-child {
      border: none;
    }

    .confirm-label {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .confirm-val {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--beige);
    }

    .wform-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .wform-field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .wform-field label {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .wform-field input {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      padding: 0.7rem 0.9rem;
      color: white;
      font-family: 'Cairo', sans-serif;
      font-size: 0.88rem;
      outline: none;
      direction: rtl;
      transition: border-color 0.25s;
    }

    .wform-field input:focus {
      border-color: var(--beige-mid);
    }

    .wform-field input::placeholder {
      color: rgba(255, 255, 255, 0.28);
    }

    .wizard-nav {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.4rem;
    }

    .w-btn-next {
      flex: 1;
      background: var(--beige);
      color: var(--teal-deep);
      font-family: 'Cairo', sans-serif;
      font-size: 0.95rem;
      font-weight: 800;
      padding: 0.9rem;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.25s;
    }

    .w-btn-next:hover {
      background: white;
      transform: translateY(-1px);
    }

    .w-btn-back {
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.75);
      font-family: 'Cairo', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.9rem 1.4rem;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.25s;
    }

    .w-btn-back:hover {
      background: rgba(255, 255, 255, 0.14);
    }

    /* booking success */
    #wiz-success {
      display: none;
      text-align: center;
      padding: 2.5rem 1rem;
    }

    .success-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(26, 120, 98, 0.3);
      border: 2px solid rgba(200, 230, 222, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
      font-size: 2rem;
    }

    /* ── GOOGLE MAP ── */
    .map-section {
      background: var(--white);
    }

    .map-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 2.5rem;
      align-items: stretch;
      max-width: 1100px;
      margin: 0 auto;
    }

    .map-info {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      justify-content: center;
    }

    .map-info-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.2rem;
      background: var(--cream);
      border: 1px solid var(--beige-dark);
      border-radius: 14px;
      transition: all 0.25s;
    }

    .map-info-item:hover {
      border-color: var(--teal-pale);
      transform: translateX(-4px);
    }

    .map-info-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: var(--teal-xpale);
      border: 1px solid var(--teal-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .map-info-label {
      font-size: 0.72rem;
      color: var(--text-light);
      font-weight: 600;
      letter-spacing: 0.04em;
      margin-bottom: 0.2rem;
    }

    .map-info-val {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--teal-deep);
      line-height: 1.4;
    }

    .map-embed {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--beige-dark);
      box-shadow: 0 12px 40px rgba(13, 74, 62, 0.1);
      min-height: 380px;
      background: var(--beige);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .map-embed iframe {
      width: 100%;
      height: 380px;
      border: none;
      display: block;
    }


    @media (max-width: 920px) {
      .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .about-tags {
        justify-content: center;
      }

      .about-logo-circle {
        max-width: 220px;
      }

      .map-grid {
        grid-template-columns: 1fr;
      }

      .service-picker {
        grid-template-columns: repeat(2, 1fr);
      }

      .time-slots {
        grid-template-columns: repeat(3, 1fr);
      }

      .wform-row {
        grid-template-columns: 1fr;
      }

      .wizard-body {
        padding: 1.5rem;
      }
    }

/* ── FOOTER ── */
.site-footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--beige-mid, #c9a96e);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}

.footer-brand {
  text-align: right;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
  background: var(--beige-mid, #c9a96e);
  color: #111;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: right;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--beige-mid, #c9a96e);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact li i {
  color: var(--beige-mid, #c9a96e);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--beige-mid, #c9a96e);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

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

/* ── BOOKING MODAL ── */
.bmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.bmodal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.bmodal-box {
  background: #1a1a1a;
  border: 1px solid rgba(201,169,97,0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1);
}

.bmodal-overlay.open .bmodal-box {
  transform: translateY(0) scale(1);
}

.bmodal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #ccc;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.bmodal-close:hover { background: var(--gold); color: #111; }

.bmodal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.bmodal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0.4rem 0 0.3rem;
}

.bmodal-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.bform-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.bform-field label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.bform-req { color: var(--gold); }
.bform-opt { color: rgba(255,255,255,0.4); font-weight: 400; }

.bform-field input,
.bform-field select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #fff;
  padding: 0.7rem 1rem;
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}

.bform-field input:focus,
.bform-field select:focus {
  outline: none;
  border-color: var(--gold);
}

.bform-field select option { background: #1a1a1a; }

.bform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.bform-error {
  display: none;
  background: rgba(220,60,60,0.15);
  border: 1px solid rgba(220,60,60,0.4);
  border-radius: 8px;
  color: #ff8080;
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.bmodal-submit {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}

.bmodal-submit:hover { background: #1da851; transform: scale(1.02); }

.bmodal-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}

.bmodal-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
}

.bmodal-success-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.bmodal-success-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 500px) {
  .bform-row { grid-template-columns: 1fr; }
  .bmodal-box { padding: 1.5rem; }
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.8rem;
  left: 1.8rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fabPulse 2.5s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* ── BEFORE/AFTER LIGHTBOX ── */
.gallery-grid .ba-slider-wrap { cursor: pointer; }
.gallery-grid .ba-handle { cursor: pointer; }

.ba-expand-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 26, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.3s;
  z-index: 5;
  pointer-events: none;
}

.ba-expand-overlay i {
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}

.ba-expand-overlay span {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s 0.04s, transform 0.3s 0.04s;
}

.ba-card:hover .ba-expand-overlay { background: rgba(10, 30, 26, 0.55); }
.ba-card:hover .ba-expand-overlay i { opacity: 1; transform: scale(1); }
.ba-card:hover .ba-expand-overlay span { opacity: 1; transform: translateY(0); }

.ba-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ba-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.ba-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 26, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.ba-lb-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 900px);
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(.34, 1.2, .64, 1);
}

.ba-lightbox.open .ba-lb-content { transform: scale(1); }

.ba-lb-close {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 20;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.ba-lb-close:hover { background: rgba(255, 255, 255, 0.3); }

.ba-lb-nav {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.ba-lb-nav:hover { background: rgba(255, 255, 255, 0.26); }
.ba-lb-prev { right: 0.75rem; }
.ba-lb-next { left: 0.75rem; }

.ba-lb-slider-wrap {
  position: relative;
  width: 100%;
  height: 440px;
  cursor: ew-resize;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
  overflow: hidden;
}

.ba-lb-before,
.ba-lb-after {
  position: absolute;
  inset: 0;
}

.ba-lb-before img, .ba-lb-before svg,
.ba-lb-after img,  .ba-lb-after svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-lb-after { clip-path: inset(0 50% 0 0); }

.ba-lb-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.ba-lb-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--teal-deep);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, background 0.2s;
}

.ba-lb-slider-wrap:hover .ba-lb-handle {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--teal-light);
}

.ba-lb-tag {
  position: absolute;
  bottom: 1rem;
  font-family: 'Cairo', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 12px;
  z-index: 8;
  pointer-events: none;
}

.ba-lb-tag--before {
  right: 1rem;
  background: rgba(140, 90, 40, 0.82);
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.ba-lb-tag--after {
  left: 1rem;
  background: rgba(13, 74, 62, 0.88);
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.ba-lb-footer {
  padding: 1rem 1.5rem;
  background: #111;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ba-lb-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}

.ba-lb-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
}

.ba-lb-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.ba-lb-counter {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.ba-lb-hint {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 0.2rem;
}

@media (max-width: 640px) {
  .ba-lb-slider-wrap { height: 260px; }
  .ba-lb-nav { display: none; }
  .ba-lb-footer { padding: 0.75rem 1rem; }
}

    /* ── UTILITIES ── */
    .stagger-delay-1 { --stagger-delay: 0.1s; }
    .stagger-delay-2 { --stagger-delay: 0.3s; }
    .stagger-delay-3 { --stagger-delay: 0.55s; }
    .stagger-delay-4 { --stagger-delay: 0.75s; }
    .d-none { display: none; }
    .fw-600 { font-weight: 600; }
    .text-beige-dark { color: var(--beige-dark) !important; }
    .text-teal-light { color: var(--teal-light) !important; }
    .text-mid-light { color: var(--text-mid) !important; font-weight: 400; font-size: 0.82rem; }
    .text-white-70 { color: rgba(255, 255, 255, 0.7); }
    .text-white-65 { color: rgba(255, 255, 255, 0.65); }
    .text-white-60 { color: rgba(255, 255, 255, 0.6); }
    .text-white-40 { color: rgba(255, 255, 255, 0.4); }
    .text-required { color: #f5b8b8; }
    .text-success { color: #c8e6de; font-weight: 700; font-size: 1rem; }
    .text-error { color: #f5d0d0; font-weight: 700; font-size: 1rem; }
    
    .ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
    
    .btn-booking-large { font-size: 0.95rem; padding: 0.8rem 2rem; }
    
    .video-wrap { position: relative; z-index: 2; }
    .video-frame { width: 100%; height: 460px; display: block; }
    
    .anim-circle-1 { width: 300px; height: 300px; top: -80px; left: -80px; animation-duration: 22s; }
    .anim-circle-2 { width: 180px; height: 180px; bottom: 40px; right: 10%; animation-duration: 15s; animation-direction: reverse; }
    .anim-circle-3 { width: 100px; height: 100px; top: 30%; left: 30%; animation-duration: 10s; }
    
    .wiz-subtitle { font-size: 0.88rem; margin-bottom: 1.2rem; }
    .wiz-time-title { font-size: 0.8rem; margin: 1.2rem 0 0.6rem; }
    .wiz-success-title { color: var(--beige); font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
    .wiz-success-desc { font-size: 0.92rem; max-width: 360px; margin: 0 auto 1.5rem; }
    .wiz-btn-next { max-width: 240px; margin: 0 auto; }
    
    .msg-error {
      background: rgba(180, 50, 50, 0.2);
      border: 1px solid rgba(245, 184, 184, 0.35);
      border-radius: 10px;
      padding: 1rem 1.2rem;
      margin-top: 1rem;
      text-align: center;
    }
    
    .msg-error-wiz {
      padding: 0.75rem 1rem;
      font-size: 0.85rem;
      margin-bottom: 0.75rem;
    }
    
    .msg-success {
      background: rgba(26, 120, 98, 0.25);
      border: 1px solid rgba(200, 230, 222, 0.4);
      border-radius: 10px;
      padding: 1rem 1.2rem;
      margin-top: 1rem;
      text-align: center;
    }
    
    .msg-icon { font-size: 1.6rem; margin-bottom: 0.3rem; }
    .msg-sub { font-size: 0.85rem; margin-top: 0.3rem; }
    
    .form-textarea {
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      color: #fff;
      font-size: 0.9rem;
      font-family: 'Cairo', sans-serif;
      resize: vertical;
      width: 100%;
      outline: none;
      direction: rtl;
      transition: border-color 0.3s;
    }
    .form-textarea:focus { border-color: var(--beige-mid); }
    
    .mb-2 { margin-bottom: 0.5rem !important; }
    .mb-3 { margin-bottom: 0.75rem !important; }
    
    .footer-note { font-size: 0.76rem; margin-top: 0.8rem; text-align: center; }

/* ── HERO CENTERED VIDEO ── */
.hero-content-centered {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

.hero-content-centered h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content-centered h1 em {
  font-style: normal;
  color: var(--beige);
  display: block;
}

.hero-content-centered p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-video-wrap {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(245,237,224,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.hero-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.hero-video-placeholder {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 5rem 2rem;
  text-align: center;
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #25d366;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}

.btn-whatsapp-hero:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}

.btn-whatsapp-hero i { font-size: 1.3rem; }


/* ── 3 STEPS BOOKING ── */
.booking-steps {
  background: linear-gradient(140deg, var(--teal-deep), var(--teal-mid));
  position: relative;
  overflow: hidden;
  padding: 5rem 5%;
}

.booking-steps .section-title { color: var(--white); }
.booking-steps .section-sub { color: rgba(255,255,255,0.68); }
.booking-steps .section-tag {
  background: rgba(245,237,224,0.1);
  color: var(--beige);
  border-color: rgba(245,237,224,0.2);
}
.booking-steps .beige-divider {
  background: linear-gradient(90deg, var(--beige-mid), rgba(245,237,224,0.3));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 920px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.step-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 2.2rem 1.6rem;
  text-align: center;
  transition: all 0.3s;
}

.step-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  border-color: rgba(245,237,224,0.28);
}

.step-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(245,237,224,0.12);
  border: 1.5px solid rgba(245,237,224,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--beige);
  margin: 0.5rem auto 1rem;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-weight: 300;
}

.steps-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
}

.btn-whatsapp-large:hover {
  background: #1ebe5c;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}

.btn-whatsapp-large i { font-size: 1.4rem; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-content-centered { padding-top: 1rem; }
}

/* ── Cinematic Hero ─────────────────────────────── */
.hero-cinematic {
  background: #0a2e26;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 25, 20, 0.90) 0%,
    rgba(5, 25, 20, 0.60) 45%,
    rgba(5, 25, 20, 0.40) 100%
  );
  z-index: 1;
}

.hero-cinematic #particles { z-index: 2; }
.hero-cinematic .hero-content-centered { z-index: 3; }

/* ── Staggered entrance animation ───────────────── */
.stagger-in {
  opacity: 0;
  transform: translateY(22px);
  animation: staggerIn 0.65s cubic-bezier(.22, .68, 0, 1.2) var(--stagger-delay, 0s) forwards;
}

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

.hero-cinematic .hero-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ── Services Bento Grid ────────────────────────── */
.bento-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.bento-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  padding: 2rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(.34,1.56,.64,1), box-shadow 0.38s ease, opacity 0.38s ease;
}

.bento-card:hover {
  transform: scale(1.04);
  box-shadow: 0 24px 55px rgba(13, 74, 62, 0.22);
  z-index: 2;
}

/* All other cards dim when one is hovered */
.bento-grid:has(.bento-card:hover) .bento-card:not(:hover) {
  transform: scale(0.94);
  opacity: 0.6;
}

/* All cards — dark teal gradient design */
.bento-card--featured {
  background: linear-gradient(140deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
  color: #fff;
  min-height: 240px;
}

.bento-card--accent {
  background: linear-gradient(140deg, #0d5c4a 0%, #1e8a6e 100%);
}

.bento-card--v3 {
  background: linear-gradient(140deg, #083328 0%, #0d5040 100%);
}

.bento-card--v4 {
  background: linear-gradient(140deg, #115248 0%, #1a7862 100%);
}

.bento-card--featured::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.bento-card--featured h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0.6rem 0 0.7rem;
}

.bento-card--featured p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  flex: 1;
}

.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--beige);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 1.2rem;
  opacity: 0.85;
  transition: opacity 0.2s, gap 0.2s;
}

.bento-card:hover .bento-cta {
  opacity: 1;
  gap: 0.7rem;
}

.bento-icon {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.9);
}

/* Small cards — bottom row */
.bento-card--small {
  grid-column: span 1;
  background: #fff;
  border: 1px solid rgba(13, 74, 62, 0.09);
  box-shadow: 0 2px 12px rgba(13, 74, 62, 0.06);
}

.bento-card--small h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal-deep);
  margin: 0.5rem 0 0.4rem;
}

.bento-card--small p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}

.bento-icon-sm {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  font-size: 1.15rem;
  transition: background 0.25s, color 0.25s;
}

.bento-card--small:hover .bento-icon-sm {
  background: var(--teal-deep);
  color: #fff;
}

/* Faint number watermark */
.bento-num {
  position: absolute;
  top: 1.2rem;
  left: 1.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.25;
}

.bento-card--featured .bento-num { color: #fff; }
.bento-card--small .bento-num { color: var(--teal-deep); }

/* Responsive */
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--featured { min-height: 210px; }
}

@media (max-width: 540px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--featured { grid-column: span 1; }
}
