/* ═══════════════════════════════════════════════════════════
   MAIIN CI — Unified Premium Stylesheet
   Palette: Olive Green + Charcoal (from logo)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --olive:         #5B6B1A;
  --olive-light:   #7A8C2A;
  --olive-muted:   #A3B04D;
  --olive-subtle:  rgba(91,107,26,0.08);

  --charcoal:      #1A1A1A;
  --charcoal-mid:  #2D2D2D;
  --charcoal-light:#404040;

  --white:         #FFFFFF;
  --warm-white:    #F7F6F2;
  --surface:       #FAFAF7;

  --text:          #2A2A2A;
  --text-muted:    #7A7A6E;
  --text-light:    #9A9A8E;

  --border:        rgba(91,107,26,0.12);
  --border-light:  rgba(0,0,0,0.06);

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', -apple-system, sans-serif;

  --radius-xs:     2px;
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     12px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.10);
  --shadow-hover:  0 16px 48px rgba(0,0,0,0.12);

  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--charcoal);
  padding: 10px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.topbar-social { display: flex; gap: 18px; }
.topbar-social a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color var(--transition);
}
.topbar-social a:hover { color: var(--olive-muted); }

.topbar-contact {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.topbar-contact a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.topbar-contact a:hover { color: var(--olive-muted); }
.topbar-contact .sep { color: var(--olive); margin: 0 8px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.lang-switch a {
  color: rgba(255,255,255,0.4);
  padding: 2px 6px;
  transition: color var(--transition);
}
.lang-switch a.active,
.lang-switch a:hover { color: var(--olive-muted); }
.lang-switch .sep { color: rgba(255,255,255,0.15); margin: 0 2px; }

/* ── HEADER ─────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.06); }

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--olive);
  transition: width var(--transition);
}
.nav a:hover,
.nav a.active { color: var(--charcoal); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }

.nav-cta {
  background: var(--olive) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-xs);
  letter-spacing: 0.08em !important;
  font-size: 12px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--olive-light) !important;
  transform: translateY(-1px);
}

/* ── HAMBURGER ──────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 24px 30px;
  gap: 20px;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}
.btn-primary:hover {
  background: var(--olive-light);
  border-color: var(--olive-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,107,26,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-outline-olive {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}
.btn-outline-olive:hover {
  background: var(--olive);
  color: var(--white);
}

/* ── HERO (Homepage) ────────────────────────────────────── */
.hero {
  background: var(--charcoal);
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 60px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(91,107,26,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(91,107,26,0.06) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,107,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,107,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91,107,26,0.12);
  border: 1px solid rgba(91,107,26,0.25);
  color: var(--olive-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--olive-muted);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(91,107,26,0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--charcoal);
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,107,26,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,107,26,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.page-hero .section-label { color: var(--olive-muted); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.page-hero h1 em { font-style: italic; color: var(--olive-muted); }
.page-hero p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.50);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  max-width: 560px;
}

/* ── SECTIONS ───────────────────────────────────────────── */
section { padding: 100px 60px; }
.section-alt { background: var(--warm-white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--olive);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--olive); }
.section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 600px;
}
.section-center { text-align: center; }
.section-center .section-label { justify-content: center; }
.section-center .section-label::before { display: none; }
.section-center .section-sub { margin: 0 auto; }

/* ── CONTENT GRID (generic 2-col) ───────────────────────── */
.content-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── WHAT WE DO (Homepage) ──────────────────────────────── */
.what-we-do {
  max-width: 900px;
  margin: 0 auto;
}
.what-we-do p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 20px;
}
.what-we-do p:last-child { margin-bottom: 0; }

/* ── EXPERTISE CARDS ────────────────────────────────────── */
.expertise-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.expertise-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--olive);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.expertise-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: transparent;
  transform: translateY(-3px);
}
.expertise-card:hover::before { transform: scaleX(1); }
.expertise-card-icon {
  width: 48px; height: 48px;
  background: var(--olive-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
  color: var(--olive);
  transition: all var(--transition);
}
.expertise-card:hover .expertise-card-icon {
  background: var(--olive);
  color: var(--white);
}
.expertise-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.expertise-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ── BRAND CARDS (Thynara / Rotaban) ────────────────────── */
.brands-grid {
  max-width: 1100px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: all var(--transition);
  position: relative;
}
.brand-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.brand-card-logo {
  width: 80px;
  height: 80px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.brand-card-logo img {
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
}
.brand-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.brand-card .brand-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}
.brand-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}
.brand-card .brand-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--olive);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.brand-card .brand-link:hover { gap: 12px; }
.brands-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 700px;
  margin: 40px auto 0;
  line-height: 1.8;
}

/* ── WHY MAIIN ──────────────────────────────────────────── */
.why-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
}
.why-item::before {
  content: '';
  width: 8px; height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--olive);
  margin-top: 8px;
}

/* ── TRACK RECORD ───────────────────────────────────────── */
.track-record {
  max-width: 1100px;
  margin: 0 auto;
}
.track-record-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.track-record-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(91,107,26,0.08);
  border: 1px solid rgba(91,107,26,0.1);
}
.track-record-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--olive-muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.track-record-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.track-record-card p:last-child { margin-bottom: 0; }
.track-highlight {
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--charcoal);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,107,26,0.06) 0%, transparent 70%);
  border: 1px solid rgba(91,107,26,0.05);
}
.cta-section .section-label { color: var(--olive-muted); justify-content: center; }
.cta-section .section-label::before { background: var(--olive-muted); }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}
.cta-section > p,
.cta-section .cta-text {
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 40px;
  position: relative;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-contact-info {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}
.cta-contact-item i { color: var(--olive-muted); font-size: 15px; }

/* ── SERVICES DETAIL (services page) ────────────────────── */
.services-detail { padding: 100px 60px; }
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
  max-width: 1200px;
  margin: 0 auto;
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }
.sdi-text .num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: rgba(91,107,26,0.1);
  line-height: 1;
  margin-bottom: -12px;
}
.sdi-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.sdi-text h2 em { font-style: italic; color: var(--olive); }
.sdi-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 28px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
.feature-list li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--olive);
  margin-top: 10px;
  flex-shrink: 0;
}

.sdi-visual {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sdi-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
  width: fit-content;
}
.sdi-tag-olive {
  background: var(--olive-subtle);
  border-color: rgba(91,107,26,0.2);
  color: var(--olive);
}

.sdi-case-study {
  background: var(--charcoal);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 24px;
}
.sdi-case-study p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 0;
}
.sdi-case-study strong { color: var(--olive-muted); }

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-intro {
  max-width: 900px;
  margin: 0 auto;
}
.about-intro p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 20px;
}

.approach-steps {
  max-width: 1000px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.approach-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.approach-step:last-child { border-bottom: none; }
.approach-step-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--olive);
  line-height: 1;
  padding-top: 4px;
}
.approach-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.approach-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.mission-vision {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.mv-card.dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.mv-card.dark h3 { color: var(--olive-muted); }
.mv-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  font-style: italic;
}
.mv-card.dark p { color: rgba(255,255,255,0.55); }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info-panel {}
.contact-info-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.contact-info-panel h2 em { font-style: italic; color: var(--olive); }
.contact-info-panel > p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.how-step-icon {
  width: 40px; height: 40px;
  background: var(--olive-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--olive);
}
.how-step h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.how-step p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* Contact Form */
.contact-form-card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.contact-form-card .form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 300;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(91,107,26,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--olive);
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
  font-weight: 300;
}

/* Team Cards */
.team-section {
  max-width: 1200px;
  margin: 0 auto;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.team-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--warm-white);
  margin: 0 auto 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-photo i {
  font-size: 28px;
  color: var(--text-light);
}
.team-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.team-card .team-role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--olive);
  margin-bottom: 12px;
}
.team-card .team-email {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.team-card .team-email:hover { color: var(--olive); }

.general-contact {
  margin-top: 40px;
  padding: 32px;
  background: var(--charcoal);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.general-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.general-contact-item i { color: var(--olive-muted); }
.general-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.general-contact-item a:hover { color: var(--white); }

/* ── INSIGHTS PAGE ──────────────────────────────────────── */
.insights-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.insight-article {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.insight-article:hover { box-shadow: var(--shadow-md); }

.insight-header {
  padding: 32px 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.insight-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
}
.insight-header .insight-date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.insight-header .insight-toggle {
  font-size: 18px;
  color: var(--olive);
  transition: transform var(--transition);
}
.insight-article.open .insight-toggle { transform: rotate(180deg); }

.insight-body {
  display: none;
  padding: 0 40px 40px;
  border-top: 1px solid var(--border-light);
}
.insight-article.open .insight-body { display: block; }

.insight-body h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 32px 0 12px;
}
.insight-body h4:first-child { margin-top: 24px; }
.insight-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 12px;
}
.insight-body ul {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.insight-body li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}
.insight-body li::before {
  content: '';
  width: 6px; height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--olive);
  margin-top: 8px;
}
.insight-callout {
  background: var(--olive-subtle);
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 400;
}
.insight-sources {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-light);
  font-weight: 300;
}

/* ── LEGAL PAGE ─────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 48px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 56px 60px 24px;
  border-top: 1px solid rgba(91,107,26,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}
.footer-brand .footer-logo-img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  font-weight: 300;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-muted);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  transition: color var(--transition);
  font-weight: 300;
}
.footer-col a:hover { color: var(--white); }
.footer-col p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.9;
  font-weight: 300;
}
.footer-col p a { display: inline; margin: 0; }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a {
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--olive-muted); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── RTL SUPPORT ────────────────────────────────────────── */
[dir="rtl"] { font-family: 'Tajawal', var(--font-body); }
[dir="rtl"] .section-label::before { display: none; }
[dir="rtl"] .section-label::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--olive);
}
[dir="rtl"] .feature-list li { flex-direction: row-reverse; }
[dir="rtl"] .feature-list li::before { margin-top: 10px; }
[dir="rtl"] .insight-callout {
  border-left: none;
  border-right: 3px solid var(--olive);
}
[dir="rtl"] .how-step { flex-direction: row-reverse; }
[dir="rtl"] .approach-step { direction: rtl; }
[dir="rtl"] .service-detail-item.reverse { direction: ltr; }
[dir="rtl"] .service-detail-item.reverse > * { direction: rtl; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .topbar { padding: 10px 30px; }
  .topbar-contact { display: none; }
  .header { padding: 0 30px; }
  section { padding: 80px 30px; }
  .hero { padding: 80px 30px; min-height: auto; }
  .page-hero { padding: 100px 30px 60px; }
  .cta-section { padding: 80px 30px; }
  .services-detail { padding: 80px 30px; }
  footer { padding: 48px 30px 24px; }

  .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .service-detail-item { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-item.reverse { direction: ltr; }
  [dir="rtl"] .service-detail-item.reverse { direction: rtl; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-vision { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .expertise-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; margin-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .general-contact { flex-direction: column; align-items: center; gap: 16px; }
  .insight-header { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: clamp(32px, 7vw, 52px); }
}
