/* Fonts handled via CDN in index.html for production reliability */
:root {
   --primary-color: #0d47a1;
   --primary-light: #1565c0;
   --accent-color: #4db6ac;
   --accent-light: #80cbc4;
   --secondary-color: #263238;
   --text-dark: #0d1b2a;
   --text-light: #546e7a;
   --white: #ffffff;
   --bg-light: #f8f9fa;
   --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Base Font Awesome Styles (if needed as fallbacks) */
.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
   display: inline-block;
   font-style: normal;
   font-variant: normal;
   text-rendering: auto;
   line-height: 1;
}

/* Icon Mappings - Only used icons for performance */
.fa-phone::before {
   content: "\f095";
}

.fa-whatsapp::before {
   content: "\f232";
}

.fa-check::before {
   content: "\f00c";
}

.fa-star::before {
   content: "\f005";
}

.fa-check-circle::before {
   content: "\f058";
}

.fa-couch::before {
   content: "\f4b8";
}

.fa-arrow-right::before {
   content: "\f061";
}

.fa-car-side::before {
   content: "\f5e4";
}

.fa-chair::before {
   content: "\f0f4";
}

.fa-sparkles::before {
   content: "\e562";
}

.fa-bed::before {
   content: "\f236";
}

.fa-chevron-left::before {
   content: "\f053";
}

.fa-chevron-right::before {
   content: "\f054";
}

.fa-home::before {
   content: "\f015";
}

.fa-map-marker-alt::before {
   content: "\f3c5";
}

.fa-flask::before {
   content: "\f0c3";
}

.fa-user-check::before {
   content: "\f4fc";
}

.fa-clock::before {
   content: "\f017";
}

.fa-tag::before {
   content: "\f02b";
}

.fa-credit-card::before {
   content: "\f09d";
}

.fa-qrcode::before {
   content: "\f029";
}

.fa-money-bill-wave::before {
   content: "\f53a";
}

.fa-bars::before {
   content: "\f0c9";
}

.fa-times::before {
   content: "\f00d";
}

.fa-facebook-f::before {
   content: "\f39e";
}

.fa-instagram::before {
   content: "\f16d";
}

.fa-facebook-f::before {
   content: "\f39e";
}

.fa-instagram::before {
   content: "\f16d";
}

/* Utils */
.visually-hidden {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;
}

/* variables.css */
:root {
   --primary-color: #00766c;
   /* Darkened from #00897b for 4.5:1 contrast */
   --primary-dark: #005a52;
   --primary-light: #4db6ac;
   --secondary-color: #1a237e;
   --accent-color: #ff6f00;
   --text-dark: #263238;
   --text-light: #546e7a;
   --white: #ffffff;
   --light-bg: #f5f7fa;
   --border-color: #e0e0e0;
   --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
   --transition: all 0.3s ease;
   --border-radius: 12px;
   --border-radius-sm: 8px;
   --container-max: 1200px;
   --container-padding: 20px;
}

/* reset.css */
*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
   width: 100%;
   overflow-x: hidden;
}

body {
   font-family: 'Poppins', sans-serif;
   line-height: 1.6;
   color: var(--text-dark);
   background-color: var(--white);
   width: 100%;
   overflow-x: hidden;
   position: relative;
}

.container {
   width: 100%;
   max-width: var(--container-max);
   margin: 0 auto;
   padding: 0 var(--container-padding);
}

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

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

ul {
   list-style: none;
}

/* typography.css */
h1,
h2,
h3,
h4,
h5,
h6 {
   font-weight: 600;
   line-height: 1.3;
   color: var(--text-dark);
}

h1 {
   font-size: 2.5rem;
}

h2 {
   font-size: 2rem;
}

h3 {
   font-size: 1.5rem;
}

h4 {
   font-size: 1.25rem;
}

/* buttons.css */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 14px 28px;
   border-radius: 12px;
   font-weight: 600;
   transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   cursor: pointer;
   border: none;
   text-align: center;
   letter-spacing: 0.3px;
}

.btn--primary {
   background: linear-gradient(180deg, rgb(34, 133, 114) 0%, rgb(18, 94, 86) 100%);
   color: var(--white);
   border: 1px solid rgba(255, 255, 255, 0.15);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3);
   background: linear-gradient(180deg, rgb(40, 150, 130) 0%, rgb(20, 110, 100) 100%);
}

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

.btn--secondary:hover {
   background: #0d1b5e;
   transform: translateY(-2px);
}

.btn--outline {
   background: rgba(13, 27, 42, 0.4);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.3);
   color: #ffffff;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn--outline:hover {
   background: rgba(13, 27, 42, 0.6);
   border-color: rgba(255, 255, 255, 0.5);
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
   color: #ffffff;
}

.header--scrolled .btn--outline {
   color: var(--primary-color);
   border-color: var(--primary-color);
}

.header--scrolled .btn--outline:hover {
   background: var(--primary-color);
   color: var(--white);
}

.btn--light {
   background: var(--white);
   color: var(--primary-color);
}

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

.btn--whatsapp {
   background: linear-gradient(180deg, rgb(34, 133, 114) 15%, rgb(18, 94, 86) 100%);
   color: var(--white);
   padding: 18px 36px;
   font-size: 1.15rem;
   font-weight: 700;
   border: 1px solid rgba(255, 255, 255, 0.2);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn--whatsapp:hover {
   background: linear-gradient(180deg, rgb(40, 150, 130) 15%, rgb(20, 110, 100) 100%);
   transform: translateY(-3px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn--large {
   padding: 16px 32px;
   font-size: 1.05rem;
}

.btn--small {
   padding: 10px 18px;
   font-size: 0.9rem;
}

.btn--full {
   width: 100%;
}

/* header.css */
.header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   background: transparent;
   transition: var(--transition);
}

.header--scrolled {
   background: var(--white);
   box-shadow: var(--shadow);
}

.nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 15px 30px;
   max-width: 1600px;
   margin: 0 auto;
}

.nav__logo {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 1.2rem;
   font-weight: 600;
   color: var(--white);
   text-decoration: none;
   transition: var(--transition);
   flex-shrink: 0;
}

.nav__logo-img {
   height: 45px;
   width: auto;
   aspect-ratio: 1 / 1;
   border-radius: 50%;
   object-fit: cover;
   border: 1px solid rgba(255, 255, 255, 0.2);
}

.header--scrolled .nav__logo {
   color: var(--primary-color);
}

.nav__menu {
   display: none;
}

.nav__list {
   display: flex;
   gap: 25px;
   list-style: none;
   margin: 0;
   padding: 0;
}

.nav__link {
   color: var(--white);
   font-weight: 500;
   position: relative;
   text-decoration: none;
   transition: var(--transition);
}

.header--scrolled .nav__link {
   color: var(--text-dark);
}

.nav__link:hover {
   color: var(--accent-color);
}

.header--scrolled .nav__link:hover {
   color: var(--primary-color);
}

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

.nav__link:hover::after {
   width: 100%;
}

.nav__cta {
   display: none;
   gap: 10px;
}

/* Burger Menu Toggle Styles */
.nav__toggle {
   display: flex;
   background: transparent;
   border: none;
   color: var(--white);
   font-size: 1.5rem;
   cursor: pointer;
   transition: var(--transition);
   z-index: 1001;
   padding: 5px;
   width: 40px;
   height: 40px;
   align-items: center;
   justify-content: center;
}

.header--scrolled .nav__toggle {
   color: var(--primary-color);
}

.nav__actions {
   display: flex;
   align-items: center;
   gap: 15px;
}

.nav__social-header {
   color: var(--white);
   font-size: 1.3rem;
   transition: var(--transition);
   display: flex;
   align-items: center;
   justify-content: center;
}

.header--scrolled .nav__social-header {
   color: var(--primary-color);
}

.nav__social-header:hover {
   color: var(--accent-color);
   transform: translateY(-2px);
}

.nav__toggle:hover {
   color: var(--accent-color);
}

/* Hide social containers by default, show via media queries */
.nav__cta-socials,
.nav__menu-socials {
   display: none;
}

.nav__actions {
   display: none;
   /* Hide by default on desktop */
   align-items: center;
   gap: 15px;
}

/* Mobile Menu Base Styles */
@media (max-width: 1510px) {
   .nav__menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 350px;
      height: 100vh;
      background: var(--white);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
      padding: 100px 40px;
      transition: 0.4s ease-in-out;
      z-index: 1000;
      display: block;
   }

   .nav__menu.show-menu {
      right: 0;
   }

   .nav__list {
      flex-direction: column;
      gap: 30px;
   }

   .nav__link {
      color: var(--text-dark);
      font-size: 1.2rem;
   }

   .nav__link:hover {
      color: var(--primary-color);
   }

   .nav__menu-socials {
      display: flex !important;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
   }

   .nav__cta-socials {
      display: none !important;
   }

   .nav__menu-socials .nav__social-header {
      color: var(--primary-color);
      font-size: 1.5rem;
   }

   .nav__actions {
      display: flex;
      margin-left: 10px;
   }

   .nav__cta {
      display: flex;
      gap: 15px;
      margin-left: auto;
   }

   /* Ensure the logo and toggle/cta don't crash */
   .nav {
      justify-content: space-between;
      gap: 10px;
      align-items: center;
   }
}

@media (max-width: 650px) {
   .nav__cta {
      display: none;
   }
}

.nav__cta .btn--nav {
   padding: 10px 18px;
   font-size: 0.9rem;
}

.nav__cta .btn--outline {
   border-color: rgba(255, 255, 255, 0.6);
   background: rgba(255, 255, 255, 0.1);
}

.nav__cta .btn--outline:hover {
   background: var(--white);
   color: var(--primary-color);
}

.header--scrolled .nav__cta .btn--outline {
   border-color: var(--primary-color);
   background: transparent;
}

.header--scrolled .nav__cta .btn--outline:hover {
   background: var(--primary-color);
   color: var(--white);
}

@media (min-width: 700px) {
   .nav {
      padding: 10px 15px;
   }

   .nav__menu {
      display: none;
   }

   .nav__cta {
      display: flex;
      gap: 6px;
   }

   .nav__logo {
      font-size: 1.05rem;
      gap: 5px;
   }

   .nav__cta .btn--nav {
      padding: 8px 10px !important;
      font-size: 0.8rem !important;
      gap: 4px;
   }

   .nav__logo-extra,
   .nav__cta-extra,
   .hero-badge-extra {
      display: none;
   }
}

@media (min-width: 850px) {
   .nav {
      padding: 20px 30px;
   }

   .nav__logo {
      font-size: 1.35rem;
      gap: 10px;
   }

   .nav__logo-extra,
   .nav__cta-extra,
   .hero-badge-extra {
      display: inline;
   }

   .nav__cta {
      gap: 15px;
   }

   .nav__cta .btn--nav {
      padding: 10px 18px !important;
      font-size: 0.9rem !important;
      gap: 8px;
   }
}


@media (min-width: 1511px) {
   .nav {
      padding: 20px 40px;
   }

   .nav__toggle {
      display: none;
   }

   .nav__menu {
      display: flex !important;
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      padding: 0;
      box-shadow: none;
      z-index: auto;
   }

   .nav__menu-socials {
      display: none !important;
   }

   .nav__cta-socials {
      display: flex !important;
      align-items: center;
      gap: 15px;
      margin-right: 15px;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
      padding-right: 15px;
   }

   .header--scrolled .nav__cta-socials {
      border-color: rgba(0, 0, 0, 0.1);
   }

   .nav__actions {
      display: none;
   }

   .nav__cta {
      display: flex;
      gap: 20px;
   }

   .nav__list {
      gap: 50px;
   }

   .nav__link {
      font-size: 1.05rem;
      letter-spacing: 0.3px;
   }

   .nav__cta .btn {
      padding: 14px 24px;
      font-size: 1rem;
   }
}

@media (max-width: 767px) {
   .nav {
      padding: 12px 15px;
   }

   .nav__logo {
      font-size: 1.1rem;
   }
}

/* hero.css */
.hero-services {
   position: relative;
   min-height: 100vh;
   display: flex;
   flex-direction: column;
   background: linear-gradient(135deg, hsl(210 80% 25%) 0%, hsl(195 75% 35%) 100%);
   padding-top: 95px;
   padding-bottom: 20px;
   width: 100%;
   align-items: stretch;
}

.hero-services__bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   opacity: 0.4;
   z-index: 0;
}

.hero-services__bg img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
}

.hero-services__overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, hsla(210, 80%, 25%, 0.85) 0%, hsla(195, 75%, 35%, 0.8) 100%);
   z-index: 1;
}

.hero-services__header {
   position: relative;
   z-index: 2;
   text-align: left;
   padding: 0 60px 40px;
   /* Reduced from 70px */
   flex-shrink: 0;
   max-width: 800px;
   width: 100%;
}

.hero-services__badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgb(37, 106, 137);
   backdrop-filter: blur(10px);
   padding: 10px 20px;
   border-radius: 50px;
   font-size: 0.85rem;
   color: #ffffff;
   margin-bottom: 18px;
   border: 1px solid rgb(37, 122, 141);
}

.hero-services__title {
   font-size: 2.5rem;
   font-weight: 900;
   /* Max boldness */
   color: #ffffff;
   margin-bottom: 15px;
   line-height: 1.15;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-teal {
   color: #4db6ac !important;
}

.hero-services__subtitle {
   font-size: 1.1rem;
   color: rgba(255, 255, 255, 0.9);
   margin-bottom: 30px;
   max-width: 600px;
}

.hero-services__trust-badges {
   display: flex;
   flex-wrap: wrap;
   justify-content: flex-start;
   gap: 40px;
   margin-bottom: 45px;
}

.hero-services__trust-item {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.9rem;
   color: #ffffff;
}

.hero-services__trust-stars i {
   color: #ffc107;
   font-size: 0.85rem;
}

.hero-services__trust-item.check i {
   color: #4db6ac;
}

.hero-services__cta-group {
   display: flex;
   flex-wrap: wrap;
   justify-content: flex-start;
   gap: 5px;
   /* Reduced from 18px */
   margin-bottom: 12px;
   /* Reduced from 25px */
}

.hero-services__action-phrase {
   position: relative;
   z-index: 2;
   padding: 12px 20px;
   margin: 0 60px 15px;
   display: flex;
   align-items: center;
   background: linear-gradient(90deg, rgba(71, 167, 159, 0.15) 0%, rgba(71, 167, 159, 0) 100%);
   border-left: 4px solid rgb(71, 167, 159);
   border-radius: 4px;
   color: #ffffff;
}

.hero-services__action-phrase p {
   font-size: 1.25rem;
   font-weight: 600;
   letter-spacing: 0.3px;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-services__cards {
   position: relative;
   z-index: 10;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
   padding: 0 60px;
   flex-grow: 1;
   width: 100%;
   max-width: 100% !important;
   margin-top: auto;
}

.service-card {
   position: relative;
   border-radius: 14px;
   overflow: hidden;
   width: 100%;
   height: 380px;
   /* Increased from 300px */
   flex-shrink: 0;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card__image {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.service-card__overlay {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.75) 55%, rgba(13, 27, 42, 0) 100%);
   padding: 24px 16px 16px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   height: 100%;
}

.service-card__icon-title {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 9px;
}

.service-card__icon-circle {
   width: 28px;
   height: 28px;
   background: #4db6ac;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.service-card__icon-circle i {
   font-size: 0.8rem;
   color: #ffffff;
}

.service-card__name {
   font-size: 1.05rem;
   font-weight: 600;
   color: #ffffff;
   margin: 0;
}

.service-card__description {
   font-size: 0.78rem;
   color: rgba(255, 255, 255, 0.95);
   /* Increased opacity for accessibility */
   line-height: 1.48;
   margin-bottom: 12px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.service-card__cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   font-size: 0.85rem;
   font-weight: 600;
   color: #ffffff;
   background: linear-gradient(180deg, rgb(71, 167, 159) 0%, rgb(50, 130, 120) 100%);
   backdrop-filter: blur(4px);
   padding: 12px 20px;
   border-radius: 10px;
   text-decoration: none;
   transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   cursor: pointer;
   border: 1px solid rgba(255, 255, 255, 0.2);
   width: fit-content;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card__cta:hover {
   background: linear-gradient(180deg, rgb(80, 180, 170) 0%, rgb(60, 140, 130) 100%);
   color: #ffffff;
   text-decoration: none;
   transform: scale(1.05);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-card__cta i {
   font-size: 0.75rem;
   transition: transform 0.2s ease;
}

.service-card__cta:hover i {
   transform: translateX(3px);
}

@media (max-width: 1200px) {
   .hero-services__cards {
      padding: 0 30px;
      gap: 20px;
   }
}

@media (max-width: 1024px) {
   .hero-services__cards {
      padding: 0 40px;
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   .hero-services {
      padding-top: 82px;
      padding-bottom: 40px;
   }

   .hero-services__title {
      font-size: 1.55rem;
   }

   .hero-services__subtitle {
      font-size: 0.95rem;
   }

   .hero-services__trust-badges {
      gap: 30px;
   }

   .hero-services__trust-item {
      font-size: 0.82rem;
   }

   .hero-services__cta-group {
      gap: 15px;
   }

   .hero-services__cards {
      padding: 0 30px;
      grid-template-columns: repeat(2, 1fr) !important;
      display: grid !important;
   }

   .service-card {
      height: 290px;
   }
}

@media (max-width: 530px) {
   .hero-services {
      padding-top: 72px;
      padding-bottom: 32px;
   }

   .hero-services__header {
      padding: 0 25px 40px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
   }


   .hero-services__title {
      font-size: 2.2rem;
      line-height: 1.25;
      padding: 0;
      margin-bottom: 15px;
   }

   .hero-services__subtitle {
      font-size: 0.95rem;
      padding: 0;
      margin: 0 auto 20px;
   }

   .hero-services__trust-badges {
      justify-content: center;
      gap: 15px;
      margin-bottom: 25px;
   }

   .hero-services__trust-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 4px;
   }

   .hero-services__cta-group {
      justify-content: center;
      width: 100%;
      flex-direction: column;
      gap: 12px;
   }

   .hero-services__cta-group .btn {
      width: 100%;
      max-width: 100%;
      margin: 0;
   }

   .hero-services__cards {
      padding: 0 25px;
      grid-template-columns: 1fr;
   }

   .service-card {
      aspect-ratio: 16 / 9;
      height: auto;
   }

   /* Mobile Carousel for Service Cards */
   .hero-services__cards {
      display: flex !important;
      flex-wrap: nowrap !important;
      overflow-x: auto !important;
      scroll-snap-type: x mandatory !important;
      gap: 15px !important;
      padding: 0 25px 30px !important;
      /* Extra padding for bottom shadow */
      -webkit-overflow-scrolling: touch !important;
      scrollbar-width: none !important;
      margin-top: 20px !important;
      width: 100% !important;
   }

   .hero-services__cards::-webkit-scrollbar {
      display: none !important;
   }

   .service-card {
      flex: 0 0 calc(85% - 10px);
      scroll-snap-align: center;
      height: 320px;
      margin-bottom: 0px;
      cursor: pointer;
      /* Feedback for clicking */
   }

   /* Hide only description on mobile card to prioritize image, but keep CTA */
   .service-card__description {
      display: none !important;
   }

   .service-card__cta {
      margin-top: auto;
      font-weight: 700;
      background: rgb(71, 167, 159);
      /* Requested Teal */
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 10px;
      width: 100%;
      /* Better touch area */
      display: flex !important;
      justify-content: center;
      border: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
   }

   .hero-services__action-phrase {
      padding: 10px 15px;
      margin: 0 25px 10px;
      background: rgba(71, 167, 159, 0.12);
      border-left: 4px solid rgb(71, 167, 159);
   }

   .hero-services__action-phrase p {
      font-size: 1.05rem;
   }
}

/* Modal Styles Refined */
/* Modal Styles - Vertical Stack (Fixed Specficity) */
#imageModal.image-modal {
   position: fixed !important;
   top: 0 !important;
   left: 0 !important;
   width: 100% !important;
   height: 100% !important;
   background: rgba(13, 27, 42, 0.85) !important;
   display: none;
   justify-content: center !important;
   align-items: center !important;
   z-index: 9999 !important;
   opacity: 0;
   transition: opacity 0.3s ease;
   backdrop-filter: blur(8px) !important;
   padding: 20px;
}

#imageModal.image-modal--active {
   display: flex !important;
   opacity: 1 !important;
}

#imageModal .modal-content-wrapper {
   position: relative !important;
   max-width: 600px !important;
   width: 100% !important;
   background: rgb(13, 27, 42) !important;
   border-radius: 20px !important;
   overflow: hidden !important;
   box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8) !important;
   display: flex !important;
   flex-direction: column !important;
   border: 1px solid rgba(255, 255, 255, 0.1);
}

#imageModal .modal-container {
   width: 100% !important;
   display: flex !important;
   flex-direction: column !important;
}

#imageModal .modal-image {
   width: 100% !important;
   height: auto !important;
   max-height: 450px !important;
   object-fit: contain !important;
   background: rgb(13, 27, 42) !important;
}

#imageModal .modal-details {
   padding: 30px 40px 40px !important;
   color: #ffffff !important;
   background: rgb(13, 27, 42) !important;
}

#imageModal .modal-header-info {
   display: flex !important;
   align-items: center !important;
   gap: 15px !important;
   margin-bottom: 12px !important;
}

#imageModal #modalTitle {
   font-size: 1.8rem !important;
   font-weight: 850 !important;
   color: #ffffff !important;
   margin: 0 !important;
}

#imageModal .modal-icon-container {
   width: 42px !important;
   height: 42px !important;
   background: rgb(71, 167, 159) !important;
   border-radius: 50% !important;
   display: flex !important;
   align-items: center !important;
   justify-content: center !important;
}

#imageModal #modalDesc {
   font-size: 1rem !important;
   line-height: 1.6 !important;
   margin-bottom: 25px !important;
   color: rgba(255, 255, 255, 0.9) !important;
}

#imageModal .close-modal {
   position: absolute !important;
   top: 15px !important;
   right: 20px !important;
   font-size: 35px !important;
   color: #ffffff !important;
   cursor: pointer !important;
   z-index: 100 !important;
   background: rgba(0, 0, 0, 0.5) !important;
   width: 40px !important;
   height: 40px !important;
   display: flex !important;
   align-items: center !important;
   justify-content: center !important;
   border-radius: 50% !important;
}

@media (min-width: 1025px) {
   .service-card__image {
      cursor: pointer;
   }
}

/* before-after.css */
.before-after {
   padding: 50px 0;
   scroll-margin-top: 80px;
   background: #ffffff;
   position: relative;
   overflow: hidden;
}

.before-after .section__header {
   text-align: center;
   margin-bottom: 30px;
}

.before-after .section__title {
   color: #0d1b2a;
}

.before-after .section__subtitle {
   color: #546e7a;
}

.before-after__gallery {
   position: relative;
   width: 100%;
   padding: 0 70px;
}

.before-after__nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 50px;
   height: 50px;
   background: #ffffff;
   border: none;
   border-radius: 50%;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
   z-index: 10;
}

.before-after__nav:hover {
   background: #4db6ac;
   box-shadow: 0 6px 25px rgba(77, 182, 172, 0.35);
}

.before-after__nav:hover .before-after__nav-icon {
   color: #ffffff;
}

.before-after__nav--prev {
   left: 0;
}

.before-after__nav--next {
   right: 0;
}

.before-after__nav-icon {
   font-size: 1.1rem;
   color: #0d1b2a;
}

.before-after__track {
   display: flex;
   width: 100%;
}

.before-after__slide {
   flex: 0 0 100%;
   width: 100%;
   opacity: 0;
   visibility: hidden;
   position: absolute;
   top: 0;
   left: 0;
   transition: opacity 0.3s ease, visibility 0.3s ease;
   pointer-events: none;
}

.before-after__slide--active {
   opacity: 1;
   visibility: visible;
   position: relative;
   pointer-events: auto;
}

.before-after__card {
   background: #ffffff;
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
   max-width: 800px;
   margin: 0 auto;
}

.before-after__slider {
   position: relative;
   width: 100%;
   height: 450px;
   overflow: hidden;
   cursor: ew-resize;
   user-select: none;
   background: #e0e0e0;
}

.before-after__image {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
}

.before-after__image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   position: absolute;
   top: 0;
   left: 0;
}

.before-after__image--before {
   z-index: 2;
   clip-path: inset(0 50% 0 0);
}

.before-after__image--after {
   z-index: 1;
}

.before-after__label {
   position: absolute;
   top: 15px;
   padding: 6px 14px;
   background: rgba(0, 0, 0, 0.6);
   backdrop-filter: blur(8px);
   color: #ffffff;
   font-size: 0.75rem;
   font-weight: 600;
   text-transform: uppercase;
   border-radius: 20px;
   z-index: 10;
}

.before-after__label--before {
   left: 15px;
}

.before-after__label--after {
   right: 15px;
}

.before-after__handle {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 50%;
   width: 50px;
   transform: translateX(-50%);
   z-index: 5;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   pointer-events: none;
}

.before-after__handle-line {
   width: 3px;
   flex-grow: 1;
   background: #ffffff;
}

.before-after__handle-circle {
   width: 44px;
   height: 44px;
   background: #ffffff;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.before-after__handle-circle i {
   font-size: 0.65rem;
   color: #0d1b2a;
}

.before-after__info {
   padding: 20px 25px;
   text-align: center;
}

.before-after__name {
   font-size: 1.15rem;
   font-weight: 600;
   color: #0d1b2a;
}

.before-after__location {
   font-size: 0.9rem;
   color: #455a64;
   /* Darkened from #78909c for accessibility */
}

.before-after__dots {
   display: flex;
   justify-content: center;
   gap: 10px;
   margin-top: 30px;
}

.before-after__dot {
   width: 10px;
   height: 10px;
   background: #cfd8dc;
   border: none;
   border-radius: 50%;
   cursor: pointer;
   transition: var(--transition);
}

.before-after__dot--active {
   background: #4db6ac;
   width: 30px;
   border-radius: 5px;
}

@media (max-width: 900px) {
   .before-after__slider {
      height: 400px;
   }
}

@media (max-width: 768px) {
   .before-after__gallery {
      padding: 0 60px;
   }

   .before-after__slider {
      height: 350px;
   }
}

@media (max-width: 480px) {
   .before-after__gallery {
      padding: 0 55px;
   }

   .before-after__slider {
      height: 280px;
   }
}

/* sections.css */
.section__header {
   text-align: center;
   margin-bottom: 30px;
}

.section__title {
   font-size: 2rem;
   margin-bottom: 15px;
   position: relative;
   display: inline-block;
}

.footer__logo-img {
   height: 35px;
   width: auto;
   aspect-ratio: 1 / 1;
   border-radius: 50%;
   vertical-align: middle;
   margin-right: 10px;
   object-fit: cover;
   border: 1px solid rgba(255, 255, 255, 0.1);
}

.section__subtitle {
   font-size: 1.1rem;
   color: var(--text-light);
}

.servicios {
   padding: 50px 0;
   scroll-margin-top: 80px;
   background: var(--light-bg);
   width: 100%;
}

.servicios .container {
   max-width: 100%;
   padding: 0;
}

.servicios__grid {
   display: grid;
   grid-template-columns: repeat(1, 1fr);
   gap: 35px;
   width: 100%;
   padding: 0 30px;
   justify-content: center;
}

.servicio__card {
   background: var(--white);
   border-radius: var(--border-radius);
   box-shadow: var(--shadow);
   transition: var(--transition);
   overflow: hidden;
   display: flex;
   flex-direction: column;
   width: 100%;
}

.servicio__image {
   width: calc(100% - 40px);
   margin: 15px auto 0;
   height: 250px;
   overflow: hidden;
   position: relative;
   background: #e0e0e0;
   border-radius: var(--border-radius);
   display: flex;
   align-items: center;
   justify-content: center;
}

.servicio__image img {
   width: 100%;
   height: 100%;
   object-fit: contain;
   transition: var(--transition);
}

.servicio__content {
   padding: 25px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
}

.servicio__title {
   font-size: 1.35rem;
   margin-bottom: 15px;
   color: var(--text-dark);
}

.servicio__description {
   color: var(--text-light);
   margin-bottom: 20px;
   line-height: 1.7;
}

.ventajas {
   padding: 60px 0;
   scroll-margin-top: 80px;
   background: var(--white);
}

.ventajas__grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 25px;
   margin-bottom: 30px;
}

.ventaja__item {
   display: flex;
   align-items: center;
   gap: 20px;
   padding: 25px;
   background: var(--light-bg);
   border-radius: var(--border-radius-sm);
   transition: var(--transition);
}

.ventaja__icon {
   width: 60px;
   height: 60px;
   background: var(--primary-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   /* Prevent stretching */
}

.ventaja__icon i {
   font-size: 1.5rem;
   color: var(--white);
}

.ventajas__footer {
   text-align: center;
   font-size: 1.1rem;
   color: var(--primary-color);
   font-weight: 500;
   margin-top: 20px;
}

.pagos {
   padding: 50px 0;
   background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
   color: var(--white);
}

.pagos .section__title,
.pagos .section__subtitle {
   color: var(--white);
}

.pagos__grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 25px;
   margin-bottom: 25px;
}

.pago__item {
   text-align: center;
   padding: 30px 20px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: var(--border-radius);
   backdrop-filter: blur(10px);
   transition: var(--transition);
}

.pago__item i {
   font-size: 2.5rem;
   margin-bottom: 15px;
   color: var(--accent-color);
}

.pago__item h3 {
   color: var(--white);
   font-size: 1.1rem;
   /* Slightly larger for readability */
   margin: 0;
}

.pagos__text {
   text-align: center;
   color: var(--white);
   margin-top: 20px;
   font-size: 1.1rem;
}

/* before-after.css expansion */
.services-seo-text {
   max-width: 800px;
   margin: 0 auto 40px;
   text-align: center;
   color: var(--text-light);
   line-height: 1.8;
   font-size: 1.05rem;
}

.services-seo-text strong {
   color: var(--primary-color);
}

.testimonios {
   padding: 60px 0;
   scroll-margin-top: 80px;
   background: var(--light-bg);
   overflow: hidden;
}

.testimonios__track {
   display: flex;
   gap: 30px;
   animation: scrollLeft 30s linear infinite;
   width: max-content;
   padding: 0 30px;
}

@keyframes scrollLeft {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(calc(-33.333% - 20px));
   }
}

.testimonio__card {
   background: var(--white);
   padding: 35px 30px;
   border-radius: var(--border-radius);
   box-shadow: var(--shadow);
   width: 100%;
   max-width: 380px;
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.testimonio__avatar {
   width: 50px;
   height: 50px;
   background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   font-size: 1.2rem;
   font-weight: 600;
}

.faq {
   padding: 60px 0;
   scroll-margin-top: 80px;
   background: var(--white);
}

.faq__list {
   max-width: 800px;
   margin: 0 auto;
}

.faq__item {
   margin-bottom: 15px;
   background: var(--light-bg);
   transition: var(--transition);
}

.faq__item summary {
   padding: 25px 30px;
   cursor: pointer;
   font-weight: 500;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.faq__item summary::after {
   content: '+';
   font-size: 1.5rem;
   color: var(--primary-color);
}

.faq__item[open] summary::after {
   content: '-';
}

.faq__item p {
   padding: 0 30px 25px;
   /* Horizontal padding matches summary, bottom padding for spacing */
   line-height: 1.6;
   color: var(--text-light);
}

.cta-final {
   padding: 60px 0;
   background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
   text-align: center;
   color: var(--white);
}

.cta-final__title {
   font-size: 2.25rem;
   margin-bottom: 20px;
   color: var(--white);
}

.cta-final__buttons {
   display: flex;
   flex-direction: column;
   gap: 15px;
   align-items: center;
   justify-content: center;
   margin: 10px;
   /* Centering children */
}

/* High contrast for final WhatsApp button */
.cta-final .btn--whatsapp-alt {
   background: var(--white);
   color: #075e54;
   border: 2px solid var(--white);
   padding: 16px 32px;
   font-size: 1.1rem;
   font-weight: 600;
}

.cta-final .btn--whatsapp-alt:hover {
   background: transparent;
   color: var(--white);
   transform: translateY(-3px);
   box-shadow: var(--shadow-lg);
}

/* footer.css */
.footer {
   background: var(--text-dark);
   color: var(--white);
   padding: 60px 0 0;
}

.footer__content {
   display: grid;
   gap: 40px;
   margin-bottom: 40px;
}

.footer__brand h3 {
   color: var(--white);
   margin-bottom: 15px;
   display: flex;
   align-items: center;
   gap: 10px;
}

.footer__brand p {
   opacity: 0.8;
   line-height: 1.7;
}

.footer__contact h4,
.footer__social h4 {
   color: var(--white);
   margin-bottom: 20px;
   font-size: 1.1rem;
}

.footer__contact p {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 12px;
   opacity: 0.8;
}

.footer__contact i {
   color: var(--primary-light);
   width: 20px;
}

.social__icons {
   display: flex;
   gap: 15px;
}

.social__link {
   width: 45px;
   height: 45px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
}

.social__link:hover {
   background: var(--primary-color);
   transform: translateY(-3px);
}

.footer__bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding: 25px 0;
   text-align: center;
}

/* components.css */
.whatsapp-float {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 60px;
   height: 60px;
   background: #25d366;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: var(--shadow-lg);
   z-index: 1000;
}

.whatsapp-float:hover {
   transform: scale(1.1);
}

.whatsapp-float i {
   font-size: 1.75rem;
   color: var(--white);
}

/* animations.css */
@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes fadeIn {
   from {
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}

@keyframes pulse {

   0%,
   100% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.05);
   }
}

.fade-in {
   animation: fadeIn 0.5s ease forwards;
}

.fade-in-up {
   animation: fadeInUp 0.6s ease forwards;
}

.pulse {
   animation: pulse 2s ease-in-out infinite;
}

/* responsive.css */
@media (min-width: 700px) {
   .servicios__grid {
      grid-template-columns: repeat(1, calc(50% - 50px));
      gap: 40px;
      padding: 0 40px;
   }

   /* Ventajas and Pagos handled by fluid auto-fit globally */

   .cta-final__buttons {
      flex-direction: row;
      justify-content: center;
      /* Desktop centering */
   }

   .footer__content {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (min-width: 1311px) {
   h1 {
      font-size: 3rem;
   }

   h2 {
      font-size: 2.5rem;
   }

   .servicios__grid {
      grid-template-columns: repeat(4, calc(25% - 50px));
   }

   /* Ventajas on ultra-wide can remain 6 if space allows, but auto-fit handles it */

   .ventaja__item {
      flex-direction: column;
      text-align: center;
   }

   .footer__content {
      grid-template-columns: 1.5fr 1fr 1fr;
   }
}

/* Mobile Adjustments (Double Check) */
@media (max-width: 480px) {
   .nav {
      padding: 12px 15px;
   }

   .nav__logo {
      font-size: 1.1rem;
   }

   .hero-services__header {
      padding: 0 20px 40px;
   }

   .hero-services__title {
      font-size: 1.4rem;
   }

   .hero-services__cards {
      padding: 0 15px;
      gap: 15px;
   }

   .servicio__card {
      padding: 30px 20px;
   }

   .cta-final__title {
      font-size: 1.75rem;
   }

   /* Refined Ventajas Sizing */
   .ventaja__item {
      padding: 15px 20px;
      gap: 15px;
   }

   .ventaja__icon {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      /* Force circular shape even with long text */
   }

   .ventaja__icon i {
      font-size: 1.2rem;
   }

   .ventaja__item h4 {
      font-size: 1rem;
   }

   /* Refined Pagos Sizing */
   .pago__item {
      padding: 20px 15px;
   }

   .pago__item i {
      font-size: 2rem;
   }

   /* Refined Section Headers */
   .section__title {
      font-size: 1.6rem;
      margin-bottom: 10px;
   }

   .section__subtitle {
      font-size: 0.95rem;
   }
}

/* utilities.css */
.text-center {
   text-align: center;
}

.mt-20 {
   margin-top: 20px;
}

.mb-20 {
   margin-bottom: 20px;
}

.shadow-lg {
   box-shadow: var(--shadow-lg);
}

.pointer {
   cursor: pointer;
}