@font-face {
      font-family: "Cairo";
      font-style: normal;
      font-weight: 400 800;
      font-display: swap;
      src: url("../fonts/cairo-arabic.woff2") format("woff2");
      unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EC2-10EC4, U+10EFC-10EFF, U+1EE00-1EEFF;
    }

    @font-face {
      font-family: "Cairo";
      font-style: normal;
      font-weight: 400 800;
      font-display: swap;
      src: url("../fonts/cairo-latin.woff2") format("woff2");
      unicode-range: U+0000-024F, U+2000-206F, U+20A0-20CF, U+2100-214F, U+2190-21FF, U+FEFF, U+FFFD;
    }

    :root {
      --primary: #18233b;
      --primary-dark: #11192b;
      --accent: #ff5a5f;
      --accent-dark: #d94148;
      --secondary: #2667e8;
      --text: #182033;
      --muted: #687184;
      --bg: #f5f7fb;
      --white: #ffffff;
      --border: #e4e9f2;
      --shadow: 0 14px 40px rgba(0,0,0,.08);
      --radius: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body, button, input, select, textarea { font-family: "Cairo", Tahoma, Arial, sans-serif; }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      line-height: 1.8;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; height: auto; }
    a { text-decoration: none; color: inherit; }

    a:focus-visible,
    button:focus-visible {
      outline: 3px solid #ff7b80;
      outline-offset: 3px;
    }

    .container {
      width: min(1160px, calc(100% - 28px));
      margin: 0 auto;
    }

    h1, h2, h3, h6 {
      margin: 0 0 14px;
      line-height: 1.35;
    }

    h1 { font-size: clamp(26px, 3.2vw, 40px); max-width: 900px; }
    h2 { font-size: clamp(24px, 3vw, 36px); }
    h3 { font-size: 22px; }
    section { padding: 30px 0; }

    main > section:not(.hero) {
      content-visibility: auto;
      contain-intrinsic-size: auto 520px;
    }

    .section-head {
      text-align: center;
      margin-bottom: 22px;
    }

    .section-subtitle { color: var(--muted); }

    .service-bar {
      background: linear-gradient(90deg, #11192b, #243358);
      color: #fff;
      font-size: 14px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .service-bar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 10px 0;
      min-height: 48px;
    }

    .service-bar-text {
      font-weight: 700;
      white-space: nowrap;
    }

    .service-bar-points {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      color: rgba(255,255,255,.95);
      justify-content: flex-end;
    }

    .service-bar-points span::before {
      content: "✔";
      margin-left: 6px;
      color: #ff8a8f;
    }

    .sticky-cta {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(17, 25, 43, .96);
      color: #fff;
      border-bottom: 1px solid rgba(255,255,255,.08);
      backdrop-filter: blur(8px);
    }

    .sticky-cta .container {
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 8px 0;
    }

    .sticky-text {
      font-size: 14px;
      color: rgba(255,255,255,.92);
      white-space: nowrap;
      min-height: 22px;
      display: flex;
      align-items: center;
    }

    .cta-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .cta-row-centered { justify-content: center; }
    .hero-actions { margin-top: 22px; }

    .btn {
      min-height: 50px;
      padding: 0 22px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 15px;
      transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
      font-family: "Cairo", Tahoma, sans-serif;
    }

    .btn-call {
      background: var(--accent);
      color: #222;
      font-weight: 800;
      box-shadow: 0 8px 20px rgba(255,90,95,.3);
    }

    .btn-call:hover { background: var(--accent-dark); }

    .btn-whatsapp {
      background: #25d366;
      color: #fff;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(37,211,102,.3);
    }

    .btn-whatsapp:hover {
      background: #1ebe5d;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(37,211,102,.4);
    }

    .btn-lg {
      font-size: 17px;
      min-height: 56px;
      padding: 0 30px;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 54px 0 36px;
      color: #fff;
      min-height: 560px;
      display: flex;
      align-items: center;
      background: radial-gradient(circle at top left, rgba(38,103,232,.24), transparent 30%), linear-gradient(120deg, #10172a, #1f2d4f);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 18, 32, .62);
      z-index: 1;
    }

    .hero .container { position: relative; z-index: 2; }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: center;
      max-width: 760px;
    }

    .badge {
      display: inline-block;
      background: rgba(255,90,95,.16);
      color: #fff;
      border: 1px solid rgba(255,255,255,.18);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .lead {
      color: rgba(255,255,255,.92);
      margin: 0 0 16px;
    }

    .hero-points {
      list-style: none;
      padding: 0;
      margin: 0 0 10px;
    }

    .hero-points li {
      position: relative;
      padding-right: 24px;
      margin-bottom: 10px;
      color: rgba(255,255,255,.92);
    }

    .hero-points li::before {
      content: "✔";
      position: absolute;
      right: 0;
      top: 0;
      color: var(--accent);
      font-weight: 700;
    }

    .hero-note {
      margin-top: 14px;
      font-size: 14px;
      color: rgba(255,255,255,.8);
      background: rgba(255,255,255,.08);
      display: inline-block;
      padding: 6px 14px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.1);
    }

    .trust-bar {
      margin-top: 14px;
      font-size: 14px;
      color: rgba(255,255,255,.85);
    }

    .hero-cards {
      margin-top: 18px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-mini-card {
      flex: 1 1 180px;
      min-height: 110px;
      padding: 14px 16px;
      background: rgba(255,255,255,.1);
      color: #fff;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
    }

    .hero-mini-card strong {
      display: block;
      margin-bottom: 4px;
      color: #fff;
    }

    .stats {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .stat {
      text-align: center;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px 12px;
      background: #f9fbff;
      min-height: 132px;
    }

    .stat-icon {
      font-size: 28px;
      margin-bottom: 6px;
    }

    .stat strong {
      display: block;
      color: var(--primary);
      font-size: 17px;
      font-weight: 700;
    }

    .grid-3, .grid-2, .reasons-grid, .gallery-grid {
      display: grid;
      gap: 18px;
    }

    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .reasons-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }

    .card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 24px;
      border: 1px solid rgba(0,0,0,.03);
      transition: transform .3s ease, box-shadow .3s ease;
      min-height: 100%;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 50px rgba(0,0,0,.12);
    }

    .card p { color: var(--muted); }
    .card-icon { font-size: 36px; margin-bottom: 10px; }

    .service-tag {
      display: inline-block;
      font-size: 13px;
      background: #eef2ff;
      color: var(--secondary);
      border-radius: 999px;
      padding: 6px 10px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .checks {
      list-style: none;
      padding: 0;
      margin: 10px 0 0;
    }

    .checks li {
      position: relative;
      padding-right: 24px;
      margin-bottom: 8px;
      color: var(--muted);
    }

    .checks li::before {
      content: "✔";
      position: absolute;
      right: 0;
      top: 0;
      color: var(--accent);
      font-weight: 700;
    }

    .mid-cta {
      text-align: center;
      padding: 20px 0;
    }

    .mid-cta-copy {
      margin: 0 0 14px;
      color: var(--muted);
      font-weight: 600;
    }

    .gallery-card {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 0;
      transition: transform .3s ease;
    }

    .gallery-card:hover { transform: translateY(-4px); }

    .gallery-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      background: #e8eef9;
    }

    .gallery-card .content {
      padding: 18px;
      min-height: 140px;
    }

    .gallery-card .content p { color: var(--muted); }

    .reason {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px;
      box-shadow: var(--shadow);
      transition: transform .3s ease;
      min-height: 100%;
    }

    .reason:hover { transform: translateY(-3px); }
    .reason strong { display: block; margin-bottom: 6px; font-size: 18px; }
    .reason span { color: var(--muted); }
    .reason-icon { font-size: 30px; margin-bottom: 8px; }

    .review-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      min-height: 100%;
    }

    .stars {
      color: #ff5a5f;
      font-size: 22px;
      letter-spacing: 2px;
    }

    .stars-label {
      font-size: 13px;
      color: var(--muted);
      margin-right: 6px;
    }

    .reviewer {
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px;
      box-shadow: var(--shadow);
      min-height: 100%;
    }

    .faq-item h3 {
      font-size: 18px;
      color: var(--primary);
    }

    .faq-item p { color: var(--muted); }

    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--secondary);
      color: #fff;
      font-weight: 800;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .contact-box {
      background: linear-gradient(135deg, var(--primary-dark), #233864);
      color: #fff;
      padding: 34px 24px;
      text-align: center;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .contact-box h2 { color: #fff; }
    .contact-box p { color: rgba(255,255,255,.92); }

    .contact-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }

    .contact-actions-spaced { margin-top: 20px; }

    .contact-location {
      margin-top: 16px;
      font-size: 14px;
      opacity: .85;
    }

    .step-card { text-align: center; }

    footer {
      padding: 24px 0 38px;
      text-align: center;
      color: var(--muted);
      font-size: 14px;
      background: #fff;
      margin-top: 20px;
    }

    .footer-heading {
      font-size: 15px;
      margin: 8px 0;
      font-weight: 600;
      color: #333;
    }

    .footer-action { margin: 14px 0; }
    .copyright { margin-top: 14px; }

    .developer-credit {
      margin-top: 10px;
      font-size: 13px;
      color: #888;
    }

    .developer-link {
      color: var(--accent);
      font-weight: 600;
    }

    .footer-link {
      background: #233864;
      color: #fff;
      padding: 6px 12px;
      border-radius: 6px;
      font-weight: 600;
      display: inline-block;
      transition: background .2s;
    }

    .footer-link:hover { background: #18233b; }

    .floating-whatsapp,
    .floating-call {
      position: fixed;
      bottom: 18px;
      z-index: 1001;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      color: #fff;
      box-shadow: 0 6px 20px rgba(0,0,0,.25);
      transition: transform .2s ease;
      contain: paint;
    }

    .floating-whatsapp:hover,
    .floating-call:hover { transform: scale(1.06); }

    .floating-whatsapp { right: 18px; background: #25d366; }
    .floating-call { left: 18px; background: var(--secondary); }

    @media (max-width: 992px) {
      .grid-3 { grid-template-columns: repeat(2, 1fr); }
      .reasons-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .grid-3,
      .grid-2,
      .reasons-grid,
      .gallery-grid { grid-template-columns: 1fr; }

      .stats { grid-template-columns: repeat(3, 1fr); }

      .service-bar .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
      }

      .service-bar-text { white-space: normal; min-height: 22px; }
      .service-bar-points { justify-content: center; }

      .sticky-cta .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
      }

      .sticky-text { white-space: normal; justify-content: center; }
      .cta-row { justify-content: center; }

      .hero {
        min-height: 420px;
        padding: 36px 0 28px;
      }
    }

    @media (max-width: 480px) {
      .stats { grid-template-columns: 1fr; }
      .hero-cards { flex-direction: column; }
      .cta-row { flex-direction: column; align-items: stretch; }
      .cta-row .btn { width: 100%; }
      .contact-actions { flex-direction: column; align-items: stretch; }
      .contact-actions .btn { width: 100%; }
      .floating-whatsapp,
      .floating-call { width: 54px; height: 54px; font-size: 24px; }
    }
