:root {
    --deep: #0a1628;
    --navy: #0f2240;
    --teal: #0d7d6e;
    --teal-light: #12a896;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --cream: #f5f0e8;
    --white: #ffffff;
    --text-muted: #8a9ab5;
    --card-bg: rgba(255,255,255,0.04);
    --border: rgba(201, 168, 76, 0.2);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Tajawal', sans-serif;
    background: var(--deep);
    color: var(--white);
    overflow-x: hidden;
    direction: rtl;
  }

  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.01em;
  }
  .nav-logo span { color: var(--white); font-weight: 300; }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-weight: 500 !important;
    transition: background 0.3s !important;
  }
  .nav-cta:hover { background: var(--teal-light) !important; color: var(--white) !important; }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 2.5rem 4rem;
    overflow: hidden;
  }

  /* Mesh gradient background */
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 30%, rgba(13,125,110,0.22) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 55%),
      radial-gradient(ellipse 40% 40% at 85% 75%, rgba(15,34,64,0.8) 0%, transparent 60%),
      linear-gradient(160deg, #0a1628 0%, #0d1f3c 50%, #091520 100%);
    z-index: 0;
  }

  /* Decorative circles */
  .hero-circle-1 {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.08);
    top: -100px; left: -150px;
    animation: rotateSlow 40s linear infinite;
  }
  .hero-circle-2 {
    position: absolute;
    width: 900px; height: 900px;
    border-radius: 50%;
    border: 1px solid rgba(13,125,110,0.06);
    top: -300px; left: -350px;
    animation: rotateSlow 60s linear infinite reverse;
  }

  @keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* Floating medical cross */
  .hero-cross {
    position: absolute;
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    opacity: 0.06;
    animation: floatUp 6s ease-in-out infinite;
    z-index: 1;
  }
  @keyframes floatUp {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-53%) translateX(8px); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: auto;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    animation: fadeDown 0.8s ease both;
  }
  .hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--teal-light);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  .hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    animation: fadeDown 0.9s 0.1s ease both;
  }
  .hero-title .accent { color: var(--gold); }
  .hero-title .accent-teal { color: var(--teal-light); }

  .hero-sub-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: fadeDown 1s 0.2s ease both;
    direction: ltr;
    text-align: right;
  }

  .hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: #b0bdd0;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 540px;
    animation: fadeDown 1s 0.3s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeDown 1s 0.4s ease both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 30px rgba(13,125,110,0.35);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(13,125,110,0.5);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--gold-light);
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    border: 1px solid rgba(201,168,76,0.4);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-secondary:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
  }

  /* Stats bar */
  .stats-bar {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    margin-top: 3.5rem;
    animation: fadeDown 1s 0.5s ease both;
  }
  .stat {
    flex: 1;
    padding: 1.5rem 1.8rem;
    border-right: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);
  }
  .stat:first-child { border-radius: 0 12px 12px 0; }
  .stat:last-child { border-right: none; border-radius: 12px 0 0 12px; }
  .stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 400; }

  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── SECTION BASE ─── */
  section {
    position: relative;
    z-index: 1;
    padding: 6rem 2.5rem;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1rem;
  }
  .section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--teal-light);
  }

  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .section-title .gold { color: var(--gold); }

  .section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 560px;
  }

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

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5px;
    margin-top: 3.5rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }

  .service-card {
    background: var(--card-bg);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 80px; height: 80px;
    border-top-left-radius: 50%;
    background: radial-gradient(circle, rgba(13,125,110,0.15), transparent);
    transition: transform 0.5s;
  }
  .service-card:hover { background: rgba(255,255,255,0.06); }
  .service-card:hover::before { transform: scale(2.5); }

  .service-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
  }
  .service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
  }
  .service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

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

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-card-main {
    background: linear-gradient(145deg, var(--navy), #0c2038);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .about-card-main::after {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.1), transparent);
  }

  .about-card-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 16px;
    padding: 1.4rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 50px rgba(13,125,110,0.4);
  }
  .float-num {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
  }
  .float-text { font-size: 0.8rem; color: rgba(255,255,255,0.85); max-width: 90px; line-height: 1.4; }

  .dr-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
  }
  .dr-title {
    font-size: 0.9rem;
    color: var(--teal-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }

  .credential-list { list-style: none; position: relative; z-index: 1; }
  .credential-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: #c5d0e0;
    line-height: 1.5;
  }
  .credential-list li:last-child { border-bottom: none; }
  .credential-list li::before {
    content: '✓';
    color: var(--teal-light);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ─── CONDITIONS ─── */
  .conditions { background: var(--navy); }

  .conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
  }

  .condition-pill {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #c5d0e0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .condition-pill:hover {
    background: rgba(13,125,110,0.12);
    border-color: var(--teal);
    color: white;
    transform: translateY(-2px);
  }
  .condition-pill .icon { font-size: 1.2rem; }

  /* ─── WHY US ─── */
  .why { background: var(--deep); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 3rem;
  }

  .why-item {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
  }
  .why-item:hover { border-color: var(--border); }

  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(201,168,76,0.08);
    position: absolute;
    top: 0.5rem; left: 1.5rem;
    line-height: 1;
    pointer-events: none;
  }

  .why-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
  }
  .why-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    margin: 0 auto 4rem;
    max-width: calc(100% - 5rem);
    background: linear-gradient(135deg, var(--teal) 0%, #0a6055 50%, var(--teal) 100%);
    border-radius: 24px;
    padding: 4rem 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
  }
  .cta-banner::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");
  }

  .cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
  .cta-banner p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }
  .cta-banner .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    color: var(--teal);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
  }
  .cta-banner .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.3);
  }

  /* ─── CONTACT ─── */
  .contact { background: var(--navy); }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .contact-icon {
    width: 48px; height: 48px;
    background: rgba(13,125,110,0.15);
    border: 1px solid rgba(13,125,110,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .contact-info-text strong {
    display: block;
    font-size: 0.78rem;
    color: var(--teal-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.3rem;
  }
  .contact-info-text span {
    font-size: 1rem;
    color: var(--cream);
    font-weight: 500;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .form-field label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    outline: none;
    direction: rtl;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--teal);
  }
  .form-field textarea { resize: vertical; min-height: 110px; }
  .form-field select option { background: var(--navy); }

  .submit-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--deep);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
    margin-top: 0.5rem;
  }
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.45);
  }

  /* ─── REVIEWS ─── */
  .reviews-section { background: var(--navy); }

  .google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    transition: all 0.3s;
  }
  .google-reviews-link:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .review-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 1.8rem;
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .review-card:hover {
    border-color: rgba(201,168,76,0.25);
    transform: translateY(-3px);
  }

  .review-stars { color: #f5b73f; font-size: 1rem; letter-spacing: 2px; }

  .review-text {
    font-size: 0.92rem;
    color: #c0ccd e;
    line-height: 1.75;
    flex: 1;
    font-style: italic;
    color: #b8c8d8;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .review-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
  }

  .review-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
  .review-source {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
  }

  /* CTA review card */
  .review-cta-card {
    background: rgba(201,168,76,0.05);
    border-color: rgba(201,168,76,0.2) !important;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .review-cta-icon { font-size: 2.5rem; }
  .review-cta-title { font-size: 1.1rem; font-weight: 700; color: var(--gold-light); }
  .review-cta-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
  .review-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold);
    color: var(--deep);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 0.5rem;
  }
  .review-cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }

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

  .map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }

  .map-wrapper iframe { display: block; filter: grayscale(30%) contrast(1.05); }

  .map-directions-btn {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    background: var(--teal);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(13,125,110,0.5);
    transition: all 0.3s;
  }
  .map-directions-btn:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
  }

  /* ─── FOOTER ─── */
  footer {
    background: #060f1c;
    padding: 2.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-brand { font-size: 0.95rem; font-weight: 700; color: var(--gold); }
  .footer-copy { font-size: 0.8rem; color: var(--text-muted); }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ─── WHATSAPP FLOAT ─── */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 200;
    animation: waBounce 3s ease-in-out infinite;
    transition: transform 0.3s;
  }
  .whatsapp-float:hover { transform: scale(1.12); }
  @keyframes waBounce {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 10px 36px rgba(37,211,102,0.65); }
  }

  /* ─── DIVIDER ─── */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 2.5rem;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.2rem; }
    .nav-links { display: none; }
    .hero { padding: 6rem 1.2rem 3rem; }
    .hero-cross { display: none; }
    .stats-bar { flex-direction: column; }
    .stat { border-right: none; border-bottom: 1px solid var(--border); }
    .stat:last-child { border-bottom: none; }
    section { padding: 4rem 1.2rem; }
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-card-float { left: 0; bottom: -20px; }
    .contact-inner { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-banner { margin: 0 auto 3rem; max-width: calc(100% - 2.4rem); padding: 3rem 2rem; }
    footer { flex-direction: column; text-align: center; }
    .divider { margin: 0 1.2rem; }
  }