/* ===========================
   MALTALOCKERS – STYLE.CSS
   =========================== */

:root {
  --navy:       #0a1f3c;
  --navy-mid:   #122d56;
  --navy-light: #1a3d6e;
  --gold:       #fdca0b;
  --gold-light: #fedd50;
  --sky:        #4a9fd4;
  --white:      #ffffff;
  --off-white:  #f7f5f0;
  --text:       #1a1a2e;
  --text-light: #5a6a7e;
  --border:     #dde4ef;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 30px rgba(10,31,60,0.10);
  --shadow-lg:  0 12px 50px rgba(10,31,60,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:  'Syne', sans-serif;
  --font-body:  'DM Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p { color: var(--text-light); margin-top: 12px; font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-header.light .section-tag { background: rgba(255,255,255,0.15); color: var(--gold-light); }

.section-tag {
  display: inline-block;
  background: rgba(253,202,11,0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,202,11,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-sm:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(253,202,11,0.06);
}
.full-width { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 8px 0;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
}
.logo-icon { font-size: 1.4rem; }
.logo-text strong { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 700;
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a1f3c;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 1;
  display: none; /* handled via CSS background-image instead */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,31,60,0.88) 0%,
    rgba(10,31,60,0.70) 40%,
    rgba(10,31,60,0.35) 70%,
    rgba(10,31,60,0.15) 100%
  );
}
/* Animated wave pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,120L1360,120C1280,120,1120,120,960,120C800,120,640,120,480,120C320,120,160,120,80,120L0,120Z'/%3E%3C/svg%3E") no-repeat bottom center / cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 680px;
  padding-left: max(24px, calc((100vw - 1180px)/2 + 24px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253,202,11,0.15);
  border: 1px solid rgba(253,202,11,0.3);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.1); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-subtitle strong { color: var(--gold-light); }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.9s ease 0.3s both;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.9s ease 0.4s both;
}
.stars { color: #fbbf24; letter-spacing: 2px; font-size: 1.1rem; }
.stars.big { font-size: 1.4rem; }
.rating-text { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.rating-text strong { color: var(--white); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Make sure hero content sits above photo */
.hero-content { z-index: 3; }
.hero-scroll-hint { z-index: 3; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 32px 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 40px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.step::before {
  content: attr(data-step);
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--off-white);
  line-height: 1;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: rgba(10,31,60,0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}
.step-icon svg { width: 30px; height: 30px; }
.step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; }

/* ===== LOCATIONS ===== */
.locations {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.locations::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,202,11,0.08) 0%, transparent 70%);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.location-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  transform: translateY(-8px);
  border-color: rgba(253,202,11,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.location-card.featured {
  border-color: rgba(253,202,11,0.3);
  background: rgba(253,202,11,0.07);
}

.location-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--navy-mid);
}
.location-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}
.location-card:hover .location-img-wrap img { transform: scale(1.05); }

.location-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-img-placeholder svg { width: 100%; height: 100%; }

.location-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #22c55e;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.location-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.location-info h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.location-info p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}
/* Button always at bottom, left-aligned */
.location-info .btn-sm {
  margin-top: auto;
  align-self: flex-start;
  color: var(--gold-light);
  border-color: rgba(253,202,11,0.3);
}
.location-info .btn-sm:hover {
  background: rgba(253,202,11,0.1);
  border-color: var(--gold);
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
}
.why-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
}
.why-img-bg {
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  z-index: 1;
}
.why-price-badge {
  position: absolute;
  bottom: 28px;
  right: -24px;
  z-index: 3;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.price-from { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.price-amount { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--gold); }
.price-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.why-content .section-tag { margin-bottom: 14px; }
.why-content h2 { margin-bottom: 32px; }

.why-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.why-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-list strong { display: block; font-weight: 700; margin-bottom: 4px; }
.why-list p { color: var(--text-light); font-size: 0.92rem; }

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: var(--off-white);
}
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-card.featured-review {
  background: var(--navy);
  border-color: transparent;
  grid-row: span 1;
}
.review-card.featured-review .review-stars { color: var(--gold); }
.review-card.featured-review p { color: rgba(255,255,255,0.8); }
.review-card.featured-review .reviewer strong { color: var(--white); }
.review-card.featured-review .reviewer span { color: rgba(255,255,255,0.5); }
.review-card.featured-review .reviewer-avatar { background: var(--gold); color: var(--navy); }

.review-stars { color: #fbbf24; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; font-weight: 700; }
.reviewer span { font-size: 0.78rem; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,202,11,0.06) 0%, transparent 60%);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-size: 1.05rem;
  position: relative;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 14px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; line-height: 1.7; }

.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  color: var(--text);
}
.contact-item:hover {
  border-color: var(--gold);
  background: rgba(253,202,11,0.04);
  transform: translateX(4px);
}
.contact-item.whatsapp:hover { border-color: #22c55e; background: rgba(34,197,94,0.04); }
.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
}
.contact-item strong { display: block; font-size: 0.88rem; font-weight: 700; }
.contact-item span { font-size: 0.88rem; color: var(--text-light); }

/* Form */
.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,31,60,0.08);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }
.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 14px;
}
.form-note a { color: var(--navy); font-weight: 600; }
.form-note a:hover { color: var(--gold); }

.form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: flex; animation: fadeUp 0.4s ease; }
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #22c55e;
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.form-success h3 { margin-bottom: 12px; }
.form-success p { color: var(--text-light); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 70px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }
.social-link {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--transition);
}
.social-link:hover { color: var(--gold-light); }

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { order: 2; }
  .why-image img { height: 340px; }
  .why-price-badge { right: 20px; bottom: 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -4px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-strip { gap: 0; }
  .stat { padding: 10px 20px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-scroll-hint { display: none; }
  .contact-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { order: -1; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ===== LOGO ===== */
.logo-img {
  height: 72px;
  width: auto;
  max-width: none; /* override global img { max-width:100% } */
  display: block;
  transition: height 0.3s ease;
}
.footer .logo-img { height: 60px; }

/* ===== HOMEPAGE NAVBAR ===== */
/* Default: transparent, light logo visible, navy logo hidden */
.navbar .logo-light { display: block; }
.navbar .logo-navy  { display: none;  }

/* Scrolled: white bg, swap to navy logo, dark links */
.navbar.scrolled {
  background: #0a1f3c;
  box-shadow: 0 2px 20px rgba(10,31,60,0.35);
}
.navbar.scrolled .logo-img    { height: 60px; }
.navbar.scrolled .logo-light  { display: block; }
.navbar.scrolled .logo-navy   { display: none; }
.navbar.scrolled .nav-links a            { color: rgba(255,255,255,0.85); }
.navbar.scrolled .nav-links a:hover      { color: var(--gold); }
.navbar.scrolled .nav-links .nav-cta     { background: var(--gold); color: var(--navy); }
.navbar.scrolled .burger span            { background: #ffffff; }

/* Mobile: hide logo when scrolled */
@media (max-width: 680px) {
  .navbar.scrolled .logo { display: block; }
}

/* ===== LOCATION PAGES – always navy ===== */
.navbar-fixed-navy,
.navbar-fixed-navy.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.navbar-fixed-navy .logo-light,
.navbar-fixed-navy.scrolled .logo-light { display: block; }
.navbar-fixed-navy .logo-navy,
.navbar-fixed-navy.scrolled .logo-navy  { display: none;  }
.navbar-fixed-navy .nav-links a,
.navbar-fixed-navy.scrolled .nav-links a            { color: rgba(255,255,255,0.85); }
.navbar-fixed-navy .nav-links a:hover,
.navbar-fixed-navy.scrolled .nav-links a:hover      { color: var(--gold); }
.navbar-fixed-navy .nav-links .nav-cta,
.navbar-fixed-navy.scrolled .nav-links .nav-cta     { background: var(--gold); color: var(--navy); }
.navbar-fixed-navy .burger span,
.navbar-fixed-navy.scrolled .burger span            { background: var(--white); }

/* Hero rating logo */
.rating-google-logo {
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* Active nav link */
.nav-links a.active { color: var(--gold); }
