/* ============================================================
   ARABIC LANGUAGE CENTER — GLOBAL STYLESHEET
   ============================================================ */

/* --- SVG ICON LIBRARY (inline via CSS) --- */
[class^="icon-"]::before,
[class*=" icon-"]::before { content: ''; display: block; width: 24px; height: 24px; background: currentColor; mask-size: contain; -webkit-mask-size: contain; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; mask-position: center; -webkit-mask-position: center; }

/* ============================================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ============================================================ */
:root {
  --primary:       #1B4332;
  --primary-dark:  #0D2818;
  --primary-light: #2D6A4F;
  --primary-rgb:   27, 67, 50;
  --secondary:     #C9A84C;
  --accent:        #D4AF37;

  --white:        #FFFFFF;
  --off-white:     #FAFAF7;
  --cream:        #F5F0E8;
  --cream-warm:   #F8F4EC;
  --dark:         #1A1A2E;
  --dark-soft:    #2A2A3E;
  --text:         #333333;
  --text-light:   #666666;
  --text-muted:   #999999;

  --success:      #10B981;
  --error:        #EF4444;
  --warning:      #F59E0B;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic:  'Amiri', 'Noto Naskh Arabic', serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.15);
  --shadow-green: 0 8px 30px rgba(27,67,50,0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1200px;
  --container-sm: 900px;
  --container-xs: 680px;
  --navbar-height: 80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

body.no-cursor { cursor: none; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

::selection { background: rgba(var(--primary-rgb), 0.2); color: var(--primary-dark); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100001;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--secondary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
  opacity: 0.7;
}

.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--accent); opacity: 1; }
.cursor-ring.clicking { width: 28px; height: 28px; }

/* ============================================================
   PAGE WRAPPER FADE-IN
   ============================================================ */
.page-wrapper { animation: pageFadeIn 0.6s ease forwards; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 24px; }
.container-xs { max-width: var(--container-xs); margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 130px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.8;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: var(--navbar-height);
  display: flex; align-items: center;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 0 40px;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  height: 70px;
}

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.navbar-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.navbar-brand-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}
.navbar-brand-sub {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--secondary);
}

.navbar-nav { display: flex; align-items: center; gap: 8px; }
.navbar-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--dark); padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.navbar-link:hover, .navbar-link.active {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
}
.navbar-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.navbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white);
  padding: 10px 22px; border-radius: var(--radius-full);
  font-size: 0.88rem; font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.3);
}
.navbar-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}
.navbar-cta svg { width: 16px; height: 16px; }

/* Mobile hamburger */
.navbar-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.navbar-hamburger:hover { background: rgba(var(--primary-rgb), 0.06); }
.navbar-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--primary-dark); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar-mobile-menu {
  display: none;
  position: fixed; top: var(--navbar-height); left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9998;
}
.navbar-mobile-menu.open { transform: translateY(0); display: block; }
.navbar-mobile-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 500;
  color: var(--dark); padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}
.navbar-mobile-link:hover, .navbar-mobile-link.active {
  background: rgba(var(--primary-rgb), 0.08); color: var(--primary);
}
.navbar-mobile-link svg { width: 20px; height: 20px; }

/* ============================================================
   FLOATING BUTTONS WIDGET
   ============================================================ */
.floating-widget {
  position: fixed; bottom: 30px; right: 30px;
  z-index: 9997;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}

/* Decorative gold ring */
.floating-widget::before {
  content: '';
  position: absolute;
  top: -40px; right: 10px;
  width: 24px; height: 24px;
  border: 1.5px solid var(--secondary);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatRing 3s ease-in-out infinite;
}
.floating-widget::after {
  content: '';
  position: absolute;
  top: -30px; right: 14px;
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: floatDot 3s ease-in-out infinite;
}

@keyframes floatRing {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-6px) scale(1.05); opacity: 1; }
}
@keyframes floatDot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem; font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: slideInRight 0.6s ease forwards;
  white-space: nowrap;
  position: relative;
}
.floating-btn:hover { transform: translateX(-4px) scale(1.02); box-shadow: var(--shadow-xl); }
.floating-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.floating-btn.whatsapp {
  background: #25D366; color: var(--white);
  padding-left: 18px;
  animation-delay: 0.2s;
  animation: slideInRight 0.6s ease forwards, pulseWhatsApp 2s ease-in-out 2s infinite;
}
.floating-btn.whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: rgba(37, 211, 102, 0.25);
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0; }
}

.floating-btn.chatbot {
  background: var(--primary); color: var(--white);
  animation-delay: 0.4s;
  padding-left: 16px;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulseWhatsApp {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-full);
  font-size: 0.92rem; font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); opacity: 0; transition: opacity 0.2s; }
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--primary); color: var(--white);
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--primary-dark);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-secondary {
  background: var(--secondary); color: var(--dark);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}
.btn-secondary:hover { background: var(--accent); transform: translateY(-2px); }

.btn-white {
  background: var(--white); color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,40,24,0.92) 0%, rgba(27,67,50,0.80) 50%, rgba(13,40,24,0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px; align-items: center;
  padding-top: var(--navbar-height);
}

.hero-photo-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  padding: 30px;
}
.hero-photo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.3);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero-photo-ring:nth-child(1) { width: 280px; height: 280px; animation-delay: 0s; }
.hero-photo-ring:nth-child(2) { width: 340px; height: 340px; animation-delay: 1s; border-color: rgba(201,168,76,0.15); }
.hero-photo-ring:nth-child(3) { width: 400px; height: 400px; animation-delay: 2s; border-color: rgba(201,168,76,0.08); }

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.7; }
}

.hero-photo-img {
  width: 260px; height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary);
  position: relative; z-index: 2;
  box-shadow: 0 0 0 8px rgba(201,168,76,0.15), var(--shadow-xl);
}

.hero-badge {
  position: absolute;
  background: var(--secondary);
  color: var(--dark);
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  font-weight: 700; font-size: 0.82rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
  white-space: nowrap;
}
.hero-badge-1 { top: 10px; right: 0; }
.hero-badge-2 { bottom: 30px; left: 0; }

.hero-text { color: var(--white); }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--secondary);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tag svg { width: 14px; height: 14px; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-title span { color: var(--secondary); }

.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.8);
  line-height: 1.8; margin-bottom: 36px;
  max-width: 560px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-socials {
  display: flex; align-items: center; gap: 16px;
}
.hero-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.hero-social-link:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}
.hero-social-link svg { width: 18px; height: 18px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--primary-dark);
  padding: 50px 0;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  display: flex; justify-content: center; margin-bottom: 12px;
  color: var(--secondary);
}
.stat-icon svg { width: 28px; height: 28px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 800;
  color: var(--white); line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--secondary); }
.stat-label {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--cream);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.marquee-track {
  display: flex; gap: 40px; width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}
.marquee-item::before {
  content: '';
  width: 8px; height: 8px; background: var(--secondary);
  border-radius: 50%; flex-shrink: 0;
}
.marquee-sep { color: var(--secondary); font-size: 1.5rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: rgba(var(--primary-rgb), 0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-icon svg { width: 28px; height: 28px; }

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: 12px;
}
.service-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--primary);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; color: var(--secondary); }
.service-link svg { width: 16px; height: 16px; }

/* ============================================================
   ABOUT / AUTHORITY SECTION
   ============================================================ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-main {
  width: 100%; border-radius: var(--radius-xl);
  object-fit: cover; aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.about-floating-card {
  position: absolute;
  background: var(--primary); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.about-floating-card h4 {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800;
}
.about-floating-card p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.about-float-1 { bottom: -20px; right: -20px; }
.about-float-2 { top: 30px; left: -30px; }

.about-content { padding: 20px 0; }
.about-credentials { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.credential-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--text);
}
.credential-check {
  width: 24px; height: 24px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-top: 2px;
}
.credential-check svg { width: 14px; height: 14px; }

/* ============================================================
   PARALLAX DIVIDER
   ============================================================ */
.parallax-divider {
  position: relative; height: 400px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,40,24,0.85), rgba(27,67,50,0.75));
}
.parallax-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
}
.parallax-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  margin-bottom: 16px;
}
.parallax-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================================================
   VIDEO PREVIEW GRID
   ============================================================ */
.videos-section { background: var(--off-white); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: none;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.video-thumb-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumb {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.4s;
}
.video-card:hover .video-thumb { transform: scale(1.05); }
.video-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.video-card:hover .video-play-overlay { background: rgba(0,0,0,0.5); }
.video-play-btn {
  width: 52px; height: 52px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}
.video-card:hover .video-play-btn { transform: scale(1.1); }
.video-play-btn svg { width: 20px; height: 20px; margin-left: 2px; }

.video-source-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-full);
  display: flex; align-items: center; gap: 4px;
}
.video-source-badge svg { width: 10px; height: 10px; }

.video-info { padding: 18px; }
.video-title { font-weight: 600; font-size: 0.95rem; color: var(--dark); line-height: 1.4; }
.video-meta { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 0.78rem; color: var(--text-muted); }
.video-meta svg { width: 14px; height: 14px; }

/* ============================================================
   LEAD CAPTURE FORM
   ============================================================ */
.form-section { background: var(--white); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.form-features { padding: 20px 0; }
.form-features h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--primary-dark); margin-bottom: 20px; line-height: 1.2;
}
.form-features p { color: var(--text-light); margin-bottom: 30px; font-size: 1rem; }
.form-feature-list { display: flex; flex-direction: column; gap: 14px; }
.form-feature-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--text);
}
.form-feature-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

.form-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}
.form-card h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.form-note svg { width: 14px; height: 14px; }

.form-submit { margin-top: 10px; width: 100%; padding: 16px; font-size: 1rem; }

/* Toast notification */
.toast {
  position: fixed; top: 30px; right: 30px; z-index: 99999;
  background: var(--success); color: var(--white);
  padding: 16px 24px; border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateX(0); }
.toast svg { width: 20px; height: 20px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-quote-icon {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-heading); font-size: 5rem;
  color: rgba(var(--primary-rgb), 0.06); line-height: 1;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--secondary); }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--secondary);
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.9rem;
}
.testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--dark); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section > * { position: relative; z-index: 1; }

/* Hero background image fallback */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700; color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-sub { font-size: 0.7rem; color: var(--secondary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.footer-social-link:hover { background: var(--secondary); border-color: var(--secondary); color: var(--dark); transform: translateY(-2px); }
.footer-social-link svg { width: 16px; height: 16px; }

.footer-col-title {
  font-weight: 700; font-size: 0.9rem;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s, padding-left 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-link:hover { color: var(--secondary); padding-left: 4px; }
.footer-link svg { width: 14px; height: 14px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; margin-bottom: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--secondary); }

.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-link:hover { color: var(--secondary); }

/* ============================================================
   CHATBOT
   ============================================================ */
.chatbot-overlay {
  position: fixed; bottom: 160px; right: 30px;
  width: 390px; height: 560px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 9998;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.chatbot-overlay.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

.chatbot-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 20px 20px;
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
}
.chatbot-avatar {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chatbot-avatar svg { width: 22px; height: 22px; }
.chatbot-header-info h4 { font-weight: 700; font-size: 0.95rem; }
.chatbot-header-info p { font-size: 0.72rem; color: rgba(255,255,255,0.7); }
.chatbot-close {
  margin-left: auto; width: 32px; height: 32px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: background 0.2s;
}
.chatbot-close:hover { background: rgba(255,255,255,0.2); }
.chatbot-close svg { width: 18px; height: 18px; }

.chatbot-messages {
  flex: 1; overflow-y: auto;
  padding: 20px; display: flex; flex-direction: column; gap: 12px;
  background: var(--off-white);
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 2px; }

.chatbot-msg { display: flex; gap: 8px; animation: msgFadeIn 0.3s ease forwards; }
.chatbot-msg.bot { align-self: flex-start; }
.chatbot-msg.user { align-self: flex-end; flex-direction: row-reverse; }

@keyframes msgFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.chatbot-msg-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 4px;
}
.chatbot-msg.bot .chatbot-msg-icon { background: var(--primary); color: var(--white); }
.chatbot-msg.user .chatbot-msg-icon { background: var(--secondary); color: var(--dark); }
.chatbot-msg-icon svg { width: 16px; height: 16px; }

.chatbot-bubble {
  max-width: 260px;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 0.88rem; line-height: 1.6;
  word-break: break-word;
}
.chatbot-msg.bot .chatbot-bubble {
  background: var(--white); color: var(--text);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.chatbot-msg.user .chatbot-bubble {
  background: var(--primary); color: var(--white);
  border-bottom-right-radius: 4px;
}

.chatbot-welcome-cards {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; width: 100%;
}
.chatbot-welcome-card {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  font-size: 0.78rem; font-weight: 500;
  color: var(--primary); text-align: left;
  border: 1px solid rgba(27,67,50,0.15);
  cursor: pointer; transition: all 0.2s;
}
.chatbot-welcome-card:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.chatbot-welcome-card svg { width: 16px; height: 16px; color: var(--primary); transition: color 0.2s; flex-shrink: 0; }
.chatbot-welcome-card:hover svg { color: var(--white); }

.chatbot-input-wrap {
  padding: 14px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 10px; align-items: flex-end;
  background: var(--white);
}
.chatbot-input {
  flex: 1; padding: 10px 14px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 0.88rem;
  outline: none; transition: border-color 0.2s;
}
.chatbot-input:focus { border-color: var(--primary); }
.chatbot-send {
  width: 40px; height: 40px;
  background: var(--primary); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.chatbot-send:hover { background: var(--primary-dark); transform: scale(1.05); }
.chatbot-send svg { width: 18px; height: 18px; }

/* Chatbot service/FAQ cards */
.chatbot-cards { display: flex; flex-direction: column; gap: 8px; width: 100%; margin-top: 8px; }
.chatbot-card-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  transition: all 0.2s; border: 1px solid rgba(0,0,0,0.06);
  text-align: left; width: 100%;
}
.chatbot-card-item:hover { background: rgba(var(--primary-rgb), 0.06); border-color: var(--primary); color: var(--primary); transform: translateX(4px); }
.chatbot-card-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); }

.chatbot-back-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--primary);
  padding: 6px 0; margin-bottom: 4px;
  transition: gap 0.2s;
}
.chatbot-back-btn:hover { gap: 10px; }
.chatbot-back-btn svg { width: 16px; height: 16px; }

.chatbot-faq-item {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); margin-bottom: 8px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.chatbot-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; font-size: 0.88rem; font-weight: 600;
  color: var(--text); cursor: none;
  transition: color 0.2s;
}
.chatbot-faq-q:hover { color: var(--primary); }
.chatbot-faq-q svg { width: 18px; height: 18px; transition: transform 0.3s; flex-shrink: 0; margin-left: 8px; }
.chatbot-faq-item.open .chatbot-faq-q svg { transform: rotate(180deg); }
.chatbot-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 16px;
}
.chatbot-faq-item.open .chatbot-faq-a { max-height: 200px; padding: 0 16px 14px; }
.chatbot-faq-a p { font-size: 0.83rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   PAGE-SPECIFIC: ABOUT
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 160px 0 100px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M40 0C17.9 0 0 17.9 0 40s17.9 40 40 40 40-17.9 40-40S62.1 0 40 0zm0 72c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  color: var(--white); margin-bottom: 16px; line-height: 1.1;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }
.page-hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.page-hero-breadcrumb a, .page-hero-breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.page-hero-breadcrumb a:hover { color: var(--secondary); }
.page-hero-breadcrumb svg { width: 14px; height: 14px; }

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--secondary)); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute; left: -36px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--secondary); border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.timeline-year { font-size: 0.78rem; font-weight: 700; color: var(--secondary); letter-spacing: 1px; margin-bottom: 4px; }
.timeline-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.timeline-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }

/* ============================================================
   PAGE-SPECIFIC: SERVICES
   ============================================================ */
.services-detail-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-detail-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-detail-icon {
  width: 56px; height: 56px; background: rgba(var(--primary-rgb), 0.08);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 20px;
}
.service-detail-icon svg { width: 26px; height: 26px; }
.service-detail-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.service-detail-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.service-detail-features { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.service-detail-feature { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text); }
.service-detail-feature svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* Process steps */
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.process-step { text-align: center; position: relative; padding: 0 16px; }
.process-step-num {
  width: 72px; height: 72px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 800;
  box-shadow: var(--shadow-md); position: relative; z-index: 1;
}
.process-step-title { font-weight: 700; font-size: 0.92rem; color: var(--primary-dark); margin-bottom: 4px; }
.process-step-desc { font-size: 0.8rem; color: var(--text-light); }

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-size: 1rem; font-weight: 600;
  color: var(--dark); cursor: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question svg { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; color: var(--primary); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; }

/* Pricing cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--white); padding: 4px 16px; border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.pricing-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 4px; }
.pricing-price span { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.pricing-period { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text); }
.pricing-feature svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }
.pricing-feature.disabled { color: var(--text-muted); }
.pricing-feature.disabled svg { color: var(--error); }

/* ============================================================
   PAGE-SPECIFIC: VIDEOS
   ============================================================ */
.video-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.video-filter-btn {
  padding: 8px 20px; border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600;
  border: 1.5px solid rgba(0,0,0,0.1);
  color: var(--text); background: var(--white);
  transition: all 0.2s;
}
.video-filter-btn:hover, .video-filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.video-library-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-library-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.video-library-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ============================================================
   PAGE-SPECIFIC: TESTIMONIALS
   ============================================================ */
.video-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-testimonial-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.video-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.text-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.before-after-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.before-after-card h4 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--primary-dark); padding: 20px; }
.before-after-content { display: grid; grid-template-columns: 1fr 1fr; }
.before-after-col { padding: 20px; }
.before-after-col h5 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.before-after-col.before h5 { color: var(--error); }
.before-after-col.after h5 { color: var(--success); }
.before-after-col ul { display: flex; flex-direction: column; gap: 8px; }
.before-after-col li { font-size: 0.88rem; color: var(--text-light); display: flex; align-items: flex-start; gap: 6px; }
.before-after-col li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   PAGE-SPECIFIC: BOOKING
   ============================================================ */
.booking-wizard { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.booking-progress { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 50px; position: relative; }
.booking-progress::before { content: ''; position: absolute; top: 20px; left: 15%; right: 15%; height: 2px; background: rgba(0,0,0,0.1); z-index: 0; }
.booking-progress-line { position: absolute; top: 20px; left: 15%; height: 2px; background: var(--primary); z-index: 1; transition: width 0.4s; }
.booking-step-indicator { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 2; flex: 1; }
.booking-step-circle { width: 42px; height: 42px; border-radius: 50%; background: var(--white); border: 2px solid rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: var(--text-muted); transition: all 0.3s; }
.booking-step-indicator.active .booking-step-circle { background: var(--primary); border-color: var(--primary); color: var(--white); box-shadow: var(--shadow-md); }
.booking-step-indicator.done .booking-step-circle { background: var(--success); border-color: var(--success); color: var(--white); }
.booking-step-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-align: center; }
.booking-step-indicator.active .booking-step-label { color: var(--primary); }
.booking-step-indicator.done .booking-step-label { color: var(--success); }

.booking-panel { display: none; animation: pageFadeIn 0.4s ease; }
.booking-panel.active { display: block; }
.booking-card { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md); }
.booking-card h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 24px; }
.booking-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.booking-service-option { border: 2px solid rgba(0,0,0,0.08); border-radius: var(--radius-md); padding: 20px; cursor: none; transition: all 0.2s; text-align: center; }
.booking-service-option:hover { border-color: var(--primary); background: rgba(var(--primary-rgb), 0.04); }
.booking-service-option.selected { border-color: var(--primary); background: rgba(var(--primary-rgb), 0.08); }
.booking-service-option svg { width: 28px; height: 28px; color: var(--primary); margin-bottom: 8px; }
.booking-service-option h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.booking-service-option p { font-size: 0.78rem; color: var(--text-muted); }

.booking-date-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 24px; }
.booking-day-btn { padding: 10px; text-align: center; font-size: 0.78rem; font-weight: 600; border-radius: var(--radius-sm); border: 1px solid rgba(0,0,0,0.08); background: var(--white); color: var(--text); transition: all 0.2s; }
.booking-day-btn:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.booking-day-btn.selected { background: var(--primary); color: var(--white); border-color: var(--primary); }
.booking-day-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.booking-day-header { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; text-align: center; border: none; background: none; }
.booking-time-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.booking-time-btn { padding: 10px 18px; border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 600; border: 1.5px solid rgba(0,0,0,0.1); background: var(--white); color: var(--text); transition: all 0.2s; }
.booking-time-btn:hover { border-color: var(--primary); color: var(--primary); }
.booking-time-btn.selected { background: var(--primary); color: var(--white); border-color: var(--primary); }

.booking-nav { display: flex; justify-content: space-between; margin-top: 30px; }

/* Success state */
.booking-success { text-align: center; padding: 40px; }
.booking-success-icon { width: 80px; height: 80px; background: rgba(16,185,129,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--success); }
.booking-success-icon svg { width: 40px; height: 40px; }
.booking-success h3 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.booking-success p { color: var(--text-light); margin-bottom: 24px; }

/* ============================================================
   SPINNER
   ============================================================ */
.btn-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white); border-radius: 50%; animation: spin 0.7s linear infinite; margin-left: 8px; }
.btn.loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 300px 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 50px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .video-library-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --navbar-height: 70px; }
  .navbar { padding: 0 20px; }
  .navbar-nav { display: none; }
  .navbar-cta { display: none; }
  .navbar-hamburger { display: flex; }
  .navbar-brand-name { font-size: 1rem; }

  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  .hero-photo-wrap { padding: 20px; }
  .hero-photo-ring:nth-child(1) { width: 200px; height: 200px; }
  .hero-photo-ring:nth-child(2) { width: 250px; height: 250px; }
  .hero-photo-ring:nth-child(3) { width: 300px; height: 300px; }
  .hero-photo-img { width: 180px; height: 180px; }
  .hero-badge { font-size: 0.72rem; padding: 8px 12px; }
  .hero-btns { justify-content: center; }
  .hero-socials { justify-content: center; }
  .hero-subtitle { margin: 0 auto 36px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { order: -1; max-width: 400px; margin: 0 auto; }
  .about-floating-card { font-size: 0.85rem; }

  .video-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .section { padding: 70px 0; }
  .section-lg { padding: 90px 0; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  .services-detail-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .process-steps::before { display: none; }
  .process-step { display: flex; align-items: center; gap: 16px; text-align: left; }
  .process-step-num { margin: 0; flex-shrink: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .video-library-grid { grid-template-columns: 1fr; }
  .text-reviews-grid { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-testimonials-grid { grid-template-columns: 1fr; }

  .booking-wizard { padding: 30px 16px; }
  .booking-card { padding: 24px; }
  .booking-service-grid { grid-template-columns: 1fr; }
  .booking-progress { gap: 0; }
  .booking-step-label { display: none; }

  .chatbot-overlay { width: calc(100vw - 20px); right: 10px; bottom: 140px; height: 500px; }
  .floating-btns { bottom: 20px; right: 16px; }
  .floating-btn span { display: none; }
  .floating-btn { padding: 14px; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ============================================================
   GALLERY SECTION (homepage inline gallery)
   ============================================================ */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
  color: var(--primary);
}
.gallery-item:hover .gallery-item-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  font-size: 20px;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  font-size: 20px;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
}
.lightbox-thumb-strip {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  max-width: 90vw;
  overflow-x: auto;
  padding: 4px;
}
.lightbox-thumb {
  width: 56px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}
.lightbox-thumb.active { opacity: 1; border-color: var(--secondary); }
.lightbox-thumb:hover { opacity: 0.85; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-thumb-strip { display: none; }
  .lightbox-nav { width: 40px; height: 40px; }
}

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-page-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-page-item:hover img { transform: scale(1.05); }
.gallery-page-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-page-item:hover::after { opacity: 1; }
.gallery-page-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.gallery-page-item:hover .gallery-page-overlay { opacity: 1; transform: translateY(0); }
.gallery-page-overlay h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.gallery-page-overlay p { font-size: 12px; opacity: 0.8; }
.gallery-filter-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery-filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.gallery-filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

@media (max-width: 768px) {
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .gallery-page-grid { grid-template-columns: 1fr; }
}
.arabic-text { font-family: var(--font-arabic); direction: rtl; }
