    /* نظام الألوان الجديد */
    :root {
      --bg: #ffffff;
      --primary: #376c9e;
      --secondary: #eebb70;
      --primary-light: #4a8bc2;
      --primary-dark: #2a5279;
      --secondary-light: #f4d19e;
      --secondary-dark: #d9a95a;
      --muted: #4b5563;
      --card-bg: #f8fafc;
      --border: #e2e8f0;
      --accent: linear-gradient(135deg, #376c9e, #eebb70);
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    /* وضع التباين العالي */
    .high-contrast {
      --bg: #000000;
      --primary: #ffffff;
      --muted: #cccccc;
      --card-bg: #1a1a1a;
      --border: #444444;
      --accent: linear-gradient(135deg, #ffffff, #eebb70);
      --shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
      --shadow-hover: 0 8px 24px rgba(255, 255, 255, 0.2);
    }

    * { 
      box-sizing: border-box; 
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Cairo', sans-serif;
      background: var(--bg);
      color: var(--primary);
      line-height: 1.6;
      transition: all 0.3s ease;
      overflow-x: hidden;
    }
    
    a { 
      text-decoration: none; 
      color: inherit;
    }

    /* شريط التقدم */
    .progress-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: transparent;
      z-index: 1000;
    }

    .progress-bar {
      height: 100%;
      background: var(--secondary);
      width: 0%;
      transition: width 0.3s ease;
    }

    /* NAVBAR */
    .navbar {
      position: fixed;
      top: 0; 
      right: 0; 
      left: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 28px;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow);
      z-index: 100;
      border-bottom: 1px solid var(--border);
    }
    
    .navbar img {
      height: 50px;
      object-fit: contain;
    }
    
    .navbar nav a {
      margin: 0 12px;
      color: var(--primary);
      font-weight: 600;
      transition: color .3s;
      position: relative;
      font-size: 16px;
    }
    
    .navbar nav a:hover { 
      color: var(--secondary); 
    }
    
    .navbar nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      right: 0;
      width: 0;
      height: 2px;
      background: var(--secondary);
      transition: width 0.3s ease;
    }
    
    .navbar nav a:hover::after {
      width: 100%;
    }

    /* HAMBURGER - تصميم أكثر أناقة */
    .hamburger {
      display: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--primary);
      background: var(--card-bg);
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
      z-index: 201;
    }
    
    .hamburger:hover {
      background: var(--primary);
      color: white;
      transform: scale(1.05);
    }
    
    @media (max-width: 768px) {
      .navbar nav { display: none; }
      .hamburger { display: block; }
    }

    /* SIDEMENU - التصميم المحسن */
    .side-menu {
      position: fixed;
      top: 0; 
      right: -320px;
      width: 300px;
      height: 100%;
      background: var(--bg);
      box-shadow: -5px 0 25px rgba(0,0,0,0.15);
      padding: 80px 0 30px;
      transition: right .4s ease;
      z-index: 200;
      border-left: 1px solid var(--border);
      overflow-y: auto;
    }

    .side-menu.active { 
      right: 0; 
    }

    .side-menu-header {
      padding: 0 25px 20px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }

    .side-menu-logo {
      height: 50px;
      object-fit: contain;
    }

    .side-menu-close {
      position: absolute;
      top: 25px;
      left: 25px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
      color: var(--primary);
      transition: all 0.3s ease;
    }

    .side-menu-close:hover {
      background: var(--primary);
      color: white;
      transform: scale(1.05);
    }

    .side-menu a {
      display: flex;
      align-items: center;
      margin: 8px 15px;
      padding: 15px 20px;
      color: var(--primary);
      font-weight: 600;
      border-radius: 12px;
      transition: all 0.3s ease;
      font-size: 16px;
    }

    .side-menu a i {
      margin-left: 12px;
      font-size: 18px;
      width: 24px;
      text-align: center;
      color: var(--secondary);
    }

    .side-menu a:hover {
      background: var(--card-bg);
      transform: translateX(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    .side-menu-footer {
      padding: 20px 25px 0;
      margin-top: 20px;
      border-top: 1px solid var(--border);
    }

    .side-menu-footer p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 15px;
    }

    .side-menu-social {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 15px;
    }

    .side-menu-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--card-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      transition: all 0.3s ease;
      margin: 0;
      padding: 0;
    }

    .side-menu-social a:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }

    /* طبقة التعتيم خلف القائمة */
    .side-menu-overlay {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0,0,0,0.5);
      z-index: 199;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .side-menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* زر القائمة العائمة الجديد */
    .floating-menu-btn {
      position: fixed;
      bottom: 25px;
      left: 25px;
      background: var(--primary);
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      font-size: 24px;
      z-index: 201;
    }
    
    .floating-menu-btn:hover {
      transform: scale(1.1);
      background: var(--secondary);
    }
    
    .floating-menu-items {
      position: absolute;
      bottom: 70px;
      left: 0;
      background: var(--bg);
      border-radius: 20px;
      padding: 15px;
      box-shadow: var(--shadow-hover);
      border: 1px solid var(--border);
      display: none;
      flex-direction: column;
      gap: 10px;
      min-width: 180px;
      z-index: 202;
    }
    
    .floating-menu-items.active {
      display: flex;
    }
    
    .floating-menu-item {
      display: flex;
      align-items: center;
      padding: 12px 15px;
      border-radius: 10px;
      color: var(--primary);
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .floating-menu-item:hover {
      background: var(--card-bg);
    }
    
    .floating-menu-item i {
      margin-left: 10px;
      font-size: 18px;
    }

    /* WHATSAPP FLOAT */
    .whatsapp-float {
      position:fixed;
      left:25px;
      bottom:25px;
      background:#25d366;
      color:#fff;
      padding:16px;
      border-radius:50%;
      box-shadow:0 12px 30px rgba(0,0,0,0.4);
      z-index:200;
      font-size:26px;
      transition: all 0.3s ease;
    }
    
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 0 25px rgba(37,211,102,0.9), 0 0 40px rgba(37,211,102,0.6);
    }

    /* HERO - التصميم الجديد */
    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(135deg, #f0f7ff, #ffffff);
      padding: 20px;
      margin-top: 0;
      position: relative;
      overflow: hidden;
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 50px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      box-shadow: var(--shadow-hover);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-logo {
      max-width: 180px;
      margin-bottom: 25px;
    }
    
    .hero-title {
      font-size: 3rem;
      margin-bottom: 15px;
      color: var(--primary);
      font-weight: 700;
    }
    
    .hero-subtitle {
      font-size: 2rem;
      margin-bottom: 30px;
      color: var(--primary-dark);
      font-weight: 600;
    }
    
    .hero-description {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 40px;
      color: var(--muted);
      line-height: 1.8;
    }
    
    .hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .hero .cta {
      padding: 16px 32px;
      border-radius: 12px;
      font-weight: 700;
      background: var(--accent);
      color: #fff;
      transition: transform .3s, box-shadow .3s;
      box-shadow: var(--shadow);
      font-size: 1.1rem;
    }
    
    .hero .cta.secondary {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }
    
    .hero .cta:hover { 
      transform: translateY(-4px); 
      box-shadow: var(--shadow-hover);
    }
    
    .hero .cta.secondary:hover {
      background: var(--primary);
      color: white;
    }

    .contact-info {
      margin-top: 30px;
      padding: 20px;
      background: var(--card-bg);
      border-radius: 12px;
      border: 1px solid var(--border);
    }
    
    .contact-info p {
      margin: 8px 0;
      color: var(--muted);
      font-size: 1.1rem;
    }
    
    .contact-info i {
      color: var(--secondary);
      margin-left: 8px;
    }

    /* SECTION */
    .section {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 40px;
    }
    
    .section h2 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 40px;
      color: var(--primary);
      position: relative;
      padding-bottom: 20px;
    }
    
    .section h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 50%;
      transform: translateX(50%);
      width: 100px;
      height: 4px;
      background: var(--secondary);
    }

    /* SERVICES GRID - البطاقات الثابتة */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
      margin-top: 40px;
    }
    
    .service-card {
      position: relative;
      height: 350px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow);
      cursor: default;
      background: var(--card-bg);
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }
    
    .service-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s ease;
    }
    
    .service-card::after {
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(55, 108, 158, 0.1), rgba(55, 108, 158, 0.8));
    }
    
    .service-card:hover img { 
      transform:scale(1.07); 
    }
    
    .service-content {
      position:relative;
      z-index:2;
      padding:25px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      height:100%;
      color:#fff;
    }
    
    .service-content i {
      font-size:38px;
      background:rgba(255,255,255,0.15);
      padding:14px;
      border-radius:12px;
    }
    
    .service-content h3 { 
      margin:15px 0 8px; 
      font-size: 24px;
    }
    
    .service-content p {
      font-size: 15px;
      opacity: 0.9;
      margin-bottom: 20px;
    }
    
    .service-actions {
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    
    .btn {
      padding:12px 18px;
      border-radius:12px;
      font-weight:700;
      text-decoration:none;
      text-align:center;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 15px;
    }
    
    .btn.primary { 
      background: var(--accent); 
      color:#fff; 
      box-shadow: var(--shadow);
    }
    
    .btn.primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }
    
    .btn.ghost { 
      background:transparent;
      border:1px solid rgba(255,255,255,0.4);
      color:#fff; 
    }
    
    .btn.ghost:hover {
      background: rgba(255,255,255,0.1);
    }

    /* WHY US */
    .why-us {
      display: grid;
      gap: 25px;
      grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
      margin-top: 40px;
    }
    
    .why-card {
      background: var(--card-bg);
      padding: 30px 25px;
      border-radius: 16px;
      text-align: center;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }
    
    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }
    
    .why-card i { 
      font-size:36px; 
      margin-bottom:15px; 
      color: var(--secondary); 
    }
    
    .why-card h3 {
      margin-bottom: 12px;
      color: var(--primary);
      font-size: 22px;
    }
    
    .why-card p {
      color: var(--muted);
      font-size: 16px;
    }

    /* SCOPE SECTION */
    .scope-section {
      background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
      color: white;
      padding: 70px 40px;
      border-radius: 20px;
      margin: 80px 0;
      text-align: center;
    }
    
    .scope-section h2 {
      color: white;
      margin-bottom: 40px;
    }
    
    .scope-section h2::after {
      background: var(--secondary);
    }
    
    .scope-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
      margin-top: 50px;
    }
    
    .scope-card {
      background: rgba(255, 255, 255, 0.1);
      padding: 35px 25px;
      border-radius: 16px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }
    
    .scope-card:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.15);
    }
    
    .scope-card i {
      font-size: 45px;
      margin-bottom: 20px;
      color: var(--secondary);
    }
    
    .scope-card h3 {
      margin-bottom: 15px;
      font-size: 22px;
    }
    
    .scope-card p {
      font-size: 16px;
      opacity: 0.9;
    }

    /* TESTIMONIALS */
    .testimonials {
      background: var(--card-bg);
      padding: 70px 40px;
      border-radius: 20px;
      margin: 80px 0;
      border: 1px solid var(--border);
    }
    
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
      margin-top: 50px;
    }
    
    .testimonial-card {
      background: var(--bg);
      padding: 30px;
      border-radius: 16px;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }
    
    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }
    
    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .testimonial-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      margin-left: 20px;
      font-size: 18px;
    }
    
    .testimonial-rating {
      color: var(--secondary);
      margin-bottom: 15px;
      font-size: 16px;
    }
    
    .testimonial-text {
      color: var(--muted);
      font-style: italic;
      line-height: 1.7;
      font-size: 16px;
    }

    /* REVIEW FORM */
    .review-form {
      background: var(--card-bg);
      padding: 50px;
      border-radius: 20px;
      margin: 60px 0;
      border: 1px solid var(--border);
      text-align: center;
    }
    
    .review-form h3 {
      margin-bottom: 30px;
      color: var(--primary);
      font-size: 28px;
    }
    
    .rating-stars {
      margin: 20px 0;
      direction: ltr;
    }
    
    .rating-stars i {
      font-size: 28px;
      color: #ddd;
      cursor: pointer;
      margin: 0 5px;
      transition: color 0.3s ease;
    }
    
    .rating-stars i.active {
      color: var(--secondary);
    }
    
    .form-group {
      margin-bottom: 25px;
      text-align: right;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: var(--primary);
      font-weight: 600;
    }
    
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--bg);
      color: var(--primary);
      font-family: 'Cairo', sans-serif;
      font-size: 16px;
      transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(55, 108, 158, 0.1);
    }
    
    .form-group textarea {
      height: 120px;
      resize: vertical;
    }
    
    .review-message {
      margin-top: 20px;
      padding: 15px;
      border-radius: 12px;
      background: var(--secondary-light);
      color: var(--primary-dark);
      display: none;
    }

    /* FAQ */
    .faq-item {
      margin-bottom: 15px;
      border-radius: 12px;
      background: var(--card-bg);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }
    
    .faq-question {
      padding: 18px 22px;
      cursor: pointer;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--primary);
      font-size: 18px;
    }
    
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 22px;
      transition: max-height .3s ease, padding .3s ease;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
    }
    
    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 18px 22px;
    }

    /* CONTACT */
    .contact-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 50px;
      text-align: center;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }
    
    .contact-card h3 { 
      font-size:28px; 
      margin-bottom:15px; 
      color: var(--primary);
    }
    
    .contact-card p { 
      color: var(--muted); 
      margin-bottom:30px; 
      font-size: 18px;
    }
    
    .contact-card a {
      display:inline-block;
      margin:10px;
      padding:15px 25px;
      border-radius:12px;
      background:var(--accent);
      color:#fff;
      font-weight:700;
      transition: all 0.3s ease;
      box-shadow: var(--shadow);
      font-size: 16px;
    }
    
    .contact-card a:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    /* FOOTER */
    footer {
      margin-top:80px;
      padding:30px;
      text-align:center;
      font-size:16px;
      color: var(--muted);
      background: var(--card-bg);
      border-top: 1px solid var(--border);
    }

    /* زر الرجوع للأعلى */
    .back-to-top {
      position: fixed;
      bottom: 25px;
      left: 25px;
      background: var(--primary);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 200;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      transform: translateY(-5px);
      background: var(--secondary);
    }

    /* SPLASH SCREEN */
    #splash {
      position: fixed;
      top: 0; 
      right: 0; 
      bottom: 0; 
      left: 0;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }
    
    #splash img {
      max-width: 200px;
      animation: splash-bounce 1.5s infinite;
    }
    
    @keyframes splash-bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    #splash.hidden {
      opacity: 0;
      visibility: hidden;
    }

    /* زر التبديل بين الوضعين */
    .theme-toggle {
      position: fixed;
      bottom: 90px;
      left: 25px;
      background: var(--primary);
      color: white;
      border: none;
      padding: 14px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 200;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      font-size: 18px;
    }
    
    .theme-toggle:hover {
      transform: scale(1.1);
      background: var(--secondary);
    }

    /* معلومات قانونية */
    .legal-info {
      margin-top: 25px;
      font-size: 16px;
      color: var(--primary);
      text-align: center;
      background: var(--card-bg);
      padding: 20px;
      border-radius: 12px;
      display: inline-block;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }
    
    .legal-info i {
      margin-left: 8px;
      color: var(--secondary);
    }

    /* أنيميشن عند التمرير */
    [data-aos] {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .8s ease, transform .8s ease;
    }
    
    [data-aos].aos-animate {
      opacity: 1;
      transform: translateY(0);
    }

    /* تدرج الأزرار */
    .btn.primary {
      background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
      background-size: 300% 300%;
      animation: gradientMove 6s ease infinite;
    }
    
    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* قسم العملاء */
    .clients .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .client-card {
      background: var(--card-bg);
      padding: 35px 25px;
      border-radius: 18px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      border: 1px solid var(--border);
    }

    .client-card h3 {
      font-size: 42px;
      color: var(--secondary);
      margin-bottom: 15px;
    }

    .client-card p {
      font-size: 18px;
      color: var(--muted);
    }

    .client-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    /* تحسينات للاستجابة */
    @media (max-width: 1200px) {
      .section {
        max-width: 1000px;
        padding: 0 30px;
      }
    }
    
    @media (max-width: 768px) {
      .section {
        margin: 60px auto;
        padding: 0 20px;
      }
      
      .section h2 {
        font-size: 28px;
      }
      
      .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 50px;
      }
      
      .hero-content {
        padding: 30px 20px;
      }
      
      .hero-title {
        font-size: 2.2rem;
      }
      
      .hero-subtitle {
        font-size: 1.5rem;
      }
      
      .hero-actions {
        flex-direction: column;
        align-items: center;
      }
      
      .hero .cta {
        width: 100%;
        max-width: 280px;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
      }
      
      .contact-card {
        padding: 30px 20px;
      }
      
      .service-card {
        height: 320px;
      }
      
      .scope-grid {
        grid-template-columns: 1fr;
      }
      
      .testimonial-grid {
        grid-template-columns: 1fr;
      }
      
      .review-form {
        padding: 30px 20px;
      }
      
      .floating-menu-btn {
        left: 15px;
        bottom: 15px;
      }
      
      .back-to-top {
        left: 15px;
        bottom: 15px;
      }
      
      .theme-toggle {
        left: 15px;
        bottom: 80px;
      }
    }