@font-face {
  font-family: 'Stolzl';
  src:
    url('./fonts/Stolzl-Light.otf') format('opentype'),
    url('./fonts/Stolzl-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stolzl';
  src:
    url('./fonts/Stolzl-Book.otf') format('opentype'),
    url('./fonts/Stolzl-Book.ttf') format('truetype');
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stolzl';
  src:
    url('./fonts/Stolzl-Regular.otf') format('opentype'),
    url('./fonts/Stolzl-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stolzl';
  src:
    url('./fonts/Stolzl-Medium.otf') format('opentype'),
    url('./fonts/Stolzl-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stolzl';
  src:
    url('./fonts/Stolzl-Bold.otf') format('opentype'),
    url('./fonts/Stolzl-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* VARIABLES  */
:root {
  /* Colores */
  --color-primary: #ed3237;
  --color-secondary: #3259a2;
  --color-text: #34393a;
  --color-muted: #5E5E5E;
  --color-bg: #ffffff;

  /* Tipografía */
  --font-base: 'Stolzl', system-ui, -apple-system, sans-serif;

  /* Spacing (escala) */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;

  /* Bordes */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* BASE */
body {
  font-family: var(--font-base);
  font-weight: 350;
  color: var(--color-text);
  background: var(--color-bg);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  overflow: visible;
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.14);
  z-index: 2000;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.12;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.3rem;
}

h3 {
  font-size: 2.6rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.1rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  margin-bottom: -5rem;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header .navbar {
  padding: 1rem var(--space-xl);
  background: transparent;
}

.site-header .navbar-brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  text-decoration: none;
}

.site-header .custom-logo {
  display: block;
  width: auto;
  max-height: 40px;
}

.site-header .nav-link {
  color: var(--color-secondary);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.75rem 1rem;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--color-primary);
}

.site-header .nav-link.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 14px 30px rgba(237, 50, 55, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.site-header .nav-link.menu-cta:hover,
.site-header .nav-link.menu-cta.active,
.site-header .nav-link.menu-cta:focus-visible {
  background: #ff4449;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(237, 50, 55, 0.26);
}

.site-header .nav-link.menu-cta:focus-visible {
  outline: 3px solid rgba(50, 89, 162, 0.24);
  outline-offset: 4px;
}

.site-header .dropdown-menu {
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
  padding: 0.75rem;
}

.site-header .dropdown-item {
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 0.75rem;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item.active {
  background: rgba(34, 183, 18, 0.1);
  color: var(--color-primary);
}

.site-header .navbar-toggler {
  border: 0;
  padding: 0.5rem;
}

.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(34, 183, 18, 0.18);
}

/* SECTIONS */
.section {
  position: relative;
  padding: var(--space-xxl) var(--space-xl);
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  background-color: var(--section-bg-color, transparent);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section.has-section-background-image.has-section-background-fade-before::before,
.section.has-section-background-image.has-section-background-fade-after::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  height: clamp(5rem, 12vw, 10rem);
  pointer-events: none;
}

.section.has-section-background-image.has-section-background-fade-before::before {
  top: -1px;
  background: linear-gradient(
    to bottom,
    var(--section-prev-bg, var(--color-bg)),
    rgba(255, 255, 255, 0)
  );
}

.section.has-section-background-image.has-section-background-fade-after::after {
  bottom: -1px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    var(--section-next-bg, var(--color-bg))
  );
}

.section.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section[id] {
  scroll-margin-top: 6rem;
}

.admin-bar .section[id] {
  scroll-margin-top: 8rem;
}

.section--sm {
  padding: var(--space-lg) 0;
}

.section--lg {
  padding: calc(var(--space-xl) * 1.5) 0;
}

/* TYPOGRAPHY HELPERS */
.font-stolzl-light,
.fw-stolzl-light {
  font-weight: 300;
}

.font-stolzl-book,
.fw-stolzl-book {
  font-weight: 350;
}

.font-stolzl-regular,
.fw-stolzl-regular {
  font-weight: 400;
}

.font-stolzl-medium,
.fw-stolzl-medium {
  font-weight: 500;
}

.font-stolzl-bold,
.fw-stolzl-bold {
  font-weight: 700;
}

.text-muted {
  color: var(--color-muted);
}

.section-content > :last-child {
  margin-bottom: 0;
}

.section-content ul,
.section-content ol {
  padding-left: 1.25rem;
}

.section-content a {
  color: var(--color-primary);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

/* BUTTON SYSTEM */
.btn-custom {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius-xl);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary */
.btn-primary-custom {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
}

.btn-primary-custom:hover {
  opacity: 0.9;
}

.text-primary{
    color: var(--color-secondary)!important;
}

/* Secondary */
.btn-secondary-custom {
  background-color: var(--color-secondary);
  color: #fff;
}

/* Outline */
.btn-outline-custom {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline-custom:hover {
  background: var(--color-primary);
  color: #fff;
}

/* IMAGE STYLES */
.img-rounded {
  border-radius: var(--radius-lg);
}

.img-soft {
  border-radius: var(--radius-md);
}

/* LAYOUT HELPERS */
.gap-lg {
  gap: var(--space-lg);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  min-height: 75vh;
  padding-top: calc(var(--space-xl) + 3rem);
  padding-bottom: calc(var(--space-xl) + 1.5rem);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero > .container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(1.25rem, 4vw, 3.5rem);
  padding-right: clamp(1.25rem, 4vw, 3.5rem);
}


.hero img {
  object-fit: cover;
  height: 100%;
}

.hero-image-col {
  display: flex;
  min-height: 420px;
}

.hero img {
  border-radius: var(--radius-lg);
}

.hero-image-col {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hero .col-lg-5,
.hero .hero-image-col {
  opacity: 0;
  transition:
    opacity 0.75s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .col-lg-5 {
  transform: translate3d(0, 42px, 0);
}

.hero .hero-image-col {
  transform: translate3d(0, 56px, 0) scale(0.94);
}

.hero .hero-image-col:nth-child(2) {
  transition-delay: 0.1s;
}

.hero .hero-image-col:nth-child(3) {
  transition-delay: 0.2s;
}

.hero.is-visible .col-lg-5,
.hero.is-visible .hero-image-col {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/*SERVICES GRID*/
.services-shell {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(1.25rem, 4vw, 3.5rem);
  padding-right: clamp(1.25rem, 4vw, 3.5rem);
}

.services-header {
  display: block;
  margin-bottom: 2.5rem;
}

.services-header-main .eyebrow {
  margin-bottom: 0.5rem;
}

.services-header-main h2 {
  max-width: 11ch;
  margin-bottom: 1rem !important;
}

.services-header-main .text-muted {
  max-width: 75ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.services-grid-item {
  min-width: 0;
}

.services-grid-item:nth-child(5) {
  grid-column: 1;
}

.services-grid-item:nth-child(6) {
  grid-column: 2;
}

.services-grid-item:nth-child(7) {
  grid-column: 3;
}


.services .service-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: flex;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 240, 247, 0.98));
  border: 1px solid rgba(25, 29, 27, 0.08);
  border-radius: 14px;
  color: var(--color-text);
  padding: 1.65rem 1.15rem 1.85rem;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.service-card-surface {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.75)),
    var(--service-card-hover-image, none);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.3s ease, transform 0.4s ease;
  z-index: 0;
}

.service-card-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.85rem;
}

.services .service-card:hover,
.services .service-card:focus-visible {
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
  transform: translateY(-6px);
  color: #fff;
}

.services .service-card:hover .service-card-surface,
.services .service-card:focus-visible .service-card-surface {
  opacity: 1;
  transform: scale(1);
}

.services .service-card:focus-visible {
  outline: 3px solid rgba(50, 89, 162, 0.22);
  outline-offset: 3px;
}

.service-card-icon {
  width: 48%;
  aspect-ratio: 1 / 1;
  max-width: 108px;
  margin-bottom: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(237, 50, 55, 0.22);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.service-card-icon img {
  display: block;
  width: 56%;
  height: 56%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.services .service-card:hover .service-card-icon,
.services .service-card:focus-visible .service-card-icon {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.2);
  backdrop-filter: blur(10px);
}

.service-modal-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(237 50 55 / 100%);
  border-radius: var(--radius-md);
}

.service-modal-icon img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.service-card-title {
  margin: 0;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.service-card-description {
  margin: 0;
  color: inherit;
  font-size: 0.92rem;
  line-height: 1.45;
  opacity: 0.92;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.service-modal .modal-content {
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.2);
}

.service-modal .modal-header {
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid rgba(25, 29, 27, 0.08);
  padding: 2rem 2rem 1.5rem;
}

.service-modal-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-modal .modal-title {
  color: var(--color-secondary);
  font-size: 2rem;
}

.service-modal-body {
  color: var(--color-muted);
  line-height: 1.75;
  padding: 1.5rem 2rem 2rem;
}

.service-modal-body > :last-child {
  margin-bottom: 0;
}

/*HOW IT WORKS*/
.how-it-works {
  overflow: hidden;
}

.how-it-works-shell {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(1.25rem, 4vw, 3.5rem);
  padding-right: clamp(1.25rem, 4vw, 3.5rem);
}

.how-it-works-header {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.how-it-works-header h2 {
  margin-bottom: 0;
}

.how-it-works-cards {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
}

.how-step-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid rgba(25, 29, 27, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  transform: translateX(0);
  transition:
    box-shadow 0.3s ease,
    flex-grow 0.3s ease;
}

.how-step-card:hover,
.how-step-card:focus-within {
  flex-grow: 1.14;
  box-shadow: 0 26px 56px rgba(17, 24, 39, 0.14);
}

.how-step-card-media {
  position: relative;
  aspect-ratio: 5 / 4;
  margin-top: auto;
  overflow: hidden;
  border-radius: 18px;
}

.how-step-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-step-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.7rem;
}

.how-step-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(237, 50, 55, 0.12);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.how-step-card-title {
  margin: 0;
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1.05;
}

.how-step-card-text {
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/*SIDE BY SIDE*/
.side-by-side .row {
  --bs-gutter-x: clamp(2rem, 4vw, 5rem);
  --bs-gutter-y: 2rem;
}

.side-by-side .row > [class*="col-lg-6"]:last-child {
  padding-left: clamp(1rem, 2vw, 2rem);
}

.side-by-side img {
  border-radius: var(--radius-lg);
}

/*TESTIMONIALS*/
.testimonial-card {
  background: #f8f9fa;
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial-rating {
  color: #d0d5dd;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-rating .is-active {
  color: var(--color-primary);
}

.testimonial-quote {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 350;
  line-height: 1.7;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  object-fit: cover;
  margin-right: 1rem;
}

/*CTA BANNER*/
.cta-banner-box {
  background: #111827;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 6rem;
  overflow: hidden;
}

.cta-banner .eyebrow,
.cta-banner .cta-text {
  color: rgba(255, 255, 255, 0.76);
}

.cta-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.btn-outline-light-custom {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.btn-outline-light-custom:hover {
  border-color: #fff;
  background: #fff;
  color: #111827;
}

/* GOOGLE MAP */
.google-map {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.google-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.google-map-embed {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
}

.google-map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* FOOTER */
.site-footer {
  background: var(--color-secondary);
  color: #fff;
  padding: 1.5rem var(--space-xl);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.social-fab {
  position: fixed;
  right: clamp(1rem, 2.2vw, 2rem);
  bottom: clamp(1rem, 2.2vw, 2rem);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.social-fab-toggle {
  position: relative;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ed3237 0%, #d91f25 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(237, 50, 55, 0.3);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-fab-toggle:hover,
.social-fab-toggle:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(237, 50, 55, 0.36);
}

.social-fab-toggle:focus-visible {
  outline: 3px solid rgba(50, 89, 162, 0.28);
  outline-offset: 4px;
}

.social-fab-toggle-icon {
  position: absolute;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.social-fab-toggle-icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}

.social-fab-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
  order: -1;
}

.social-fab-link {
  min-width: 176px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.8rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.14);
  color: var(--color-text);
  text-decoration: none;
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.92);
  transition:
    opacity 0.22s ease,
    transform 0.28s ease,
    box-shadow 0.22s ease;
}

.social-fab-link:hover,
.social-fab-link:focus-visible {
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.18);
}

.social-fab-link:focus-visible {
  outline: 3px solid rgba(50, 89, 162, 0.22);
  outline-offset: 3px;
}

.social-fab-link-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  flex: 0 0 auto;
}

.social-fab-link-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.social-fab-link-label {
  font-size: 0.95rem;
  font-weight: 500;
}

.social-fab-link--whatsapp .social-fab-link-icon {
  background: #25d366;
}

.social-fab-link--instagram .social-fab-link-icon {
  background: linear-gradient(135deg, #fdc468 0%, #df4996 52%, #4f5bd5 100%);
}

.social-fab-link--tiktok .social-fab-link-icon {
  background: #111827;
}

.social-fab.is-open .social-fab-menu {
  pointer-events: auto;
}

.social-fab.is-open .social-fab-link {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.social-fab.is-open .social-fab-link:nth-child(2) {
  transition-delay: 0.04s;
}

.social-fab.is-open .social-fab-link:nth-child(3) {
  transition-delay: 0.08s;
}

.social-fab.is-open .social-fab-toggle-icon-open {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

.social-fab.is-open .social-fab-toggle-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ABOUT US */
.about-us-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.about-us .section-content ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0 0;
}

.about-us .section-content li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 1rem 3rem 1rem 2rem;
  color: var(--color-text);
  background: rgba(230, 243, 255, 0.45);
  border-radius: var(--radius-md);
  line-height: 1.45;
}

.about-us .section-content li::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 2px;
  background: rgba(50, 89, 162, 0.28);
  border-radius: 999px;
}

.about-us .section-content li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.95rem;
  width: 0.85rem;
  height: 0.85rem;
  background:
    radial-gradient(circle at center, #ffffff 0 26%, transparent 27%),
    var(--color-secondary);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(50, 89, 162, 0.12);
}

.about-us .section-content li:last-child {
  margin-bottom: 0;
}

.about-us-video-wrap {
  width: 100%;
  margin-top: var(--space-xl);
}

.about-us-video-trigger {
  position: relative;
  width: 100%;
  display: block;
  border: 0;
  border-radius: var(--radius-lg);
  background: #000;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.about-us-video-thumbnail {
  display: block;
  width: 100%;
  max-height: 720px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.about-us-video-trigger:hover .about-us-video-thumbnail,
.about-us-video-trigger:focus-visible .about-us-video-thumbnail {
  opacity: 0.86;
  transform: scale(1.02);
}

.about-us-video-trigger:focus-visible {
  outline: 3px solid rgba(50, 89, 162, 0.28);
  outline-offset: 4px;
}

.about-us-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(237, 50, 55, 0.94);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.18);
  transform: translate(-50%, -50%);
}

.about-us-video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 0.85rem solid transparent;
  border-bottom: 0.85rem solid transparent;
  border-left: 1.25rem solid #fff;
  transform: translate(-50%, -50%);
}

.about-us-video {
  display: block;
  width: 100%;
  max-height: 720px;
  background: #000;
  object-fit: cover;
}

/* CONTACT US */
.contact-form {
  background: #f8f9fa;
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-form .form-label {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form .form-control {
  border: 1px solid rgba(25, 29, 27, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-weight: 350;
  padding: 0.85rem 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.2rem rgba(50, 89, 162, 0.12);
}

.contact-submit {
  width: 100%;
  text-align: center;
}

.contact-content {
  padding: 1rem 0;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
  margin-top: var(--space-lg);
}

.contact-detail {
  border-left: 3px solid var(--color-primary);
  padding-left: 1rem;
}

.contact-detail h6 {
  margin-bottom: 0.35rem;
}

.contact-detail p {
  color: var(--color-muted);
  margin-bottom: 0;
}

.contact-detail a {
  color: var(--color-muted);
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--color-primary);
}

@media (prefers-reduced-motion: reduce) {
  .section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 1920px) {
  h1 {
    font-size: 4rem;
  }

  .services-header-main h2 {
    max-width: 14ch;
  }
}

@media (min-width: 1600px) {
  .hero {
    min-height: 68vh;
    padding-top: calc(var(--space-xl) + 4rem);
    padding-bottom: 1rem;
  }

  .hero-image-col {
    min-height: 380px;
  }
}

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

@media (max-width: 1366px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero {
    padding-top: calc(var(--space-xl) + 3.5rem);
    padding-bottom: calc(var(--space-xl) + 0.5rem);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
	
  .services-grid-item:nth-child(5), .services-grid-item:nth-child(6), .services-grid-item:nth-child(7) {
    	grid-column: auto;
  }


  .services-grid-item:last-child {
    grid-column: 1 / -1;
  }

  .how-it-works-cards {
    flex-wrap: wrap;
  }

  .how-step-card {
    flex: 1 1 calc(50% - 0.625rem);
  }

  .hero-image-col {
    min-height: 360px;
  }

  .hero > .container-fluid > .row {
    row-gap: 2.75rem;
  }

  .hero .col-lg-7 > .row {
    justify-content: center !important;
    --bs-gutter-y: 2rem;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.65rem;
  }

  h5 {
    font-size: 1.3rem;
  }

  h6 {
    font-size: 1rem;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .site-header .navbar {
    padding: 1rem;
  }

  .site-header .navbar-collapse {
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-md);
    margin-top: 1rem;
    padding: 0.75rem;
  }

  .site-header .navbar-collapse .nav-link {
    color: var(--color-text);
  }

  .site-header .navbar-collapse .nav-link.menu-cta {
    width: 100%;
    margin-top: 0.5rem;
    color: #fff;
  }

  .site-header .navbar-collapse .nav-link.menu-cta:hover,
  .site-header .navbar-collapse .nav-link.menu-cta.active,
  .site-header .navbar-collapse .nav-link.menu-cta:focus-visible {
    color: #fff;
  }

  .how-it-works-header {
    margin-bottom: 2rem;
  }

  .how-it-works-cards {
    flex-direction: column;
  }

  .how-step-card {
    flex: none;
    width: 100%;
    transform: none;
  }

  .how-step-card-title {
    font-size: 1.6rem;
  }

  .how-it-works-shell {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .site-header .navbar-collapse .nav-link:hover,
  .site-header .navbar-collapse .nav-link.active {
    color: var(--color-primary);
  }

  .services-header {
    margin-bottom: 2rem;
  }

  .services-header-main h2,
  .services-header-main .text-muted {
    max-width: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
	
	.services-grid-item:nth-child(5),
  .services-grid-item:nth-child(6),
  .services-grid-item:nth-child(7),
  .services-grid-item:last-child {
    grid-column: auto;
  }


  .services .service-card {
    min-height: 280px;
    padding: 1.35rem 1rem 1.5rem;
  }

  .service-card-icon {
    width: 42%;
    max-width: 92px;
  }

  .service-card-icon img {
    width: 54%;
    height: 54%;
  }

  .service-card-title {
    font-size: 1.45rem;
  }

  .service-modal .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .service-modal-heading {
    align-items: flex-start;
  }

  .service-modal .modal-title {
    font-size: 1.5rem;
  }

  .service-modal-body {
    padding: 1rem 1.5rem 1.5rem;
  }

  .hero {
    padding-top: calc(var(--space-xl) + 3rem);
  }

  .hero > .container-fluid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .admin-bar .hero {
    padding-top: calc(var(--space-xl) + 8rem);
  }

  .hero-image-col {
    min-height: 320px;
    aspect-ratio: 3 / 4;
  }

  .cta-banner-box {
    padding: 2rem;
  }

  .google-map-embed,
  .google-map-embed iframe {
    min-height: 340px;
    height: 340px;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .section > .container,
  .section > .container-fluid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero {
    padding-top: calc(var(--space-xl) + 3.5rem);
    padding-bottom: calc(var(--space-lg) + 0.5rem);
  }

  .admin-bar .hero {
    padding-top: calc(var(--space-xl) + 8rem);
  }

  .hero .row {
    row-gap: 2rem;
  }

  .hero-image-col {
    min-height: 280px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
	
	.services-grid-item:nth-child(5),
  .services-grid-item:nth-child(6),
  .services-grid-item:nth-child(7),
  .services-grid-item:last-child {
    grid-column: auto;
  }


  .services-shell {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
