/* =============================================
   FATEMA CONSTRUCTION & CONSULTANT FIRM
   Main Stylesheet — Dark Gold Futuristic Theme
   ============================================= */

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

/* ── Variables ── */
:root {
  --bg-primary:    #07070F;
  --bg-secondary:  #0A0A18;
  --bg-card:       rgba(14, 14, 26, 0.90);
  --gold:          #C9A84C;
  --gold-light:    #E8C870;
  --gold-dark:     #9A7030;
  --gold-glow:     rgba(201, 168, 76, 0.30);
  --gold-glow-sm:  rgba(201, 168, 76, 0.15);
  --text-primary:  #FFFFFF;
  --text-secondary:#C0C0D8;
  --text-muted:    #606080;
  --border:        rgba(201, 168, 76, 0.18);
  --border-hover:  rgba(201, 168, 76, 0.50);
  --nav-h:         80px;
  --radius:        8px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

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

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

.gold-text { color: var(--gold); }
.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.75;
}

.section-desc.center { margin: 0 auto; }

section { padding: 100px 0; }

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--border-hover);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-glow-sm);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar.scrolled {
  background: rgba(7, 7, 15, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  line-height: 1;
}
.logo-sub {
  font-family: 'Orbitron', monospace;
  font-size: 0.52rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  line-height: 1;
  margin-top: 3px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav CTA */
.btn-nav {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-nav:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  will-change: transform;
  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 */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(7, 7, 15, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active { color: var(--gold); padding-left: 8px; }
.mobile-nav .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ============================================
   HERO — HOME PAGE
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid-bg {
  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;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -100px; right: -200px;
  z-index: 1;
  will-change: opacity, transform;
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  z-index: 1;
  will-change: opacity, transform;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(201,168,76,0.06);
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title .line-gold { color: var(--gold); }
.hero-title .line-outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-item {}
.hero-stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-image-col {
  position: absolute;
  right: 0;
  top: 0; bottom: 0;
  width: 45%;
  z-index: 1;
}
.hero-image-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-image-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 60%);
  z-index: 1;
}
.hero-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 20%, transparent 80%, var(--bg-primary) 100%);
  z-index: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-indicator .scroll-dot {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  will-change: opacity;
  transform-origin: top;
  animation: scroll-drop 2s ease-in-out infinite;
}
/* Avoids animating transform-origin inside @keyframes (Paint trigger) */
@keyframes scroll-drop {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  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: 50px 50px;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.page-breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb-sep { font-size: .7rem; }
.page-breadcrumb a:hover { color: var(--gold-light); }
.page-breadcrumb span { color: var(--text-muted); }
.page-hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
}
.page-hero-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 24px;
}

/* ============================================
   ABOUT BRIEF (home)
   ============================================ */
.about-brief { background: var(--bg-secondary); }
.about-brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-brief-image {
  position: relative;
}
.about-brief-image img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.about-brief-image::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  z-index: -1;
}
.about-brief-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-primary);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
}
.about-brief-badge .badge-num {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-brief-badge .badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 4px;
}
.about-brief-points { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-point-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-glow-sm);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.about-point-text h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.about-point-text p { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { background: var(--bg-primary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px var(--gold-glow-sm);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow-sm);
}
.service-num {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-section { background: var(--bg-secondary); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,7,15,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}
.project-cat {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.project-overlay h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.project-overlay p { font-size: 0.85rem; color: var(--text-secondary); }
.project-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.project-card:hover .project-card-hover { opacity: 1; }
.project-card-hover span {
  width: 52px; height: 52px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  background: rgba(7,7,15,0.6);
}

/* Filter tabs (projects page) */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.filter-btn {
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow-sm);
}

/* Large projects grid (projects page) */
.projects-grid-lg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card-lg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.project-card-lg:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.project-card-lg .project-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.project-card-lg .project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card-lg:hover .project-img img { transform: scale(1.06); }
.project-card-lg .project-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,7,15,0.5) 100%);
}
.project-card-lg .project-status {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.project-status.completed { background: rgba(34,197,94,0.2); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.project-status.ongoing { background: rgba(201,168,76,0.2); color: var(--gold); border: 1px solid var(--border); }
.project-card-lg .project-body { padding: 22px; }
.project-card-lg .project-cat {
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.project-card-lg h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.project-card-lg .project-location {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}
.project-card-lg p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.project-meta {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.project-meta-item { font-size: 0.78rem; color: var(--text-muted); }
.project-meta-item strong { display: block; color: var(--text-secondary); font-size: 0.82rem; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: var(--bg-primary); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.why-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border-hover);
  background: rgba(201,168,76,0.04);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-text p { color: var(--text-secondary); max-width: 480px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-primary); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bg-primary);
  flex-shrink: 0;
}
.author-info h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}
.author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   ABOUT PAGE — MISSION / VISION / VALUES
   ============================================ */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.mvv-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.mvv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.mvv-card .mvv-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.mvv-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.mvv-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; }

/* Timeline */
.timeline { position: relative; margin-top: 60px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 50px;
  align-items: start;
}
.timeline-left { text-align: right; padding-right: 40px; }
.timeline-right { padding-left: 40px; }
.timeline-item.right .timeline-left { grid-column: 3; }
.timeline-item.right .timeline-right { grid-column: 1; grid-row: 1; text-align: right; padding-right: 40px; padding-left: 0; }
.timeline-item.right .timeline-dot { grid-column: 2; }

.timeline-dot {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
}
.timeline-dot-inner {
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 3px var(--border);
  position: relative;
}
.timeline-year {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.timeline-left h4, .timeline-right h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.timeline-left p, .timeline-right p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}
.team-card:hover .team-photo img { filter: grayscale(0%); }
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.team-info { padding: 18px 20px; }
.team-info h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
}
.team-info p { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   SERVICES PAGE — Detailed
   ============================================ */
.services-detail-section { background: var(--bg-primary); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.service-detail-grid:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.service-detail-image img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.service-detail-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  border-radius: var(--radius);
}
.service-detail-content h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-detail-content p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.8; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.service-feature::before {
  content: '▸';
  color: var(--gold);
  font-size: 0.75rem;
}

/* Process steps */
.process-section { background: var(--bg-secondary); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; padding: 0 12px; position: relative; }
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.process-step h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--bg-primary); }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--border-hover); }
.contact-info-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.contact-info-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info-card p { font-size: 0.9rem; color: var(--text-muted); }
.contact-info-card a { color: var(--gold); transition: var(--transition); }
.contact-info-card a:hover { color: var(--gold-light); }

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-wrapper h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(7,7,15,0.6);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow-sm);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-secondary); }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.contact-map-wrapper h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.map-embed {
  width: 100%;
  height: 340px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.map-embed iframe {
  width: 100%; height: 100%;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--gold-glow-sm);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-detail-text h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-detail-text p { font-size: 0.92rem; color: var(--text-secondary); }

/* Success message */
.form-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 6px;
  padding: 16px 20px;
  color: #4ade80;
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #040408;
  border-top: 1px solid var(--border);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow-sm);
}
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1.5px;
  background: var(--gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--gold); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.footer-contact-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.footer-contact-item a { color: var(--text-muted); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--text-muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================
   CERTIFICATES / PARTNERS
   ============================================ */
.partners-section { background: var(--bg-secondary); padding: 60px 0; }
.partners-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.partner-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: var(--transition);
}
.partner-badge:hover { border-color: var(--border-hover); color: var(--gold); }

/* ============================================
   PAGE-SECTION UTILITY CLASSES
   (replaces all inline style="" on <section> tags)
   ============================================ */
.sec-dark          { background: var(--bg-primary);   padding: 100px 0; }
.sec-dark-alt      { background: var(--bg-secondary);  padding: 100px 0; }
.sec-dark-hidden   { background: var(--bg-primary);   padding: 100px 0; overflow: hidden; }
.sec-partners      { background: var(--bg-secondary);  padding: 60px 0; }

/* Text / spacing helpers */
.desc-full         { max-width: 100%; }
.mt-16             { margin-top: 16px; }
.mt-20             { margin-top: 20px; }
.mt-36             { margin-top: 36px; }
.mb-20             { margin-bottom: 20px; }
.mb-0              { margin-bottom: 0; }
.fw-bold           { font-weight: 700; }

/* Flex helpers */
.btn-row           { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.flex-between      { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 0; }

/* Footer logo link */
.footer-logo-link  { margin-bottom: 20px; display: inline-flex; }

/* Inline-style replacements for about / services / faq text */
.text-muted-body   { color: var(--text-muted); margin-top: 16px; font-size: .92rem; line-height: 1.8; }
.section-intro     { color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; font-size: .95rem; }

/* FAQ container */
.faq-container     { max-width: 820px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 20px; }
.faq-card          { padding: 28px; }
.faq-card h3       { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.faq-card p        { font-size: .92rem; color: var(--text-secondary); line-height: 1.75; }
.faq-icon          { color: var(--gold); margin-right: 10px; }

/* Project page flex header */
.projects-header   { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 0; }

/* Team photo placeholder emoji centering */
.team-photo-placeholder { font-size: 3rem; }

/* Badge year style */
.about-badge-year  { font-family: 'Orbitron', monospace; font-size: 1.6rem; font-weight: 800; line-height: 1; }

/* MVV inline text strong */
.gold-strong       { color: var(--gold); }

/* Timeline year */
.tl-year           { font-family: 'Orbitron', monospace; font-size: .75rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }

/* Contact page specifics */
.contact-hours     { margin-top: 10px; color: var(--gold); font-size: .83rem; }
.contact-note      { margin-top: 10px; font-size: .83rem; color: var(--text-muted); }
.contact-detail-gold { color: var(--gold); transition: var(--transition); }
.contact-detail-gold:hover { color: var(--gold-light); }

/* Map iframe dark filter */
.map-embed iframe  { width: 100%; height: 100%; filter: grayscale(30%) invert(90%) hue-rotate(180deg); }

/* Social link aria targets */
.social-link i { pointer-events: none; }

/* ── Extra utility classes (eliminates remaining inline styles) ── */
.sec-dark-top      { background: var(--bg-primary);  padding: 80px 0 40px; }
.mt-70             { margin-top: 70px; }
.mt-60             { margin-top: 60px; }
.mt-48             { margin-top: 48px; }
.mt-40             { margin-top: 40px; }
.mb-40             { margin-bottom: 40px; }
.pt-40             { padding-top: 40px; }
.gap-14            { gap: 14px; }

/* Service card used as an anchor */
a.service-card     { text-decoration: none; display: block; cursor: pointer; }

/* Process grid top margin handled via class */
.process-grid-wrap { margin-top: 70px; }

/* FAQ card overrides */
.faq-card h3 i     { color: var(--gold); margin-right: 10px; }

/* Partner badge icon */
.badge-icon        { color: var(--gold); margin-right: 8px; }

/* Projects page flex header */
.projects-hdr      { display: flex; justify-content: space-between; align-items: flex-end;
                      flex-wrap: wrap; gap: 20px; margin-bottom: 0; }

/* Contact page specifics already handled — ensure map iframe override */
.contact-section .map-embed iframe { width: 100%; height: 100%;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg); }

/* Remove duplicate map-embed rule that used inline style */
.contact-hours-row { display: flex; align-items: center; gap: 6px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-brief-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-brief-badge { bottom: 16px; right: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid-lg { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-grid::before { display: none; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .timeline-left { display: none; }
  .timeline-item.right .timeline-left { display: none; }
  .timeline-item.right .timeline-right { grid-column: 2; grid-row: 1; text-align: left; padding-left: 24px; padding-right: 0; }
  .timeline-item.right .timeline-dot { grid-column: 1; }
  .timeline-dot { width: 48px; }
  .hero-image-col { width: 100%; position: static; aspect-ratio: 16/9; }
  .hero-image-col img { opacity: 0.25; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .projects-grid-lg { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
}
