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

:root {
  --blue-deep:   #0a1628;
  --blue-mid:    #0e2a4a;
  --blue-accent: #1a6fa8;
  --blue-bright: #2196f3;
  --teal:        #00b4d8;
  --teal-light:  #90e0ef;
  --gold:        #f0a500;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --blue-light:  #e8f2fa;
  --grey-light:  #e2e8f0;
  --grey-mid:    #94a3b8;
  --text-dark:   #0f172a;
  --text-body:   #334155;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-card: 0 4px 24px rgba(10,22,40,0.12);
  --shadow-hero: 0 8px 48px rgba(10,22,40,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue-deep);
}
.section-title.light { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover {
  background: #00c4e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,180,216,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--blue-deep);
  border: 1.5px solid var(--blue-deep);
}
.btn-outline-dark:hover { background: var(--blue-deep); color: var(--white); }

/* ─── NAVBAR ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0 24px;
}
nav.scrolled {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img, .nav-logo-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 4px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

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

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-phone {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--blue-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .mobile-cta { margin-top: 16px; }

/* ─── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-deep);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(14,42,74,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.18);
  border: 1px solid rgba(0,180,216,0.4);
  color: var(--teal-light);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
}
.hero-title em { color: var(--teal); font-style: normal; }

.hero-location {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
  margin-top: 10px;
  font-family: var(--font-display);
}
.hero-location em { font-style: normal; }

.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.65;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ─── WHY US ─────────────────────────────────── */
.why-us { padding: 72px 0; background: var(--off-white); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.why-text { display: flex; flex-direction: column; gap: 18px; }
.why-desc { font-size: 15px; color: var(--text-body); line-height: 1.7; }

.why-us .section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,22,40,0.14); }

.pillar-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal), var(--blue-accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.pillar h4 { font-size: 14px; font-weight: 600; color: var(--blue-deep); }
.pillar p  { font-size: 13px; color: var(--grey-mid); line-height: 1.5; }

.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: unset;
  height: 100%;
  min-height: 480px;
  box-shadow: var(--shadow-hero);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }

.why-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
}
.why-image-badge p      { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.why-image-badge strong { font-size: 18px; font-family: var(--font-display); }

/* ─── SERVICES ───────────────────────────────── */
.services-section { padding: 100px 0; background: var(--blue-light); }
.services-header  { text-align: center; margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card:first-child { grid-column: span 2; aspect-ratio: 16/9; }

.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.06); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.3s;
}
.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.3) 60%);
}

.service-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 6px;
}

.service-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.service-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-top: 8px;
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.service-card:hover .service-overlay p { max-height: 80px; }

/* ─── REVIEWS ─────────────────────────────────── */
.reviews-section { padding: 100px 0; background: var(--blue-deep); overflow: hidden; }
.reviews-header  { text-align: center; margin-bottom: 56px; }
.reviews-track-wrap { overflow: hidden; }

.reviews-track {
  display: flex;
  gap: 20px;
  animation: slideReviews 40s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }

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

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 340px;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.review-stars  { color: var(--gold); font-size: 16px; margin-bottom: 16px; display: flex; gap: 3px; }
.review-text   { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 24px; }
.reviewer      { display: flex; align-items: center; gap: 14px; }

.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue-accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; color: var(--white); font-size: 14px; }
.reviewer-role { font-size: 12px; color: var(--grey-mid); margin-top: 2px; }

.reviews-cta { text-align: center; margin-top: 48px; }
.reviews-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.2s;
}
.reviews-cta a:hover { gap: 14px; }

/* ─── GALLERY ────────────────────────────────── */
.gallery-section { padding: 100px 0; background: var(--off-white); }
.gallery-header  { text-align: center; margin-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  min-height: 200px;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.gallery-socials-label {
  font-size: 15px;
  color: var(--text-body);
  font-weight: 500;
}
.gallery-socials-links {
  display: flex;
  gap: 10px;
}
.gallery-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-heading);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.gallery-social-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 128, 128, 0.04);
}

/* ─── FAQ ───────────────────────────────────── */
.faq-section { padding: 100px 0; background: var(--white); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.faq-text { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.faq-desc { font-size: 16px; color: var(--text-body); line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--grey-light);
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-q span {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.4;
}

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  color: var(--blue-deep);
}
.faq-item.open .faq-icon { background: var(--teal); color: var(--white); transform: rotate(45deg); }

.faq-a {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ─── CTA BANNER ─────────────────────────────── */
.cta-banner {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
}
.cta-banner .btn-primary { font-size: 16px; padding: 16px 36px; position: relative; }

/* ─── SERVICE AREA ───────────────────────────── */
.area-section { padding: 80px 0; background: var(--off-white); }
.area-inner   { text-align: center; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}

.area-tag {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  color: var(--text-body);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.area-tag:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,180,216,0.06); }
.area-tag i { color: var(--teal); }

/* ─── QUOTE MODAL ───────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,22,40,0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 64px rgba(10,22,40,0.4);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--off-white);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-body);
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: var(--grey-light);
  color: var(--text-dark);
}

.modal-header {
  margin-bottom: 28px;
}
.modal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 6px;
}
.modal-header p {
  font-size: 15px;
  color: var(--text-body);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group .required {
  color: var(--teal);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-mid);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-body);
  font-size: 15px;
}

@media (max-width: 768px) {
  .modal { padding: 28px 20px; max-height: 95vh; }
  .modal-header { margin-bottom: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo  { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 10px; }
.footer-logo-img { height: 36px; width: 36px; object-fit: contain; border-radius: 4px; }
.footer-tagline { font-size: 14px; line-height: 1.65; }

.footer-contact { margin-top: 8px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--teal); }

.footer-socials { display: flex; gap: 12px; margin-top: 14px; }
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover { background: var(--teal); color: #fff; }

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li span { color: rgba(255,255,255,0.65); font-size: 14px; }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:first-child { grid-column: span 2; }
  .why-inner  { grid-template-columns: 1fr; gap: 48px; }
  .why-image  { aspect-ratio: 16/9; max-height: 420px; min-height: unset; }
  .faq-inner  { grid-template-columns: 1fr; gap: 48px; }
  .faq-text   { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: auto; }
  .gallery-item:nth-child(3) { grid-column: auto; }
  .why-pillars  { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; width: fit-content; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── SCROLL ANIMATION ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible    { opacity: 1; transform: translateY(0); }
.reveal-delay-1    { transition-delay: 0.1s; }
.reveal-delay-2    { transition-delay: 0.2s; }
.reveal-delay-3    { transition-delay: 0.3s; }
.reveal-delay-4    { transition-delay: 0.4s; }


.section-intro {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

.compact-header { margin-bottom: 36px; }

.compact-services-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
}
.compact-services-grid .service-card,
.compact-services-grid .service-card:first-child {
  aspect-ratio: unset;
  grid-column: auto !important;
  grid-row: auto !important;
  min-height: unset;
  height: 220px;
}
.compact-services-grid .service-card-feature {
  grid-row: auto !important;
  grid-column: auto !important;
  min-height: unset;
  height: 220px;
}

.compact-reviews { padding: 84px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Reviews CTA slim */
.reviews-cta-slim { padding: 48px 0; }
.reviews-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 36px;
}
.reviews-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-cta-text h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.reviews-cta-text p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin: 4px 0 0;
}

.compact-gallery { padding: 84px 0; }
.compact-gallery-grid {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}
.compact-gallery-grid .gallery-item:nth-child(1),
.compact-gallery-grid .gallery-item:nth-child(2),
.compact-gallery-grid .gallery-item:nth-child(3) {
  grid-row: auto;
  grid-column: auto;
}
.compact-gallery-grid .gallery-item img { min-height: 280px; }

.compact-faq { padding: 84px 0; }
.compact-faq .faq-a { max-width: 680px; }

.compact-area { padding: 64px 0; }
.compact-area-tags { margin-top: 24px; }

@media (max-width: 1024px) {
  .compact-services-grid,
  .reviews-grid,
  .compact-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .compact-services-grid .service-card-feature,
  .compact-services-grid .service-card:first-child {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: unset;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .compact-services-grid,
  .reviews-grid,
  .compact-gallery-grid {
    grid-template-columns: 1fr;
  }
  .compact-services-grid .service-card,
  .compact-services-grid .service-card-feature {
    grid-column: auto;
    height: 200px;
    min-height: unset;
  }
  .compact-gallery-grid .gallery-item img { min-height: 220px; }
  .reviews-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .reviews-cta-text { flex-direction: column; gap: 10px; }
}