/* ============================================================
   LIQUID PROOF - MAIN STYLESHEET  (v2)
   Brand colours: Blue #07224e | Red #db121a | White #ffffff
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ---- CSS VARIABLES  (brand: blue + red) ---- */
:root {
  /* Brand */
  --color-primary:       #07224e;   /* logo blue */
  --color-primary-dark:  #051a3a;
  --color-primary-light: #e6eaf2;
  --color-red:           #db121a;   /* logo red */
  --color-red-dark:      #b50e15;
  --color-red-light:     #fde8e9;
  --color-accent:        #0d9e6e;
  --color-whatsapp:      #25d366;
  --color-whatsapp-dark: #1ebe5c;
  /* Text / BG */
  --color-text:          #1a1f2e;
  --color-text-muted:    #5a6478;
  --color-bg:            #ffffff;
  --color-bg-light:      #f6f8fc;
  --color-border:        #e2e8f0;
  --color-star:          #f59e0b;
  /* Misc */
  --radius-sm:           6px;
  --radius-md:           12px;
  --radius-lg:           18px;
  --shadow-sm:           0 1px 4px rgba(0,0,0,.08);
  --shadow-md:           0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:           0 8px 40px rgba(0,0,0,.14);
  --transition:          0.22s ease;
  --header-h:            76px;
  --max-w:               1500px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--color-text); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { margin-bottom: 0; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5rem 0; }
.bg-light { background: var(--color-bg-light); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-title   { margin-bottom: 1rem; }
.section-intro   { color: var(--color-text-muted); max-width: 720px; margin: 0 auto; font-size: 1.05rem; }
.section-subtitle { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover  { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-call      { background: var(--color-primary); color: #fff; }
.btn-call:hover { background: var(--color-primary-dark); color: #fff; }

.btn-whatsapp      { background: var(--color-whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); color: #fff; }

.btn-submit      { background: var(--color-primary); color: #fff; justify-content: center; }
.btn-submit:hover { background: var(--color-primary-dark); color: #fff; }

.btn-sm   { padding: .5rem 1rem; font-size: .875rem; }
.btn-lg   { padding: .9rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  height: var(--header-h);
}
.site-header.scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
  justify-content: space-between;
}
/* Bigger logo */
.header-logo img { height: 72px; width: auto; }

.header-nav { flex: 1; min-width: 0; }
.header-nav ul {
  display: flex;
  gap: .25rem;
  justify-content: center;
}
.header-nav a {
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--color-primary);
  background: var(--color-primary-light);
}
.header-cta { display: flex; gap: .5rem; flex-shrink: 0; }

/* Hamburger — always at the far right, hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
  flex-shrink: 0;
  order: 99;
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO  — darker overlay
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

/* DARKER overlay (was .45 → now .78 on the dark end) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,16,40,.82) 0%, rgba(8,16,40,.60) 100%);
  z-index: 1;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,.3); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }
.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .5rem;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 1.5px solid rgba(255,255,255,.6);
  transition: background var(--transition), transform var(--transition);
}
.slider-dot.active { background: #fff; transform: scale(1.3); }

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 5rem;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: calc(100vh - var(--header-h));
}
.hero-text { flex: 1; color: #fff; max-width: 820px; }
.hero-text-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: #db121a;
  font-size: .85rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.hero-heading {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  text-align: center;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.92);
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; justify-content: center; }
.hero-trust-line   { font-size: .9rem;  color: rgba(255,255,255,.8);  margin-bottom: .4rem; text-align: center; }
.hero-trust-line-2 { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 500; text-align: center; margin-bottom: 1.75rem; }
.hero-phone-number {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #db121a;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  background: rgba(255,255,255,.13);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: var(--radius-md);
  padding: .75rem 2rem;
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  margin-top: .25rem;
}
.hero-phone-number:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
  color: #db121a;
}

.hero-trust-card {
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
  min-width: 280px;
  flex-shrink: 0;
}
.trust-card-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.trust-card-list  { display: flex; flex-direction: column; gap: .75rem; }
.trust-card-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}
.trust-card-list svg { color: var(--color-whatsapp); flex-shrink: 0; }

/* ============================================================
   TRUST STRIP  — brand red accent
   ============================================================ */
.trust-strip {
  background: var(--color-primary);
  padding: 1.4rem 0;
  border-bottom: 4px solid var(--color-red);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.92);
  font-size: .9rem;
  font-weight: 600;
  flex: 1;
  min-width: 160px;
  justify-content: center;
}
.trust-item svg { color: rgba(255,255,255,.7); flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--color-primary);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-top-color: var(--color-red);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--color-red-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-red);
  flex-shrink: 0;
}
.service-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.service-text  { color: var(--color-text-muted); font-size: .9rem; line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.service-cta {
  color: var(--color-primary);
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.service-cta:hover { gap: .6rem; color: var(--color-red); }

.secondary-services {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  padding: 1.5rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.secondary-service-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-text);
  padding: .4rem .9rem;
  background: #fff;
  border-radius: 100px;
  border: 1px solid var(--color-border);
}
.secondary-service-item svg { color: var(--color-red); }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--color-red-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-red);
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p  { color: var(--color-text-muted); font-size: .9rem; line-height: 1.6; }

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.ba-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.ba-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ba-image-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.ba-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ba-item:hover .ba-image-wrap img { transform: scale(1.04); }
.ba-labels {
  position: absolute;
  top: .6rem; left: .6rem; right: .6rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.ba-label {
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.ba-before { background: rgba(219,18,26,.9); color: #fff; }
.ba-after  { background: rgba(13,158,110,.9); color: #fff; }
.ba-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
}
.ba-item:hover .ba-overlay { opacity: 1; }
.ba-caption {
  padding: .75rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text);
  background: #fff;
  text-align: center;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  padding: .6rem .75rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-text);
  background: #fff;
  text-align: center;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox-modal[hidden] { display: none; }
.lightbox-content { max-width: 90vw; max-height: 85vh; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
  border-top: 3px solid var(--color-primary);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-top { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .95rem; display: block; margin-bottom: .25rem; }
.stars { display: flex; gap: 2px; }
.star  { width: 14px; height: 14px; color: var(--color-star); }
.review-text {
  font-size: .875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-accordion { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--color-primary-light); color: var(--color-primary); }
.faq-question[aria-expanded="true"] { background: var(--color-primary-light); color: var(--color-primary); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; }
.faq-answer p { color: var(--color-text-muted); font-size: .95rem; line-height: 1.7; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.video-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  background: #111;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
.video-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.video-thumb { position: relative; aspect-ratio: 9/16; overflow: hidden; }
.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.38);
  color: #fff;
  transition: background var(--transition);
}
.video-item:hover .video-play-btn { background: rgba(0,0,0,.55); }
.video-play-btn svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
/* .video-title removed — titles hidden per client request */

.btn-tiktok {
  background: #010101;
  color: #fff;
  padding: .85rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-tiktok:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.video-modal[hidden] { display: none; }
.video-modal-content { max-width: 480px; width: 100%; }
.video-modal-content video { width: 100%; border-radius: var(--radius-md); }
.video-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--transition);
}
.video-modal-close:hover { background: rgba(255,255,255,.25); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-call { background: var(--color-red-light); color: var(--color-red); }
.contact-card-wa   { background: #e6faf0; color: var(--color-whatsapp); }
.contact-card-area { background: #fef3e2; color: #d97706; }
.contact-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.contact-card-body p  { font-size: .875rem; color: var(--color-text-muted); margin-bottom: .75rem; }
.contact-services-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.contact-services-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
}
.contact-services-list svg { color: var(--color-red); flex-shrink: 0; }

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-form-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-primary);
}
.form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.75rem; color: var(--color-text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--color-text); }
.req { color: var(--color-red); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,95,168,.12);
}
.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-consent { margin-top: .5rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
  font-size: .875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: .1rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}

/* ============================================================
   FOOTER  — bigger logo
   ============================================================ */
.site-footer {
  background: #0d1520;
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
  border-top: 4px solid var(--color-red);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
/* Bigger footer logo */
.footer-brand img {
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: .92;
  height: 64px;
  width: auto;
}
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; line-height: 1.6; }
.footer-contact-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-link:hover { color: #fff; }
.footer-link svg { flex-shrink: 0; opacity: .7; }
.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}
.footer-nav ul,
.footer-services ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a,
.footer-services li { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-nav a:hover { color: #fff; }
.footer-address address {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer-address address svg { flex-shrink: 0; margin-top: .15rem; opacity: .7; }
.footer-areas { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); text-align: center; }
.footer-bottom a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   MOBILE CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem;
  font-weight: 700;
  font-size: .95rem;
  transition: opacity var(--transition);
}
.mobile-cta-btn:hover { opacity: .9; }
.mobile-cta-call     { background: var(--color-primary); color: #fff; }
.mobile-cta-whatsapp { background: var(--color-whatsapp); color: #fff; }

/* ============================================================
   THANK-YOU PAGE
   ============================================================ */
.thankyou-main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 5rem; }
.thankyou-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--color-primary);
}
.thankyou-icon    { color: var(--color-accent); margin-bottom: 1.5rem; }
.thankyou-heading { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.thankyou-text    { color: var(--color-text-muted); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.7; }
.thankyou-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.thankyou-back-link {
  display: inline-block;
  color: var(--color-text-muted);
  font-size: .9rem;
  margin-bottom: 2.5rem;
  transition: color var(--transition);
}
.thankyou-back-link:hover { color: var(--color-primary); }
.thankyou-steps  { border-top: 1px solid var(--color-border); padding-top: 2rem; }
.steps-heading   { font-size: 1.1rem; margin-bottom: 1.5rem; }
.steps-grid      { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.step-item       { display: flex; flex-direction: column; align-items: center; gap: .6rem; max-width: 140px; }
.step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.step-item p { font-size: .875rem; color: var(--color-text-muted); text-align: center; }

/* ============================================================
   INNER PAGES
   ============================================================ */
.inner-main { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 5rem; }
.inner-content { max-width: 860px; margin: 0 auto; }
.inner-content h1 { margin-bottom: .5rem; }
.inner-content .last-updated { color: var(--color-text-muted); font-size: .875rem; margin-bottom: 2.5rem; }
.inner-content h2 { font-size: 1.3rem; margin: 2rem 0 .75rem; }
.inner-content p  { margin-bottom: 1rem; color: var(--color-text-muted); line-height: 1.75; }
.inner-content ul { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.inner-content ul li { color: var(--color-text-muted); margin-bottom: .4rem; line-height: 1.65; }
.inner-content a  { color: var(--color-primary); }
.inner-content a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1100px) {
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid      { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid      { grid-template-columns: repeat(2, 1fr); }
  .video-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-inner      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-trust-card   { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-h: 68px; }

  /* Center everything on mobile */
  .section-header,
  .section-title,
  .section-intro,
  .section-subtitle { text-align: center; }

  .hero-content { padding: 2rem 1.25rem 3rem; flex-direction: column; min-height: calc(100vh - var(--header-h)); align-items: flex-start; }
  .hero-text-centered { margin-top: 4rem; }
  .hero-text { text-align: center; }
  .hero-label { display: block; text-align: center; }
  .hero-buttons { justify-content: center; flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust-line,
  .hero-trust-line-2 { text-align: center; }

  /* Nav */
  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    z-index: 999;
  }
  .header-nav.open { display: block; }
  .header-nav ul   { flex-direction: column; gap: 0; }
  .header-nav a    { display: block; padding: .75rem 1.5rem; border-radius: 0; text-align: center; }

  .header-nav { display: none; }
  .header-cta { display: none !important; }
  .hamburger { display: flex !important; margin-left: auto; flex-shrink: 0; }
  .header-logo img { height: 60px; }

  /* Trust strip */
  .trust-strip-inner { justify-content: center; gap: .75rem; }
  .trust-item { min-width: 45%; font-size: .8rem; justify-content: center; }

  /* Grids */
  .services-grid     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid      { grid-template-columns: 1fr; }
  .video-grid        { grid-template-columns: 1fr; }

  /* Cards — center on mobile */
  .service-card,
  .why-card,
  .review-card { text-align: center; }
  .service-icon,
  .why-icon { margin-left: auto; margin-right: auto; }
  .service-cta { justify-content: center; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-card   { flex-direction: column; align-items: center; text-align: center; }
  .contact-services-list li { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand,
  .footer-nav,
  .footer-services,
  .footer-address { text-align: center; }
  .footer-contact-links { align-items: center; }
  .footer-link { justify-content: center; }
  .footer-address address { justify-content: center; }
  .footer-nav ul,
  .footer-services ul { align-items: center; }

  /* Secondary services */
  .secondary-services { justify-content: center; }
  .secondary-service-item { justify-content: center; }

  /* Mobile CTA */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }

  /* Thank you */
  .thankyou-card { padding: 2rem 1.5rem; }
  .steps-grid    { gap: 1rem; }
}

@media (max-width: 480px) {
  .gallery-grid  { grid-template-columns: 1fr; }
  .section-pad   { padding: 3.5rem 0; }
  .hero-section  { min-height: auto; padding-bottom: 3rem; }
  .container     { padding: 0 1rem; }
}
