/* ============================================================
   WSLA — Services pages shared stylesheet
   Matches the homepage dark/glass theme (Tajawal, RTL, blue+gold).
   Used by /services/*.html and the header dropdown.
   ============================================================ */

/* ===== ROOT (Dark default) ===== */
:root {
  --bg-dark: #0a0a1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-hover: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --accent-1: #227FDC;
  --accent-2: #1a9fff;
  --accent-3: #00c6ff;
  --accent-4: #0072ff;
  --gold: #f4be00;
  --gold-light: #ffd54f;
  --gradient-main: linear-gradient(135deg, #227FDC 0%, #1a9fff 50%, #00c6ff 100%);
  --gradient-gold: linear-gradient(135deg, #f4be00 0%, #ffd54f 100%);
  --gradient-text: linear-gradient(135deg, #227FDC, #1a9fff, #00c6ff);
  --glow-primary: 0 0 60px rgba(34, 127, 220, 0.5);
  --glow-gold: 0 0 40px rgba(244, 190, 0, 0.4);
  --glow-accent: 0 0 40px rgba(26, 159, 255, 0.4);
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);
  --radius: 24px;
  --radius-sm: 12px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --logo-filter: brightness(0) invert(1);
  --shadow-color: rgba(34, 127, 220, 0.3);
  --orb-opacity: 0.5;
}

/* ===== LIGHT ===== */
[data-theme="light"] {
  --bg-dark: #f5f9ff;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.7);
  --bg-glass-hover: rgba(255, 255, 255, 0.9);
  --text-primary: #1a1a2e;
  --text-secondary: rgba(26, 26, 46, 0.7);
  --border-glass: 1px solid rgba(34, 127, 220, 0.15);
  --logo-filter: none;
  --shadow-color: rgba(34, 127, 220, 0.15);
  --glow-primary: 0 0 60px rgba(34, 127, 220, 0.2);
  --glow-accent: 0 0 40px rgba(26, 159, 255, 0.15);
  --orb-opacity: 0.3;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Tajawal', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  max-width: 100vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
a { color: inherit; }

/* ===== BACKGROUND FX ===== */
.cursor-glow {
  position: fixed; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34, 127, 220, 0.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, opacity 0.3s ease;
}
[data-theme="light"] .cursor-glow { background: radial-gradient(circle, rgba(34, 127, 220, 0.08) 0%, transparent 70%); }
.bg-animation { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.bg-gradient-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: var(--orb-opacity); animation: float 20s ease-in-out infinite; transition: opacity 0.5s ease; }
.orb-1 { width: 600px; height: 600px; background: var(--accent-1); top: -200px; right: -200px; }
.orb-2 { width: 500px; height: 500px; background: var(--accent-3); bottom: -150px; left: -150px; animation-delay: -5s; }
.orb-3 { width: 400px; height: 400px; background: var(--accent-4); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: -10s; }
.bg-grid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -50px) scale(1.1); }
  50% { transform: translate(-30px, 30px) scale(0.95); }
  75% { transform: translate(40px, 40px) scale(1.05); }
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gradient-shift { 0%, 100% { background-position: 0% center; } 50% { background-position: 100% center; } }

/* ===== CONTAINER ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 20px 0; transition: var(--transition); }
.header.scrolled { background: rgba(10, 10, 15, 0.8); backdrop-filter: blur(20px); border-bottom: var(--border-glass); }
[data-theme="light"] .header.scrolled { background: rgba(255, 255, 255, 0.9); box-shadow: 0 4px 30px rgba(34, 127, 220, 0.1); }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; font-size: 1.8rem; font-weight: 900; text-decoration: none; }
.logo-img { height: 50px; width: auto; filter: var(--logo-filter) drop-shadow(0 0 20px var(--shadow-color)); transition: var(--transition); }
.logo:hover .logo-img { filter: var(--logo-filter) drop-shadow(0 0 30px rgba(26, 159, 255, 0.5)); }

/* ===== THEME TOGGLE ===== */
.theme-toggle { position: relative; width: 60px; height: 32px; background: var(--bg-glass); border: var(--border-glass); border-radius: 50px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: space-between; padding: 4px 6px; }
.theme-toggle:hover { background: var(--bg-glass-hover); border-color: var(--accent-2); }
.theme-toggle-icon { font-size: 14px; transition: var(--transition); z-index: 1; }
.theme-toggle-slider { position: absolute; width: 24px; height: 24px; background: var(--gradient-main); border-radius: 50%; right: 4px; transition: var(--transition); box-shadow: 0 2px 10px var(--shadow-color); }
[data-theme="light"] .theme-toggle-slider { right: calc(100% - 28px); }

/* ===== NAV ===== */
.nav { display: flex; align-items: center; gap: 50px; }
.nav-menu { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-link { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 1rem; position: relative; transition: var(--transition); background: none; border: none; font-family: inherit; cursor: pointer; }
.nav-link::after { content: ''; position: absolute; bottom: -8px; right: 0; width: 0; height: 2px; background: var(--gradient-main); transition: var(--transition); }
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-cta { padding: 12px 28px; background: var(--gradient-main); border: none; border-radius: 50px; color: white; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: var(--transition); text-decoration: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--glow-primary); }

/* ===== NAV DROPDOWN (خدماتنا) ===== */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown .caret { font-size: 0.7rem; transition: var(--transition); }
.nav-dropdown:hover .caret { transform: rotate(180deg); }
.nav-dropdown::after { content: ''; position: absolute; top: 100%; right: 0; left: 0; height: 16px; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); right: 0;
  background: rgba(10, 10, 15, 0.98); backdrop-filter: blur(20px);
  border: var(--border-glass); border-radius: var(--radius-sm);
  padding: 12px; min-width: 320px;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: var(--transition); z-index: 200;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
[data-theme="light"] .nav-dropdown-menu { background: rgba(255, 255, 255, 0.98); box-shadow: 0 24px 60px rgba(34, 127, 220, 0.18); }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 10px; text-decoration: none; transition: var(--transition); }
.nav-dropdown-item:hover { background: var(--bg-glass-hover); }
.ndi-icon { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; background: rgba(34, 127, 220, 0.12); border: 1px solid rgba(34, 127, 220, 0.2); flex-shrink: 0; }
.ndi-text { display: flex; flex-direction: column; }
.ndi-title { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.ndi-desc { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; }
.nav-dropdown-all { margin-top: 6px; padding-top: 12px; border-top: var(--border-glass); text-align: center; }
.nav-dropdown-all a { color: var(--accent-2); font-weight: 700; font-size: 0.9rem; text-decoration: none; }

/* ===== MENU TOGGLE / OVERLAY ===== */
.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1002; position: relative; width: 28px; height: 21px; }
.menu-toggle span { position: absolute; width: 28px; height: 3px; background: var(--text-primary); border-radius: 3px; transition: var(--transition); left: 0; }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }
.menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); z-index: 1000; opacity: 0; transition: var(--transition); }
.menu-overlay.active { display: block; opacity: 1; }

/* ===== SHARED BITS ===== */
.section-label { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; background: var(--bg-glass); border: var(--border-glass); border-radius: 50px; font-size: 0.85rem; color: var(--accent-2); font-weight: 600; margin-bottom: 25px; letter-spacing: 1px; }
.section-title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.highlight, .gradient-text { background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 16px 36px; font-size: 1.05rem; font-weight: 700; border-radius: 60px; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--gradient-main); color: white; box-shadow: var(--glow-primary); }
.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 60px rgba(34, 127, 220, 0.5); }
.btn-secondary { background: var(--bg-glass); color: var(--text-primary); border: var(--border-glass); backdrop-filter: blur(10px); }
.btn-secondary:hover { transform: translateY(-4px); border-color: var(--accent-2); }

/* ===== PAGE HERO ===== */
.svc-hero { position: relative; padding: 170px 0 70px; overflow: hidden; }
.svc-hero-inner { max-width: 860px; }
.breadcrumb { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 26px; }
.breadcrumb a { color: var(--text-secondary); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent-2); }
.svc-hero .badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 24px; background: rgba(34, 127, 220, 0.1); border: 1px solid rgba(34, 127, 220, 0.3); border-radius: 50px; font-size: 0.85rem; color: var(--accent-2); margin-bottom: 28px; backdrop-filter: blur(10px); }
.svc-hero .badge .ico { font-size: 1.1rem; }
.svc-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; line-height: 1.15; margin-bottom: 22px; }
.svc-hero p.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--text-secondary); line-height: 1.9; margin-bottom: 30px; max-width: 720px; }
.svc-hero .hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.svc-tags span { padding: 8px 18px; background: var(--bg-glass); border: var(--border-glass); border-radius: 50px; font-size: 0.85rem; color: var(--text-secondary); }

/* ===== SECTION WRAPPER ===== */
.svc-section { position: relative; padding: 70px 0; }
.svc-section .sec-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.svc-section .sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.25; margin-bottom: 14px; }
.svc-section .sec-head p { color: var(--text-secondary); font-size: 1.1rem; }

/* ===== FEATURE CARDS ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card { background: var(--bg-card); border: var(--border-glass); border-radius: var(--radius); padding: 34px; transition: var(--transition); backdrop-filter: blur(10px); }
.svc-card:hover { transform: translateY(-8px); border-color: var(--accent-2); box-shadow: var(--glow-accent); background: var(--bg-glass); }
.svc-card .card-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 22px; background: rgba(34, 127, 220, 0.12); border: 1px solid rgba(34, 127, 220, 0.25); }
.svc-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.svc-card p { color: var(--text-secondary); font-size: 0.97rem; line-height: 1.8; }

/* ===== PROCESS STEPS ===== */
.svc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.svc-step { background: var(--bg-card); border: var(--border-glass); border-radius: var(--radius); padding: 30px; position: relative; backdrop-filter: blur(10px); transition: var(--transition); }
.svc-step:hover { border-color: var(--accent-2); transform: translateY(-6px); }
.svc-step .step-num { font-size: 2.6rem; font-weight: 900; line-height: 1; margin-bottom: 16px; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.svc-step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.svc-step p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.75; }

/* ===== WHY / BENEFITS + STATS ===== */
.svc-why { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 1.05rem; font-weight: 500; }
.benefits-list .check { width: 28px; height: 28px; border-radius: 9px; background: var(--gradient-main); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 900; flex-shrink: 0; box-shadow: 0 4px 14px var(--shadow-color); }
.stats-card { background: var(--bg-card); border: var(--border-glass); border-radius: var(--radius); padding: 44px; display: grid; gap: 30px; backdrop-filter: blur(10px); }
.stats-card .stat .num { font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 6px; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stats-card .stat .label { color: var(--text-secondary); font-size: 1rem; font-weight: 600; }

/* ===== FAQ ===== */
.svc-faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--bg-card); border: var(--border-glass); border-radius: var(--radius-sm); padding: 4px 26px; transition: var(--transition); backdrop-filter: blur(10px); }
.faq-item[open] { border-color: var(--accent-2); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 700; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.6rem; color: var(--accent-2); font-weight: 400; transition: var(--transition); line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 22px; color: var(--text-secondary); font-size: 1rem; line-height: 1.9; }

/* ===== RELATED ===== */
.svc-related { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.related-card { background: var(--bg-card); border: var(--border-glass); border-radius: var(--radius-sm); padding: 22px 16px; text-decoration: none; text-align: center; transition: var(--transition); backdrop-filter: blur(10px); }
.related-card:hover { transform: translateY(-6px); border-color: var(--accent-2); box-shadow: var(--glow-accent); }
.related-card .rc-icon { font-size: 30px; margin-bottom: 12px; }
.related-card h4 { font-size: 0.95rem; font-weight: 700; }

/* ===== CTA ===== */
.svc-cta { position: relative; padding: 80px 0; }
.svc-cta-box { background: var(--gradient-main); border-radius: var(--radius); padding: 64px 40px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--glow-primary); }
.svc-cta-box h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 14px; }
.svc-cta-box p { color: rgba(255, 255, 255, 0.9); font-size: 1.15rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.svc-cta-box .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.svc-cta-box .btn-primary { background: #fff; color: var(--accent-1); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); }
.svc-cta-box .btn-secondary { background: rgba(255, 255, 255, 0.15); color: #fff; border: 1px solid rgba(255, 255, 255, 0.4); }

/* ===== FOOTER ===== */
.footer { padding: 60px 0 30px; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); border-top: 3px solid; border-image: var(--gradient-main) 1; position: relative; }
[data-theme="light"] .footer { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { color: #94a3b8; line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }
[data-theme="light"] .footer-brand p { color: #64748b; }
.contact-social { display: flex; gap: 12px; }
.contact-social a { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-glass); border: var(--border-glass); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--text-primary); transition: var(--transition); }
.contact-social a:hover { background: var(--gradient-main); color: #fff; transform: translateY(-3px); }
.footer-links h4 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: #fff; }
[data-theme="light"] .footer-links h4 { color: #1e293b; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
[data-theme="light"] .footer-links a { color: #64748b; }
.footer-links a:hover { color: #fff; }
[data-theme="light"] .footer-links a:hover { color: var(--accent-1); }
.footer-bottom { padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
[data-theme="light"] .footer-bottom { border-top-color: rgba(0, 0, 0, 0.1); }
.footer-bottom p { color: #64748b; font-size: 0.85rem; }
.footer-bottom a { color: var(--accent-2); text-decoration: none; }

/* ===== FLOATING ===== */
.whatsapp-float { position: fixed; bottom: 30px; left: 30px; width: 65px; height: 65px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; z-index: 99; box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5); transition: var(--transition); text-decoration: none; animation: pulse-whatsapp 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-whatsapp { 0%, 100% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5); } 50% { box-shadow: 0 5px 50px rgba(37, 211, 102, 0.8); } }
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 55px; height: 55px; background: var(--gradient-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: white; z-index: 99; opacity: 0; visibility: hidden; transition: var(--transition); cursor: pointer; border: none; box-shadow: var(--glow-primary); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-steps { grid-template-columns: repeat(2, 1fr); }
  .svc-related { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .container { padding: 0 25px; }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 400px; height: 100vh;
    background: rgba(10, 10, 15, 0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; padding: 50px;
    transition: var(--transition); border-left: var(--border-glass); z-index: 1001;
    gap: 30px; overflow-y: auto; align-items: flex-start;
  }
  [data-theme="light"] .nav { background: rgba(255, 255, 255, 0.98); border-left: 1px solid rgba(34, 127, 220, 0.15); }
  [data-theme="light"] .nav-link { color: #1a1a2e; }
  [data-theme="light"] .menu-toggle span { background: #1a1a2e; }
  .nav.active { right: 0; }
  .nav-menu { flex-direction: column; gap: 22px; align-items: flex-start; width: 100%; }
  .nav-link { font-size: 1.3rem; }
  .nav-cta { margin-top: 10px; }
  /* dropdown expands inline on mobile */
  .nav-dropdown { width: 100%; }
  .nav-dropdown .caret { display: none; }
  .nav-dropdown::after { display: none; }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: none; backdrop-filter: none; box-shadow: none;
    min-width: 0; padding: 14px 0 0; margin: 0; gap: 2px;
  }
  .nav-dropdown-item { padding: 8px 0; }
  .ndi-icon { width: 34px; height: 34px; font-size: 17px; }
  .ndi-title { font-size: 1.05rem; }
  .ndi-desc { display: none; }
  .nav-dropdown-all { text-align: right; }
  .svc-why { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-steps { grid-template-columns: 1fr; }
  .svc-related { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand .logo { justify-content: center; }
  .contact-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .svc-cta-box { padding: 44px 24px; }
}
@media (max-width: 480px) {
  .svc-related { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
