/* CSS Reset Import - Cleans browser defaults before custom styles */
@import url('assets/css/reset.css');

/* Variables CSS */
:root {
  --primary: #111827;
  --secondary: #CC0000;
  --accent: #CC0000;
  --text: #000000;
  --muted: #374151;
  --card: #FFFFFF;
  --bg: #f7f7f9;
  --border: #DDDDDD;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.15);
  --red: #CC0000;
  --dark-red: #D40000;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #DDDDDD;
  --light-gray: #f7f7f9;
  --green: #888888;
  --ring: rgba(204, 0, 0, 0.15);
  /* Colores unificados para consistencia visual entre promo-bar y YouTube CTA */
  --promo-bar-gradient: linear-gradient(135deg, #CC0000 0%, #B30000 100%);
  --promo-bar-text: #FFFFFF;
  --promo-bar-solid: #CC0000;
  --youtube-cta-gradient: linear-gradient(135deg, #CC0000 0%, #B30000 100%);
  --youtube-cta-hover-gradient: linear-gradient(135deg, #B30000 0%, #990000 100%);
  --youtube-cta-border: #CC0000;
  --youtube-cta-hover-border: #B30000;
  --youtube-cta-solid: #CC0000;
}

/* Reset y base */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  cursor: none;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}

.custom-cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.custom-cursor.hover {
  transform: scale(0.5);
}

.custom-cursor-follower.hover {
  width: 60px;
  height: 60px;
  opacity: 0.8;
  border-width: 3px;
}

/* Ocultar cursor personalizado en dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
  body {
    cursor: auto;
  }
  
  .custom-cursor,
  .custom-cursor-follower {
    display: none;
  }
}

/* Utilidades */
.container {
  width: min(1480px, calc(100% - 3rem));
  margin-inline: auto;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 0.8rem;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--dark-red);
  box-shadow: 0 6px 22px rgba(204, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(212, 0, 0, 0.45);
  background: var(--dark-red);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
  border-color: transparent;
}

.btn-secondary:hover {
  background: #333333;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}

.btn-ghost:hover {
  background: var(--red);
  color: var(--white);
}

.link {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.link:hover {
  text-decoration: underline;
}

/* YouTube Channel CTA Button */
.youtube-channel-cta {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding: 0 1rem;
}

.btn-youtube {
  background: var(--youtube-cta-gradient);
  color: var(--white);
  border: 2px solid var(--youtube-cta-border);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.3);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-youtube:hover {
  background: var(--youtube-cta-hover-gradient);
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(255, 0, 0, 0.4);
  border-color: var(--youtube-cta-hover-border);
  color: var(--white);
}

.btn-youtube i {
  font-size: 1.2rem;
  color: var(--white);
}

.btn-youtube span {
  font-weight: 700;
  color: var(--white);
}

.btn-youtube:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Responsive design for YouTube button */
@media (max-width: 768px) {
  .btn-youtube {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.5rem;
    background: var(--youtube-cta-solid);
    background-image: none;
    color: var(--white);
    border-color: var(--youtube-cta-border);
  }

  .btn-youtube:hover,
  .btn-youtube:active {
    background: var(--youtube-cta-solid);
    background-image: none;
    border-color: var(--youtube-cta-border);
    color: var(--white);
  }
  
  .btn-youtube i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .btn-youtube {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    gap: 0.5rem;
    background: var(--youtube-cta-solid);
    background-image: none;
    color: var(--white);
    border-color: var(--youtube-cta-border);
  }

  .btn-youtube:hover,
  .btn-youtube:active {
    background: var(--youtube-cta-solid);
    background-image: none;
    border-color: var(--youtube-cta-border);
    color: var(--white);
  }
  
  .btn-youtube i {
    font-size: 1rem;
  }
}

/* Topbar */
.topbar {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 0.75rem 0;
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.topbar-item i {
  color: var(--red);
  font-size: 0.9rem;
}

.topbar-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.topbar-item a:hover {
  color: var(--red);
}

.topbar-item.phone-tablet {
  display: none;
}

.topbar-right {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(204, 0, 0, 0.3);
}

.social-icon:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(204, 0, 0, 0.2);
}

.topbar-right a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.2s ease;
}

.topbar-right a:hover {
  color: var(--red);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-image {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.logo-image:hover {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon i {
  font-size: 1.2rem;
  color: white;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.menu a:hover {
  color: var(--red);
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.menu-item a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.menu-item:hover a {
  color: var(--red);
}

.dropdown-arrow {
  font-size: 0.7rem;
  color: var(--muted);
  transition: color 0.3s ease;
}

.menu-item:hover .dropdown-arrow {
  color: var(--red);
}

.cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.phone-info i {
  color: var(--red);
  font-size: 1rem;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-red);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-primary i {
  font-size: 0.8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 3px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero */
.hero {
  padding: 1.5rem 0 3rem;
  position: relative;
}

.hero-banner {
  background-color: #333;
  background-image: url('https://www.espinozainstalls.com/wp-content/uploads/2025/09/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: visible;
  min-height: 500px;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  color: white;
  max-width: 1480px;
  width: calc(100% - 3rem);
  margin: 0 auto;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 2rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.7) 0%, rgba(85, 85, 85, 0.5) 100%);
  z-index: 2;
  border-radius: 2rem;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 3rem;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 800;
  color: white;
  max-width: 600px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  font-size: 1rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.btn-play {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-play:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.btn-play i {
  color: var(--red);
  font-size: 1.1rem;
}

.hero-recommended {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-recommended span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.avatars {
  display: flex;
  gap: 0.3rem;
}

.avatar {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-left: -8px;
  color: var(--red);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.avatar:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.avatar:hover img {
  transform: scale(1.05);
}

/* Estilos generales para imágenes en placeholders */
.image-placeholder img,
.service-image img,
.worker-img img,
.worker-contact-img img,
.electrician-working img,
.goals-img-1 img,
.goals-img-2 img,
.goals-img-3 img,
.goals-img-4 img,
.about-main-img img,
.about-secondary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-cta-card {
  background: #CC0000;
  color: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  max-width: 280px;
  min-width: 260px;
  text-align: center;
  position: absolute;
  right: 1.5rem;
  bottom: -80px;
  z-index: 1000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-cta-card h3 {
  margin: 0 0 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: var(--muted);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats li strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
}

.hero-stats li span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  bottom: -12px;
  left: -12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.badge-icon {
  font-size: 1.2rem;
  color: var(--red);
}

.badge-icon i {
  font-size: 1.2rem;
}

.hero-badge strong {
  display: block;
  font-size: 0.9rem;
  margin: 0;
}

.hero-badge small {
  color: var(--muted);
  font-size: 0.8rem;
}


/* About Section */
.about-section {
  padding: 4rem 0;
  background: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.experience-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.experience-icon {
  color: var(--red);
  flex-shrink: 0;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-icon i {
  font-size: 2.5rem;
}

.experience-text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.experience-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.about-main-img {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--black) 0%, var(--muted) 100%);
  position: relative;
}

.about-main-img::after {
  content: "🔧";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.3;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 2;
}

.play-button i {
  font-size: 1.5rem;
  color: white;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.secondary-image {
  border-radius: 1rem;
  overflow: hidden;
}

.about-secondary-img {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, var(--red) 0%, #D40000 100%);
  position: relative;
}

.about-secondary-img::after {
  content: "⚡";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #ffffff;
  opacity: 0.85;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-label {
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-right h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 0;
  color: var(--text);
}

.about-right .highlight { color: var(--red); }

.about-right p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  color: var(--red);
  flex-shrink: 0;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 1.5rem;
}

.feature-content h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.feature-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Services Section */
.services-section {
  padding: 0;
  margin: 4rem 0;
}

.services-bg {
  background: var(--red);
  border-radius: 2rem;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  max-width: 1480px;
  width: calc(100% - 3rem);
  margin: 0 auto;
}

.services-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.services-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-label {
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.services-header h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

.services-header .highlight { color: var(--black); }

.services-carousel-container {
  overflow: hidden;
  width: 100%;
}

.services-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-card {
  background: #dddddd;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 350px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-link {
  display: inline-block;
  color: #888888;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #000000;
  text-decoration: none;
}

.service-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 40px;
  height: 40px;
  background: #888888;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  z-index: 2;
}

.service-image {
  width: 100%;
  height: 120px;
  background: #888888;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h4 {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.service-content p {
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--red);
}

.services-footer {
  text-align: center;
}

.services-footer p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

.services-footer .btn {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: white;
  text-decoration: underline;
}

/* Responsive para services grid */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-title {
    font-size: 1.25rem;
  }
  
  .service-card {
    min-height: 300px;
    padding: 1.5rem;
  }
  
  /* Client Services Section Mobile */
  .client-services-section {
    padding: 3rem 0;
  }
  
  .client-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .client-services-section .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 2rem 0 0;
  }
  
  .client-services-section .stat-item {
    padding: 1.25rem 1rem;
  }
  
  .client-services-section .stat-number {
    font-size: 2rem;
  }
  
  .client-services-section .stat-label {
    font-size: 0.85rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Client Services Section Tablet */
  .client-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .client-services-section .stats-section {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1025px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Client Services Section Desktop */
  .client-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Client Services Section */
.client-services-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.client-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(204, 0, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(17, 24, 39, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin: 1rem 0;
  color: var(--text);
  font-weight: 800;
}

.section-header .highlight {
  color: var(--red);
  position: relative;
}

.section-header .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #D40000);
  border-radius: 2px;
}

.section-description {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 1.5rem 0 0;
}

/* Client Services Grid */
.client-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

/* Service Cards */
.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #D40000);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Card Background Patterns */
.card-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  opacity: 0.05;
  overflow: hidden;
}

.card-pattern {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--red) 25%, transparent 25%),
              linear-gradient(-45deg, var(--red) 25%, transparent 25%),
              linear-gradient(45deg, transparent 75%, var(--red) 75%),
              linear-gradient(-45deg, transparent 75%, var(--red) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.enterprise-card .card-pattern {
  background-color: #1e40af;
}

.commercial-card .card-pattern {
  background-color: #059669;
}

.residential-card .card-pattern {
  background-color: #dc2626;
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.enterprise-card .service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, #000000 100%);
}

.commercial-card .service-icon {
  background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
}

.residential-card .service-icon {
  background: linear-gradient(135deg, #666666 0%, #333333 100%);
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
  border-radius: 16px;
}

.service-icon i {
  font-size: 1.8rem;
  color: white;
  position: relative;
  z-index: 1;
}

.service-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.service-info p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  font-size: 1rem;
}

/* Feature Tags */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(204, 0, 0, 0.1);
  color: var(--red);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(204, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.enterprise-card .feature-tag {
  background: rgba(17, 24, 39, 0.1);
  color: var(--primary);
  border-color: rgba(17, 24, 39, 0.2);
}

.commercial-card .feature-tag {
  background: rgba(204, 0, 0, 0.1);
  color: var(--red);
  border-color: rgba(204, 0, 0, 0.2);
}

.residential-card .feature-tag {
  background: rgba(102, 102, 102, 0.1);
  color: #666666;
  border-color: rgba(102, 102, 102, 0.2);
}

.feature-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hover Effects */
.card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
}

.service-card:hover .card-hover-effect {
  opacity: 1;
}

/* Stats Section - WHO WE SERVE */
.client-services-section .stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 0 0;
  position: relative;
  z-index: 1;
}

/* Estado Normal - WHO WE SERVE */
.client-services-section .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 1) 100%);
  border-radius: 16px;
  border: 1px solid rgba(204, 0, 0, 0.1);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(204, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.client-services-section .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--dark-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* Estado Hover - WHO WE SERVE */
.client-services-section .stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.12),
    0 4px 15px rgba(204, 0, 0, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(254, 242, 242, 0.95) 100%);
  border-color: rgba(204, 0, 0, 0.2);
}

.client-services-section .stat-item:hover::before {
  transform: scaleX(1);
}

.client-services-section .stat-item:hover .stat-number {
  color: var(--dark-red);
  text-shadow: 0 3px 8px rgba(204, 0, 0, 0.25);
  transform: scale(1.08);
}

.client-services-section .stat-item:hover .stat-label {
  color: var(--primary);
  transform: translateY(-2px);
}

/* Estado Active/Focus - WHO WE SERVE */
.client-services-section .stat-item:active {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(204, 0, 0, 0.2);
}

.client-services-section .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(204, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.client-services-section .stat-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  transform: translateY(0);
}

/* Stats Section - GET AN ESTIMATE */
.estimate-section .stat-item {
  text-align: center;
  color: white;
  padding: 1rem;
}

.estimate-section .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: white;
}

.estimate-section .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}


/* Features Section */
.features-section {
  padding: 4rem 0;
  background: var(--bg);
}

.features-section .container {
  background: var(--light-gray);
  border-radius: 2rem;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 1480px;
  width: calc(100% - 3rem);
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0.5rem 0 0;
  color: var(--text);
  font-weight: 700;
}

.features-header .highlight {
  color: var(--red);
}

.features-video {
  margin-bottom: 4rem;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.video-placeholder {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.video-placeholder iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  z-index: 5;
  pointer-events: auto;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Ocultar overlay cuando hay iframe (video activo) */
.video-placeholder:has(iframe)::before {
  opacity: 0;
  visibility: hidden;
}

.play-button-large {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-button-large:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.play-button-large::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid var(--red);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1480px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
  color: white !important;
}

.feature-icon i {
  font-size: 1.5rem;
  z-index: 1;
  position: relative;
  color: white !important;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 70%);
  border-radius: 50%;
}

.feature-item h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Contact Us Section */
.contact-us-section {
  padding: 4rem 0;
  background: var(--bg);
}

.contact-us-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-us-left h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
}

.contact-us-left .highlight {
  color: var(--red);
}

.contact-us-left p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.contact-us-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.phone-text span {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
}

.phone-text strong {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: #fff;
}

.testimonials-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.testimonials-left h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
}

.testimonials-left .highlight {
  color: var(--red);
}

.testimonials-left p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.testimonial-card {
  background: var(--light-gray);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 2rem;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-nav {
  display: flex;
  gap: 0.5rem;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.trusted-by {
  text-align: center;
  margin-top: 4rem;
}

.trusted-by p {
  color: var(--muted);
  margin: 0 0 2rem;
}

.company-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(204, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(204, 0, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-icon {
  font-size: 2rem;
  color: var(--red);
}

.logo-item span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--bg);
}

.faq-section > .container,
.faq-section .container,
#contacto > .container {
  max-width: 1480px;
  width: calc(100% - 3rem);
  margin: 0 auto;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-left h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
}

.faq-left .highlight {
  color: var(--red);
}

.faq-left p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.faq-image {
  width: 100%;
  height: 300px;
  background: var(--light-gray);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-number {
  font-weight: 700;
  color: var(--red);
  font-size: 1.1rem;
}

.faq-text {
  flex: 1;
  font-weight: 600;
  color: var(--text);
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Blog Section */
.blog-section {
  padding: 4rem 0;
  background: #fff;
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 0.5rem 0 0;
  color: var(--text);
}

.blog-header .highlight {
  color: var(--red);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--dark-red);
}

/* Goals Section */
.goals-section {
  padding: 4rem 0;
  background: #fff;
}

.goals-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.goals-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.goals-left h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.goals-left .highlight {
  color: var(--red);
}

.goals-left > p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.goals-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.goal-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.goal-icon i {
  font-size: 1.5rem;
}

.goal-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.goal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.goals-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.contact-icon i {
  font-size: 1rem;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-text span {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-text strong {
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}

.goals-right {
  position: relative;
}

.goals-images {
  position: relative;
  width: 100%;
  height: 500px;
}

.image-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.image-item {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.large-image {
  grid-row: 1 / 3;
}

.small-image.top {
  grid-column: 2;
  grid-row: 1;
}

.small-image.bottom {
  grid-column: 2;
  grid-row: 2;
}

.medium-image {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 180px;
  height: 120px;
  z-index: 2;
}

.goals-img-1 {
  background: linear-gradient(135deg, var(--muted) 0%, var(--black) 100%);
  position: relative;
}

.goals-img-1::after {
  content: "👷‍♂️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.3;
}

.goals-img-2 {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  position: relative;
}

.goals-img-2::after {
  content: "🔌";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.3;
}

.goals-img-3 {
  background: linear-gradient(135deg, var(--dark-red) 0%, var(--red) 100%);
  position: relative;
}

.goals-img-3::after {
  content: "⚡";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.3;
}

.goals-img-4 {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  position: relative;
}

.goals-img-4::after {
  content: "🔧";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.3;
}

.experience-badge-goals {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--red);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.badge-content {
  text-align: center;
  color: white;
}

.badge-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: white;
}

.badge-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  color: white;
}

.badge-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  color: white;
}

/* Estimate Section */
.estimate-section {
  padding: 0;
  margin: 4rem 0;
}

.estimate-container {
  background: var(--red);
  border-radius: 2rem;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  max-width: 1480px;
  width: calc(100% - 3rem);
  margin: 0 auto;
}

.estimate-container::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(45deg);
}

.estimate-container::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.estimate-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}
.estimate-left {
  color: white;
}

.estimate-left .section-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}

.contact-us-left .section-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}

.estimate-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
  font-weight: 700;
  color: white;
}

.estimate-left .highlight {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 0.3rem;
}

.estimate-left p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.estimate-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.estimate-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.estimate-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.4;
}

.estimate-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.worker-image {
  position: relative;
  width: 300px;
  height: 350px;
}

.worker-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--muted) 0%, var(--black) 100%);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.worker-img::after {
  content: "👷‍♂️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.3;
}

.certified-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.certified-badge .badge-content {
  text-align: center;
  color: white;
}

.certified-badge .badge-icon {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: white;
}

.certified-badge .badge-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1;
  color: white;
}

.certified-badge .badge-text strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  color: white;
}

.estimate-section .stats-section {
  margin-top: 3rem;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.estimate-section .stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3rem;
  right: 3rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.estimate-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 3rem;
}

.estimate-section .stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.estimate-section .stat-icon i {
  font-size: 2rem;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
  background: #fff;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0.5rem 0 0;
  color: var(--text);
  font-weight: 700;
}

.pricing-header .highlight {
  color: var(--red);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.toggle-container {
  background: var(--light-gray);
  border-radius: 50px;
  padding: 4px;
  display: flex;
  gap: 4px;
}

.toggle-btn {
  background: transparent;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--muted);
}

.toggle-btn.active {
  background: var(--red);
  color: white;
  box-shadow: 0 2px 8px rgba(204, 0, 0, 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  background: var(--red);
  color: white;
  border-color: var(--red);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: inherit;
}

.card-header p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

.pricing-card.featured .card-header p {
  color: rgba(255, 255, 255, 0.8);
}

.card-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card.featured .card-price {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.card-price.highlighted {
  background: var(--red);
  margin: 0 -2rem 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  color: var(--text);
  border-bottom: none;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: inherit;
}

.price-period {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.card-price.highlighted .price-period {
  color: var(--text);
  opacity: 0.7;
}

.card-features {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pricing-card .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.pricing-card .feature-item:last-child {
  margin-bottom: 0;
}

.pricing-card .feature-item .check-icon {
  width: 20px;
  height: 20px;
  background: var(--light-gray);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card.featured .feature-item .check-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.pricing-card .feature-item span {
  font-size: 0.95rem;
  line-height: 1.4;
  color: inherit;
  margin-top: 2px;
}

.pricing-card.featured .feature-item span {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-btn {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: 2px solid transparent;
  margin-top: auto;
}

.pricing-card.basic .pricing-btn,
.pricing-card.premium .pricing-btn {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.pricing-card.basic .pricing-btn:hover,
.pricing-card.premium .pricing-btn:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.pricing-card.featured .pricing-btn {
  background: white;
  color: var(--red);
  border-color: white;
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.pricing-footer {
  text-align: center;
}

.footer-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-icon {
  font-size: 1.2rem;
}

/* Contact Us Section - Updated */
.contact-us-section {
  padding: 0;
  margin: 4rem 0;
}

.contact-us-container {
  background: linear-gradient(135deg, var(--black) 0%, var(--muted) 100%);
  border-radius: 2rem;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  width: calc(100% - 3rem);
  margin: 0 auto;
}

.contact-us-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.contact-us-left {
  color: white;
}

.contact-us-left .section-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: block;
}

.contact-us-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
  font-weight: 700;
  color: white;
}

.contact-us-left .highlight {
  color: var(--red);
}

.contact-us-left p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-us-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-btn {
  background: var(--red);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid var(--red);
}

.contact-btn:hover {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.contact-info-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-inline > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
}

.phone-icon i {
  font-size: 1rem;
}

.phone-text {
  display: flex;
  flex-direction: column;
}

.phone-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  font-weight: 500;
}

.phone-text strong {
  font-size: 1rem;
  color: white;
  font-weight: 700;
  line-height: 1.2;
}

.contact-us-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.worker-contact-image {
  position: relative;
  width: 350px;
  height: 400px;
}

.worker-contact-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-red) 0%, var(--red) 100%);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.worker-contact-img::after {
  content: "👷‍♀️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  opacity: 0.3;
}

/* Testimonials Section - Updated */
.testimonials-section {
  padding: 4rem 0;
  background: #fff;
}

.testimonials-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.testimonials-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonials-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.testimonials-left .highlight {
  color: var(--red);
}

.testimonials-left p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.testimonials-btn {
  background: var(--red);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid var(--red);
  align-self: flex-start;
}

.testimonials-btn:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.testimonials-right {
  position: relative;
}

.testimonial-card {
  background: var(--light-gray);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: serif;
}

.testimonial-card p {
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 2rem;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--muted) 0%, var(--black) 100%);
  position: relative;
}

.avatar-placeholder::after {
  content: "👨‍💼";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  opacity: 0.7;
}

.author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-nav {
  display: flex;
  gap: 0.5rem;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--muted);
}

.nav-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--light-gray);
}

.trusted-by {
  text-align: center;
}

.trusted-by p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.company-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--red);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 0, 0, 0.1);
  border-radius: 50%;
}

.logo-icon i {
  font-size: 1.2rem;
}

/* FAQ Section - Updated */
.faq-section {
  padding: 4rem 0;
  background: #fff;
}

.faq-content {
  background: var(--light-gray);
  border-radius: 2rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.faq-left .highlight {
  color: var(--red);
}

.faq-left p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.faq-image {
  margin-top: 2rem;
}

.electrician-working {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--black) 0%, var(--muted) 100%);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}

.electrician-working::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(255, 165, 0, 0.3) 0%, transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.2) 0%, transparent 25%);
}

.electrician-working::after {
  content: "👷‍♂️⚡";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.4;
}

.faq-right {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  border-color: var(--red);
  background: var(--light-gray);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background: var(--light-gray);
}

.faq-number {
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.faq-text {
  flex-grow: 1;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--red);
  transition: all 0.3s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-toggle:hover {
  transform: scale(1.1);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  background: var(--light-gray);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

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

/* Blog Section - Updated */
.blog-section {
  padding: 4rem 0;
  background: #fff;
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0.5rem 0 0;
  color: var(--text);
  font-weight: 700;
}

.blog-header .highlight {
  color: var(--red);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.lighting-img {
  background: linear-gradient(135deg, var(--dark-red) 0%, var(--red) 100%);
  position: relative;
}

.inspection-img {
  background: linear-gradient(135deg, var(--muted) 0%, var(--black) 100%);
  position: relative;
}

.energy-img {
  background: linear-gradient(135deg, var(--red) 0%, #D40000 100%);
  position: relative;
}

.blog-content {
  padding: 2rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1.5rem;
  color: var(--text);
}

.blog-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.blog-link:hover {
  color: var(--red);
  gap: 0.75rem;
}

.blog-link svg {
  transition: transform 0.3s ease;
}

.blog-link:hover svg {
  transform: translateX(3px);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-accent {
  background: var(--red);
  color: #fff;
  position: relative;
}

.section-accent .eyebrow {
  color: var(--white);
}

.section-muted {
  background: #fff;
}

.section .section-head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.section .section-head.center {
  align-items: center;
  text-align: center;
}

.section .section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0;
}

.section .sub {
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.1rem;
}

/* Cards servicios */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid #edf0f2;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card .icon {
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.card .icon i {
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text);
}

.card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .container {
    width: min(1100px, calc(100% - 2rem));
  }
  
  .hero-banner {
    max-width: 1100px;
    width: calc(100% - 2rem);
    margin: 0 auto;
  }
  
  .nav {
    width: min(1100px, calc(100% - 2rem));
  }
  
  .topbar .container {
    width: min(1100px, calc(100% - 2rem));
  }
  
  .services-bg {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
  }
  .features-section .container,
  .estimate-container,
  .contact-us-container,
  .faq-section > .container,
  .faq-section .container,
  #contacto > .container {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .goals-content,
  .testimonials-content,
  .contact-us-content,
  .faq-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .estimate-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 2rem;
    margin: 1rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .contact-boxes {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .company-logos {
    gap: 1.5rem;
  }
  
  .footer-features {
    gap: 1.5rem;
  }
  
  .estimate-container,
  .contact-us-container {
    padding: 3rem 0;
  }
  
  .estimate-content,
  .contact-us-content {
    padding: 0 2rem;
  }
  
  .faq-content {
    padding: 2rem;
  }
  
  .contact-us-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .goals-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    margin: 0.5rem;
    padding: 1.5rem;
  }
  
  .contact-box {
    padding: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .testimonial-card,
  .pricing-card {
    padding: 1.5rem;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .faq-content {
    padding: 1.5rem;
  }
  
  .estimate-container,
  .contact-us-container {
    padding: 2rem 0;
    margin: 0 1rem;
  }
  
  .estimate-content,
  .contact-us-content {
    padding: 0 1.5rem;
  }
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-column ul li i {
  color: rgba(255, 255, 255, 0.9);
  margin-right: 0.5rem;
  width: 16px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: white;
  color: #000000 !important;
  border-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-links a i {
  font-size: 1rem;
}

/* Get in Touch Section */
.get-in-touch-section {
  padding: 4rem 0;
  background: var(--bg);
}

.get-in-touch-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--text);
}

.contact-copy .highlight {
  color: var(--red);
}

.contact-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 0.5rem 0;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-list li i {
  color: var(--red);
  width: 16px;
  text-align: center;
}

.contact-form {
  background: #fff;
  border: 1px solid #edf0f2;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  margin-top: 0.3rem;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Footer */
.footer {
  background: var(--red);
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-image {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.3)) 
          drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
  transition: all 0.3s ease;
}

.footer-logo-image:hover {
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4)) 
          drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
  transform: scale(1.02);
}

.brand-logo i {
  font-size: 2rem;
  color: var(--red);
}

.brand-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

/* Animaciones adicionales */
.animate-in {
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loaded {
  opacity: 1;
}

img {
  transition: opacity 0.3s ease;
  opacity: 100;
}

img.loaded {
  opacity: 1;
}

.header {
  transition: transform 0.3s ease;
}

/* Overrides: Removed - causing contrast issues on dark backgrounds */

/* Efectos adicionales para cards */
.card {
  transform-origin: center;
}

.card:hover .card-body h3 {
  color: var(--red);
}

/* Mejoras en botones */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Cards adicionales */
.card {
  background: var(--card);
  border: 1px solid #edf0f2;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.card-body p {
  color: var(--muted);
  margin: 0 0 1rem;
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split .copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}

.split .bullets {
  margin: 1.5rem 0;
  padding-left: 1.1rem;
}

.split .bullets li {
  margin: 0.6rem 0;
  font-size: 1.05rem;
}

.split .actions {
  margin-top: 1.5rem;
}

.figure {
  position: relative;
}

.figure img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.floating-stats {
  position: absolute;
  right: -10px;
  bottom: -10px;
  background: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.8rem;
  display: flex;
  gap: 0.8rem;
}

.floating-stats .fs-item {
  background: var(--black);
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  text-align: center;
}

.floating-stats .fs-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--red);
}

.floating-stats .fs-item span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Pricing adicional */
.pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.price {
  background: #fff;
  border: 1px solid #edf0f2;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s ease;
}

.price:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.price h3 {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 1.3rem;
}

.price .price-amount {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  color: var(--red);
}

.price .price-amount span {
  font-size: 1.2rem;
  vertical-align: top;
}

.price .price-amount small {
  font-size: 0.9rem;
  color: var(--muted);
}

.price ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.price ul li {
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.2rem;
}

.price ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

.price.featured {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(204, 0, 0, 0.35);
  transform: scale(1.05);
}

.ribbon {
  position: absolute;
  top: -8px;
  right: 1rem;
  background: var(--red);
  color: var(--white);
  padding: 0.25rem 0.8rem;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 0.8rem;
}

/* Testimonials adicionales */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonials blockquote {
  background: #fff;
  border: 1px solid #edf0f2;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 0;
  box-shadow: var(--shadow);
}

.testimonials blockquote p {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 1rem;
  color: var(--text);
}

.testimonials blockquote footer {
  color: var(--muted);
  font-weight: 600;
}

/* Contact adicional */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-column ul li i {
  color: rgba(255, 255, 255, 0.9);
  margin-right: 0.5rem;
  width: 16px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.social-links a:hover {
  background: #FFFFFF;
  color: #000000 !important;
  border-color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.social-links a i {
  font-size: 1.1rem;
  color: inherit;
}

/* Responsive */
@media (max-width: 1280px) {
  .container {
    width: min(1100px, calc(100% - 2rem));
  }
  
  .hero-banner {
    max-width: 1100px;
    width: calc(100% - 2rem);
    margin: 0 auto;
  }
  
  .nav {
    width: min(1100px, calc(100% - 2rem));
  }
  
  .topbar .container {
    width: min(1100px, calc(100% - 2rem));
  }
  
  .services-bg {
    max-width: 1100px;
    width: calc(100% - 2rem);
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(900px, calc(100% - 2rem));
  }
  
  .hero-banner {
    max-width: 900px;
    width: calc(100% - 2rem);
    margin: 0 auto;
  }
  
  .nav {
    width: min(900px, calc(100% - 2rem));
  }
  
  .cta {
    gap: 1rem;
  }
  
  .cta .phone-info {
    display: none;
  }
  
  .btn-primary {
    padding: 0.65rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .topbar .container {
    width: min(900px, calc(100% - 2rem));
  }
  
  .services-bg {
    max-width: 900px;
    width: calc(100% - 2rem);
    margin: 0 auto;
  }
  .features-section .container,
  .estimate-container,
  .contact-us-container,
  .faq-section > .container,
  .faq-section .container,
  #contacto > .container {
    width: min(900px, calc(100% - 2rem));
    margin: 0 auto;
  }
  
  .get-in-touch-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .services-carousel {
    width: calc(300% + 3rem); /* Para 6 slides en tablet */
  }
  
  .service-card {
    flex: 0 0 calc(50% - 1rem); /* 2 slides visibles en tablet */
  }
  
  .hero-cta-card {
    right: 1rem;
    max-width: 250px;
    min-width: 230px;
  }
}

@media (max-width: 900px) {
  .cta .phone-info {
    display: none;
  }
  
  .cta {
    gap: 0.5rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .topbar-item.phone-tablet {
    display: flex !important;
  }
  
  .topbar-left {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  
  .nav {
    grid-template-columns: auto 1fr auto;
  }
  
  .menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
  
  .menu.active {
    display: flex;
    transform: translateY(0);
  }
  
  .menu a {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
  }
  
  .menu a:last-child {
    border-bottom: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .container {
    width: calc(100% - 2rem);
  }
  
  .hero-banner {
    width: calc(100% - 2rem);
    margin: 0 auto;
    border-radius: 1.5rem;
  }
  
  .hero-video {
    border-radius: 1.5rem;
  }
  
  .hero-overlay {
    border-radius: 1.5rem;
  }
  
  .nav {
    width: calc(100% - 2rem);
  }
  
  .topbar .container {
    width: calc(100% - 2rem);
  }
  
  .services-bg {
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding: 3rem 0;
  }
  
  .services-carousel {
    width: calc(600% + 10rem); /* Para 6 slides en móvil */
    gap: 1.5rem;
  }
  
  .service-card {
    flex: 0 0 calc(100% - 1.5rem); /* 1 slide visible en móvil */
  }
  
  .services-header h2 {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: 2rem;
  }
  
  .hero-cta-card {
    visibility: hidden;
    display: none;
  }
  
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-left {
    order: 2;
  }
  
  .about-right {
    order: 1;
  }
  
  
  
  .badge-icon {
    font-size: 1.8rem;
  }
  
  .features-section {
    padding: 3rem 0;
  }
  
  .features-section .container {
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
  }
  
  .features-header {
    margin-bottom: 2rem;
  }
  
  .features-video {
    margin-bottom: 3rem;
  }
  
  .video-container {
    max-width: 100%;
    margin: 0 1rem;
  }
  
  .video-placeholder {
    height: 300px;
  }
  
  /* Asegurar que el overlay se oculte en tablet */
  .video-placeholder:has(iframe)::before {
    opacity: 0;
    visibility: hidden;
  }
  
  .video-placeholder iframe {
    z-index: 5;
    pointer-events: auto;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .feature-item {
    padding: 1.5rem 1rem;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .goals-section {
    padding: 3rem 0;
  }
  
  .goals-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .goals-images {
    height: 400px;
  }
  
  .medium-image {
    width: 150px;
    height: 100px;
    bottom: -1.5rem;
    right: -1.5rem;
  }
  
  .experience-badge-goals {
    width: 100px;
    height: 100px;
  }
  
  .badge-text span {
    font-size: 0.65rem;
  }
  
  .badge-text strong {
    font-size: 0.75rem;
  }
  
  .estimate-section {
    margin: 3rem 0;
  }
  
  .estimate-container {
    width: min(900px, calc(100% - 2rem));
    padding: 3rem 0;
    border-radius: 1.5rem;
  }
  
  .estimate-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }
  
  .worker-image {
    width: 250px;
    height: 300px;
  }
  
  .certified-badge {
    width: 80px;
    height: 80px;
    bottom: -15px;
    right: -15px;
  }
  
  .estimate-section .stats-section {
    padding: 0 2rem;
  }
  
  .estimate-section .stats-section::before {
    left: 2rem;
    right: 2rem;
  }
  
  .estimate-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .estimate-section .stat-item {
    padding: 1.25rem 1rem;
  }
  
  .estimate-section .stat-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.75rem;
  }
  
  .estimate-section .stat-icon i {
    font-size: 1.75rem;
  }
  
  .estimate-section .stat-number {
    font-size: 2rem;
  }
  
  .estimate-section .stat-label {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .pricing-section {
    padding: 3rem 0;
  }
  
  .pricing-header {
    margin-bottom: 2rem;
  }
  
  .pricing-toggle {
    margin-bottom: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
    order: -1;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .service-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-features {
    gap: 2rem;
  }
  
  .contact-us-section {
    margin: 3rem 0;
  }
  
  .contact-us-container {
    width: min(900px, calc(100% - 2rem));
    padding: 3rem 0;
    border-radius: 1.5rem;
  }
  
  .contact-us-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }
  
  .worker-contact-image {
    width: 300px;
    height: 350px;
    margin: 0 auto;
  }
  
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .testimonials-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .testimonials-left {
    text-align: center;
  }
  
  .trusted-by {
    margin-top: 3rem;
  }
  
  .company-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .logo-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(204, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .logo-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(204, 0, 0, 0.2);
    transform: translateY(-3px);
  }
  
  .logo-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .logo-item span {
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .faq-section {
    padding: 3rem 0;
  }
  
  .faq-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem;
    border-radius: 1.5rem;
  }
  
  .faq-left {
    text-align: center;
  }
  
  .faq-image {
    margin-top: 1.5rem;
  }
  
  .electrician-working {
    height: 250px;
  }
  
  .blog-section {
    padding: 3rem 0;
  }
  
  .blog-header {
    margin-bottom: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .topbar-left {
    gap: 1rem;
  }
  
  .topbar-item {
    font-size: 0.8rem;
  }
  
  .menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
  
  .menu.active {
    display: flex;
    transform: translateY(0);
  }
  
  .menu a {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
  }
  
  .menu a:last-child {
    border-bottom: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .cta .phone-info {
    display: none;
  }
  
  .floating-stats {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .cta {
    gap: 0;
  }
  
  .btn-primary {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .hero-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-cta-card {
    visibility: hidden;
    display: none;
  }
  
  .services-section {
    margin: 2rem 0;
  }
  
  .services-bg {
    padding: 2rem 0;
  }
  
  .services-carousel {
    margin-bottom: 2rem;
  }
  
  .service-image {
    height: 150px;
  }
  
  .services-header {
    margin-bottom: 2rem;
  }
  
  .client-services-section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
  
  .section-description {
    font-size: 1.1rem;
  }
  
  .client-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-info h3 {
    font-size: 1.3rem;
  }
  
  .service-info p {
    font-size: 0.95rem;
  }
  
  .client-services-section .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 0 0;
  }
  
  .client-services-section .stat-item {
    padding: 1.25rem;
    border: 1px solid rgba(204, 0, 0, 0.08);
  }
  
  .client-services-section .stat-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(254, 242, 242, 0.9) 100%);
    border-color: rgba(204, 0, 0, 0.15);
  }
  
  .client-services-section .stat-number {
    font-size: 2rem;
  }
  
  .client-services-section .stat-item:hover .stat-number {
    color: var(--dark-red);
    transform: scale(1.05);
  }
  
  .client-services-section .stat-label {
    font-size: 0.85rem;
  }
  
  .client-services-section .stat-item:hover .stat-label {
    color: var(--primary);
  }
  
  .badge-icon {
    font-size: 1.2rem;
  }
  
  .features-section {
    padding: 2rem 0;
  }
  
  .features-section .container {
    padding: 1.5rem 1rem;
    border-radius: 1rem;
  }
  
  .features-header {
    margin-bottom: 1.5rem;
  }
  
  .features-video {
    margin-bottom: 2rem;
  }
  
  .video-container {
    max-width: 100%;
    margin: 0 0.5rem;
    border-radius: 1rem;
  }
  
  .video-placeholder {
    height: 250px;
    border-radius: 1rem;
  }
  
  /* Asegurar que el overlay se oculte en mobile */
  .video-placeholder:has(iframe)::before {
    opacity: 0;
    visibility: hidden;
  }
  
  .video-placeholder iframe {
    z-index: 5;
    pointer-events: auto;
  }
  
  .play-button-large {
    width: 60px;
    height: 60px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .play-button-large::before {
    border-left: 15px solid var(--red);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-item {
    padding: 1.25rem 1rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-item h3 {
    font-size: 1.1rem;
  }
  
  .goals-section {
    padding: 2rem 0;
  }
  
  .goals-content {
    gap: 2rem;
  }
  
  .goals-left {
    gap: 1.5rem;
  }
  
  .goals-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .goals-images {
    height: 300px;
  }
  
  .image-grid {
    gap: 0.5rem;
  }
  
  .medium-image {
    width: 120px;
    height: 80px;
    bottom: -1rem;
    right: -1rem;
  }
  
  .experience-badge-goals {
    width: 80px;
    height: 80px;
  }
  
  .badge-icon {
    font-size: 1.2rem;
  }
  
  .badge-text span {
    font-size: 0.6rem;
  }
  
  .badge-text strong {
    font-size: 0.7rem;
  }
  
  .estimate-section {
    margin: 2rem 0;
  }
  
  .estimate-container {
    width: calc(100% - 2rem);
    padding: 2rem 0;
    border-radius: 1rem;
  }
  
  .estimate-content {
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .estimate-left {
    text-align: center;
  }
  
  .worker-image {
    width: 200px;
    height: 250px;
    margin: 0 auto;
  }
  
  .certified-badge {
    width: 70px;
    height: 70px;
    bottom: -10px;
    right: -10px;
  }
  
  .certified-badge .badge-text span {
    font-size: 0.55rem;
  }
  
  .certified-badge .badge-text strong {
    font-size: 0.65rem;
  }
  
  .estimate-section .stats-section {
    padding: 0 1.5rem;
  }
  
  .estimate-section .stats-section::before {
    left: 1.5rem;
    right: 1.5rem;
  }
  
  .estimate-section .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 2rem;
  }
  
  .estimate-section .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .estimate-section .stat-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.75rem;
  }
  
  .estimate-section .stat-icon i {
    font-size: 1.75rem;
  }
  
  .estimate-section .stat-number {
    font-size: 2rem;
  }
  
  .estimate-section .stat-label {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .pricing-section {
    padding: 2rem 0;
  }
  
  .pricing-header {
    margin-bottom: 1.5rem;
  }
  
  .pricing-toggle {
    margin-bottom: 1.5rem;
  }
  
  .toggle-container {
    padding: 3px;
  }
  
  .toggle-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .pricing-grid {
    gap: 1rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .card-price.highlighted {
    margin: 0 -1.5rem 1.5rem;
    padding: 1rem 1.5rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand p {
    max-width: none;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-column h4 {
    margin-bottom: 1rem;
  }
  
  .header {
    padding: 0.75rem 0;
  }
  
  .logo-image {
    height: 40px;
    max-width: 150px;
  }
  
  .footer-logo-image {
    height: 50px;
    max-width: 200px;
  }
  
  .topbar {
    padding: 0.5rem 0;
  }
  
  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .topbar-right {
    gap: 0.5rem;
  }
  
  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .contact-us-section {
    margin: 2rem 0;
  }
  
  .contact-us-container {
    width: calc(100% - 2rem);
    padding: 2rem 0;
    border-radius: 1rem;
  }
  
  .contact-us-content {
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .contact-us-left {
    text-align: center;
  }
  
  .contact-us-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .contact-info-inline {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .worker-contact-image {
    width: 250px;
    height: 300px;
  }
  
  .testimonials-section {
    padding: 2rem 0;
  }
  
  .testimonials-content {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .testimonials-left {
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .quote-icon {
    font-size: 3rem;
  }
  
  .testimonial-author {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .trusted-by {
    margin-top: 2rem;
    padding: 0 1rem;
  }
  
  .trusted-by p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .company-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .logo-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(204, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .logo-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(204, 0, 0, 0.2);
    transform: translateY(-2px);
  }
  
  .logo-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .logo-item span {
    font-size: 0.85rem;
    font-weight: 600;
  }
  
  .faq-section {
    padding: 2rem 0;
  }
  
  .faq-content {
    gap: 2rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }
  
  .faq-left {
    gap: 1.5rem;
  }
  
  .faq-image {
    margin-top: 1rem;
  }
  
  .electrician-working {
    height: 200px;
  }
  
  .faq-right {
    padding: 1.5rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem;
  }
  
  .faq-text {
    font-size: 0.9rem;
  }
  
  .blog-section {
    padding: 2rem 0;
  }
  
  .blog-header {
    margin-bottom: 1.5rem;
  }
  
  .blog-grid {
    gap: 1rem;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .blog-image {
    height: 180px;
  }
  
  .about-secondary-img {
    height: 80px;
  }
  
  
  .about-section {
    padding: 2rem 0;
  }
  
  .about-content {
    gap: 2rem;
  }
  
  .about-main-img {
    height: 200px;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
  }
  
  .newsletter {
    flex-direction: column;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .price.featured {
    transform: none;
  }
  
  .get-in-touch-section {
    padding: 2rem 0;
  }
  
  .get-in-touch-content {
    gap: 2rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
}

/* ========================================
   SOLUTIONS PAGE STYLES
   ======================================== */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #000000 100%);
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(204,0,0,0.1)" stroke-width="1"/></svg>');
  opacity: 0.3;
}

.page-header .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

/* Solutions Section */
.solutions-section {
  padding: 6rem 0;
  background: var(--bg);
}

.solutions-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  width: 100%;
}

/* Solution Item */
.solution-item {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solution-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.solution-image-top img {
  object-position: top;
}

.solution-item:hover .solution-image img {
  transform: scale(1.1);
}

.solution-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: opacity 0.3s ease;
}

.solution-item:hover .solution-overlay {
  opacity: 0.8;
}

.solution-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.solution-content {
  padding: 2rem;
}

.solution-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.solution-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.solution-link:hover {
  gap: 1rem;
  color: var(--dark-red);
}

.solution-link i {
  transition: transform 0.3s ease;
}

.solution-link:hover i {
  transform: translateX(5px);
}

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #000000 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.stats-banner .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(204,0,0,0.1)" stroke-width="1"/></svg>');
  opacity: 0.2;
}

.stats-content {
  position: relative;
  z-index: 1;
}

.stats-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: white;
}

.stats-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
  color: white;
}

.stats-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
}

.stats-grid-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: white;
}

.testimonials-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testimonials-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.testimonials-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
  color: var(--text);
}

.testimonials-left p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--red);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  color: var(--red);
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--muted);
}

.trusted-companies {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trusted-companies p {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 600;
}

.trusted-companies .highlight {
  color: var(--red);
  font-weight: 800;
  font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--bg);
}

.cta-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
  color: var(--text);
}

.cta-left p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-phone i {
  width: 50px;
  height: 50px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cta-phone div {
  display: flex;
  flex-direction: column;
}

.cta-phone span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-phone a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.cta-phone a:hover {
  color: var(--red);
}

.cta-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles for Solutions Page */
@media (max-width: 768px) {
  .page-header {
    padding: 6rem 0 3rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stats-grid-banner {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 1.5rem;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .stat-box h3 {
    font-size: 2rem;
  }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--bg);
}

.about-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* About Images */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Experience Badge for About Page */
.about-section .about-images .experience-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: var(--red);
  color: white;
  padding: 1.5rem;
  border-radius: 16px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-icon {
  font-size: 2rem;
}

.badge-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: white;
}

.badge-content p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.about-main-image {
  grid-column: 1 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-secondary-image {
  grid-column: 2 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: -8rem;
}

.about-secondary-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Text Content */
.about-text-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
  color: var(--text);
}

.about-text-content > p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.feature-content p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Approach Section */
.approach-section {
  padding: 6rem 0;
  background: white;
}

.approach-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0 2rem;
  color: var(--text);
}

.mission-vision-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mission-vision-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--red);
  transition: all 0.3s ease;
}

.mission-vision-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.mv-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.mv-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.mv-body p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.approach-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.approach-image img {
  width: 100%;
  height: auto;
  display: block;
}

.approach-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(204, 0, 0, 0.95);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.overlay-content i {
  font-size: 2rem;
}

.overlay-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

/* Why Choose Section */
.why-choose-section {
  padding: 6rem 0;
  background: var(--bg);
}

.why-choose-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header-center h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
  color: var(--text);
}

.section-header-center p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-choose-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.wc-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.why-choose-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.why-choose-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
  .about-content-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-main-image {
    grid-column: 1;
  }

  .about-secondary-image {
    grid-column: 1;
    margin-top: 0;
  }

  .about-section .about-images .experience-badge {
    position: static;
    margin-bottom: 2rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CLIENTS PAGE STYLES
   ======================================== */

/* Client Hero Section */
.client-hero-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg) 0%, white 100%);
}

.client-hero-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.client-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.client-hero-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin: 1rem 0;
  color: var(--text);
}

.client-hero-content p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Client Segments Showcase */
.client-segments-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.segment-card {
  position: relative;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.segment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.segment-enterprise::before {
  background-image: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%), url('https://www.espinozainstalls.com/wp-content/uploads/2025/10/enterprise.jpg');
}

.segment-commercial::before {
  background-image: linear-gradient(135deg, rgba(204, 0, 0, 0.9) 0%, rgba(153, 0, 0, 0.7) 100%), url('https://www.espinozainstalls.com/wp-content/uploads/2025/10/commercial-business.jpg');
}

.segment-residential::before {
  background-image: linear-gradient(135deg, rgba(102, 102, 102, 0.9) 0%, rgba(51, 51, 51, 0.7) 100%), url('https://www.espinozainstalls.com/wp-content/uploads/2025/10/residential.jpg');
}

.segment-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.segment-card:hover::before {
  transform: scale(1.1);
}

.segment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.segment-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.segment-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.segment-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: white;
}

.segment-content > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.segment-description {
  margin-bottom: 2rem;
}

.segment-description p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.segment-stats {
  display: flex;
  gap: 2rem;
}

.stat-mini {
  display: flex;
  flex-direction: column;
}

.stat-mini .number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-mini .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Industries Section */
.industries-section {
  padding: 6rem 0;
  background: white;
}

.industries-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: var(--bg);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.industry-card:hover {
  transform: translateY(-10px);
  border-color: var(--red);
  box-shadow: 0 20px 60px rgba(204, 0, 0, 0.1);
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: rotateY(360deg);
}

.industry-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.industry-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Success Stories Section */
.success-stories-section {
  padding: 6rem 0;
  background: var(--bg);
}

.success-stories-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.story-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.1);
}

.story-category {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--red);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-content {
  padding: 2rem;
}

.story-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.story-content > p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.story-metrics {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Clients Testimonials Section */
.clients-testimonials-section {
  padding: 6rem 0;
  background: white;
}

.clients-testimonials-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.testimonial-slide {
  background: var(--bg);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-content-large {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quote-icon {
  color: var(--red);
  font-size: 3rem;
  opacity: 0.3;
}

.testimonial-content-large > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  font-style: italic;
}

.testimonial-author-large {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(204, 0, 0, 0.1);
}

.author-avatar-large {
  width: 70px;
  height: 70px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.author-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.author-details span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.rating {
  color: #FFA500;
  font-size: 0.9rem;
}

/* Trusted By Section */
.trusted-by-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #000000 100%);
}

.trusted-by-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.trusted-header {
  text-align: center;
  margin-bottom: 3rem;
}

.trusted-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.trusted-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

.logo-item {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px; /* Altura fija para consistencia */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.logo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #D40000);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(204, 0, 0, 0.15);
  border-color: rgba(204, 0, 0, 0.2);
}

.logo-item:hover::before {
  transform: scaleX(1);
}

.client-logo {
  max-width: 100%;
  max-height: 70px; /* Altura máxima del logo */
  height: auto;
  width: auto;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.4s ease;
  display: block;
}

.logo-item:hover .client-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

/* Responsive Styles for Clients Page */
@media (max-width: 768px) {
  .client-segments-showcase {
    grid-template-columns: 1fr;
  }

  .segment-card {
    height: 350px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .client-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  
  .logo-item {
    padding: 1.25rem 0.75rem;
    height: 100px; /* Altura fija en tablet */
  }
  
  .client-logo {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .client-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .logo-item {
    padding: 1rem 0.5rem;
    height: 90px; /* Altura fija en mobile */
  }
  
  .client-logo {
    max-height: 50px;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .segment-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .story-metrics {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

.blog-grid-section {
  padding: 6rem 0;
  background: var(--bg);
}

.blog-grid-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.blog-post-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.blog-post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.post-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-post-card:hover .post-image img {
  transform: scale(1.1);
}

.post-category {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--red);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-content {
  padding: 2rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-content h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-content h3 a:hover {
  color: var(--red);
}

.post-content > p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  gap: 1rem;
  color: var(--dark-red);
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page-section {
  padding: 6rem 0;
  background: var(--bg);
}

.contact-page-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-side h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
  color: var(--text);
}

.contact-form-side > p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.contact-map {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.info-card-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.contact-info-card p {
  color: var(--muted);
  margin: 0;
  padding-left: 66px;
}

.contact-info-card a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--red);
}

/* Responsive Styles for Blog and Contact */
@media (max-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 300px;
  }
}

/* ========================================
   SERVICE DETAIL PAGE STYLES
   ======================================== */

.service-detail-section {
  padding: 6rem 0;
  background: var(--bg);
}

.service-detail-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-services {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.sidebar-services h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--red);
}

.sidebar-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-services li {
  margin-bottom: 0.5rem;
}

.sidebar-services a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar-services a:hover,
.sidebar-services a.active {
  background: var(--red);
  color: white;
  transform: translateX(5px);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #000000 100%);
  padding: 2rem;
  border-radius: 16px;
  color: white;
}

.sidebar-cta h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.sidebar-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
}

.sidebar-contact i {
  font-size: 1.5rem;
  color: var(--red);
}

.sidebar-contact span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-contact a {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

/* Service Content */
.service-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-image {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-description {
  margin-bottom: 3rem;
}

.service-description p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.service-features h2,
.service-process h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.feature-item i {
  color: var(--red);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.feature-item p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Service Banner Styles */
.service-banner {
  width: 100%;
  margin: 3rem 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #CC0000;
  min-height: 200px;
}

.service-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-banner a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.service-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-banner .banner-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-cta {
  background: var(--bg);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  margin-top: 3rem;
}

.service-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-cta p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Responsive Styles for Service Detail */
@media (max-width: 968px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-sidebar {
    position: static;
  }

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-banner {
    margin: 2rem 0;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .service-content {
    padding: 2rem;
  }

  .service-image {
    height: 250px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .service-banner {
    margin: 1.5rem 0;
    border-radius: 8px;
    width: 100%;
    min-height: 150px;
  }

  .service-banner:hover {
    transform: none;
  }

  .service-banner .banner-image {
    height: auto;
    object-fit: contain;
  }
}

/* ========================================
   PRELOADER STYLES
   ======================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-container {
  position: relative;
  width: 100px;
  height: 100px;
}

.loading {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--red);
  border-right-color: var(--red);
  animation: rotate-loading 1.5s linear infinite;
}

.loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: var(--red);
  animation: pulse-icon 1.5s ease-in-out infinite;
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-icon {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Responsive Preloader */
@media (max-width: 768px) {
  .loading-container {
    width: 80px;
    height: 80px;
  }
  
  .loading {
    width: 80px;
    height: 80px;
    border-width: 2.5px;
  }
  
  .loading-icon {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .loading-container {
    width: 60px;
    height: 60px;
  }
  
  .loading {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }
  
  .loading-icon {
    font-size: 1.5rem;
  }
}

/* ========================================
   TEAM PAGE STYLES
   ======================================== */

.team-intro-section {
  padding: 4rem 0;
  background: white;
}

.team-intro-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.team-intro-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
  color: var(--text);
}

.team-intro-content p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.team-grid-section {
  padding: 4rem 0;
  background: var(--bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 1rem;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--red);
  color: white;
  transform: translateY(-3px);
}

.team-info {
  padding: 2rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.team-info span {
  display: block;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-info p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.join-team-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #000000 100%);
}

.join-team-content {
  text-align: center;
  color: white;
}

.join-team-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.join-team-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   CAREERS PAGE STYLES
   ======================================== */

.careers-hero-section {
  padding: 4rem 0;
  background: white;
}

.careers-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.careers-hero-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
  color: var(--text);
}

.careers-hero-content p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.benefits-section {
  padding: 4rem 0;
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.6;
}

.positions-section {
  padding: 4rem 0;
  background: white;
}

.positions-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.position-card {
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.position-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.1);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.position-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.position-type {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.position-location {
  color: var(--muted);
  font-size: 0.95rem;
}

.position-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.position-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.position-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.position-tags span {
  background: var(--bg);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.application-cta-section {
  padding: 4rem 0;
  background: var(--bg);
}

.application-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.application-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.application-cta-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ========================================
   FAQ PAGE STYLES
   ======================================== */

.faq-intro-section {
  padding: 4rem 0;
  background: white;
}

.faq-intro-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq-intro-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
  color: var(--text);
}

.faq-intro-content p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-intro-content a {
  color: var(--red);
  font-weight: 600;
}

.faq-page-section {
  padding: 4rem 0;
  background: var(--bg);
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-category-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--red);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question i {
  color: var(--red);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.faq-cta-section {
  padding: 4rem 0;
  background: white;
}

.faq-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.faq-cta-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.faq-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   HELP CENTER PAGE STYLES
   ======================================== */

.help-hero-section {
  padding: 4rem 0;
  background: white;
}

.help-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.help-hero-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
  color: var(--text);
}

.help-hero-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.help-search {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.help-search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
}

.help-search-input:focus {
  outline: none;
  border-color: var(--red);
}

.help-categories-section {
  padding: 4rem 0;
  background: var(--bg);
}

.help-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.help-category-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.help-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.help-category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.help-category-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.help-category-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.help-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.help-link:hover {
  text-decoration: underline;
}

.contact-support-section {
  padding: 4rem 0;
  background: white;
}

.contact-support-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-support-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-support-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.support-option {
  background: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.support-option i {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.support-option h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.support-option p {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.support-option span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ========================================
   PRIVACY POLICY PAGE STYLES
   ======================================== */

.privacy-policy-section {
  padding: 4rem 0;
  background: white;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-intro {
  background: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 3rem;
}

.privacy-intro p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy-intro p:last-child {
  margin-bottom: 0;
}

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.privacy-section p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy-section ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.privacy-section li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.privacy-section li::before {
  content: "•";
  color: var(--red);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.privacy-section a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.privacy-section a:hover {
  text-decoration: underline;
}

/* Responsive Styles for New Pages */
@media (max-width: 968px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .team-grid,
  .benefits-grid,
  .help-categories-grid {
    grid-template-columns: 1fr;
  }

  .help-search {
    flex-direction: column;
  }

  .position-header {
    flex-direction: column;
    gap: 1rem;
  }

  .position-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-cta-buttons {
    flex-direction: column;
  }
}

/* ========================================
   FREE QUOTE PAGE STYLES
   ======================================== */

.quote-form-section {
  padding: 6rem 0;
  background: var(--bg);
}

.quote-form-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.quote-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.quote-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 1rem 0;
  color: var(--text);
}

.quote-intro p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Quote Form */
.quote-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 4rem;
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid var(--bg);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-section-title i {
  color: var(--red);
  font-size: 1.3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

/* Checkbox Group */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.checkbox-label:hover {
  border-color: var(--red);
  background: rgba(204, 0, 0, 0.02);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--red);
}

.checkbox-label span {
  font-weight: 500;
  color: var(--text);
}

/* Radio Group */
/* Global Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
  width: 100%;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  width: 100%;
  min-height: 48px;
  position: relative;
  user-select: none;
}

.radio-label:hover,
.checkbox-label:hover {
  border-color: var(--red);
  background: rgba(204, 0, 0, 0.02);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.radio-label input[type="radio"],
.checkbox-group input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  cursor: pointer;
  accent-color: var(--red);
  margin: 0;
  flex-shrink: 0;
}

.radio-label span,
.checkbox-label span {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
  .radio-group,
  .checkbox-group {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .radio-label,
  .checkbox-label {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .radio-label,
  .checkbox-label {
    padding: 0.75rem;
    min-height: 44px;
  }
}

/* Form Submit */
.form-submit {
  text-align: center;
  padding-top: 2rem;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Quote Benefits */
.quote-benefits {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.quote-benefits h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive Styles for Quote Form */
@media (max-width: 968px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .quote-form {
    padding: 2rem 1.5rem;
  }

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

  .radio-group {
    flex-direction: column;
  }

  .radio-label {
    width: 100%;
  }
}

/* ========================================
   BLOG SECTION CTA
   ======================================== */

/* Blog section call-to-action button styling */
.blog-section-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(204, 0, 0, 0.1);
}

.blog-all-posts-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
  color: white;
  border-radius: 50px;
  border: 2px solid var(--red);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.blog-all-posts-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  z-index: 1;
}

.blog-all-posts-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(255, 0, 0, 0.4);
  background: linear-gradient(135deg, var(--dark-red) 0%, #990000 100%);
  border-color: var(--dark-red);
}

.blog-all-posts-btn:hover::before {
  left: 100%;
}

.blog-all-posts-btn i {
  font-size: 1.1rem;
  z-index: 2;
  position: relative;
}

.blog-all-posts-btn span {
  font-weight: 700;
  z-index: 2;
  position: relative;
}

.blog-all-posts-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Responsive styling for blog CTA button */
@media (max-width: 768px) {
  .blog-section-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .blog-all-posts-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }
  
  .blog-all-posts-btn i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-section-cta {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  
  .blog-all-posts-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    gap: 0.5rem;
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   BARRA PROMOCIONAL
   ======================================== */

/* Estilos base para desktop y móvil */
.ai-promo-bar {
  height: 35px;
  background: var(--promo-bar-gradient);
  color: var(--promo-bar-text);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.ai-promo-bar .container {
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--promo-bar-text);
  text-align: center;
}

.promo-link {
  color: var(--promo-bar-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.7);
  text-underline-offset: 3px;
  transition: all 0.3s ease;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.promo-link:hover {
  color: var(--promo-bar-text);
  text-decoration-color: var(--promo-bar-text);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-bottom-color: var(--promo-bar-text);
}

/* Estilos específicos para mobile */
@media (max-width: 768px) {
  .ai-promo-bar {
    height: auto !important;
    min-height: 35px !important;
    max-height: 50px !important;
    padding: 8px 0 !important;
    background: var(--youtube-cta-solid) !important;
    background-image: none !important;
    color: var(--promo-bar-text);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    position: relative;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
    border: none;
    transition: all 0.3s ease;
  }
  
  .ai-promo-bar:hover {
    background: var(--youtube-cta-solid) !important;
    background-image: none !important;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    transform: translateY(-1px);
  }
  
  .ai-promo-bar .container {
    padding: 0 15px !important;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
  }
  
  .promo-text {
    font-size: 11px !important;
    font-weight: 600;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    color: var(--promo-bar-text);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    display: block;
  }
  
  .promo-link {
    display: inline !important;
    color: var(--promo-bar-text);
    font-weight: 700;
    font-size: 12px !important;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.8);
    text-underline-offset: 2px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 2px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  
  .promo-link:hover {
    color: var(--promo-bar-text);
    text-decoration-color: var(--promo-bar-text);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-bottom-color: var(--promo-bar-text);
    transform: translateY(-1px);
  }
  
  /* Ensure proper text flow and prevent overflow */
  .promo-text, .promo-link {
    text-align: center !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis;
  }
}

/* Additional fix for very small screens */
@media (max-width: 480px) {
  .ai-promo-bar {
    min-height: 40px !important;
    padding: 10px 0 !important;
  }
  
  .ai-promo-bar .container {
    padding: 0 10px !important;
  }
  
  .promo-text {
    font-size: 10px !important;
    line-height: 1.2 !important;
  }
  
  .promo-link {
    font-size: 11px !important;
  }
}

/* ========================================
   YOUTUBE CHANNEL CTA CONSISTENCY ENHANCEMENT
   ======================================== */

/* Desktop - Consistent effects for promo bar and YouTube CTA */
.ai-promo-bar .promo-link,
.youtube-channel-cta .btn-youtube {
  /* Shared hover effects */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ai-promo-bar .promo-link::before,
.youtube-channel-cta .btn-youtube::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  z-index: 1;
}

.ai-promo-bar .promo-link:hover::before,
.youtube-channel-cta .btn-youtube:hover::before {
  left: 100%;
}

/* Enhanced text effects for both elements */
.ai-promo-bar .promo-link,
.youtube-channel-cta .btn-youtube span {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Consistent hover state effects */
.ai-promo-bar:hover .promo-link,
.youtube-channel-cta .btn-youtube:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(255, 0, 0, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}


/* ========================================
   MOBILE FORM CENTERING FIX
   ======================================== */

/* Fix general para centrar todos los formularios en mobile */
@media (max-width: 768px) {
  
  /* Formularios generales */
  .contact-form,
  .quote-form,
  .contact-page-form,
  .form-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 1.5rem !important;
    box-sizing: border-box !important;
  }
  
  /* Grid de formularios */
  .form-grid,
  .contact-page-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  
  /* Filas de formulario */
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  
  /* Grupos de formulario */
  .form-group {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Checkbox y radio groups */
  .checkbox-group,
  .radio-group {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  
  .checkbox-label,
  .radio-label {
    width: 100% !important;
    justify-content: flex-start !important;
  }
  
  /* Centrado de elementos de contacto */
  .contact-form-side,
  .contact-info-side {
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  
  .contact-info-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
    width: 100% !important;
  }
  
  .contact-info-card {
    width: 100% !important;
    max-width: 350px !important;
    text-align: left !important;
  }
  
  .contact-map {
    margin-bottom: 2rem !important;
    text-align: center !important;
    width: 100% !important;
  }
  
  .contact-map iframe {
    max-width: 100% !important;
    height: 300px !important;
    width: 100% !important;
  }
  
  /* Container general para formularios */
  .form-section {
    padding-bottom: 2rem !important;
  }
  
  /* Form submit buttons */
  .form-submit,
  .form-actions {
    text-align: center !important;
    width: 100% !important;
  }
  
  .btn-large,
  .form-submit .btn {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Quote benefits grid */
  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Texto de formularios */
  .contact-form-side h2,
  .quote-intro h2,
  .form-section-title {
    text-align: center !important;
  }
  
  .contact-form-side > p,
  .quote-intro p {
    text-align: center !important;
  }
  
  /* Labels y elementos de formulario */
  .form-group label {
    text-align: left !important;
  }
  
  /* Specific fix for quote form */
  .quote-form {
    padding: 2rem 1.5rem !important;
  }
  
  .quote-intro {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 480px) {
  /* Ajustes adicionales para pantallas muy pequeñas */
  .contact-form,
  .quote-form,
  .contact-page-form {
    padding: 1rem !important;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.75rem !important;
  }
  
  .quote-form {
    padding: 1.5rem 1rem !important;
  }
}
