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

:root {
  --navy:      #0e3a6e;
  --blue:      #1a6bbf;
  --blue-lt:   #2d8cf0;
  --white:     #ffffff;
  --black:     #0f172a;
  --body:      #334155;
  --muted:     #64748b;
  --bg-alt:    #f8fafc;
  --border:    #e2e8f0;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(14, 58, 110, 0.10);
  --shadow-lg: 0 8px 40px rgba(14, 58, 110, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 107, 191, 0.4);
}
.btn-primary:hover {
  background: var(--blue-lt);
  box-shadow: 0 6px 20px rgba(26, 107, 191, 0.55);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { background: #f0f7ff; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
nav.scrolled .nav-logo { color: var(--navy); }
nav.scrolled .nav-links a { color: var(--body); }
nav.scrolled .nav-links a:hover { color: var(--blue); }

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.3px;
  transition: color 0.3s;
}
.nav-logo span { color: var(--blue-lt); }
nav.scrolled .nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { font-size: 14px; padding: 10px 22px; }

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

/* ── Hero ─────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(150deg, rgba(7, 31, 60, 0.88) 0%, rgba(14, 58, 110, 0.82) 45%, rgba(26, 91, 168, 0.75) 100%),
    url('/images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(45, 140, 240, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26, 107, 191, 0.15) 0%, transparent 40%);
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}
.hero-badge .dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; }

.hero-inner h1 {
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-inner h1 .accent { color: #60a5fa; }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 40px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.stat-item { }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ── Section Base ─────────────────────────────────────────────────────────── */
section { padding: 96px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Services ─────────────────────────────────────────────────────────────── */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--muted); line-height: 1.7; font-size: 15px; }
.service-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-size: 14px;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Why Woden ────────────────────────────────────────────────────────────── */
#why { background: var(--navy); }
#why .section-label { color: #60a5fa; }
#why .section-title { color: var(--white); }
#why .section-sub { color: rgba(255,255,255,0.6); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  transition: background 0.2s, border-color 0.2s;
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
}
.why-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}
.why-card h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }

/* ── Process ──────────────────────────────────────────────────────────────── */
#process { background: var(--bg-alt); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--navy));
  opacity: 0.15;
}
.step {
  text-align: center;
  padding: 0 24px 40px;
  position: relative;
}
.step-num {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(14, 58, 110, 0.3);
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-time {
  display: inline-block;
  background: #dbeafe;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

/* ── Estimate Form ────────────────────────────────────────────────────────── */
#estimate {
  background: linear-gradient(150deg, #071f3c 0%, #0e3a6e 60%, #1a5ba8 100%);
  position: relative;
}
#estimate .section-label { color: #60a5fa; }
#estimate .section-title { color: var(--white); }
#estimate .section-sub { color: rgba(255,255,255,0.65); }

.form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  margin-top: 48px;
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
}
.form-group label .req { color: var(--blue); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 107, 191, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--body);
}
.radio-option input[type="radio"] { accent-color: var(--blue); width: 16px; height: 16px; cursor: pointer; }

.project-section {
  border-top: 1.5px solid var(--border);
  padding-top: 20px;
  margin-top: 8px;
}
.project-section + .project-section { margin-top: 20px; }
.project-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 16px;
}
.check-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2px; }
.check-option { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; color: var(--body); }
.check-option input[type="checkbox"] { accent-color: var(--blue); width: 16px; height: 16px; cursor: pointer; }

.form-submit {
  margin-top: 28px;
  text-align: center;
}
.btn-submit {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  padding: 18px 48px;
  font-size: 17px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  width: 100%;
  max-width: 440px;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  box-shadow: 0 4px 20px rgba(14, 58, 110, 0.35);
  letter-spacing: 0.3px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14, 58, 110, 0.45); }
.btn-submit:active { transform: none; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.show { display: block; }
.success-icon {
  width: 72px; height: 72px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}
.form-success h3 { font-size: 26px; color: var(--navy); margin-bottom: 12px; }
.form-success p { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 64px 40px 40px;
  color: rgba(255,255,255,0.55);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo span { color: #60a5fa; }
.footer-about { font-size: 14px; line-height: 1.8; max-width: 280px; }
footer h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── Scroll Animations ────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── Gallery ──────────────────────────────────────────────────────────────── */
#gallery { background: var(--white); }
#gallery .section-inner > .fade-up { margin-bottom: 56px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,58,110,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }

.gallery-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 72px 24px;
  color: var(--muted);
  border: 2px dashed var(--border);
  border-radius: 16px;
}
.gallery-placeholder p { font-size: 15px; margin-top: 8px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 48px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  user-select: none;
  padding: 0 16px;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

/* ── Testimonials ─────────────────────────────────────────────────────────── */
#testimonials { background: var(--bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.author-info .name {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}
.author-info .location {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.testimonial-service {
  display: inline-block;
  background: #f0f7ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

/* ── Blog Preview ─────────────────────────────────────────────────────────── */
#blog-preview { background: var(--white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}
.blog-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  transition: gap 0.2s;
}
.blog-card-link:hover { gap: 10px; }

.blog-cta {
  text-align: center;
  margin-top: 48px;
}

.blog-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px;
  color: var(--muted);
}

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 72px 24px; }
  nav { padding: 0 20px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Mobile menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 32px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open li {
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a {
    color: var(--body);
    font-size: 16px;
    display: block;
    padding: 16px 0;
  }
  .nav-links.open .nav-cta {
    display: block;
    background: var(--blue);
    color: white;
    text-align: center;
    border-radius: var(--radius);
    padding: 14px 24px;
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hamburger span { transition: transform 0.25s, opacity 0.25s; }

  #hero { padding: 120px 24px 72px; }
  .hero-stats { gap: 24px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .process-steps::before { display: none; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .lightbox-nav { font-size: 32px; padding: 0 8px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  nav { padding: 0 16px; }
}
