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

    :root {
      --black: #0a0a0a;
      --black-light: #141414;
      --black-card: #1a1a1a;
      --yellow: #FFE500;
      --yellow-dark: #e6ce00;
      --white: #ffffff;
      --gray: #a3a3a3;
      --gray-dark: #737373;
      --border: rgba(255, 255, 255, 0.08);
      --radius: 12px;
      --transition: 0.3s ease;
      --skeleton: #222;
      --skeleton-shine: #2e2e2e;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Cairo', sans-serif;
      background: var(--black);
      color: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }

    .icon {
      width: 1.25em;
      height: 1.25em;
      flex-shrink: 0;
      display: inline-block;
      vertical-align: middle;
    }

    .icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .icon-lg { width: 28px; height: 28px; }
    .icon-xl { width: 32px; height: 32px; }

    .container {
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    /* â”€â”€ Image loader / fallback â”€â”€ */
    .img-loader {
      position: relative;
      overflow: hidden;
      background: var(--skeleton);
    }

    .img-loader::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, var(--skeleton) 0%, var(--skeleton-shine) 50%, var(--skeleton) 100%);
      background-size: 200% 100%;
      animation: shimmer 1.4s ease-in-out infinite;
      z-index: 2;
      transition: opacity 0.3s;
    }

    .img-loader.loaded::before { opacity: 0; pointer-events: none; }
    .img-loader.error::before { animation: none; background: var(--skeleton); }

    .img-loader .img-fallback {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: var(--gray-dark);
      z-index: 1;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .img-loader.error .img-fallback { opacity: 1; }
    .img-loader.error img { opacity: 0 !important; }

    .img-loader .img-fallback svg { width: 40px; height: 40px; opacity: 0.4; }
    .img-loader .img-fallback span { font-size: 0.75rem; font-weight: 600; }

    .img-loader img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.45s ease;
      position: relative;
      z-index: 3;
    }

    .img-loader.loaded img { opacity: 1; }

    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* â”€â”€ Navbar â”€â”€ */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: var(--transition);
    }

    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .nav-logo .img-loader { width: auto; height: 62px; background: transparent; }
    .nav-logo .img-loader::before { display: none; }
    .nav-logo .img-loader img { width: auto; height: 62px; object-fit: contain; opacity: 1; }

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

    .nav-links a {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--gray);
      transition: var(--transition);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-family: inherit;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      border: none;
      transition: var(--transition);
    }

    .btn .icon { width: 18px; height: 18px; }

    .btn-yellow {
      background: var(--yellow);
      color: var(--black);
    }

    .btn-yellow:hover {
      background: var(--yellow-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 229, 0, 0.25);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.25);
    }

    .btn-outline:hover {
      border-color: var(--yellow);
      color: var(--yellow);
    }

    .btn-whatsapp {
      background: #25D366;
      color: white;
    }

    .btn-whatsapp:hover {
      background: #1fb855;
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      color: var(--white);
    }

    .menu-toggle .icon { width: 24px; height: 24px; }

    /* â”€â”€ Hero â”€â”€ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding-top: 72px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg .img-loader,
    .hero-bg .img-loader img {
      width: 100%;
      height: 100%;
      min-height: 100vh;
    }

    .hero-bg .img-loader img { object-fit: cover; }

    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.72) 50%, rgba(10,10,10,0.88) 100%);
      pointer-events: none;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image:
        linear-gradient(rgba(255,229,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,229,0,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .hero-accent {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,229,0,0.12) 0%, transparent 70%);
      top: -100px;
      left: -150px;
      pointer-events: none;
      z-index: 1;
    }

    .hero .container {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      padding: 4rem 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 229, 0, 0.1);
      border: 1px solid rgba(255, 229, 0, 0.3);
      color: var(--yellow);
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .hero-badge .icon { width: 16px; height: 16px; color: var(--yellow); }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 0.5rem;
    }

    .hero h1 span { color: var(--yellow); }

    .hero-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      color: var(--gray);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .hero-desc {
      font-size: 1.05rem;
      color: var(--gray);
      max-width: 520px;
      margin-bottom: 2rem;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
    }

    .stat-num {
      font-size: 2rem;
      font-weight: 900;
      color: var(--yellow);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.85rem;
      color: var(--gray);
      margin-top: 0.25rem;
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-logo-wrap {
      position: relative;
      width: 100%;
      max-width: 420px;
    }

    .hero-logo-wrap::before {
      content: '';
      position: absolute;
      inset: -20px;
      border: 2px solid rgba(255, 229, 0, 0.2);
      border-radius: var(--radius);
      transform: rotate(-3deg);
    }

    .hero-logo-wrap .img-loader {
      border-radius: var(--radius);
      aspect-ratio: unset;
      height: auto;
      background: transparent;
      overflow: visible;
      position: relative;
      z-index: 1;
    }

    .hero-logo-wrap .img-loader::before { display: none; }

    .hero-logo-wrap .img-loader img {
      object-fit: contain;
      background: transparent;
      width: 100%;
      height: auto;
      max-height: 320px;
    }

    .scroll-hint {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      color: var(--gray);
      font-size: 0.85rem;
      z-index: 2;
      animation: bounce 2s infinite;
    }

    .scroll-hint .icon { width: 20px; height: 20px; color: var(--yellow); }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* â”€â”€ Section common â”€â”€ */
    section { padding: 5rem 0; }

    .section-label {
      display: inline-block;
      color: var(--yellow);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 1px;
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 900;
      margin-bottom: 1rem;
    }

    .section-desc {
      color: var(--gray);
      max-width: 600px;
      margin-bottom: 3rem;
    }

    .section-header { text-align: center; }
    .section-header .section-desc { margin-inline: auto; }

    /* â”€â”€ Services â”€â”€ */
    .services { background: var(--black-light); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 4px;
      height: 0;
      background: var(--yellow);
      transition: var(--transition);
    }

    .service-card:hover {
      border-color: rgba(255, 229, 0, 0.2);
      transform: translateY(-4px);
    }

    .service-card:hover::before { height: 100%; }

    .service-icon,
    .why-icon,
    .contact-icon {
      width: 56px;
      height: 56px;
      background: rgba(255, 229, 0, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--yellow);
      margin-bottom: 1.25rem;
    }

    .why-icon { margin-inline: auto; margin-bottom: 1rem; }

    .service-icon .icon,
    .why-icon .icon,
    .contact-icon .icon { width: 26px; height: 26px; }

    .contact-icon { margin-bottom: 0; width: 44px; height: 44px; }
    .contact-icon .icon { width: 22px; height: 22px; }

    .service-card h3 {
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
    }

    .service-card p {
      color: var(--gray);
      font-size: 0.95rem;
    }

    /* â”€â”€ Why Us â”€â”€ */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.5rem;
    }

    .why-card {
      text-align: center;
      padding: 2rem 1.5rem;
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: var(--transition);
    }

    .why-card:hover {
      border-color: rgba(255, 229, 0, 0.25);
      transform: translateY(-4px);
    }

    .why-card h3 {
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    .why-card p {
      color: var(--gray);
      font-size: 0.9rem;
    }

    /* â”€â”€ Before/After â”€â”€ */
    .gallery { background: var(--black-light); }

    .ba-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 2rem;
    }

    .ba-card {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
    }

    .ba-card:hover { border-color: rgba(255, 229, 0, 0.2); }

    .ba-slider {
      position: relative;
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      cursor: ew-resize;
      user-select: none;
      background: var(--skeleton);
    }

    .ba-slider .img-loader.ba-before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .ba-after-wrap {
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      height: 100%;
      overflow: hidden;
      z-index: 4;
    }

    .ba-after-wrap .img-loader.ba-after {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      overflow: visible;
    }

    .ba-after-wrap .img-loader.ba-after img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: none;
    }

    .ba-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--yellow);
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      cursor: ew-resize;
    }

    .ba-handle-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: var(--yellow);
      color: var(--black);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    }

    .ba-handle-btn .icon { width: 18px; height: 18px; }

    .ba-label {
      position: absolute;
      top: 12px;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 800;
      z-index: 11;
    }

    .ba-label-before {
      right: 12px;
      background: rgba(0,0,0,0.7);
      color: var(--white);
    }

    .ba-label-after {
      left: 12px;
      background: var(--yellow);
      color: var(--black);
    }

    .ba-info {
      padding: 1.25rem 1.5rem;
    }

    .ba-info h3 {
      font-size: 1rem;
      font-weight: 700;
    }

    /* â”€â”€ Videos â”€â”€ */
    .videos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .video-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 16/9;
      cursor: pointer;
      border: 1px solid var(--border);
      transition: var(--transition);
    }

    .video-card:hover {
      border-color: rgba(255, 229, 0, 0.3);
      transform: scale(1.02);
    }

    .video-card .img-loader {
      width: 100%;
      height: 100%;
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.25rem;
      z-index: 5;
      pointer-events: none;
    }

    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 56px;
      height: 56px;
      background: var(--yellow);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--black);
      transition: var(--transition);
      z-index: 5;
      pointer-events: none;
    }

    .play-btn .icon { width: 22px; height: 22px; margin-inline-start: 3px; }

    .video-card:hover .play-btn {
      transform: translate(-50%, -50%) scale(1.1);
    }

    .video-title {
      font-weight: 700;
      font-size: 0.95rem;
    }

    /* â”€â”€ Testimonials â”€â”€ */
    .testimonials { background: var(--black-light); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .testimonial-card {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      position: relative;
    }

    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 1rem;
      left: 1.5rem;
      font-size: 4rem;
      color: var(--yellow);
      opacity: 0.2;
      line-height: 1;
      font-family: Georgia, serif;
    }

    .stars {
      display: flex;
      gap: 3px;
      margin-bottom: 1rem;
      color: var(--yellow);
    }

    .stars .icon { width: 16px; height: 16px; }

    .testimonial-text {
      color: var(--gray);
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      font-weight: 700;
      font-size: 0.9rem;
    }

    .testimonial-author span {
      color: var(--gray);
      font-weight: 400;
    }

    /* â”€â”€ Contact â”€â”€ */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .contact-info-card {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2.5rem;
    }

    .contact-info-card h3 {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      color: var(--yellow);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }

    .contact-item strong {
      display: block;
      font-size: 0.85rem;
      color: var(--gray);
      margin-bottom: 0.15rem;
    }

    .contact-item p, .contact-item a {
      font-weight: 700;
      font-size: 1rem;
    }

    .contact-item a:hover { color: var(--yellow); }

    .contact-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .social-links {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .social-link {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: var(--transition);
    }

    .social-link .icon { width: 20px; height: 20px; }

    .social-link:hover {
      background: var(--yellow);
      color: var(--black);
      border-color: var(--yellow);
    }

    .map-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      height: 100%;
      min-height: 400px;
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      min-height: 400px;
      border: 0;
      filter: grayscale(80%) invert(92%) contrast(90%);
    }

    .hours-box {
      background: rgba(255, 229, 0, 0.08);
      border: 1px solid rgba(255, 229, 0, 0.2);
      border-radius: var(--radius);
      padding: 1.25rem;
      margin-top: 1.5rem;
    }

    .hours-title {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--yellow);
      font-weight: 800;
      margin-bottom: 0.25rem;
    }

    .hours-title .icon { width: 18px; height: 18px; color: var(--yellow); }

    /* â”€â”€ Footer â”€â”€ */
    footer {
      background: var(--black-light);
      border-top: 1px solid var(--border);
      padding: 2.5rem 0;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-logo .img-loader { height: 36px; background: transparent; }
    .footer-logo .img-loader::before { display: none; }
    .footer-logo .img-loader img { height: 36px; width: auto; object-fit: contain; opacity: 1; }

    .footer-text {
      color: var(--gray);
      font-size: 0.9rem;
    }

    /* â”€â”€ Animations â”€â”€ */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* â”€â”€ Floating WhatsApp â”€â”€ */
    .float-wa {
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 999;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      transition: var(--transition);
    }

    .float-wa .icon { width: 28px; height: 28px; }

    .float-wa:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    }

    /* â”€â”€ Responsive â”€â”€ */
    @media (max-width: 900px) {
      .hero .container { grid-template-columns: 1fr; text-align: center; }
      .hero-desc { margin-inline: auto; }
      .hero-buttons { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual { order: -1; }
      .hero-logo-wrap { max-width: 280px; margin-inline: auto; }
      .contact-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        background: var(--black);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
      }

      .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
      }

      .menu-toggle { display: flex; }
      .ba-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; text-align: center; }
    }

    a.video-card {
      display: block;
      text-decoration: none;
      color: inherit;
    }
