/* ==========================================================================
   CSS GLOBAL - METRO CÚBICO CONSTRUCCIONES Y REFORMAS
   ========================================================================== */

/* --- Importación de Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Variables de Diseño --- */
:root {
  /* Paleta HSL Tailored (Azul Marino + Acento Naranja) */
  --primary-navy: hsl(217, 33%, 17%);       /* #1E293B (Slate 800) */
  --primary-navy-dark: hsl(222, 47%, 11%);  /* #0F172A (Slate 900) */
  --primary-navy-light: hsl(215, 25%, 27%); /* #334155 (Slate 700) */
  
  --accent-orange: hsl(24, 95%, 53%);       /* #F97316 (Orange 500) */
  --accent-orange-hover: hsl(20, 92%, 47%); /* #EA580C (Orange 600) */
  --accent-orange-light: hsl(24, 95%, 95%); /* #FFF7ED (Orange 50) */
  
  --bg-light: hsl(210, 40%, 98%);           /* #F8FAFC (Slate 50) */
  --bg-white: hsl(0, 0%, 100%);
  
  --text-dark: hsl(215, 25%, 17%);          /* #1E293B */
  --text-muted: hsl(215, 16%, 47%);         /* #64748B (Slate 500) */
  --text-light: hsl(210, 40%, 96%);         /* #F1F5F9 (Slate 100) */
  
  --border-color: hsl(214, 32%, 91%);       /* #E2E8F0 (Slate 200) */
  
  /* Fuentes */
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Sombras y Bordes */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  
  /* Ancho Max */
  --max-width: 1200px;
  
  /* Transiciones */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Tipografía --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-navy-dark);
}

h1 {
  font-size: 2.25rem; /* 36px */
  letter-spacing: -0.025em;
}

h2 {
  font-size: 1.875rem; /* 30px */
  margin-bottom: 1rem;
  position: relative;
}

h2.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: var(--accent-orange);
  margin-top: 0.5rem;
  border-radius: var(--radius-sm);
}

h2.section-title.center::after {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- Componentes Comunes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-bg-light {
  background-color: var(--bg-light);
}

/* --- Botones --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary-navy);
  color: var(--primary-navy);
}

.btn-secondary:hover {
  background-color: var(--primary-navy);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary-navy-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

/* --- Sticky Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background-color: var(--primary-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--accent-orange);
  font-weight: 800;
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy-dark);
  letter-spacing: -0.03em;
}

.logo-text span {
  color: var(--accent-orange);
}

/* Navegación */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--primary-navy-light);
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-orange);
}

/* Teléfono Header */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--bg-white);
  background-color: var(--accent-orange);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.header-phone:hover {
  background-color: var(--accent-orange-hover);
  transform: scale(1.03);
}

.header-phone svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

/* Botón Menú Móvil */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-navy-dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.98) 90%), 
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%231E293B" width="100" height="100"/><path stroke="%23334155" stroke-width="0.5" d="M0,0 h100 v100 H0 Z M0,50 h100 M50,0 v100"/></svg>');
  color: var(--bg-white);
  padding: 6rem 0 7rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--bg-white) 0%, transparent 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--bg-white);
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-content h1 span {
  color: var(--accent-orange);
}

.hero-content p {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(4px);
}

.badge-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.2;
}

/* Hero Form (Above the fold para Ads) */
.hero-form-container {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-premium);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.hero-form-container h3 {
  color: var(--primary-navy-dark);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero-form-container p {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* --- Formularios --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy-light);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--bg-light);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.form-feedback.success {
  background-color: hsl(142, 72%, 95%);
  color: hsl(142, 76%, 25%);
  border: 1px solid hsl(142, 60%, 80%);
  display: block;
}

.form-feedback.error {
  background-color: hsl(0, 84%, 97%);
  color: hsl(0, 84%, 30%);
  border: 1px solid hsl(0, 84%, 90%);
  display: block;
}

/* --- Sección Tarjetas de Servicios --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(249, 115, 22, 0.2);
}

.service-icon {
  width: 54px;
  height: 54px;
  background-color: var(--accent-orange-light);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card h3 {
  color: var(--primary-navy-dark);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-weight: 600;
  color: var(--primary-navy-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  color: var(--accent-orange);
}

.service-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: var(--transition);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* --- Sección de Autoridad Técnica / Marco Normativo --- */
.normativa-box {
  background-color: var(--bg-light);
  border-left: 5px solid var(--accent-orange);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2.5rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-sm);
}

.normativa-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.normativa-header svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-orange);
}

.normativa-header h3 {
  margin-bottom: 0;
  color: var(--primary-navy-dark);
}

.normativa-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.normativa-content ul {
  margin-top: 1rem;
  margin-left: 1.25rem;
  list-style: disc;
  color: var(--text-muted);
}

.normativa-content li {
  margin-bottom: 0.5rem;
  font-weight: 300;
}

/* --- Por qué elegirnos --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--accent-orange);
  transform: translateY(-3px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-orange-light);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.25rem auto;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Galería (Placeholder SEO) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  aspect-ratio: 4/3;
  background-color: var(--primary-navy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  opacity: 0.85;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
  color: var(--bg-white);
  padding: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

/* --- FAQs Acordeón --- */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--accent-orange);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-trigger h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--primary-navy-dark);
  font-weight: 600;
  padding-right: 1.5rem;
}

.faq-icon-svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-navy-light);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-content-inner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* FAQ Abierto */
.faq-item.active {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon-svg {
  transform: rotate(180deg);
  fill: var(--accent-orange);
}

/* --- Formulario de Contacto Principal --- */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.contact-list {
  margin-bottom: 2.5rem;
}

.contact-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background-color: var(--accent-orange-light);
  color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-item-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-item-details p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-item-details a:hover {
  color: var(--accent-orange);
}

.contact-form-wrapper {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

/* --- Footer --- */
.footer {
  background-color: var(--primary-navy-dark);
  color: var(--bg-white);
  padding: 5rem 0 2rem 0;
  border-top: 3px solid var(--accent-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent-orange);
}

.footer-col p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-logo {
  margin-bottom: 1.25rem;
}

.footer-logo .logo-text {
  color: var(--bg-white);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}

.footer-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.footer-areas li {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 300;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-legal-links a:hover {
  color: var(--accent-orange);
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-form-container {
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
  
  /* Navigation Móvil */
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow-y: auto;
    z-index: 1000;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
  }
  
  .header-phone {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
  }
  
  .header-phone span {
    display: none; /* Oculta "Llamar:" en móvil para ahorrar espacio */
  }
  
  /* Transformaciones hamburger en cruz */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  /* Hero */
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .contact-form-wrapper {
    padding: 1.75rem;
  }
  
  .hero-form-container {
    padding: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
