/* =====================================================
   EVOLUTION INC — MNTN Design System
   Colors: #0b1d26 navy · #fbd784 gold · #fff white
   Type:   Playfair Display (serif) · Inter (sans)
   ===================================================== */

:root {
  --navy:       #0b1d26;
  --navy-mid:   #0f2233;
  --navy-light: #14293e;
  --gold:       #fbd784;
  --gold-dim:   rgba(251, 215, 132, 0.55);
  --white:      #ffffff;
  --body:       rgba(255, 255, 255, 0.72);
  --muted:      rgba(255, 255, 255, 0.42);
  --border:     rgba(255, 255, 255, 0.10);
  --border-gold:rgba(251, 215, 132, 0.25);

  /* legacy aliases so JS/old refs still work */
  --primary-color:  var(--navy);
  --accent-color:   var(--gold);
  --text-dark:      var(--white);
  --text-light:     var(--body);
  --border-color:   var(--border);
  --success-color:  var(--gold);
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* =====================================================
   NAVBAR  — transparent → opaque on scroll
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease,
              border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(11, 29, 38, 0.94);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 48px;
  max-width: 100%;
}

.logo-container { display: flex; align-items: center; flex-shrink: 0; }

.logo-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 6px 12px 7px;
  gap: 4px;
  transition: border-color 0.2s;
}
.logo-wordmark:hover { border-color: var(--gold); }

.logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.logo-tagline {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: -12px;
  margin-right: -12px;
}

.logo-rule {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  display: block;
}

.logo-tagline-text {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
  white-space: nowrap;
  font-style: normal;
}

.footer-logo-area {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}


.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  color: var(--body);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

/* Last item = framed button like MNTN "Account" */
.nav-menu li:last-child a {
  border: 1px solid var(--border);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.nav-menu li:last-child a:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.mobile-toggle {
  display: none; flex-direction: column;
  cursor: pointer; gap: 5px;
}
.mobile-toggle span {
  width: 22px; height: 1.5px;
  background: var(--white); transition: 0.3s; border-radius: 1px;
}

/* =====================================================
   HERO — Geometric shapes, centered, Playfair serif
   ===================================================== */
.hero {
  background: var(--navy);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Ambient gold glow */
.hero-ambient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(251,215,132,0.06), transparent),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(251,215,132,0.03), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Shapes container */
.hero-shapes {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.geo-shape { position: absolute; }

/* Entry: opacity + drop from above */
.geo-entry {
  opacity: 0;
  animation: geoEntry 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) both;
}

/* Continuous vertical float */
.geo-float {
  animation: geoFloat 12s ease-in-out infinite;
}

/* Visual ellipse */
.geo-body {
  border-radius: 9999px;
  backdrop-filter: blur(2px);
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 32px rgba(251, 215, 132, 0.05);
  position: relative;
}
.geo-body::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 9999px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.10), transparent 70%);
}

@keyframes geoEntry {
  from { opacity: 0; transform: translateY(-150px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes geoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(15px); }
}

/* Vignettes */
.hero-vignette-top {
  position: absolute; top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(11,29,38,0.75), transparent);
  pointer-events: none; z-index: 1;
}
.hero-vignette-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--navy), transparent);
  pointer-events: none; z-index: 1;
}

/* Content */
.hero > .container { position: relative; z-index: 2; width: 100%; padding-top: 130px; padding-bottom: 60px; }

.hero-center {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* Badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
  flex-shrink: 0;
}

/* Heading */
.hero-center h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.hero-line-1 {
  background: linear-gradient(to bottom, #ffffff, rgba(255,255,255,0.78));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-line-2 {
  background: linear-gradient(to right, var(--gold), rgba(255,255,255,0.88), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 auto 1.75rem;
  line-height: 1.75;
  max-width: 520px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.95rem 2rem;
  border: 2px solid var(--gold);
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover { background: rgba(251,215,132,0.85); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.95rem 2rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Fade-up text entry animation */
.geo-fade-up {
  opacity: 0;
  animation: geoFadeUp 1s ease both;
}
@keyframes geoFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   SECTION LABELS  — MNTN "— A Hiking guide" gold style
   ===================================================== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-badge::before {
  content: '';
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

/* =====================================================
   SERVICES — MNTN full-width alternating sections
   ===================================================== */
.services {
  background: var(--navy);
  padding: 100px 0 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-header .section-badge { justify-content: center; }
.section-header .section-badge::before { display: none; } /* no bar when centered */

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--body);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Full-width sections container */
.services-sections { border-top: 1px solid var(--border); }

/* Each service = full-width 50/50 grid */
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* MNTN-style giant watermark number */
.service-item::before {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 260px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  z-index: 0;
  pointer-events: none;
  top: -30px;
  left: 3%;
  letter-spacing: -0.05em;
}
.service-item:nth-child(1)::before { content: "01"; }
.service-item:nth-child(2)::before { content: "02"; }
.service-item:nth-child(3)::before { content: "03"; }
.service-item:nth-child(4)::before { content: "04"; }
.service-item:nth-child(5)::before { content: "05"; }

/* Odd items: image on right, text on left */
.service-item:nth-child(odd) .service-item-image { order: 1; }
/* Even items: image on left (DOM order), watermark on right side (body side) */
.service-item:nth-child(even)::before { left: auto; right: 3%; }

/* Photo side */
.service-item-image {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.service-item-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(55%) brightness(0.68);
  display: block;
  transition: transform 0.7s ease, filter 0.4s ease;
}
.service-item:hover .service-item-image img {
  transform: scale(1.04);
  filter: grayscale(35%) brightness(0.80);
}

/* Gradient bleeds image into navy background */
/* Odd: image on right → fade left edge (toward text) */
.service-item-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    var(--navy) 0%,
    rgba(11,29,38,0.3) 35%,
    transparent 55%
  );
  z-index: 1;
}
/* Even: image on left → fade right edge (toward text) */
.service-item:nth-child(even) .service-item-image::after {
  background: linear-gradient(
    to left,
    var(--navy) 0%,
    rgba(11,29,38,0.3) 35%,
    transparent 55%
  );
}

/* Content side */
.service-item-body {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Gold numbered badge — MNTN label style */
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.step-badge::before {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.service-desc {
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.service-features { list-style: none; }
.service-features li {
  color: var(--body);
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.service-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
  background: var(--navy);
  padding: 120px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.about-desc {
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.highlight-item {
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 2px;
}

.highlight-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.highlight-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

.about-visual { position: relative; }

.about-image {
  width: 100%;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(0.75);
  display: block;
}

.cert-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.75rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
  background: var(--navy);
  color: var(--white);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.contact-desc {
  font-size: 1rem;
  color: var(--body);
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.contact-methods { display: flex; flex-direction: column; gap: 1rem; }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: border-color 0.2s;
}
.contact-method:hover { border-color: var(--border-gold); }

.contact-details h4 { font-weight: 600; margin-bottom: 0.2rem; color: var(--white); }
.contact-details p  { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }

.contact-form {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { height: 120px; resize: vertical; }

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.submit-btn:hover { background: rgba(251,215,132,0.85); transform: translateY(-1px); }

/* =====================================================
   FOOTER — MNTN centered minimal
   ===================================================== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-brand-col { display: flex; flex-direction: column; }

.footer-brand-desc {
  color: var(--body);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 1.75rem;
  max-width: 300px;
}

.footer-social { display: flex; gap: 1rem; margin-top: 2rem; }
.footer-social a {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  color: var(--body);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--body);
  font-size: 0.875rem;
  margin-bottom: 0.9rem;
}
.footer-contact-list svg {
  width: 15px; height: 15px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list address { font-style: normal; color: var(--body); }

.footer-divider { height: 1px; background: var(--border); margin-bottom: 1.75rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* =====================================================
   PORTFOLIO / TEAM (not shown but styled for reference)
   ===================================================== */
.portfolio { padding: 100px 0; background: var(--navy); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); gap: 1.5rem; }
.portfolio-item { background: rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:4px; overflow:hidden; transition:transform 0.25s; }
.portfolio-item:hover { transform:translateY(-5px); }
.portfolio-header { height:200px; background:var(--navy-light); display:flex; align-items:center; justify-content:center; color:var(--white); font-size:3rem; position:relative; }
.project-status { position:absolute; top:1rem; right:1rem; background:var(--gold); color:var(--navy); padding:.25rem .75rem; border-radius:2px; font-size:.75rem; font-weight:700; }
.portfolio-content { padding:2rem; }
.portfolio-title { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; color:var(--white); margin-bottom:.75rem; }
.portfolio-desc { color:var(--body); margin-bottom:1.5rem; line-height:1.7; font-size:.9rem; }
.portfolio-meta { display:flex; justify-content:space-between; margin-bottom:1.5rem; }
.project-duration { font-size:.875rem; color:var(--muted); }
.project-client { font-weight:600; color:var(--gold); font-size:.875rem; }
.tech-stack { display:flex; flex-wrap:wrap; gap:.5rem; }
.tech-tag { background:rgba(255,255,255,.06); color:var(--body); padding:.25rem .75rem; border-radius:2px; font-size:.75rem; font-weight:500; border:1px solid var(--border); }

.team { padding:100px 0; background:var(--navy-mid); }
.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.5rem; }
.team-member { background:rgba(255,255,255,.04); border:1px solid var(--border); border-radius:4px; padding:2rem; text-align:center; transition:all .25s; }
.team-member:hover { transform:translateY(-5px); border-color:var(--border-gold); }
.member-avatar { width:80px; height:80px; border-radius:50%; background:var(--gold); display:flex; align-items:center; justify-content:center; color:var(--navy); font-size:1.6rem; font-weight:800; margin:0 auto 1.5rem; }
.member-name { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; color:var(--white); margin-bottom:.4rem; }
.member-role { color:var(--gold); font-weight:500; font-size:.9rem; margin-bottom:1rem; }
.member-bio { color:var(--body); font-size:.88rem; line-height:1.7; margin-bottom:1.5rem; }
.member-skills { display:flex; flex-wrap:wrap; gap:.5rem; justify-content:center; }
.skill-tag { background:rgba(255,255,255,.06); color:var(--body); padding:.25rem .75rem; border-radius:2px; font-size:.75rem; border:1px solid var(--border); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .service-item-body { padding: 4rem 3rem; }
}

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .navbar { padding: 1.25rem 32px; }

  .hero > .container { padding-top: 140px; padding-bottom: 80px; }

  .service-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-item-image {
    min-height: 300px;
    order: 0 !important;
  }
  .service-item-image::after { display: none; }
  .service-item-body { padding: 3.5rem 2.5rem; }
  .service-item::before { font-size: 160px; }

  .about-content { grid-template-columns: 1fr; gap: 3rem; }
  .contact-content { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }

  .navbar {
    position: relative;
    padding: 1rem 24px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(11,29,38,0.98);
    flex-direction: column;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border);
    z-index: 999; gap: 0;
  }
  .nav-menu.active { display: flex !important; }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu li:last-child a {
    border-radius: 0;
    background: transparent;
    border-color: var(--border);
    color: var(--white) !important;
  }
  .mobile-toggle { display: flex; }

  .logo { height: 44px; }

  .hero > .container { padding-top: 120px; padding-bottom: 70px; }
  .hero-center h1 { font-size: 2.8rem; }
  .hero-stats { gap: 1.5rem; }

  .section-title { font-size: 2.2rem; }
  .about-title { font-size: 2.2rem; }
  .contact-info h2 { font-size: 2.2rem; }
  .service-title { font-size: 2rem; }

  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-center h1 { font-size: 2.2rem; }
  .stat-number { font-size: 1.9rem; }
  .service-item-body { padding: 2.5rem 1.5rem; }
  .service-title { font-size: 1.75rem; }
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.fade-in {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-in-left {
  opacity: 0; transform: translateX(-48px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-left.visible { opacity: 1; transform: translateX(0); }

.slide-in-right {
  opacity: 0; transform: translateX(48px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-right.visible { opacity: 1; transform: translateX(0); }
