/* === CEE TECH SCROLLYTELLING === */
/* Dark Navy + Gold Theme */

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

:root {
  --bg-deep: #02040a;
  --bg-dark: #050810;
  --bg-surface: #0a0f1c;
  --bg-elevated: #0f1623;
  --gold: #d4af37;
  --gold-light: #f0d878;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --navy: #1e3a5f;
  --navy-light: #2a4a73;
  --text-primary: #e8e8e8;
  --text-secondary: #8892a0;
  --text-muted: #4a5568;
  --border: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 175, 55, 0.3);
  --glass: rgba(255, 255, 255, 0.03);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--gold-dim);
  color: var(--gold-light);
}

/* === LOADER === */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: scale(0.8);
  animation: loaderLogoIn 0.8s ease forwards 0.2s;
}
.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.loader-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.6s;
}
.loader-brand span {
  color: var(--gold);
}
.loader-bar {
  width: 160px;
  height: 1px;
  background: var(--border);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards 0.8s;
}
.loader-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: loaderProgress 1.5s ease-in-out forwards 1s;
}
@keyframes loaderLogoIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes loaderProgress {
  to { width: 100%; }
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  pointer-events: none;
}
.nav.scrolled {
  background: rgba(2, 4, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav > * { pointer-events: auto; }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-brand span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-primary);
}
.nav-brand span span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-deep);
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* === SECTION BASE === */
.section {
  position: relative;
  width: 100%;
}
.section-pinned {
  min-height: 100vh;
}

/* === HERO === */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(30, 58, 95, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    var(--bg-deep);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 20s linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}
.hero-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  opacity: 0;
}
.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hero-title .gold {
  color: var(--gold);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: block;
  transform: translateY(110%);
}
.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}
.hero-cta svg {
  transition: transform 0.3s ease;
}
.hero-cta:hover svg {
  transform: translateX(4px);
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === MANIFESTO === */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  padding: 10vh 5%;
}
.manifesto-inner {
  max-width: 900px;
  width: 100%;
}
.manifesto-line {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 0.1s, filter 0.1s;
}
.manifesto-line.gold {
  color: var(--gold);
}
.manifesto-line.dim {
  opacity: 0.15 !important;
  filter: blur(4px) !important;
}

/* === PROCESS (Horizontal Scroll) === */
.process {
  min-height: 100vh;
  background: var(--bg-deep);
  overflow: hidden;
}
.process-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.process-track {
  display: flex;
  width: 400vw;
  will-change: transform;
}
.process-slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  position: relative;
}
.process-slide-bg {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  z-index: 0;
  user-select: none;
}
.process-slide-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
}
.process-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.process-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.process-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.process-progress {
  position: absolute;
  bottom: 3rem;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--border);
  z-index: 2;
}
.process-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}

/* === SERVICES === */
.services {
  background: var(--bg-dark);
  padding: 10vh 5%;
}
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  transition: border-color 0.4s ease, transform 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.service-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-features span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-features span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === LEADERSHIP === */
.leadership {
  background: var(--bg-deep);
  padding: 10vh 5%;
}
.leadership-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.leadership-visual {
  position: relative;
}
.leadership-visual-frame {
  aspect-ratio: 3/4;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.leadership-visual-frame::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  animation: rotateGlow 20s linear infinite;
}
@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}
.leadership-visual-frame img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.leadership-visual-frame .name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}
.leadership-visual-frame .role {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
.leadership-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.leadership-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.leadership-text .highlight {
  color: var(--gold);
  font-weight: 500;
}
.leadership-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.ls-item h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.ls-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* === STATS === */
.stats {
  background: var(--bg-dark);
  padding: 10vh 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.stat-item {
  text-align: center;
}
.stat-ring {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  position: relative;
}
.stat-ring svg {
  transform: rotate(-90deg);
}
.stat-ring circle {
  fill: none;
  stroke-width: 2;
}
.stat-ring .track {
  stroke: var(--border);
}
.stat-ring .fill {
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  transition: stroke-dashoffset 2s ease-out;
}
.stat-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === CONTACT === */
.contact {
  background: var(--bg-deep);
  padding: 10vh 5%;
}
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-detail h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.contact-detail p {
  color: var(--text-primary);
  font-size: 0.95rem;
}
.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--bg-deep);
  border: none;
  padding: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background: var(--gold-light);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
}
.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--bg-deep);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === FOOTER === */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.footer-brand span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
}
.footer-brand span span {
  color: var(--gold);
}
.footer-col p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--gold);
}
.footer-social svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}
.footer-social a:hover svg {
  stroke: var(--gold);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .process-slide { padding: 0 2rem; }
  .process-title { font-size: 1.8rem; }
  .process-desc { font-size: 1rem; }
  .service-card { padding: 2rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .leadership-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* === MOBILE MENU === */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(2, 4, 10, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.mobile-nav a:hover {
  color: var(--gold);
}
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 5%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
}
