/* ============================================================
   ASEL AL-MADENA HOLDING – MAIN STYLESHEET
   Premium Dark & Light Gold Corporate Theme
   ============================================================ */

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

/* ---------- CSS Custom Properties (Dark Theme – Default) ---------- */
:root {
  /* Gold Palette */
  --gold-primary:   #C9A84C;
  --gold-light:     #E2C06E;
  --gold-bright:    #F5D98B;
  --gold-dark:      #8B6914;
  --gold-glow:      rgba(201,168,76,0.35);

  /* Dark BG Palette */
  --navy-deep:      #050A18;
  --navy-dark:      #080F1E;
  --navy-mid:       #0D1630;
  --navy-light:     #132040;
  --navy-card:      #0B1525;

  /* Semantic Tokens (Dark default) */
  --bg-page:         #050A18;
  --bg-section-alt:  #080F1E;
  --bg-card:         #0B1525;
  --bg-input:        rgba(255,255,255,0.08);
  --bg-feature:      rgba(255,255,255,0.08);
  --bg-loader:       #050A18;

  --text-primary:    rgba(255,255,255,0.90);
  --text-secondary:  rgba(255,255,255,0.70);
  --text-muted:      rgba(255,255,255,0.40);
  --text-heading:    #FFFFFF;
  --text-logo-sub:   rgba(255,255,255,0.40);

  --border-card:     rgba(255,255,255,0.10);
  --border-gold:     rgba(201,168,76,0.30);
  --border-input:    rgba(255,255,255,0.10);
  --border-divider:  rgba(255,255,255,0.08);

  --shadow-gold:    0 8px 40px rgba(201,168,76,0.20);
  --shadow-card:    0 20px 60px rgba(0,0,0,0.50);
  --shadow-deep:    0 40px 80px rgba(0,0,0,0.70);

  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;

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

  --font-arabic:   'Tajawal', sans-serif;
  --font-display:  'Playfair Display', serif;
  --font-body:     'Inter', sans-serif;

  --nav-height: 80px;
}

/* ============================================================
   LIGHT THEME OVERRIDES
   ============================================================ */
body.light-theme {
  --bg-page:         #F8F5EE;
  --bg-section-alt:  #FFFFFF;
  --bg-card:         #FFFFFF;
  --bg-input:        rgba(0,0,0,0.04);
  --bg-feature:      rgba(0,0,0,0.04);
  --bg-loader:       #F8F5EE;

  --text-primary:    #1A1207;
  --text-secondary:  rgba(26,18,7,0.68);
  --text-muted:      rgba(26,18,7,0.42);
  --text-heading:    #0D0A04;
  --text-logo-sub:   rgba(26,18,7,0.45);

  --border-card:     rgba(0,0,0,0.09);
  --border-gold:     rgba(201,168,76,0.45);
  --border-input:    rgba(0,0,0,0.13);
  --border-divider:  rgba(0,0,0,0.07);

  --shadow-gold:     0 8px 40px rgba(201,168,76,0.22);
  --shadow-card:     0 10px 40px rgba(0,0,0,0.09);
  --shadow-deep:     0 20px 60px rgba(0,0,0,0.13);

  /* Override navy tokens used in backgrounds */
  --navy-deep:       #F8F5EE;
  --navy-dark:       #FFFFFF;
  --navy-mid:        #F3EEE4;
  --navy-card:       #FFFFFF;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-arabic);
  background-color: var(--bg-page);
  color: var(--text-primary);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.7;
  transition: background-color var(--transition-theme), color var(--transition-theme);
}

body.lang-en {
  font-family: var(--font-body);
  direction: ltr;
  text-align: left;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-page); transition: background var(--transition-theme); }
::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 3px; }

/* ---------- Selection ---------- */
::selection { background: var(--gold-primary); color: #fff; }

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast), background var(--transition-theme), border-color var(--transition-theme);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  color: var(--gold-light);
}
.theme-toggle-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: scale(1.08);
  box-shadow: 0 0 18px var(--gold-glow);
  color: #fff;
}
.theme-toggle-btn .th-icon {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  line-height: 1;
  display: flex;
}
.theme-toggle-btn .icon-moon { opacity: 1; transform: scale(1) rotate(0deg); }
.theme-toggle-btn .icon-sun  { opacity: 0; transform: scale(0) rotate(120deg); }
body.light-theme .theme-toggle-btn .icon-moon { opacity: 0; transform: scale(0) rotate(-120deg); }
body.light-theme .theme-toggle-btn .icon-sun  { opacity: 1; transform: scale(1) rotate(0deg); }

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-loader);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease, background var(--transition-theme);
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.loader-bar {
  width: 240px;
  height: 2px;
  background: var(--border-card);
  border-radius: 1px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-bright));
  border-radius: 1px;
  animation: loaderFill 2s ease-in-out forwards;
}
@keyframes loaderFill {
  to { width: 100%; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 60px;
  transition: background var(--transition-normal), backdrop-filter var(--transition-normal), box-shadow var(--transition-normal);
}
#navbar.scrolled {
  background: var(--bg-page);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-gold), 0 8px 30px rgba(0,0,0,0.12);
}
body.light-theme #navbar.scrolled {
  background: rgba(248,245,238,0.95);
  box-shadow: 0 1px 0 var(--border-gold), 0 8px 24px rgba(0,0,0,0.08);
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-ar {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.02em;
}
.nav-logo-en {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--text-logo-sub);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition-fast);
  letter-spacing: 0.03em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-lang-btn {
  padding: 8px 20px;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-arabic);
  letter-spacing: 0.05em;
}
.nav-lang-btn:hover {
  background: var(--gold-primary);
  color: #fff;
  border-color: var(--gold-primary);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 28px; height: 2px;
  background: var(--gold-primary);
  border-radius: 1px;
  transition: all var(--transition-fast);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--bg-page);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 24px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  transition: background var(--transition-theme);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-divider);
  transition: color var(--transition-fast);
}
.nav-mobile a:hover { color: var(--gold-light); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,10,24,0.88) 0%,
    rgba(8,15,30,0.75) 50%,
    rgba(5,10,24,0.88) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--navy-deep));
}

/* Gold particle canvas */
#particle-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(201,168,76,0.08);
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 var(--gold-glow); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

.hero-title-ar {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title-ar span {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright), var(--gold-primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: goldShimmer 4s linear infinite;
}
@keyframes goldShimmer {
  from { background-position: 0% center; }
  to { background-position: 200% center; }
}

.hero-title-en {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--white-40);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.9;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
  background-size: 200% auto;
  color: var(--navy-deep);
  font-family: var(--font-arabic);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.04em;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.btn-primary:hover { background-position: right center; box-shadow: 0 8px 30px var(--gold-glow); transform: translateY(-2px); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: var(--white-90);
  font-family: var(--font-arabic);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--white-40);
  cursor: pointer;
  transition: all var(--transition-normal);
  letter-spacing: 0.04em;
}
.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-indicator:hover { opacity: 1; }
.hero-scroll-indicator span {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 28px; height: 28px;
  border-right: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 100px 60px;
}
.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-primary);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-title span {
  color: var(--gold-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-70);
  line-height: 1.9;
  max-width: 650px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/about_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text-block { }
.about-text-block .section-subtitle { max-width: 100%; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feature {
  background: var(--white-08);
  border: 1px solid var(--border-white);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-normal);
}
.about-feature:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.about-feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.about-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.about-feature-text {
  font-size: 0.82rem;
  color: var(--white-70);
  line-height: 1.7;
}

.about-visual {
  position: relative;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: linear-gradient(135deg, var(--navy-card), var(--navy-mid));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-primary);
}
.stat-card:nth-child(2) { margin-top: 30px; }
.stat-card:nth-child(4) { margin-top: 30px; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--white-70);
  line-height: 1.5;
}

/* ============================================================
   SUBSIDIARIES SECTION
   ============================================================ */
#subsidiaries {
  background: var(--navy-deep);
}

.subsidiaries-header {
  text-align: center;
  margin-bottom: 70px;
}
.subsidiaries-header .section-label { justify-content: center; }
.subsidiaries-header .section-label::before { display: none; }
.subsidiaries-header .section-label::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-primary);
}
.subsidiaries-header .section-subtitle {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.subsidiaries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sub-card {
  background: var(--navy-card);
  border: 1px solid var(--border-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: default;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sub-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.sub-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.sub-card:hover .sub-card-img { transform: scale(1.06); }

.sub-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.sub-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--navy-card));
}

.sub-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sub-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.sub-card-country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: rgba(201,168,76,0.12);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.25);
  align-self: flex-start;
}

.sub-card-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
}

.sub-card-desc {
  font-size: 0.87rem;
  color: var(--white-70);
  line-height: 1.8;
  flex: 1;
}

.sub-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.sub-card-tag {
  font-size: 0.7rem;
  color: var(--white-70);
  background: var(--white-08);
  border: 1px solid var(--border-white);
  border-radius: 50px;
  padding: 4px 12px;
}

/* Client Logo Overlay on sub cards */
.sub-card-logo-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  max-width: 130px;
  max-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  border: 1px solid rgba(0,0,0,0.06);
}
.sub-card-logo-overlay img {
  max-width: 110px;
  max-height: 55px;
  object-fit: contain;
}

/* Large card spanning 2 columns */
.sub-card.wide {
  grid-column: span 2;
  flex-direction: row;
}
.sub-card.wide .sub-card-img-wrap {
  width: 45%;
  flex-shrink: 0;
}
.sub-card.wide .sub-card-img {
  height: 100%;
}
.sub-card.wide .sub-card-img-wrap::after {
  top: 0; right: 0; bottom: 0;
  width: 80px; height: auto;
  background: linear-gradient(to right, transparent, var(--navy-card));
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.services-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }
.services-header .section-label::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(13,22,48,0.7);
  border: 1px solid var(--border-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.service-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  transition: all var(--transition-normal);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  border-color: var(--gold-bright);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.83rem;
  color: var(--white-70);
  line-height: 1.8;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
#why-us {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.whyus-text .section-subtitle { max-width: 100%; }

.whyus-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white-08);
  border: 1px solid var(--border-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}
.pillar:hover {
  background: rgba(201,168,76,0.06);
  border-color: var(--border-gold);
  transform: translateX(-8px);
}
body.lang-en .pillar:hover { transform: translateX(8px); }

.pillar-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pillar-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.pillar-text p {
  font-size: 0.85rem;
  color: var(--white-70);
  line-height: 1.7;
}

.whyus-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.counter-card {
  background: linear-gradient(135deg, var(--navy-card), var(--navy-mid));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}
.counter-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.counter-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.counter-card:hover::after { opacity: 1; }

.counter-value {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.counter-suffix {
  font-size: 1.5rem;
  font-weight: 700;
}
.counter-desc {
  font-size: 0.85rem;
  color: var(--white-70);
  line-height: 1.5;
  margin-top: 6px;
}

/* ============================================================
   OFFICES / PRESENCE SECTION
   ============================================================ */
#presence {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
}

.presence-header {
  text-align: center;
  margin-bottom: 60px;
}
.presence-header .section-label { justify-content: center; }
.presence-header .section-label::before { display: none; }
.presence-header .section-label::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-primary);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.office-card {
  background: var(--navy-card);
  border: 1px solid var(--border-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.office-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.office-card:hover { border-color: var(--border-gold); transform: translateY(-6px); }
.office-card:hover::before { transform: scaleX(1); }

.office-flag {
  font-size: 3rem;
  margin-bottom: 16px;
}
.office-city {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.office-country {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.office-address {
  font-size: 0.85rem;
  color: var(--white-70);
  line-height: 1.8;
}
.office-address strong {
  color: var(--white-90);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--navy-deep);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info { }
.contact-info .section-subtitle { max-width: 100%; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white-08);
  border: 1px solid var(--border-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}
.contact-item:hover {
  border-color: var(--border-gold);
  background: rgba(201,168,76,0.06);
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text label {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item-text span {
  font-size: 0.92rem;
  color: var(--white-90);
  line-height: 1.6;
}

.contact-form-wrap {
  background: linear-gradient(135deg, var(--navy-card), var(--navy-mid));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-bright), var(--gold-primary), var(--gold-dark));
}

.contact-form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-70);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white-08);
  border: 1px solid var(--border-white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white-90);
  font-family: var(--font-arabic);
  font-size: 0.92rem;
  outline: none;
  transition: all var(--transition-fast);
  resize: none;
  direction: rtl;
  text-align: right;
}
body.lang-en .form-group input,
body.lang-en .form-group select,
body.lang-en .form-group textarea {
  direction: ltr;
  text-align: left;
  font-family: var(--font-body);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-40);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select option {
  background: var(--navy-mid);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
  background-size: 200% auto;
  color: var(--navy-deep);
  font-family: var(--font-arabic);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.btn-submit:hover {
  background-position: right center;
  box-shadow: 0 8px 30px var(--gold-glow);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border-gold);
  padding: 70px 60px 40px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-white);
  margin-bottom: 40px;
}

.footer-brand {}
.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-primary);
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--white-40);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--white-08);
  border: 1px solid var(--border-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  color: var(--white-70);
}
.footer-social-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 24px; height: 1px;
  background: var(--gold-primary);
}
body.lang-en .footer-col h4::after { right: auto; left: 0; }

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--white-70);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--white-40);
}
.footer-copyright span { color: var(--gold-primary); }

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--white-40);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: var(--gold-light); }

/* ============================================================
   DIVIDER / DECORATIVE
   ============================================================ */
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright));
  border-radius: 2px;
  margin: 0 auto 48px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  margin: 0;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-card));
  border: 1px solid var(--gold-primary);
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  z-index: 9998;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .subsidiaries-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-card.wide { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .section { padding: 80px 40px; }
  #footer { padding: 60px 40px 32px; }
  #navbar { padding: 0 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .whyus-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .sub-card.wide { flex-direction: column; grid-column: span 1; }
  .sub-card.wide .sub-card-img-wrap { width: 100%; }
  .sub-card.wide .sub-card-img { height: 220px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  .section { padding: 70px 24px; }
  #footer { padding: 50px 24px 28px; }
  #navbar { padding: 0 24px; }

  .nav-links { display: none; }
  .nav-lang-btn { display: none; }
  .nav-hamburger { display: flex; }

  .about-features { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card:nth-child(2), .stat-card:nth-child(4) { margin-top: 0; }

  .subsidiaries-grid { grid-template-columns: 1fr; }
  .sub-card.wide { flex-direction: column; grid-column: span 1; }
  .sub-card.wide .sub-card-img-wrap { width: 100%; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .whyus-counters { grid-template-columns: 1fr 1fr; }

  .offices-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-col h4::after { right: auto; left: 50%; transform: translateX(-50%); }
  .footer-col { text-align: center; }
  .footer-socials { justify-content: center; }

  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .whyus-counters { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr; }
  .stat-card:nth-child(2), .stat-card:nth-child(4) { margin-top: 0; }
}

/* ============================================================
   LIGHT THEME - COMPONENT OVERRIDES
   ============================================================ */

body.light-theme #about          { background: #FFFFFF; }
body.light-theme #subsidiaries   { background: #F8F5EE; }
body.light-theme #services       { background: linear-gradient(180deg, #FFFFFF 0%, #F3EEE4 100%); }
body.light-theme #why-us         { background: #F8F5EE; }
body.light-theme #presence       { background: linear-gradient(180deg, #FFFFFF 0%, #F8F5EE 100%); }
body.light-theme #contact        { background: #F8F5EE; }
body.light-theme #footer         { background: #1a1207; border-color: rgba(201,168,76,0.3); }
body.light-theme .section-title  { color: #0D0A04; }
body.light-theme .section-subtitle { color: rgba(26,18,7,0.68); }
body.light-theme .about-bg-pattern { opacity: 0.04; }
body.light-theme .about-feature { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.09); }
body.light-theme .about-feature:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.45); }
body.light-theme .about-feature-title { color: #0D0A04; }
body.light-theme .about-feature-text  { color: rgba(26,18,7,0.68); }
body.light-theme .stat-card { background: linear-gradient(135deg,#FFFFFF,#FAF7F0); border-color: rgba(201,168,76,0.45); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
body.light-theme .stat-label { color: rgba(26,18,7,0.68); }
body.light-theme .sub-card { background: #FFFFFF; border-color: rgba(0,0,0,0.09); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
body.light-theme .sub-card:hover { border-color: #C9A84C; box-shadow: 0 8px 40px rgba(201,168,76,0.22), 0 10px 40px rgba(0,0,0,0.10); }
body.light-theme .sub-card-img-wrap::after { background: linear-gradient(to bottom, transparent, #FFFFFF); }
body.light-theme .sub-card-name { color: #0D0A04; }
body.light-theme .sub-card-desc { color: rgba(26,18,7,0.68); }
body.light-theme .sub-card-tag  { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.09); color: rgba(26,18,7,0.68); }
body.light-theme .service-card  { background: #FFFFFF; border-color: rgba(0,0,0,0.09); box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
body.light-theme .service-card:hover { border-color: #C9A84C; box-shadow: 0 8px 40px rgba(201,168,76,0.22); }
body.light-theme .service-title { color: #0D0A04; }
body.light-theme .service-desc  { color: rgba(26,18,7,0.68); }
body.light-theme .services-glow { background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); }
body.light-theme .pillar { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.09); }
body.light-theme .pillar:hover  { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.45); }
body.light-theme .pillar-text h4 { color: #0D0A04; }
body.light-theme .pillar-text p  { color: rgba(26,18,7,0.68); }
body.light-theme .counter-card  { background: linear-gradient(135deg,#FFFFFF,#FAF7F0); border-color: rgba(201,168,76,0.45); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
body.light-theme .counter-desc  { color: rgba(26,18,7,0.68); }
body.light-theme .office-card   { background: #FFFFFF; border-color: rgba(0,0,0,0.09); box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
body.light-theme .office-card:hover { border-color: rgba(201,168,76,0.45); }
body.light-theme .office-city   { color: #0D0A04; }
body.light-theme .office-country { color: #C9A84C; }
body.light-theme .office-address { color: rgba(26,18,7,0.68); }
body.light-theme .office-address strong { color: #0D0A04; }
body.light-theme .contact-item  { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.09); }
body.light-theme .contact-item:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.45); }
body.light-theme .contact-item-text span { color: #0D0A04; }
body.light-theme .contact-form-wrap { background: linear-gradient(135deg,#FFFFFF,#FAF7F0); border-color: rgba(201,168,76,0.45); box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
body.light-theme .contact-form-title { color: #0D0A04; }
body.light-theme .form-group label   { color: rgba(26,18,7,0.68); }
body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.13); color: #0D0A04; }
body.light-theme .form-group input::placeholder,
body.light-theme .form-group textarea::placeholder { color: rgba(26,18,7,0.42); }
body.light-theme .form-group input:focus,
body.light-theme .form-group select:focus,
body.light-theme .form-group textarea:focus { border-color: #C9A84C; background: rgba(201,168,76,0.04); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
body.light-theme .form-group select option { background: #FFFFFF; color: #1A1207; }
body.light-theme .section-divider { background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent); }
body.light-theme .btn-outline { color: #1A1207; border-color: rgba(26,18,7,0.25); }
body.light-theme .btn-outline:hover { border-color: #C9A84C; color: #8B6914; background: rgba(201,168,76,0.08); }
body.light-theme .hero-overlay { background: linear-gradient(135deg,rgba(5,10,24,0.72) 0%,rgba(8,15,30,0.58) 50%,rgba(5,10,24,0.72) 100%); }
body.light-theme .hero-overlay-bottom { background: linear-gradient(to bottom, transparent, #F8F5EE); }

/* Footer always dark in both themes */
body.light-theme #footer .footer-brand-name { color: #C9A84C; }
body.light-theme #footer .footer-brand-sub,
body.light-theme #footer .footer-col h4,
body.light-theme #footer .footer-col ul li a,
body.light-theme #footer .footer-copyright,
body.light-theme #footer .footer-legal a { color: rgba(255,255,255,0.75); }
body.light-theme #footer .footer-col h4 { color: rgba(255,255,255,0.95); }
body.light-theme #footer .footer-brand-desc { color: rgba(255,255,255,0.60); }
body.light-theme #footer .footer-copyright span { color: #C9A84C; }
body.light-theme #footer .footer-social-btn { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
body.light-theme #footer .footer-social-btn:hover { background: #C9A84C; border-color: #C9A84C; color: #fff; }
body.light-theme #footer .footer-col ul li a:hover { color: #E2C06E; }
body.light-theme #footer .footer-legal a:hover { color: #E2C06E; }
