/* 
  Author: Mehdi Shali
  Tel: @nexdeveloper
*/

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

:root {
  --navy: #0A0E1A;
  --navy-mid: #111827;
  --navy-light: #1C2540;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-pale: #F5EDD7;
  --cream: #FAF7F2;
  --text-dark: #0A0E1A;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --border: rgba(201,168,76,0.2);
  --border-light: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ─── TOP BAR ─────────────────────────────────── */
.top-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-light);
}
.top-bar .container {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-end;
}
.top-bar a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.top-bar a:hover { color: var(--gold); }
.top-bar .icon-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

/* ─── NAVBAR ───────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 16px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.nav-links > li > a svg { width: 12px; height: 12px; opacity: 0.6; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 240px;
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-links > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: all 0.2s;
}
.dropdown a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.dropdown a:hover::before { opacity: 1; }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* ─── CONTAINER ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(28,37,64,0.8) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 70%);
}
.hero-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px; color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}
.btn-secondary {
  color: rgba(255,255,255,0.8);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500; font-size: 15px;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
  cursor: pointer; background: transparent;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.practice-list { display: flex; flex-direction: column; gap: 12px; }
.practice-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
}
.practice-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.25);
}
.practice-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.practice-item span {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.practice-item small {
  display: block; font-size: 12px;
  color: var(--text-light);
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  margin-top: 24px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stat {
  background: var(--navy-mid);
  padding: 16px;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 11px; color: var(--text-light);
  margin-top: 2px;
}

/* ─── SECTION BASE ─────────────────────────────── */
section { padding: 100px 0; }
.section-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}
.section-head { margin-bottom: 60px; }

/* ─── SERVICES / PRACTICE AREAS ───────────────── */
.services {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-icon {
  background: rgba(201,168,76,0.15);
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-size: 13px; font-weight: 500;
  color: var(--gold);
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ─── INNOVATION SECTION ───────────────────────── */
.innovation {
  background: var(--navy);
  position: relative;
}
.innovation .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.innovation-visual {
  position: relative;
}
.inno-box {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.inno-box::before {
  content: 'LexNova';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 700;
  color: rgba(201,168,76,0.04);
  position: absolute;
  top: -20px; right: 20px;
  line-height: 1;
  letter-spacing: -2px;
}
.inno-pillars {
  display: flex; flex-direction: column; gap: 16px;
}
.pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
}
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700;
  color: rgba(201,168,76,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.pillar p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ─── WHY US ───────────────────────────────────── */
.why-us {
  background: var(--navy-mid);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.why-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px;
  display: flex; align-items: flex-start; gap: 24px;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1; flex-shrink: 0;
}
.why-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.why-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ─── CTA BANNER ───────────────────────────────── */
.cta-banner {
  padding: 0;
}
.cta-inner {
  background: linear-gradient(135deg, var(--navy-light) 0%, rgba(28,37,64,0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.cta-inner h2 em { color: var(--gold); font-style: italic; }
.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  max-width: 500px;
  line-height: 1.7;
}

/* ─── CONTACT ──────────────────────────────────── */
.contact { background: var(--navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.c-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.c-label { font-size: 12px; color: var(--text-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.c-value { font-size: 15px; color: var(--white); font-weight: 500; }

.contact-form {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.03);
}
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn-primary { width: 100%; justify-content: center; }

/* ─── FOOTER ───────────────────────────────────── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.social-link:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
}

.footer-col h4 {
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a::before {
  content: '→';
  font-size: 11px;
  color: var(--gold);
  opacity: 0;
  transition: all 0.2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-col ul li a:hover::before { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold); }

/* ─── MOBILE MENU ─────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  z-index: 999;
  background: var(--navy);
  padding: 80px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 18px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  display: block;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 22px; right: 24px;
  background: none; border: none;
  color: var(--white); font-size: 28px; cursor: pointer;
}

/* ─── PAGE HEADER ─────────────────────────────── */
.page-hero {
  background: var(--navy-mid);
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ─── TEAM PAGE ───────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--border); transform: translateY(-4px); }
.team-photo {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  position: relative; overflow: hidden;
}
.team-photo::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(10,14,26,0.8));
}
.team-info { padding: 24px; }
.team-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.team-info span {
  font-size: 13px; color: var(--gold);
}
.team-info p {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-top: 12px; line-height: 1.6;
}

/* ─── ABOUT PAGE ──────────────────────────────── */
.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}
.value-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.value-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.value-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.value-item h4 {
  font-weight: 600; color: var(--white);
  font-size: 15px; margin-bottom: 4px;
}
.value-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero .container,
  .innovation .container,
  .about-story .container { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; padding: 50px 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .top-bar { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero .container { padding-top: 40px; padding-bottom: 40px; }
  section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
