  /* ================= BASE STYLES ================= */
    html, body {
      margin: 0 !important; padding: 0 !important; width: 100%;
      overflow-x: hidden; min-height: 100vh;
      background-color: #f9f6f4; font-family: 'Tajawal', sans-serif;
      color: #2f3e2e; line-height: 1.6; scroll-behavior: smooth;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }

    /* ================= HEADER & NAV ================= */
    header {
      position: sticky; top: 0; z-index: 1000;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      background-color: #3d5d45; height: 90px;
      display: flex; align-items: center; margin: 0 !important;
    }
    nav {
      padding: 0 3%; display: flex; justify-content: space-between;
      align-items: center; color: white; width: 100%; max-width: 1400px; margin: 0 auto;
    }
    nav .logo {
      display: flex; align-items: center; gap: 12px; font-size: 1.8rem;
      font-weight: 900; text-decoration: none; color: #fff;
    }
    nav .logo i { color: #2ecc71; font-size: 2rem; }
    
    .header-controls { display: flex; align-items: center; gap: 15px; margin-left: auto; }
    .lang-toggle {
      background-color: #fff; border: 1px solid #ccc; border-radius: 8px;
      padding: 6px 14px; font-size: 15px; cursor: pointer; color: #3d5d45;
      font-weight: bold; transition: all 0.3s ease; display: flex; align-items: center; gap: 5px;
    }
    .lang-toggle:hover { background-color: #eef0e6; transform: scale(1.05); }
    .menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer; }
    
    .nav-elements { display: flex; align-items: center; gap: 20px; }
    .close-menu { display: none; }
    nav ul { display: flex; list-style: none; gap: 0.2rem; align-items: center; }
    nav ul li a.nav-link {
      color: #fff; text-decoration: none; font-size: 15px; padding: 8px 10px;
      border-radius: 6px; transition: background-color 0.3s ease; font-weight: 500;
    }
    nav ul li a.nav-link:hover { background-color: #5b7f5b; }
    .nav-contact-btns { display: flex; gap: 12px; align-items: center; }
    .contact-btn {
      display: inline-flex; align-items: center; gap: 8px; font-size: 15px;
      padding: 0.6rem 1.2rem; border-radius: 8px; text-decoration: none; color: white; font-weight: bold;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .contact-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
    .btn-phone { background-color: #2f3e2e; }
    .btn-wa { background-color: #25d366; }
    
    /* Dropdown for separate pages */
    nav ul li.dropdown { position: relative; }
    .dropdown-content {
      display: none; flex-direction: column; background-color: #3d5d45; padding: 12px;
      border-radius: 0 0 8px 8px; position: absolute; top: 100%; left: 0; min-width: 260px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    html[dir="rtl"] .dropdown-content { left: auto; right: 0; }
    nav ul li.dropdown:hover .dropdown-content { display: flex; }
    .dropdown-content a { color: #fff; padding: 10px 15px; text-decoration: none; transition: 0.3s; border-radius: 4px; margin-bottom: 2px; }
    .dropdown-content a:hover { background-color: rgba(255, 255, 255, 0.15); padding-left: 20px; }
    html[dir="rtl"] .dropdown-content a:hover { padding-left: 15px; padding-right: 20px; }

    /* ================= BANNERS ================= */
    .warning-banner {
      background-color: #fff3cd; color: #856404; text-align: center; padding: 15px;
      width: 100%; font-weight: bold; font-size: 1.1rem;
      border-bottom: 1px solid #ffecb5; display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .feature-banner {
      background: linear-gradient(135deg, #3d5d45, #2ecc71); color: white;
      text-align: center; padding: 40px 20px; margin: 3rem auto; max-width: 1200px;
      border-radius: 20px; box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .feature-banner h3 { font-size: 2rem; font-weight: 900; margin-bottom: 10px; }
    .feature-banner p { font-size: 1.2rem; max-width: 800px; line-height: 1.6; }

    /* ================= HERO SECTION ================= */
    .hero-modern {
      display: flex; align-items: center; justify-content: space-between;
      min-height: 85vh; padding: 4rem 5%; background: linear-gradient(135deg, #eef0e6 0%, #ffffff 100%);
      position: relative; overflow: hidden; max-width: 1400px; margin: 0 auto;
    }
    .hero-modern::before {
      content: ''; position: absolute; top: -10%; right: -5%; width: 500px; height: 500px;
      background: rgba(46, 204, 113, 0.08); border-radius: 50%; z-index: 0; filter: blur(60px);
    }
    .hero-content { flex: 1; max-width: 650px; z-index: 1; }
    .hero-image-wrapper { flex: 1; display: flex; justify-content: flex-end; z-index: 1; position: relative; }
    .hero-img-box {
      width: 100%; max-width: 550px; border-radius: 20px; overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.15); border: 8px solid #fff;
      transform: translateY(0); animation: float 6s ease-in-out infinite;
      position: relative;
    }
    .hero-img-box img { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 4/3; }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: #2f3e2e;
      line-height: 1.2; margin-bottom: 1rem;
    }
    .hero-title span { color: #2ecc71; }
    .hero-desc { font-size: 1.2rem; color: #4a6a50; margin-bottom: 2rem; line-height: 1.8; }
    
    .hero-buttons-group { display: flex; gap: 15px; flex-wrap: wrap; }
    .btn-hero-primary, .btn-hero-secondary {
      padding: 14px 28px; font-size: 1.1rem; font-weight: bold; border-radius: 50px;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease;
    }
    .btn-hero-primary { background-color: #2ecc71; color: #fff; box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3); }
    .btn-hero-primary:hover { background-color: #27ae60; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4); }
    .btn-hero-secondary { background-color: transparent; color: #3d5d45; border: 2px solid #3d5d45; }
    .btn-hero-secondary:hover { background-color: #3d5d45; color: #fff; transform: translateY(-3px); }

    .uae-badge {
      display: inline-flex; align-items: center; gap: 10px; background: rgba(46, 204, 113, 0.15);
      color: #2f3e2e; padding: 8px 20px; border-radius: 50px; font-weight: bold; font-size: 1rem;
      margin-bottom: 20px; border: 1px solid rgba(46, 204, 113, 0.4);
    }

    /* ================= SERVICE CARDS ================= */
    .services-modern { padding: 4rem 5%; background-color: #f9f6f4; }
    .section-title-wrapper { text-align: center; margin-bottom: 3.5rem; }
    .section-title { font-size: 2.5rem; color: #3d5d45; margin-bottom: 15px; font-weight: 800; }
    .section-subtitle { color: #4a6a50; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
    
    .cards-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px; max-width: 1300px; margin: 0 auto;
    }
    .card-modern {
      background: #fff; border-radius: 16px; text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: all 0.4s ease;
      display: flex; flex-direction: column; overflow: hidden;
    }
    .card-modern:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
    
    .card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
    .card-modern:hover .card-img { transform: scale(1.05); }
    
    .card-content { padding: 25px 20px; flex-grow: 1; display: flex; flex-direction: column; position: relative; }
    .card-icon-box {
      width: 60px; height: 60px; background: #fff; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; margin: -55px auto 15px;
      color: #2ecc71; font-size: 1.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      position: relative; z-index: 2; border: 3px solid #f9f6f4; transition: all 0.3s ease;
    }
    .card-modern:hover .card-icon-box { background: #2ecc71; color: #fff; transform: rotateY(180deg); }
    .card-modern:hover .card-icon-box i { transform: rotateY(-180deg); }
    
    .card-title { font-size: 1.3rem; color: #2f3e2e; margin-bottom: 10px; font-weight: 700; }
    .card-desc { color: #666; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
    .card-link {
      display: inline-flex; align-items: center; gap: 8px; color: #fff; background: #3d5d45;
      padding: 10px 20px; border-radius: 50px; font-weight: bold; text-decoration: none; font-size: 0.95rem;
      transition: all 0.3s ease; align-self: center; width: 100%; justify-content: center;
    }
    .card-link:hover { background: #2ecc71; box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4); }

    /* ================= ABOUT & FAQ ================= */
    .about-us { background-color: #fff; padding: 5rem 5%; text-align: center; }
    .dubai-logo-section {
      
      display: flex; flex-direction: column; align-items: center; background-color: #f9f6f4;
      padding: 2rem; border-radius: 15px; margin: 2rem auto; max-width: 500px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 2px solid #2ecc71;
      
    }
    .dubai-logo-section img { max-width: 250px; margin-top: 15px; border-radius: 8px; }

    .faq-section { padding: 4rem 5%; background-color: #eef0e6; text-align: center; }
    .faq-container { max-width: 800px; margin: 0 auto; text-align: left; }
    html[dir="rtl"] .faq-container { text-align: right; }
    .faq-item { margin-bottom: 15px; background: #fff; border-radius: 10px; box-shadow: 0 3px 10px rgba(0,0,0,0.03); overflow: hidden; }
    .faq-item details { padding: 20px; cursor: pointer; transition: background 0.3s; }
    .faq-item details[open] { background: #fdfdfd; }
    .faq-item summary {
      font-size: 1.1rem; font-weight: 700; color: #2f3e2e; list-style: none;
      display: flex; justify-content: space-between; align-items: center; outline: none;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: '\f078'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #2ecc71; transition: transform 0.3s; }
    .faq-item details[open] summary::after { transform: rotate(180deg); }
    .faq-answer { padding-top: 15px; color: #555; line-height: 1.7; font-size: 1rem; border-top: 1px solid #eee; margin-top: 15px; }
    .highlight-price { color: #2ecc71; font-weight: 900; font-size: 1.1rem; }

    /* ================= FOOTER (Responsive Mobile Center) ================= */
    .site-footer {
      background: linear-gradient(to bottom, #2a3d2e, #1e2924);
      color: #fff; padding: 4rem 5% 1.5rem; width: 100%; border-top: 5px solid #2ecc71;
    }
    .footer-container {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px; max-width: 1300px; margin: 0 auto;
    }
    .footer-col h3 { color: #2ecc71; margin-bottom: 1.5rem; font-size: 1.4rem; position: relative; padding-bottom: 10px; }
    .footer-col h3::after { content: ""; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background-color: #2ecc71; border-radius: 2px; }
    html[dir="rtl"] .footer-col h3::after { left: auto; right: 0; }
    
    .footer-col p { color: #cfd8dc; line-height: 1.8; margin-bottom: 1rem; }
    .footer-links ul { list-style: none; }
    .footer-links ul li { margin-bottom: 12px; }
    .footer-links a { color: #cfd8dc; text-decoration: none; transition: all 0.3s; display: inline-block; }
    .footer-links a:hover { color: #2ecc71; transform: translateX(5px); }
    html[dir="rtl"] .footer-links a:hover { transform: translateX(-5px); }
    
    .footer-contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
    .footer-contact-item .icon-box {
      width: 40px; height: 40px; background: rgba(46, 204, 113, 0.1); border-radius: 50%;
      display: flex; justify-content: center; align-items: center; color: #2ecc71; font-size: 1.2rem; flex-shrink: 0;
    }
    .footer-contact-info h4 { font-size: 1rem; margin-bottom: 2px; color: #fff; }
    .footer-contact-info a, .footer-contact-info span { color: #cfd8dc; text-decoration: none; font-size: 0.95rem; transition: color 0.3s; display: block;}
    .footer-contact-info a:hover { color: #2ecc71; }

    .whatsapp-float {
      position: fixed; bottom: 25px; left: 25px; background-color: #25d366; color: white;
      width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center;
      align-items: center; font-size: 30px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000;
      transition: transform 0.3s;
    }
    .whatsapp-float:hover { transform: scale(1.1); }
    html[dir="rtl"] .whatsapp-float { left: auto; right: 25px; }

    @media (max-width: 992px) {
      .hero-modern { flex-direction: column; text-align: center; padding-top: 3rem; }
      .hero-image-wrapper { margin-top: 3rem; justify-content: center; }
      .hero-buttons-group { justify-content: center; }
      
      .menu-toggle { display: block; }
      .nav-elements {
        position: fixed; top: 0; left: -100%; width: 300px; height: 100vh;
        background: #f9f6f4; flex-direction: column; padding: 20px; transition: 0.3s; z-index: 1001;
      }
      html[dir="rtl"] .nav-elements { left: auto; right: -100%; }
      .nav-elements.open { left: 0; box-shadow: 5px 0 15px rgba(0,0,0,0.2); }
      html[dir="rtl"] .nav-elements.open { right: 0; box-shadow: -5px 0 15px rgba(0,0,0,0.2); }
      
      .close-menu { display: block; font-size: 1.8rem; background: none; border: none; color: #3d5d45; position: absolute; top: 20px; right: 20px; }
      nav ul { flex-direction: column; width: 100%; margin-top: 60px; align-items: flex-start; gap: 0; }
      nav ul li { width: 100%; }
      nav ul li a.nav-link { color: #3d5d45; padding: 15px; display: block; border-bottom: 1px solid #ddd; width: 100%; font-weight: bold; font-size: 16px; }
      .nav-contact-btns { flex-direction: column; width: 100%; margin-top: 20px; align-items: stretch; }
      .nav-contact-btns a { justify-content: center; padding: 12px; }
      
      .dropdown-content { position: static; box-shadow: none; background: rgba(0,0,0,0.05); width: 100%; border-radius: 8px; margin-top: 5px; }
      .dropdown-content a { color: #3d5d45; border-bottom: 1px dashed #ccc; }
    }

    /* VERY IMPORTANT: Footer Mobile Centering */
    @media (max-width: 768px) {
      .footer-container { 
        text-align: center; 
        grid-template-columns: 1fr; /* Force single column */
      }
      .footer-col { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
      }
      .footer-col h3::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
      }
      .footer-contact-item { 
        flex-direction: column; 
        text-align: center; 
        gap: 8px; 
      }
      .footer-links a:hover { transform: none; color: #2ecc71; }
      html[dir="rtl"] .footer-links a:hover { transform: none; }
    }
    