/* ============================================
   LUXURY REPAIRS — Al-Azhran Luxury Auto Repair
   styles.css
   ============================================ */

/* ----- Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* ----- CSS Variables ----- */
:root {
  --primary: #0F1B2D;
  --primary-light: #1A2E4A;
  --primary-lighter: #243B5E;
  --gold: #D4A843;
  --gold-light: #E8C45A;
  --gold-dark: #B8912E;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --light-gray: #E5E2DC;
  --mid-gray: #9B968E;
  --text: #2C2C2C;
  --text-light: #666666;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-bg: #DCF8C6;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-en);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.rtl { font-family: var(--font-ar); direction: rtl; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ----- Lang Toggle ----- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  background: transparent;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.lang-switch:hover { background: var(--gold); color: var(--primary); }
.lang-switch .lang-icon { font-size: 16px; }

/* Arabic-specific overrides */
body.rtl .lang-switch { direction: ltr; }
body.rtl .en-only { display: none; }
body:not(.rtl) .ar-only { display: none; }

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 27, 45, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  transition: var(--transition);
}
.header.scrolled { background: rgba(15, 27, 45, 0.99); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}
.logo-text { font-size: 20px; font-weight: 700; line-height: 1.2; }
.logo-text span { color: var(--gold); }
.logo-sub { font-size: 10px; color: var(--mid-gray); letter-spacing: 2px; text-transform: uppercase; }
body.rtl .logo-text { font-family: var(--font-ar); }

/* ----- Navigation ----- */
.nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(212,168,67,0.1); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.header-phone:hover { background: var(--gold); color: var(--primary); }
.header-phone .phone-icon { font-size: 18px; }

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
}

/* Mobile Nav */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 27, 45, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212,168,67,0.15);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 16px; }
  .header-cta .header-phone span.phone-label { display: none; }
  .header-phone { padding: 8px 12px; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
  text-align: center;
  line-height: 1.3;
}
.btn-gold {
  background: var(--gold);
  color: var(--primary);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,168,67,0.35); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--primary); transform: translateY(-2px); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: #20BD5A; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 17px; border-radius: var(--radius); }
.btn-block { width: 100%; }

/* ----- Floating Actions (Call + WhatsApp) ----- */
.float-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn .tooltip {
  position: absolute;
  right: 66px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-btn:hover .tooltip { opacity: 1; }
.float-call { background: var(--gold); }
.float-call:hover { box-shadow: 0 6px 25px rgba(212,168,67,0.5); }
.float-whatsapp { background: var(--whatsapp); }
.float-whatsapp:hover { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }

@media (max-width: 768px) {
  .float-actions { bottom: 16px; right: 16px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; font-size: 20px; }
  .float-btn .tooltip { display: none; }
}

/* ----- Hero Section ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #0A1428 50%, #131F35 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat h3 { font-size: 28px; font-weight: 800; color: var(--gold); }
.hero-stat p { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }

body.rtl .hero-title { font-family: var(--font-ar); }
body.rtl .hero-sub { font-family: var(--font-ar); }

/* ----- Hero for Inner Pages ----- */
.hero-small {
  min-height: 40vh;
  padding: 120px 0 60px;
}
.hero-small .hero-title { font-size: clamp(28px, 4vw, 44px); }
.hero-small .hero-sub { max-width: 600px; }

/* ----- Section General ----- */
.section { padding: 80px 0; }
.section-dark { background: var(--primary); color: var(--white); }
.section-light { background: var(--off-white); }
.section-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}
.section-dark .section-sub { color: rgba(255,255,255,0.6); }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ----- Brands / Services Grid ----- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.brand-card .brand-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.brand-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.brand-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.brand-card .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .brands-grid { grid-template-columns: 1fr; }
}

/* ----- Services ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .svc-icon { font-size: 36px; margin-bottom: 12px; }
.service-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.section-dark .service-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }
.section-dark .service-card h4 { color: var(--white); }
.section-dark .service-card p { color: rgba(255,255,255,0.6); }

/* ----- CTA Banner ----- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1A2E4A 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,168,67,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ----- Testimonials ----- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}
.testimonial-card .stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.testimonial-card .author-info strong { font-size: 14px; display: block; }
.testimonial-card .author-info span { font-size: 12px; color: var(--text-light); }
.section-dark .testimonial-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }
.section-dark .testimonial-card blockquote { color: rgba(255,255,255,0.85); }

/* ----- Why Us ----- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 28px 20px;
}
.why-card .why-icon {
  width: 60px;
  height: 60px;
  background: rgba(212,168,67,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.why-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ----- Service Detail ----- */
.service-detail { padding: 80px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
body.rtl .service-detail-grid:not(.reverse) { direction: rtl; }
.service-detail-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 16px;
}
.service-detail-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}
.service-detail-content ul { margin-bottom: 24px; }
.service-detail-content ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--text);
}
.service-detail-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
body.rtl .service-detail-content ul li { padding-left: 0; padding-right: 24px; }
body.rtl .service-detail-content ul li::before { left: auto; right: 0; }
.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-gray);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--mid-gray);
}
.service-detail-image .placeholder-icon { opacity: 0.3; }

@media (max-width: 768px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-detail-grid.reverse { direction: ltr; }
  body.rtl .service-detail-grid:not(.reverse) { direction: ltr; }
}

/* ----- Contact Section ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; color: var(--white); }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.8);
}
.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,168,67,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item .ci-text h4 { font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 2px; }
.contact-item .ci-text p { font-size: 14px; line-height: 1.5; }
.contact-item .ci-text a { color: var(--white); }
.contact-item .ci-text a:hover { color: var(--gold); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ----- Footer ----- */
.footer {
  background: #080E1A;
  color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .logo-text { font-size: 18px; color: var(--white); margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ----- Page Specific: Service Page ----- */
.service-intro { padding: 60px 0; text-align: center; }
.service-intro h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; }
.service-intro p { max-width: 700px; margin: 0 auto; color: var(--text-light); font-size: 16px; line-height: 1.8; }

.service-packages { padding: 0 0 80px; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.package-card.featured { border-color: var(--gold); box-shadow: 0 8px 30px rgba(212,168,67,0.15); }
.package-card.featured::before {
  content: '★ Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--primary);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
body.rtl .package-card.featured::before { content: '★ الأكثر طلباً'; }
.package-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.package-card .price { font-size: 32px; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.package-card .price-sub { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.package-card ul { text-align: left; margin-bottom: 24px; }
body.rtl .package-card ul { text-align: right; }
.package-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid var(--off-white);
}
.package-card ul li:last-child { border: none; }
.package-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--whatsapp); font-weight: 700; }
body.rtl .package-card ul li { padding-left: 0; padding-right: 24px; }
body.rtl .package-card ul li::before { left: auto; right: 0; }

/* ----- FAQ ----- */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--text);
  transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question .faq-arrow { transition: var(--transition); font-size: 14px; color: var(--gold); }
.faq-item.open .faq-question .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  padding: 0 20px 18px;
  max-height: 500px;
}
body.rtl .faq-question { text-align: right; }

/* ----- Animations ----- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

/* ----- Process Steps ----- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}
.process-step .step-num {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  margin: 0 auto 16px;
  position: relative;
}
.process-step .step-num::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 40px);
  width: calc(100% - 40px);
  height: 2px;
  background: rgba(212,168,67,0.2);
  display: none;
}
.process-step:not(:last-child) .step-num::after { display: block; }
.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.process-step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .hero { padding: 100px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat { flex: 1; min-width: 80px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step .step-num::after { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
