/* ==============================================
   ABC Pintura y Reparaciones — styles.css
   Secciones:
   01. Reset & Base
   02. Tipografía
   03. Botones
   04. Navbar
   05. Hero
   06. Trust Bar
   07. Nosotros
   08. Servicios
   09. Por Qué Elegirnos
   10. Galería
   11. Testimonios
   12. Área de Servicio
   13. Contacto
   14. Formulario
   15. CTA Banner
   16. Footer
   17. Utilidades (scroll-top, WhatsApp, animaciones)
   18. Responsive
=============================================== */

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

:root {
  /* ── Paleta CPC Pintores ────────────────────
     Primarios
     --navy:      Azul Noche  #1B3A5C  → Navbar, Footer, Títulos
     --blue:      Azul Acero  #2D6EA4  → Links, Íconos, Secciones oscuras
     --orange:    Naranja Web #D4711F  → Botones CTA, Destacados
     Soporte
     --bg:        Blanco Cálido #FAF8F4 → Fondo de página
     --bg-alt:    Gris Cálido  #EDEAE3 → Secciones alternas
     --text:      Gris Texto   #4A4A4A → Cuerpo / párrafos
     --carbon:    Carbón       #1A1A1A → Títulos principales
  ─────────────────────────────────────────── */
  --navy:      #1B3A5C;
  --navy2:     #152e4a;        /* navy más oscuro para hovers */
  --blue:      #2D6EA4;
  --blue2:     #3a82bc;        /* blue más claro para hovers */
  --blue-bg:   #e8f1f9;        /* fondo azul suave para iconos */
  --orange:    #D4711F;
  --orange2:   #e8832e;        /* orange más claro para hovers */
  --orange-bg: #fdf0e6;        /* fondo naranja suave */

  /* Neutros */
  --ink:       #1A1A1A;        /* Carbón — títulos */
  --ink2:      #4A4A4A;        /* Gris Texto — párrafos */
  --ink3:      #8a8a8a;        /* texto secundario / placeholders */
  --bg:        #FAF8F4;        /* Blanco Cálido — fondo de página */
  --bg-alt:    #EDEAE3;        /* Gris Cálido — secciones alternas */
  --white:     #ffffff;
  --border:    #d8d4cc;        /* borde derivado del gris cálido */

  /* Alias semánticos (usados en el CSS abajo) */
  --gold:      var(--orange);
  --gold2:     var(--orange2);
  --gold-bg:   var(--orange-bg);

  --nav-h:    72px;
  --max-w:    1120px;
  --r:        10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY UTILS
═══════════════════════════════════════════ */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,113,31,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy2);
  transform: translateY(-1px);
}
.btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.transparent {
  background: transparent;
}
.navbar.solid {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; fill: white; }
.logo-text-top {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.logo-text-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold2) !important; }

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

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 20px 24px 28px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta {
  display: block;
  margin-top: 20px;
  text-align: center;
  background: var(--gold);
  color: white !important;
  padding: 14px;
  border-radius: 4px;
  border-bottom: none;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.logo-img {
  height: 52px;
  width: auto;
  /* filter: brightness(0) invert(1); /* lo vuelve blanco sobre el navbar */

}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  background-color: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/sellador.jpeg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.14;
}

/* Diagonal cut at the bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 40%);
}

/* Accent stripe */
.hero-stripe {
  position: absolute;
  top: 0;
  right: 140px;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 140px;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,113,31,0.15);
  border: 1px solid rgba(212,113,31,0.35);
  border-radius: 3px;
  padding: 6px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold2);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 9vw, 90px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.hero h3 {
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 600;
}

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

.hero-stats {
  position: absolute;
  bottom: 100px;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  padding: 18px 28px;
  border-bottom: none;
  text-align: right;
}
.hero-stat:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold2);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 180px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.25);
  justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 22px; height: 22px; fill: rgba(255,255,255,0.85); flex-shrink: 0; }
.trust-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}

/* ═══════════════════════════════════════════
   ABOUT STRIP
═══════════════════════════════════════════ */
.about-strip {
  padding: 96px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text p:last-of-type { margin-bottom: 28px; }

.about-img-stack {
  position: relative;
  height: 420px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  bottom: 60px;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 180px;
  border-radius: var(--r);
  overflow: hidden;
  border: 4px solid var(--white);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: 20px;
  right: 70px;
  background: var(--gold);
  color: white;
  padding: 14px 18px;
  border-radius: var(--r);
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
}
.about-badge .yrs {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.about-badge .yrs-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  padding: 96px 0;
  background: var(--bg-alt);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  position: relative;
  group: true;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  opacity: 0.85;
}
.service-card:hover .service-card-img img { transform: scale(1.06); opacity: 1; }

.service-card-num {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 3px;
}

.service-card-body {
  padding: 24px;
}
.service-card-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-card-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 10px; }
.service-card-link svg { width: 14px; height: 14px; fill: var(--gold); }

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-us {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-label { filter: none; }
.why-text .section-title { color: var(--white); }
.why-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin: 20px 0 36px;
  line-height: 1.75;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.why-feature:hover {
  background: rgba(212,113,31,0.1);
  border-color: rgba(212,113,31,0.35);
}
.why-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(212,113,31,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.why-feature-icon svg { width: 18px; height: 18px; fill: var(--gold2); }
.why-feature h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}
.why-feature p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin: 0;
}

/* ═══════════════════════════════════════════
   GALLERY / PROJECTS
═══════════════════════════════════════════ */
.gallery {
  padding: 96px 0;
  background: var(--white);
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg);
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:first-child img { min-height: 460px; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.4); }
.gallery-tag {
  background: var(--gold);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-tag { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  padding: 96px 0;
  background: var(--bg-alt);
}
.testimonials-header { margin-bottom: 56px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  position: relative;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 14px;
  right: 22px;
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.stars svg { width: 14px; height: 14px; fill: var(--gold2); }
.testimonial-card blockquote {
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.author-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.author-location {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 1px;
}

/* ═══════════════════════════════════════════
   SERVICE AREA
═══════════════════════════════════════════ */
.service-area {
  padding: 96px 0;
  background: var(--white);
}
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.area-map {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
  background: var(--bg);
}
.area-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.area-text p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.7;
  margin: 16px 0 28px;
}
.area-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 28px;
}
.area-city {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.area-city:nth-child(even) { border-right: none; }
.area-city:nth-last-child(-n+2) { border-bottom: none; }
.area-city svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .section-title { color: var(--white); margin-bottom: 16px; }
.contact-info > p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  transition: background 0.2s;
}
.contact-detail:hover { background: rgba(255,255,255,0.08); }
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(212,113,31,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--gold2); }
.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.contact-detail-value a { color: var(--white); transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--gold2); }

.contact-hours {
  margin-top: 28px;
  padding: 20px;
  background: rgba(212,113,31,0.1);
  border: 1px solid rgba(212,113,31,0.3);
  border-radius: var(--r);
}
.contact-hours h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.contact-form-wrap {
  background: var(--white);
  border-radius: 14px;
  padding: 40px 40px 44px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 14px;
  color: var(--ink2);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink2);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-submit {
  margin-top: 8px;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 15px;
}
.form-note {
  font-size: 12px;
  color: var(--ink3);
  text-align: center;
  margin-top: 12px;
}

/* Form states */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.form-success.show { display: block; }
.form-fields.hide { display: none; }
.success-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.success-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: var(--ink2); }

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-banner {
  background: var(--gold);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: 10px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}
.cta-banner .btn-white {
  background: white;
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-banner .btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy2);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 300px;
  margin: 16px 0 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); }
.social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.social-btn:hover svg { fill: white; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: color 0.2s;
  display: block;
}
.footer-links a:hover { color: var(--gold2); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--gold2); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--gold2); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a {
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold2); }

/* ═══════════════════════════════════════════
   SCROLL-TO-TOP
═══════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--gold2); }
.scroll-top svg { width: 18px; height: 18px; fill: white; }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 28px;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero-stats { display: none; }
  .hero h1 { font-size: clamp(48px, 12vw, 80px); }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-stack { height: 320px; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .why-inner { grid-template-columns: 1fr; gap: 40px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item:first-child img { min-height: 300px; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .area-inner { grid-template-columns: 1fr; }
  .area-map { height: 280px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .hero::after { height: 60px; }
  .why-us::before { height: 50px; }
  .contact::before { height: 40px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  :root { --nav-h: 64px; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrap { padding: 28px 20px; }
  .trust-bar-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 10px 20px; }
  .trust-item:last-child { border-bottom: none; }
  .area-cities { grid-template-columns: 1fr; }
  .area-city:nth-child(even) { border-right: 1px solid var(--border); }
  .area-city:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .area-city:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* Active nav link */
.nav-links a.active { color: var(--gold2) !important; }
/* Spin animation for submit button */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }