* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #fafafa;
  --dark: #28282b;
  --red: #cc0000;
  --white: #ffffff;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
}

.container-v2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header V2 */
.header-v2 {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  font-size: 2rem;
  color: var(--red);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.red {
  color: var(--red);
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 400;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--red);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.phone-link:hover {
  background-color: var(--red);
  color: var(--white);
}

.phone-icon {
  font-size: 1.25rem;
}

.phone-number {
  font-size: 1rem;
}

/* Hero Canva Design */
/* Hero Canva Design */
.hero-canva {
  position: relative;
  width: 100%;
  min-height: 600px;
  /* Maintains base size on small screens */
  /* Responsive Aspect Ratio for Desktop images */
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding-bottom: 60px;
  /* Space for icons bar */
}

@media (max-width: 768px) {
  .hero-canva {
    aspect-ratio: auto;
    height: auto;
    padding: 6rem 0 8rem;
  }
}

/* Hero Carousel Background styles */
.hero-bg-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Dark overlay */
  z-index: 1;
}

.hero-content-centered {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 100%;
  transform: translateY(-30%);
  /* Moved up 30% as requested */
}

.hero-title-large {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.highlight-red {
  color: var(--red);
}

.btn-primary-canva {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--white);
  color: var(--dark);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary-canva:hover {
  background-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
}

/* Icons Bar */
.hero-icons-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 3;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.icons-bar-flex {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.service-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-icon-item:hover {
  color: var(--red);
  transform: translateY(-3px);
}

.icon-emoji {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-canva {
    height: auto;
    padding: 6rem 0 0;
    flex-direction: column;
    justify-content: center;
  }

  .hero-icons-bar {
    position: relative;
    padding: 2rem 0;
    margin-top: 2rem;
  }

  .hero-title-large {
    font-size: 2.2rem;
    white-space: normal;
    line-height: 1.2;
  }

  .icons-bar-flex {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    gap: 0.25rem;
    /* Very small gap */
    width: 100%;
    padding: 1rem 0.5rem;
    /* Reduce side padding */
    overflow-x: hidden;
    /* No scroll */
  }

  .service-icon-item {
    font-size: 0.75rem;
    /* Smaller text */
    flex: 1;
    /* Distribute space */
    min-width: 0;
    /* Allow shrinking */
  }

  .service-icon-item img {
    width: 35px !important;
    /* Force smaller size overriding inline styles */
    height: 35px !important;
    object-fit: contain;
  }

  .icon-emoji {
    font-size: 1.5rem;
  }

  .hero-content-centered {
    transform: none;
    /* Remove the negative shift on mobile to prevent overlap */
  }
}

/* Diagnostics Dark Section */
.diagnostics-dark {
  background-color: #1a1a1a;
  /* Dark gray almost black */
  padding: 5rem 0;
  color: var(--white);
}

.section-header-centered {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title-dark {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.diagnostics-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 4rem;
  /* Horizontal gap, Vertical gap */
  max-width: 900px;
  margin: 0 auto;
}

.diag-item-2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--white);
}

.diag-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.diag-icon-wrapper {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}

.x-icon-placeholder {
  width: 24px;
  height: 24px;
  /* Placeholder style until image is loaded */
  background-color: transparent;

  /* Temporary indicator */
  display: block;
}

.diag-item-2 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.diag-item-2 p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.5;
  margin-left: 0;
  /* Aligned left */
  max-width: 400px;
}


@media (max-width: 768px) {
  .diagnostics-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }

  .diag-item-2 {
    align-items: center;
    text-align: center;
  }

  .diag-header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }

  .diag-header h4 {
    width: 100%;
    margin-top: 0.5rem;
  }

  .diag-item-2 p {
    text-align: center;
    margin: 0 auto;
  }
}

/* Solution Section */
.solution-v2 {
  padding: 5rem 0;
  background-color: var(--cream);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-header {
  margin-bottom: 1.25rem;
}

.step-num {
  display: inline-block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.step-desc {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.step-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-features li {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9375rem;
}

.benefits-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.benefit-emoji {
  font-size: 1.75rem;
}

.benefit-text {
  font-weight: 600;
  color: var(--dark);
}

/* Nueva sección de video al final */
.video-section-bottom {
  padding: 5rem 0;
  background-color: var(--white);
}

.video-bottom-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-bottom-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.video-bottom-desc {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.video-bottom-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  aspect-ratio: 16 / 9;
}

.video-bottom-iframe,
.video-bottom-player {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-bottom-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 3rem;
  min-height: 400px;
}

.play-icon-large {
  width: 80px;
  height: 80px;
  background-color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-icon-large:hover {
  transform: scale(1.1);
  background-color: #a00000;
}

.placeholder-text {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.placeholder-hint {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* CTA Section */
.cta-v2 {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--red) 0%, #a00000 100%);
  color: var(--white);
}

.cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-subheading {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
}

.cta-btn-primary {
  background-color: var(--white);
  color: var(--red);
}

.cta-btn-primary:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
}

.cta-btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-btn-secondary:hover {
  background-color: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.cta-hours {
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* Footer */
.footer-v2 {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-brands-section {
  text-align: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
}

.brands-title {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.brands-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.brand-logo-img {
  height: 45px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.brand-logo-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-about {
  max-width: 350px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  font-size: 1.375rem;
  font-weight: 700;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-column h4 {
  font-size: 1.0625rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.625rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--red);
}

.contact-info li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* WhatsApp Float */
.whatsapp-float-v2 {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float-v2:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-v2 img {
  width: 32px;
  height: 32px;
}

/* Carousel V2 */
.carousel-section-v2 {
  margin: 4rem 0 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.carousel-title-v2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.carousel-container-v2 {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 3rem;
}

.carousel-wrapper-v2 {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track-v2 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide-v2 {
  min-width: 100%;
  display: none;
  flex-direction: column;
}

.carousel-slide-v2.active {
  display: flex;
}

.carousel-img-v2 {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.carousel-caption-v2 {
  background-color: var(--white);
  color: var(--dark);
  padding: 1.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  border-top: 3px solid var(--red);
}

.carousel-btn-v2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  color: var(--dark);
  border: 2px solid var(--border);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-btn-v2:hover {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev-v2 {
  left: 0;
}

.carousel-next-v2 {
  right: 0;
}

.carousel-indicators-v2 {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 2rem;
}

.indicator-v2 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator-v2.active {
  background-color: var(--red);
  border-color: var(--red);
  transform: scale(1.3);
}

.indicator-v2:hover {
  background-color: var(--dark);
  border-color: var(--dark);
}

/* Testimonials Section */
.testimonials-v2 {
  padding: 5rem 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--light-gray);
  padding: 2.5rem;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: var(--white);
  border: 1px solid var(--border);
}

.client-rating {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.client-details {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.client-location {
  font-size: 0.875rem;
  color: var(--gray);
}

/* Responsive optimizado para móviles */
@media (max-width: 968px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-carousel-side {
    order: -1;
  }

  .carousel-hero-img {
    height: 400px;
  }

  .hero-heading {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.25rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .problem-card-v2 {
    flex-direction: column;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  phone-link {
    padding: 0.625rem 1rem;
  }

  .phone-number {
    display: none;
  }

  .carousel-container-v2 {
    padding: 0 2.5rem;
  }

  .carousel-img-v2 {
    height: 300px;
  }

  .carousel-caption-v2 {
    font-size: 0.9375rem;
    padding: 1.25rem;
  }

  .carousel-btn-v2 {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .carousel-title-v2 {
    font-size: 1.5rem;
  }

  .carousel-hero-img {
    height: 350px;
  }

  .carousel-hero-btn {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .video-bottom-placeholder {
    min-height: 300px;
  }
}

@media (max-width: 640px) {

  .hero-cta-group,
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-whatsapp,
  .cta-phone,
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    gap: 1.5rem;
  }

  .benefits-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-container-v2 {
    padding: 0 2rem;
  }

  .carousel-img-v2 {
    height: 250px;
  }

  .carousel-hero-img {
    height: 300px;
  }
}

html {
  scroll-behavior: smooth;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .testimonials-v2 {
    padding: 3rem 0;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Coverage Section */
.coverage-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.section-title-centered {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--dark);
}

.coverage-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.coverage-map-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.map-visual-placeholder {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  color: var(--gray);
  font-size: 1.25rem;
}


.map-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.coverage-stats-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  min-width: 120px;
}

.btn-dark-text {
  color: var(--dark) !important;
}

/* Success Stories Dark */
.success-stories-dark {
  background-color: #1a1a1a;
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
}

.section-desc-light {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.testimonial-single-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  position: relative;
}

.quote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.author-name {
  display: block;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--red);
}

.author-loc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.dot.active {
  background-color: var(--red);
}

/* Expert Section Refactor */
.expert-section {
  padding: 4rem 0 6rem;
  background-color: var(--white);
}

.expert-header-centered {
  text-align: center;
  margin-bottom: 3rem;
}

.expert-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.expert-subtitle {
  font-size: 1.5rem;
  color: var(--gray);
  font-weight: 500;
}

.expert-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.expert-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.expert-promo-text {
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 2rem;
}

.expert-promo-text .highlight-red {
  font-weight: 700;
}

.btn-expert-black {
  background-color: #000;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-expert-black:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-icon-small {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.text-red-small {
  color: var(--red);
  margin-left: 0.25rem;
}

.schedule-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.clock-emoji {
  font-size: 1.2rem;
}

/* Right Column: Carousel */
.expert-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expert-slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.expert-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.expert-slide.active {
  opacity: 1;
}

.expert-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.expert-dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.expert-dot.active {
  background-color: var(--white);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .expert-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .expert-left-col {
    align-items: center;
  }

  .expert-promo-text {
    font-size: 1.5rem;
  }
}

/* Footer Canva Dark */
.footer-canva-dark {
  background-color: #111;
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-text-large {
  font-size: 2rem;
  font-weight: 900;
}

.footer-links-simple {
  display: flex;
  gap: 2rem;
}

.footer-links-simple a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links-simple a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.footer-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

@media (max-width: 768px) {

  .coverage-content,
  .expert-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .coverage-stats-container {
    align-items: center;
  }

  .footer-flex {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-links-simple {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Testimonials Grid V3 (Light) */
.testimonials-grid-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.testimonials-grid-v3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card-v3 {
  background-color: #f9f9f9;
  /* Light gray/white bg */
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  border: 1px solid transparent;
}

.testimonial-card-v3:hover {
  transform: translateY(-5px);
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stars {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
  /* Gold color */
  letter-spacing: 2px;
}

.quote-v3 {
  font-size: 1.0625rem;
  color: var(--dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.author-v3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-circle {
  width: 50px;
  height: 50px;
  background-color: #cc0000;
  /* Red brand color */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #cc0000;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name-v3 {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.service-type {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Header Refactor (Links Left, Logo Right) */
.header-wrapper-reordered {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-nav-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--red);
}

.brand {
  display: flex;
  align-items: center;
}

/* Ensure image logo fits in header */
/* Ensure image logo fits in header */
.brand img {
  max-height: 90px;
  /* Allow more height */
  width: auto;
  /* Respect aspect ratio, but let inline styles override if needed */
  height: auto;
  object-fit: contain;
}

.header-v2 {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.header-v2.header-hidden {
  transform: translateY(-100%);
}

@media (max-width: 768px) {
  .header-wrapper-reordered {
    flex-direction: column-reverse;
    gap: 0.5rem;
    /* Reduced gap further */
  }

  .header-nav-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }

  .brand img {
    max-width: 160px;
    height: auto;
  }

  .header-v2 {
    padding: 0.5rem 0;
    /* Tighter vertical padding */
  }

  /* Ensure header container doesn't overflow */
  .container-v2 {
    padding: 0 1rem;
  }
}


/* Testimonials Enhancements */
.test-title {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.social-icons-card {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}

.social-icon-svg {
  color: #cc0000;
  /* Red brand color */
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.social-icon-svg:hover {
  transform: scale(1.1);
  color: #a30000;
  /* Darker red on hover */
}

/* Brands Carousel Section */
.brands-section {
  padding: 4rem 0;
  background-color: #f5f5f5;
  /* Light bg for contrast */
  overflow: hidden;
  border-top: 1px solid #e5e5e5;
}

.brands-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* Mask to fade edges */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-track {
  display: flex;
  width: max-content;
  gap: 4rem;
  animation: scrollBrands 30s linear infinite;
  padding: 2rem 0;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fixed size box for logo */
  width: 100px;
  height: 100px;
}

.brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  /* Grayscale filter for uniform look */
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

/* Pause on hover */
/* Footer Vertical Refactor */
.footer-links-vertical,
.footer-social-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-social-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer-link-item {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-link-item:hover {
  color: var(--red);
}

.social-link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.social-link-item:hover {
  color: var(--white);
}

.footer-icon-svg {
  color: #ccc;
  transition: color 0.3s ease;
}

.social-link-item:hover .footer-icon-svg {
  color: var(--red);
}

/* Ensure footer flex aligns items to top */
.footer-flex {
  align-items: flex-start !important;
  /* Override centered alignment if present */
  justify-content: space-between;
}

@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    gap: 3rem;
    align-items: center !important;
    text-align: center;
  }

  .footer-links-vertical,
  .footer-social-vertical {
    align-items: center;
    width: 100%;
  }

  .footer-brand-box {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

/* Diagnostics Refactor - Grid 2x2 */
.diagnostics-dark {
  background-color: #1a1a1a;
  color: white;
  padding: 5rem 0;
}

.diagnostics-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .diagnostics-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.diag-item-2 {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.diag-icon-2 {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diag-svg {
  width: 100%;
  height: 100%;
}

.icon-x-overlay {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--red);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid #1a1a1a;
}

.diag-text-2 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.diag-text-2 h4::before {

  color: var(--red);
  font-weight: 900;
  margin-right: 0.2rem;
}

.diag-text-2 p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.5;
}

/* Button White with Red Text */
.btn-white-red {
  display: inline-flex;
  align-items: center;
  background-color: white;
  color: var(--dark);
  padding: 1rem 2rem;
  border-radius: 8px;
  /* Slightly rounded, not pill */
  font-weight: 700;
  text-decoration: none;
  font-size: 1.125rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-white-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.text-bold-red {
  color: var(--red);
  font-weight: 900;
  margin-left: 0.3rem;
}