/* ===== DESIGN TOKENS ===== */
:root {
  --clr-primary: #0d7377;
  --clr-primary-light: #14a3a8;
  --clr-primary-dark: #095255;
  --clr-accent: #e8a838;
  --clr-accent-light: #f0c264;
  --clr-accent-dark: #c48a1e;

  --clr-bg: #0a0e17;
  --clr-bg-alt: #111827;
  --clr-surface: #1a2332;
  --clr-surface-light: #243044;
  --clr-text: #f0f4f8;
  --clr-text-muted: #94a3b8;
  --clr-border: rgba(255, 255, 255, 0.08);

  --grad-primary: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  --grad-accent: linear-gradient(135deg, var(--clr-accent-dark), var(--clr-accent));
  --grad-hero: linear-gradient(180deg, rgba(10,14,23,0.3) 0%, rgba(10,14,23,0.85) 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(13,115,119,0.3);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
  --clr-bg: #f8fafc;
  --clr-bg-alt: #f1f5f9;
  --clr-surface: #ffffff;
  --clr-surface-light: #e2e8f0;
  --clr-text: #0f172a;
  --clr-text-muted: #475569;
  --clr-border: rgba(0, 0, 0, 0.1);
  --grad-hero: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(248,250,252,0.9) 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 30px rgba(13,115,119,0.15);
}
[data-theme="light"] .map-wrapper iframe { filter: none; }
[data-theme="light"] .hero-overlay { background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(248,250,252,0.92) 100%); }
[data-theme="light"] .navbar.scrolled { background: rgba(255,255,255,0.92); }
[data-theme="light"] .testimonial-card { background: var(--clr-surface); border: 1px solid var(--clr-border); }

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--space-2xl) 0; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; background: var(--clr-bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-wheel {
  width: 50px; height: 50px;
  border: 3px solid var(--clr-border);
  border-top-color: var(--clr-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1rem 0;
  transition: all var(--transition-base);
}
.navbar.scrolled {
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0; box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--clr-border);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem;
}
.brand-icon {
  width: 42px; height: 42px; background: var(--grad-accent);
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem;
}
.brand-text span { color: var(--clr-accent); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--clr-text-muted);
  transition: color var(--transition-fast); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--clr-accent);
  transition: width var(--transition-base);
}
.nav-links a:hover, .nav-links a.active { color: var(--clr-text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--grad-primary) !important; color: #fff !important;
  padding: 0.5rem 1.2rem !important; border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: var(--shadow-glow); transform: translateY(-2px); }

/* Nav Controls */
.nav-controls { display: flex; align-items: center; gap: 0.75rem; }
.lang-switcher { display: flex; gap: 0.4rem; }
.lang-btn {
  padding: 0.3rem 0.55rem; border-radius: var(--radius-sm); font-size: 0.8rem;
  font-weight: 600; color: var(--clr-text-muted);
  border: 1px solid var(--clr-border); transition: all var(--transition-fast);
}
.lang-btn:hover, .lang-btn.active {
  color: var(--clr-text); border-color: var(--accent);
  background: rgba(232, 168, 56, 0.1);
}
.theme-toggle {
  background: none; border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm); color: var(--clr-text-muted);
  font-size: 1.1rem; cursor: pointer; padding: 0.3rem 0.55rem;
  transition: all var(--transition-fast); display: flex;
  align-items: center; justify-content: center;
}
.theme-toggle:hover { color: var(--clr-text); border-color: var(--clr-accent); background: rgba(232, 168, 56, 0.1); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; background: none; border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm); z-index: 1010;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--clr-text);
  transition: all var(--transition-base); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden; padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform var(--transition-slow); }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: var(--grad-hero); }
.hero-content { max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad-glass); backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border); border-radius: var(--radius-full);
  padding: 0.5rem 1.2rem; font-size: 0.9rem; margin-bottom: var(--space-md);
}
.dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: var(--space-md);
}
.hero .highlight { color: var(--clr-accent); }
.hero-description { font-size: 1.15rem; color: var(--clr-text-muted); max-width: 540px; margin-bottom: var(--space-lg); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-xl); }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: var(--radius-full);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  transition: all var(--transition-base); cursor: pointer; border: none;
}
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(13,115,119,0.4); }
.btn-outline { background: transparent; color: var(--clr-text); border: 2px solid var(--clr-border); }
.btn-outline:hover { border-color: var(--clr-accent); color: var(--clr-accent); transform: translateY(-3px); }

.hero-stats { display: flex; gap: var(--space-xl); }
.stat-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--clr-accent); }
.stat-label { font-size: 0.85rem; color: var(--clr-text-muted); }
.hero-decor { position: absolute; bottom: -2px; left: 0; right: 0; height: 100px; background: linear-gradient(to top, var(--clr-bg), transparent); }

/* ===== ABOUT & TIMELINE ===== */
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; margin-bottom: var(--space-xs); }
.accent-line { width: 60px; height: 3px; background: var(--clr-accent); margin: var(--space-xs) auto 0; border-radius: var(--radius-full); }
.subtitle { color: var(--clr-text-muted); font-size: 1.1rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; margin-bottom: var(--space-2xl); }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.experience-badge {
  position: absolute; bottom: -20px; right: -20px; background: var(--grad-accent);
  padding: 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-md); text-align: center; color: #fff;
}
.experience-badge .years { font-size: 2rem; font-weight: 800; font-family: var(--font-heading); line-height: 1; }
.experience-badge .label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }
.about-text h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: var(--space-md); }
.highlight-text { color: var(--clr-primary-light); }
.about-text p { margin-bottom: var(--space-md); color: var(--clr-text-muted); }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); margin-top: var(--space-lg); }
.feature-item { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; }
.feature-icon { width: 36px; height: 36px; background: var(--clr-surface-light); display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* Timeline */
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--clr-border); }
.timeline-item { position: relative; margin-bottom: var(--space-lg); }
.timeline-dot { position: absolute; left: -39px; top: 6px; width: 16px; height: 16px; background: var(--clr-accent); border-radius: 50%; border: 4px solid var(--clr-bg); }
.timeline-content { background: var(--clr-surface); padding: var(--space-md); border-radius: var(--radius-md); border: 1px solid var(--clr-border); }
.timeline-content h4 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 0.25rem; color: var(--clr-text); }
.timeline-content p { color: var(--clr-text-muted); font-size: 0.95rem; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: var(--space-md); }
.service-card {
  background: var(--clr-surface); padding: var(--space-lg); border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border); box-shadow: var(--shadow-sm); transition: all var(--transition-base);
}
.service-card:hover { transform: translateY(-5px); border-color: var(--clr-primary-light); box-shadow: var(--shadow-md); }
.service-icon-wrap {
  width: 55px; height: 55px; background: rgba(13, 115, 119, 0.1); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md);
}
.service-icon { font-size: 1.6rem; }
.service-card h3 { font-family: var(--font-heading); font-size: 1.35rem; margin-bottom: var(--space-xs); }
.service-card p { color: var(--clr-text-muted); font-size: 0.95rem; margin-bottom: var(--space-md); }
.service-tag { display: inline-block; padding: 0.25rem 0.75rem; background: var(--clr-surface-light); border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; color: var(--clr-accent); margin-bottom: var(--space-md); }
.service-cta { display: block; font-weight: 600; color: var(--clr-primary-light); transition: color var(--transition-fast); }
.service-cta:hover { color: var(--clr-accent); }

/* ===== GALLERY ===== */
.gallery-filters { display: flex; justify-content: center; gap: var(--space-xs); margin-bottom: var(--space-lg); flex-wrap: wrap; }
.filter-btn {
  background: var(--clr-surface); border: 1px solid var(--clr-border); padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full); color: var(--clr-text-muted); font-weight: 600; cursor: pointer; transition: all var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active { background: var(--grad-primary); color: #fff; border-color: transparent; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-sm); }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); aspect-ratio: 4/3; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform var(--transition-base); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,14,23,0.9), transparent 80%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-md);
  opacity: 0; transition: opacity var(--transition-base);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; }
.gallery-overlay p { color: var(--clr-accent); font-size: 0.85rem; font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-md); }
.testimonial-card { background: var(--clr-surface-light); padding: var(--space-lg); border-radius: var(--radius-lg); position: relative; }
.quote-icon { position: absolute; top: var(--space-md); right: var(--space-md); font-size: 4rem; font-family: var(--font-heading); color: rgba(255,255,255,0.04); line-height: 1; }
.testimonial-text { font-style: italic; color: var(--clr-text-muted); margin-bottom: var(--space-md); }
.testimonial-user h4 { font-family: var(--font-heading); font-weight: 600; }
.testimonial-user span { font-size: 0.85rem; color: var(--clr-accent); }

/* ===== CONTACT & MAP ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.contact-info { display: flex; flex-direction: column; gap: var(--space-sm); }
.info-card { background: var(--clr-surface); padding: var(--space-md); border-radius: var(--radius-md); border: 1px solid var(--clr-border); display: flex; gap: var(--space-md); align-items: flex-start; }
.info-icon { font-size: 1.5rem; background: rgba(232, 168, 56, 0.1); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); color: var(--clr-accent); }
.info-details h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.2rem; }
.info-details p { color: var(--clr-text-muted); font-size: 0.95rem; }
.info-link { color: var(--clr-primary-light); font-weight: 600; font-size: 0.9rem; display: inline-block; margin-top: 0.2rem; }

.contact-form-wrap { background: var(--clr-surface); padding: var(--space-lg); border-radius: var(--radius-lg); border: 1px solid var(--clr-border); }
.contact-form-wrap h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: var(--space-md); }
.form-group { margin-bottom: var(--space-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--clr-text-muted); }
input, select, textarea {
  width: 100%; padding: 0.75rem var(--space-sm); background: var(--clr-bg); border: 1px solid var(--clr-border);
  color: var(--clr-text); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem; transition: border-color var(--transition-fast);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--clr-primary-light); }
.btn-block { width: 100%; justify-content: center; margin-top: var(--space-xs); }

.map-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: var(--space-xl); }
.map-wrapper iframe { display: block; filter: grayscale(1) invert(0.9) contrast(1.2); }
.map-card {
  position: absolute; bottom: var(--space-md); left: var(--space-md); background: var(--clr-surface);
  padding: var(--space-md); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid var(--clr-border); max-width: 320px;
}
.map-card h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.2rem; }
.map-card p { font-size: 0.85rem; color: var(--clr-text-muted); margin-bottom: var(--space-xs); }
.map-card a { font-size: 0.85rem; font-weight: 600; color: var(--clr-accent); }

/* ===== FOOTER ===== */
.footer { background: var(--clr-bg-alt); padding: var(--space-2xl) 0 var(--space-md); border-top: 1px solid var(--clr-border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer-desc { color: var(--clr-text-muted); font-size: 0.95rem; margin-top: var(--space-sm); max-width: 300px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: var(--space-md); position: relative; padding-bottom: 0.5rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--clr-accent); }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--clr-text-muted); transition: all var(--transition-fast); display: inline-block; }
.footer-col ul li a:hover { color: var(--clr-text); padding-left: 5px; }

.footer-hours { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.95rem; color: var(--clr-text-muted); }
.hour-row { display: flex; justify-content: space-between; }
.footer-bottom { text-align: center; border-top: 1px solid var(--clr-border); padding-top: var(--space-md); color: var(--clr-text-muted); font-size: 0.9rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-sm); }

/* ===== BACK TO TOP & TOAST ===== */
.back-to-top {
  position: fixed; bottom: var(--space-md); right: var(--space-md); background: var(--grad-primary);
  width: 45px; height: 45px; color: #fff; border-radius: 50%; border: none; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-md);
  z-index: 999; opacity: 0; visibility: hidden; transition: all var(--transition-base); transform: scale(0.8);
}
.back-to-top.active { opacity: 1; visibility: visible; transform: scale(1); }
.back-to-top:hover { background: var(--clr-accent); }

.toast-notification {
  position: fixed; bottom: -60px; left: 50%; transform: translateX(-50%); background: #22c55e;
  color: white; padding: 0.8rem 1.8rem; border-radius: var(--radius-full); box-shadow: var(--shadow-lg);
  font-weight: 600; z-index: 10000; transition: bottom 0.4s var(--ease-out);
}
.toast-notification.show { bottom: var(--space-md); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,14,23,0.95); z-index: 99999;
  display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90%; max-height: 80vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; transition: color 0.2s;
}
.lightbox-close { top: var(--space-md); right: var(--space-md); font-size: 3rem; }
.lightbox-prev { left: var(--space-lg); }
.lightbox-next { right: var(--space-lg); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--clr-accent); }

/* ===== ANIMATIONS ===== */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.animate-on-scroll.scrolled { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ===== RESPONSIVE & MOBILE ===== */
@media (max-width: 992px) {
  .navbar-brand .brand-text { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--clr-surface);
    flex-direction: column; align-items: flex-start; padding: var(--space-2xl) var(--space-lg);
    gap: var(--space-md); box-shadow: var(--shadow-lg); transition: right 0.4s var(--ease-out);
  }
  .nav-links.active { right: 0; }
  .hero-stats { gap: var(--space-md); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== RTL SUPPORT (ARABIC) ===== */
[dir="rtl"] body { font-family: 'Cairo', sans-serif; }
[dir="rtl"] .nav-links { left: -100%; right: auto; }
[dir="rtl"] .nav-links.active { left: 0; right: auto; }
[dir="rtl"] .experience-badge { left: -20px; right: auto; }
[dir="rtl"] .timeline { padding-left: 0; padding-right: 40px; }
[dir="rtl"] .timeline::before { left: auto; right: 7px; }
[dir="rtl"] .timeline-dot { left: auto; right: -39px; }
[dir="rtl"] .info-card { text-align: right; }
[dir="rtl"] .footer-col h4::after { left: auto; right: 0; }
[dir="rtl"] .footer-col ul li a:hover { padding-left: 0; padding-right: 5px; }
[dir="rtl"] .map-card { left: auto; right: var(--space-md); text-align: right; }
[dir="rtl"] .quote-icon { left: var(--space-md); right: auto; }