/* =====================================================
   Startedge Global - Main Stylesheet
   Brand Colors: Navy #0D1B2A | Gold #C9A84C | Blue #1E3A8A
   ===================================================== */

:root {
  --navy: #0D1B2A;
  --gold: #C9A84C;
  --blue: #1E3A8A;
  --brand-blue: #1E3A8A;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --foreground: #0A0A0A;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--foreground);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::selection { background: var(--gold); color: #0A0A0A; }

/* =====================================================
   UTILITIES
   ===================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-blue { color: var(--blue); }
.bg-navy { background-color: var(--navy); }
.bg-blue { background-color: var(--blue); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-from-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-from-left.animated {
  opacity: 1;
  transform: translateX(0);
}
.animate-from-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-from-right.animated {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =====================================================
   NAVBAR
   ===================================================== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.4);
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 96px;
}
.navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: transform 0.3s;
}
.navbar-logo:hover { transform: scale(1.05); }
.navbar-logo img { height: 64px; width: auto; }
.navbar-logo span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}
.navbar-logo:hover span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 0.625rem 1.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s !important;
  box-shadow: 0 2px 6px rgba(13,27,42,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13,27,42,0.3) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-800);
  padding: 4px;
}
.hamburger:hover { color: var(--gold); }
.hamburger svg { display: block; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 0.5rem 1rem 1.5rem;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--gold); background: var(--gray-50); }
.mobile-menu .mob-cta {
  margin-top: 0.75rem;
  background: var(--navy);
  color: #fff !important;
  text-align: center;
  border-radius: 6px;
  padding: 0.875rem;
  font-weight: 500;
}
.mobile-menu .mob-cta:hover { background: var(--blue) !important; }

@media (max-width: 767px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* =====================================================
   HERO
   ===================================================== */
#hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--navy);
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/gallery/photo4.jpg');
  background-size: cover;
  background-position: top center;
  opacity: 0.3;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy), rgba(13,27,42,0.9), transparent);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1.5rem;
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #d1d5db;
  margin: 0 0 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(201,168,76,0.3);
}
.btn-gold:hover { background: #d4b05a; transform: translateY(-1px); }
.btn-gold svg { transition: transform 0.3s; }
.btn-gold:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 500;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.8); opacity: 0.5; }
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
#testimonials {
  padding: 5rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 3.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-100);
  position: relative;
  display: none;
}
.testimonial-card.active { display: block; }
.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: var(--gray-100);
}
.testimonial-card p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: var(--gray-600);
  font-style: italic;
  margin: 0 0 2.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}
.author-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.125rem;
  line-height: 1.3;
}
.author-role { font-size: 0.875rem; color: var(--blue); font-weight: 500; margin-top: 2px; }
.author-company { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

.testimonial-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.slider-nav { display: flex; gap: 0.75rem; }
.nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--gray-500);
  transition: border-color 0.2s, color 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
.nav-btn:hover { border-color: var(--navy); color: var(--navy); }
.slider-dots { display: flex; gap: 0.5rem; align-items: center; }
.dot {
  height: 8px;
  border-radius: 4px;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  width: 8px;
}
.dot.active { background: var(--navy); width: 24px; }
.dot:hover { background: var(--gray-400); }

@media (max-width: 767px) {
  .testimonial-card { padding: 1.75rem; }
}

/* =====================================================
   GALLERY (auto-scroll)
   ===================================================== */
#gallery {
  padding: 6rem 0;
  background: #fff;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.gallery-track-wrap { position: relative; overflow: hidden; }
.gallery-track {
  display: flex;
  width: max-content;
  animation: galleryScroll 65s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
.gallery-item {
  width: 450px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 12px;
  background: var(--gray-100);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid var(--gray-200);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
/* portrait images */
.gallery-item.portrait img { object-fit: contain; object-position: top; }

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .gallery-item { width: 300px; height: 200px; }
}

/* =====================================================
   IMPACT STATS
   ===================================================== */
#impact {
  padding: 5rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.stat-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.stat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--blue);
  margin: 0 auto 1.5rem;
  transition: background 0.3s, color 0.3s;
}
.stat-card:hover .stat-icon { background: var(--blue); color: #fff; }
.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.stat-label { color: var(--gray-600); font-weight: 500; margin: 0; }

/* =====================================================
   EXPERTISE
   ===================================================== */
#expertise { padding: 5rem 0; background: #fff; }
.expertise-header {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.expertise-header-right p {
  color: var(--gray-600);
  font-size: 1.125rem;
  max-width: 400px;
  margin: 0;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.expertise-card {
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  cursor: default;
}
.expertise-card:hover { background: var(--navy); border-color: var(--gold); }
.expertise-icon {
  color: var(--blue);
  margin-bottom: 2rem;
  transition: color 0.3s;
}
.expertise-card:hover .expertise-icon { color: var(--gold); }
.expertise-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1rem;
  transition: color 0.3s;
}
.expertise-card:hover h3 { color: #fff; }
.expertise-card > p {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  transition: color 0.3s;
}
.expertise-card:hover > p { color: #d1d5db; }
.expertise-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.expertise-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  transition: color 0.3s;
}
.expertise-card:hover .expertise-bullets li { color: #9ca3af; }
.expertise-bullets li::before {
  content: '•';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =====================================================
   ABOUT
   ===================================================== */
#about {
  padding: 5rem 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-bg-shape {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  opacity: 0.05;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 2rem;
}
.about-content .about-section { margin-bottom: 2rem; }
.about-content .about-section h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}
.about-content p, .about-content li {
  color: #d1d5db;
  font-size: 1.0625rem;
  line-height: 1.8;
  font-weight: 300;
}
.about-content ul { padding-left: 1.25rem; }
.about-image-wrap {
  position: relative;
}
.about-image {
  border-radius: 4px;
  overflow: hidden;
  background: #1f2937;
  border: 1px solid #374151;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  aspect-ratio: 4/5;
  position: relative;
}
.about-image .bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}
.about-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.2) 50%, transparent 100%);
}
.about-image .caption {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  text-align: left;
}
.about-image .caption p:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}
.about-image .caption p:last-child {
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}
.about-deco {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  border: 2px solid var(--gold);
  z-index: -1;
}
@media (min-width: 768px) { .about-deco { display: block; } }

/* =====================================================
   LEADERSHIP
   ===================================================== */
#leadership {
  padding: 5rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .leadership-grid { grid-template-columns: 1fr 1fr; }
}
.leader-card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
@media (min-width: 640px) { .leader-card { flex-direction: row; } }
.leader-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.leader-photo {
  flex-shrink: 0;
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .leader-photo { width: 40%; height: auto; min-height: 320px; } }
.leader-photo .photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.7s ease;
}
.leader-card:hover .photo-bg { transform: scale(1.05); }
.leader-photo .photo-tint {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.1);
  transition: background 0.5s;
}
.leader-card:hover .photo-tint { background: rgba(13,27,42,0); }
.leader-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.leader-social { display: flex; gap: 0.75rem; }
.leader-social a {
  color: var(--gray-400);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.leader-social a:hover { color: var(--blue); }
.leader-name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}
.leader-name {
  font-size: 1.375rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  margin: 0;
}
.leader-role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.25rem;
}
.leader-creds {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0 0 1rem;
}
.leader-divider { height: 1px; width: 3rem; background: var(--gray-200); margin-bottom: 1rem; }
.leader-bio { font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; margin: 0; }

/* Director Detail Card */
.director-detail {
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.director-detail::before {
  content: '';
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}
.director-detail h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1.5rem;
}
.director-detail p {
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0 0 1rem;
  font-size: 0.9375rem;
}
.director-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-100);
}
@media (min-width: 768px) {
  .director-cols { grid-template-columns: 1fr 1fr; }
}
.director-cols h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.director-cols h4 .line { display: inline-block; width: 2rem; height: 2px; flex-shrink: 0; }
.expertise-list, .achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.expertise-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); }
.expertise-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.achievement-list {
  background: rgba(249,250,251,0.5);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--gray-100);
}
.achievement-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); }
.achievement-list li::before { content: '•'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* =====================================================
   CASE STUDIES
   ===================================================== */
#case-studies { padding: 6rem 0; background: var(--navy); color: #fff; }
.case-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.case-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.case-card { cursor: pointer; }
.case-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.case-img .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.case-card:hover .case-img .bg { transform: scale(1.05); }
.case-img .tint {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.4);
  transition: background 0.5s;
}
.case-card:hover .case-img .tint { background: rgba(13,27,42,0.2); }
.case-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.case-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  transition: color 0.3s;
}
.case-card:hover h3 { color: var(--gold); }
.case-card p { color: #9ca3af; line-height: 1.7; margin: 0; transition: color 0.3s; }
.case-card:hover p { color: #d1d5db; }

/* =====================================================
   CTA
   ===================================================== */
#cta {
  padding: 6rem 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-deco1 {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: rgba(13,27,42,0.1);
  transform: skewX(-12deg);
  transform-origin: top right;
  pointer-events: none;
}
.cta-deco2 {
  position: absolute;
  bottom: -6rem; left: -6rem;
  width: 24rem; height: 24rem;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
#cta h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 2rem;
}
#cta p {
  font-size: 1.25rem;
  color: rgba(219,234,254,0.9);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* =====================================================
   CONTACT
   ===================================================== */
#contact {
  padding: 5rem 0 7rem;
  background: #f0f4f8;
}
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #fff;
  color: #2563eb;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  border: 1px solid #dbeafe;
}
.contact-header h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 1rem;
}
.contact-header p {
  color: var(--gray-500);
  font-size: 1.0625rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #0d1b2a 60%, #1a2e46 100%);
  position: relative;
  margin-bottom: 2rem;
}
.contact-card-deco1 {
  position: absolute;
  top: -5rem; right: -5rem;
  width: 24rem; height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
  pointer-events: none;
}
.contact-card-deco2 {
  position: absolute;
  bottom: -6rem; left: -4rem;
  width: 20rem; height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.1), transparent 70%);
  pointer-events: none;
}
.contact-card-inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
@media (min-width: 768px) { .contact-card-inner { padding: 3.5rem; } }

.contact-company-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-card h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 2.5rem;
}
.contact-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .contact-items-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-items-grid { grid-template-columns: 1fr 1fr 1fr; } }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 0.25rem;
}
.contact-item a {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s;
  display: block;
  word-break: break-all;
}
.contact-item a:hover { color: var(--gold); }
.contact-item p { color: #d1d5db; font-size: 0.875rem; margin: 0; line-height: 1.5; }

.contact-card-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.contact-card-footer p { color: #9ca3af; font-size: 0.875rem; margin: 0; }
.contact-card-footer p strong { color: #fff; }
.email-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: filter 0.2s;
  box-shadow: 0 4px 14px rgba(201,168,76,0.25);
}
.email-cta:hover { filter: brightness(1.1); }

.contact-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .contact-stats { grid-template-columns: repeat(4, 1fr); } }

.stat-box {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.stat-box:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); transform: translateY(-2px); }
.stat-box-value { font-weight: 700; font-size: 1.25rem; color: var(--navy); margin-bottom: 2px; }
.stat-box-label { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; }

/* =====================================================
   FOOTER
   ===================================================== */
#footer {
  background: var(--navy);
  color: #fff;
  padding: 4rem 0 2rem;
  border-top: 1px solid #1f2937;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-brand img { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: #9ca3af; font-size: 0.875rem; line-height: 1.7; margin: 0 0 1.5rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  color: #9ca3af;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-socials a:hover { color: var(--gold); }

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #1f2937;
  display: inline-block;
  margin: 0 0 1.5rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: #9ca3af; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-list svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a, .footer-contact-list span {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p { color: #6b7280; font-size: 0.875rem; margin: 0; }

/* =====================================================
   SECTION HEADERS (shared)
   ===================================================== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}
.section-header.light h2 { color: #fff; }
