/* ========================================
   REFORMAS GRANOLLERS - MARTI
   Design System v2 — Space Grotesk + Inter
   Light Premium with Gold Accents
   ======================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  line-height: 1.7;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- HEADER (Light / White) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}
.header-top {
  background: #1a1a1a;
  padding: 6px 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.header-top a {
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.header-top a:hover { color: #F4B400; }
.header-info { display: flex; align-items: center; gap: 1rem; }
.separator { opacity: 0.3; }
.header-schedule { color: rgba(255,255,255,0.6); }

.header-main { padding: 0.75rem 0; }
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.02); }
.logo-image { max-height: 50px; width: auto; }

/* Nav */
.nav { display: flex; align-items: center; }
.nav-menu {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav-menu a {
  color: #1a1a1a;
  font-weight: 500;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #F4B400;
  transition: width 0.3s ease;
}
.nav-menu > li > a:hover::after { width: 100%; }
.nav-menu a:hover,
.nav-menu a.active { color: #F4B400; }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #F4B400;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.6em; margin-left: 2px; opacity: 0.5; transition: transform 0.3s ease; display: inline-block; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #6b6560;
  transition: all 0.2s ease;
}
.dropdown-menu li a::after { display: none; }
.dropdown-menu li a:hover {
  background: #fafaf8;
  color: #F4B400;
  padding-left: 1.5rem;
}
.dropdown-menu li a.active {
  color: #F4B400;
  font-weight: 600;
}

/* Eliminar subrayado del dropdown-toggle */
.nav-dropdown .dropdown-toggle::after {
  display: none !important;
  content: none !important;
}

/* Header buttons */
.header-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  background: #25D366;
  width: 38px;
  height: 38px;
  min-width: 38px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header-whatsapp::after { display: none !important; }
.header-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}
.header-whatsapp svg { width: 20px; height: 20px; fill: #fff; }
.nav-cta-btn {
  padding: 0.5rem 1.25rem !important;
  font-size: 0.8rem !important;
  border-radius: 100px !important;
  background: #1a1a1a !important;
  color: #fff !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease !important;
  white-space: nowrap;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover {
  background: #F4B400 !important;
  color: #1a1a1a !important;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1a1a1a;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* --- SERVICE PAGE HERO --- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0 3rem;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.6) 50%, rgba(15,15,15,0.4) 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  max-width: 650px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-badges {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.badge {
  background: transparent;
  padding: 0;
  color: rgba(255,255,255,0.8);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #F4B400;
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #6b6560;
}
.breadcrumb a { color: #F4B400; }
.breadcrumb a:hover { text-decoration: underline; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  text-decoration: none;
}
.btn-primary {
  background: #F4B400;
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(244, 180, 0, 0.25);
}
.btn-primary:hover {
  background: #D69C00;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244, 180, 0, 0.35);
  color: #1a1a1a;
}
.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}
.btn-secondary:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}
.btn-outline:hover {
  border-color: #F4B400;
  color: #F4B400;
  background: rgba(244, 180, 0, 0.05);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover {
  border-color: #F4B400;
  color: #F4B400;
  background: rgba(244, 180, 0, 0.05);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 600;
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  color: #fff;
}
.btn-whatsapp svg { fill: currentColor; }
.btn-large {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-dark {
  background: #1a1a1a;
  color: #fff;
}
.btn-dark:hover {
  background: #F4B400;
  color: #1a1a1a;
  transform: translateY(-2px);
}
.btn-submit {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.9rem;
  background: #F4B400;
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-submit:hover {
  background: #D69C00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 180, 0, 0.3);
}
.btn-icon { font-size: 1.2rem; }

/* --- SECTIONS --- */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-white { background: #ffffff; }
.section-warm { background: #f8f7f5; }
.section-bg { background: #f8f7f5; }
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.section-title .accent { color: #F4B400; }
.section-title p,
.section-subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: #6b6560;
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #F4B400;
  margin-bottom: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: #F4B400;
}
.text-center { text-align: center; }

/* --- CARDS GRID --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border-color: rgba(244, 180, 0, 0.2);
}
.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-image img {
  transform: scale(1.05);
}
.card-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
.card-text {
  color: #6b6560;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.card .btn {
  align-self: flex-start;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
}

/* --- SERVICE CARDS (Image overlay style) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  border: 1px solid #eee;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 180, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 30px rgba(244, 180, 0, 0.05);
}
.service-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.35) 50%, rgba(15,15,15,0.15) 100%);
  transition: background 0.4s ease;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(0deg, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.5) 50%, rgba(15,15,15,0.25) 100%);
}
.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.75rem;
}
.service-card-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.3s ease;
}
.service-card:hover .service-card-content h3 { color: #F4B400; }
.service-card-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.service-card:hover .service-card-content p {
  max-height: 100px;
  opacity: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #F4B400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  font-family: 'Space Grotesk', sans-serif;
}
.service-card:hover .service-card-link {
  opacity: 1;
  transform: translateY(0);
}
.service-card-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #F4B400;
  stroke-width: 2;
  transition: transform 0.3s ease;
}
.service-card-link:hover svg {
  transform: translateX(4px);
}

/* --- BENEFITS GRID --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.benefit-card,
.benefit-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.benefit-card::before,
.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F4B400, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.benefit-card:hover,
.benefit-item:hover {
  background: #fff;
  border-color: rgba(244, 180, 0, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}
.benefit-card:hover::before,
.benefit-item:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(244, 180, 0, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.benefit-card:hover .benefit-icon,
.benefit-item:hover .benefit-icon {
  background: rgba(244, 180, 0, 0.12);
  transform: scale(1.05);
}
.benefit-card h3,
.benefit-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
.benefit-card p,
.benefit-item p {
  font-size: 0.9rem;
  color: #6b6560;
  line-height: 1.6;
  margin: 0;
}

/* --- ZONES --- */
.zones-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.zones-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.zones-image img {
  width: 100%;
  height: auto;
  display: block;
}
.zones-container { max-width: 1000px; margin: 0; }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}
.zone-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  text-decoration: none;
}
.zone-card:hover {
  border-color: #F4B400;
  background: rgba(244, 180, 0, 0.04);
  color: #F4B400;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 180, 0, 0.08);
}
.zones-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  color: #6b6560;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  width: 40px;
  height: 3px;
  background: #F4B400;
  border-radius: 0 0 3px 3px;
}
.testimonial-card:hover {
  border-color: rgba(244, 180, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}
.testimonial-quote {
  font-size: 3rem;
  color: rgba(244, 180, 0, 0.2);
  font-family: serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-stars {
  color: #F4B400;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  color: #1a1a1a;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.testimonial-author span {
  color: #6b6560;
  font-size: 0.82rem;
}

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 180, 0, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 180, 0, 0.06), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.cta-content .accent { color: #F4B400; }
.cta-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- FAQ SECTION --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(244, 180, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #F4B400;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] .faq-question::after {
  content: '−';
}
.faq-item[open] .faq-question {
  color: #F4B400;
}
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: #6b6560;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer p {
  margin: 0;
  color: inherit;
}

/* --- CONTACT FORM --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-form-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form-box .form-group label,
.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Space Grotesk', sans-serif;
}
.contact-form-box .form-group input,
.contact-form-box .form-group select,
.contact-form-box .form-group textarea,
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f8f7f5;
  border: 1px solid #eee;
  border-radius: 8px;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}
.contact-form-box .form-group input::placeholder,
.contact-form-box .form-group textarea::placeholder,
.form-control::placeholder {
  color: #aaa;
}
.contact-form-box .form-group input:focus,
.contact-form-box .form-group select:focus,
.contact-form-box .form-group textarea:focus,
.form-control:focus {
  border-color: #F4B400;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.08);
}
.contact-form-box .form-group textarea { resize: vertical; }
.contact-form-box .form-group select {
  appearance: none;
  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 fill='%236b6560' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}
.contact-info-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.contact-info-card:hover {
  border-color: rgba(244, 180, 0, 0.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.contact-info-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-info-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  color: #6b6560;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.contact-info-card a {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}
.contact-info-card .phone-link { color: #F4B400; }
.contact-info-card .whatsapp-link { color: #25D366; }
.contact-schedule {
  padding: 1rem 1.5rem;
  color: #6b6560;
  font-size: 0.9rem;
  line-height: 1.7;
}
.contact-schedule strong { color: #1a1a1a; }

/* --- FOOTER --- */
.footer {
  background: #1a1a1a;
  padding: 4rem 0 0;
  border-top: 3px solid #F4B400;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  color: #F4B400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-section p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.footer-section p strong { color: rgba(255,255,255,0.7); }
.footer-section a { color: rgba(255,255,255,0.5); }
.footer-section a:hover { color: #F4B400; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-links li a:hover {
  color: #F4B400;
  padding-left: 0.3rem;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.social-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.social-links a:hover { color: #F4B400; }

.footer-map {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-map h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-map iframe,
.map-container-footer iframe {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  filter: grayscale(0.5) brightness(0.8);
}
.map-container-footer iframe:hover {
  filter: grayscale(0%);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}
.footer-bottom a:hover { color: #F4B400; }

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 1.2rem 1.5rem;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  display: none;
}
.cookie-banner.active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 700px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}
.cookie-banner a { color: #F4B400; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.3s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept { background: #F4B400; color: #1a1a1a; }
.cookie-btn-reject { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }

/* --- FLOATING WHATSAPP --- */
.floating-call-btn,
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
  will-change: transform;
}
.floating-call-btn:hover,
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.floating-call-btn svg,
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* --- PROJECT SHOWCASE --- */
.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  min-height: 400px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.project-showcase-image {
  position: relative;
  overflow: hidden;
}
.project-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-showcase:hover .project-showcase-image img {
  transform: scale(1.05);
}
.project-showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
  background: #1a1a1a;
}
.project-showcase-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}
.project-showcase-content p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-layout { grid-template-columns: 1fr; }
  .zones-image { max-width: 400px; }
  .project-showcase { grid-template-columns: 1fr; }
  .project-showcase-image { min-height: 280px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    display: none;
    z-index: 9999;
  }
  .nav-menu.active { display: flex; }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-menu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    min-width: auto;
    display: none;
  }
  .nav-dropdown.active .dropdown-menu { display: block; }
  .menu-toggle { display: block; z-index: 10000; }

  .hero {
    padding: 7rem 0 2.5rem;
  }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-badges { flex-direction: column; gap: 0.75rem; }

  .section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 300px; }
  .service-card-content p { max-height: none; opacity: 1; }
  .service-card-link { opacity: 1; transform: translateY(0); }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr; }
  .project-showcase { grid-template-columns: 1fr; }
  .project-showcase-content { padding: 2rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 350px; }
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .zones-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.5rem; }
}
