/* =========================================================
   Divi SAFETY NETS
   SPRINT 1 — UPDATED NAV + 5-SCREEN HERO
========================================================= */

:root {
  --navy: #0A1F3D;
  --navy-light: #17375F;
  --ivory: #F7F5F0;
  --white: #FFFFFF;
  --ink: #172033;
  --muted: #687386;
  --line: #E5E8ED;
  --soft: #F1F3F5;
   --orange: #0F766E;
    --orange-dark: #115E59;
  --whatsapp: #20C76A;
  --container: 1280px;
  --transition: 300ms cubic-bezier(.2,.7,.2,1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* =========================================================
   TOP BAR
========================================================= */

.topbar {
  height: 40px;
  background: var(--navy);
  color: #DCE5EF;
  font-size: 11px;
  font-weight: 700;
  position: relative;
  z-index: 1100;
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.topbar-message,
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-contact {
  gap: 18px;
}

.topbar-contact a {
  transition: color var(--transition);
}

.topbar-contact a:hover {
  color: #FFFFFF;
}

.topbar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10,31,61,.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(10,31,61,.11);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* =========================================================
   LOGO
========================================================= */

.brand {
  width: 205px;
  height: 68px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 190px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 15px;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.1px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  gap: 8px;
}

.nav-dropdown-trigger i {
  font-size: 9px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-trigger i {
  transform: rotate(180deg);
}

/* =========================================================
   SERVICES DROPDOWN — LARGE
========================================================= */

.dropdown-panel {
  width: 690px;
  position: absolute;
  top: calc(100% + 13px);
  left: 0;
  padding: 12px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(10,31,61,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.98);
  transform-origin: top left;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-heading {
  padding: 10px 13px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.dropdown-heading span,
.dropdown-heading small {
  display: block;
}

.dropdown-heading span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.dropdown-heading small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.services-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  max-height: 480px;
  overflow-y: auto;
}

.services-dropdown-grid a {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 11px;
  transition: background var(--transition), transform var(--transition);
}

.services-dropdown-grid a:hover {
  background: var(--soft);
  transform: translateX(3px);
}

.services-dropdown-grid strong,
.services-dropdown-grid small {
  display: block;
}

.services-dropdown-grid strong {
  font-size: 15px;
  font-weight: 800;
}

.services-dropdown-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.services-dropdown-grid i {
  color: var(--orange);
  font-size: 10px;
}

/* =========================================================
   LOCATIONS DROPDOWN
========================================================= */

.locations-dropdown {
    position: relative;
}


/* PANEL */

.locations-panel {

    width: 390px;

    position: absolute;

    top: calc(100% + 13px);

    left: 50%;

    padding: 12px;

    background:
        rgba(255,255,255,.98);

    border: 1px solid rgba(10,31,61,.08);

    border-radius: 20px;

    box-shadow:
        0 28px 80px rgba(10,31,61,.16),
        0 8px 25px rgba(10,31,61,.06);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, 10px)
        scale(.97);

    transform-origin: top center;

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);

    z-index: 1200;
}


/* SHOW */

.locations-dropdown:hover .locations-panel {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0)
        scale(1);
}


/* =========================================================
   LOCATION HEADING
========================================================= */

.locations-panel .dropdown-heading {

    padding: 12px 13px 14px;

    margin-bottom: 7px;

    border-bottom:
        1px solid var(--line);
}

.locations-panel .dropdown-heading span {

    display: block;

    color: var(--orange-dark);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.locations-panel .dropdown-heading small {

    display: block;

    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 600;

    line-height: 1.5;
}


/* =========================================================
   LOCATION ITEM
========================================================= */

.locations-panel > a {

    min-height: 68px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        30px;

    align-items: center;

    gap: 12px;

    padding: 10px 12px;

    border-radius: 13px;

    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}


/* HOVER */

.locations-panel > a:hover {

    background:
        linear-gradient(
            135deg,
            #F4F8F8,
            #FFFFFF
        );

    transform:
        translateX(4px);

    box-shadow:
        0 8px 22px
        rgba(10,31,61,.05);
}


/* =========================================================
   LOCATION TEXT
========================================================= */

.locations-panel > a strong {

    display: block;

    color: var(--ink);

    font-size: 14px;

    font-weight: 850;

    line-height: 1.2;

    transition:
        color var(--transition);
}


.locations-panel > a:hover strong {

    color: var(--orange-dark);
}


.locations-panel > a small {

    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 600;

    line-height: 1.45;
}


/* =========================================================
   ARROW
========================================================= */

.locations-panel > a > i {

    width: 28px;

    height: 28px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(15,118,110,.08);

    color: var(--orange);

    font-size: 9px;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}


.locations-panel > a:hover > i {

    transform:
        translateX(3px);

    background:
        var(--orange);

    color: #FFFFFF;
}


/* =========================================================
   VIEW ALL
========================================================= */

.locations-panel .locations-view-all {

    margin-top: 6px;

    border-top:
        1px solid var(--line);

    border-radius: 0 0 12px 12px;

    padding-top: 15px;

    min-height: 65px;
}


.locations-panel .locations-view-all strong {

    color: var(--orange-dark);

    font-size: 12px;
}


.locations-panel .locations-view-all small {

    font-size: 9px;
}


/* =========================================================
   LOCATION ICON
========================================================= */

.locations-dropdown
.nav-dropdown-trigger i {

    transition:
        transform var(--transition);
}


.locations-dropdown:hover
.nav-dropdown-trigger i {

    transform:
        rotate(180deg);
}
/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-whatsapp,
.nav-call {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.nav-whatsapp {
  color: #FFFFFF;
  background: var(--orange);
}

.nav-whatsapp:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(232,111,36,.24);
}

.nav-call {
  color: #FFFFFF;
  background: var(--navy);
}

.nav-call:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10,31,61,.2);
}

/* =========================================================
   MOBILE HAMBURGER BUTTON
========================================================= */

.mobile-menu-button {
    display: none;

    width: 48px;
    height: 48px;

    margin-left: auto;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border: 1px solid #E5E8ED;
    border-radius: 14px;

    background: #F7F8FA;

    cursor: pointer;

    transition:
        background 250ms ease,
        transform 250ms ease,
        box-shadow 250ms ease;
}


.mobile-menu-button:hover {
    background: #FFFFFF;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(10, 31, 61, .10);
}


.mobile-menu-button span {
    width: 22px;
    height: 2px;

    background: var(--navy);

    border-radius: 20px;

    transition:
        transform 300ms cubic-bezier(.2,.7,.2,1),
        opacity 200ms ease;
}


.mobile-menu-button.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-button.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE SIDE DRAWER
========================================================= */

.mobile-menu {

    display: block;

    position: fixed;

    z-index: 2000;

    top: 0;
    left: 0;

    width: min(430px, calc(100vw - 24px));

    height: 100dvh;

    background: #FFFFFF;

    overflow-y: auto;
    overflow-x: hidden;

    box-shadow:
        20px 0 70px rgba(10, 31, 61, .18);

    transform: translateX(-105%);

    visibility: hidden;

    transition:
        transform 420ms cubic-bezier(.2,.7,.2,1),
        visibility 420ms ease;

    scrollbar-width: thin;
}


.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}


.mobile-menu-inner {
    min-height: 100%;

    display: flex;

    flex-direction: column;

    padding: 28px 24px 22px;
}


/* =========================================================
   DRAWER HEADER
========================================================= */

.mobile-drawer-header {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.mobile-drawer-logo {
    width: 150px;

    display: flex;
    align-items: center;
}


.mobile-drawer-logo img {

    width: 145px;

    height: auto;

    max-height: 65px;

    object-fit: contain;

    display: block;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.mobile-drawer-close {

    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 14px;

    background: #F6F8FA;

    color: var(--navy);

    cursor: pointer;

    transition:
        background 250ms ease,
        transform 250ms ease;
}


.mobile-drawer-close i {
    font-size: 19px;

    transition:
        transform 300ms ease;
}


.mobile-drawer-close:hover {

    background: #FFF3EA;

    color: var(--orange);

    transform: rotate(3deg);
}


.mobile-drawer-close:hover i {
    transform: rotate(90deg);
}


/* =========================================================
   DIVIDER
========================================================= */

.mobile-drawer-divider {

    width: 100%;
    height: 1px;

    background: #E8EBEF;

    margin-bottom: 20px;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* =========================================================
   MENU CARD
========================================================= */

.mobile-menu-card {

    width: 100%;

    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 16px;

    padding: 0 18px;

    border: 1px solid #E5E9EE;

    border-radius: 17px;

    background: #FFFFFF;

    color: var(--ink);

    font-size: 17px;

    font-weight: 800;

    text-align: left;

    cursor: pointer;

    transition:
        transform 250ms ease,
        border-color 250ms ease,
        background 250ms ease,
        box-shadow 250ms ease;
}


.mobile-menu-card:hover {

    transform: translateX(3px);

    border-color: #DCE1E7;

    box-shadow:
        0 8px 24px rgba(10, 31, 61, .06);
}


.mobile-menu-card.active {

    background: #FFF9F4;

    border-color: #F1E2D5;
}


/* =========================================================
   ICON
========================================================= */

.mobile-menu-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #FFF3E9;

    color: var(--orange);

    transition:
        transform 250ms ease,
        background 250ms ease;
}


.mobile-menu-card:hover .mobile-menu-icon {

    transform: scale(1.08);

    background: #FFE8D5;
}


.mobile-menu-icon i {
    font-size: 16px;
}


/* =========================================================
   MENU TEXT
========================================================= */

.mobile-menu-text {
    flex: 1;
    line-height: 1.2;
}


/* =========================================================
   ACCORDION LEFT SIDE
========================================================= */

.mobile-menu-left {

    flex: 1;

    display: flex;

    align-items: center;

    gap: 16px;
}


/* =========================================================
   ARROW
========================================================= */

.mobile-menu-arrow {

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #FFF3E9;

    color: var(--orange);

    transition:
        transform 300ms ease,
        background 250ms ease;
}


.mobile-accordion.open .mobile-menu-arrow {

    transform: rotate(180deg);

    background: #FFE8D5;
}


.mobile-menu-arrow i {
    font-size: 13px;
}


/* =========================================================
   SUBMENU
========================================================= */

.mobile-submenu {

    max-height: 0;

    overflow: hidden;

    padding-left: 18px;
    padding-right: 8px;

    opacity: 0;

    transition:
        max-height 450ms cubic-bezier(.2,.7,.2,1),
        opacity 250ms ease;
}


.mobile-submenu.open {

    max-height: 1300px;

    opacity: 1;
}


.mobile-submenu a {

    display: block;

    position: relative;

    padding: 12px 10px 12px 18px;

    color: var(--muted);

    font-size: 13px;

    font-weight: 700;

    border-bottom: 1px solid #F0F2F4;

    transition:
        color 200ms ease,
        transform 200ms ease;
}


.mobile-submenu a::before {

    content: "";

    position: absolute;

    left: 2px;
    top: 50%;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--orange);

    transform: translateY(-50%);
}


.mobile-submenu a:hover {

    color: var(--orange-dark);

    transform: translateX(4px);
}


/* =========================================================
   MOBILE CTA
========================================================= */

.mobile-actions {

    display: grid;

    gap: 11px;

    margin-top: auto;

    padding-top: 35px;
}


.mobile-call {

    min-height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 15px;

    background: var(--orange);

    color: #FFFFFF;

    font-size: 15px;

    font-weight: 800;

    box-shadow:
        0 12px 28px rgba(232, 111, 36, .20);

    transition:
        transform 250ms ease,
        background 250ms ease,
        box-shadow 250ms ease;
}


.mobile-call:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);
}


.mobile-whatsapp {

    min-height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 15px;

    background: #FFFFFF;

    border: 1px solid #DDE2E7;

    color: var(--ink);

    font-size: 15px;

    font-weight: 800;

    transition:
        transform 250ms ease,
        border-color 250ms ease,
        box-shadow 250ms ease;
}


.mobile-whatsapp:hover {

    transform: translateY(-2px);

    border-color: #C8D0D8;

    box-shadow:
        0 10px 25px rgba(10,31,61,.08);
}


.mobile-whatsapp i {

    color: #1DBF65;

    font-size: 18px;
}
.mobile-menu-button {

    display: none;

    width: 50px;
    height: 50px;

    margin-left: auto;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border: 1px solid #DDE3EA;

    border-radius: 14px;

    background: #F7F8FA;

    cursor: pointer;

    position: relative;

    z-index: 2100;

    transition:
        background 250ms ease,
        transform 250ms ease,
        box-shadow 250ms ease;
}


.mobile-menu-button span {

    display: block;

    width: 24px;
    height: 2.5px;

    background: var(--navy);

    border-radius: 20px;

    transition:
        transform 300ms ease,
        opacity 200ms ease;
}
/* =========================================================
   MOBILE LOCATION MENU
========================================================= */

.mobile-submenu {

    overflow: hidden;

}


/* LOCATION ITEM */

.mobile-submenu > a {

    min-height: 64px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding: 12px 14px 12px 52px;

    color: var(--ink);

    border-bottom: 1px solid rgba(10,31,61,.06);

    transition:
        background var(--transition),
        transform var(--transition);
}


/* TEXT */

.mobile-submenu > a > span {

    min-width: 0;

    display: block;

}


.mobile-submenu > a strong {

    display: block;

    color: var(--ink);

    font-size: 13px;

    font-weight: 800;

    line-height: 1.2;
}


.mobile-submenu > a small {

    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 600;

    line-height: 1.4;
}


/* ARROW */

.mobile-submenu > a > i {

    flex-shrink: 0;

    width: 27px;

    height: 27px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(15,118,110,.08);

    color: var(--orange);

    font-size: 9px;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}


/* TOUCH / HOVER */

.mobile-submenu > a:hover,
.mobile-submenu > a:active {

    background:
        rgba(15,118,110,.045);

}


.mobile-submenu > a:hover > i,
.mobile-submenu > a:active > i {

    transform: translateX(3px);

    background: var(--orange);

    color: #FFFFFF;

}


/* =========================================================
   VIEW ALL LOCATIONS
========================================================= */

.mobile-submenu .mobile-location-all {

    margin-top: 4px;

    padding-top: 15px;

    padding-bottom: 15px;

    border-top: 1px solid var(--line);

    border-bottom: 0;

}


.mobile-location-all strong {

    color: var(--orange-dark) !important;

    font-size: 12px !important;

}


.mobile-location-all small {

    font-size: 9px !important;

}
/* =========================================================
   HERO SLIDER
========================================================= */

.hero {
  min-height: calc(100vh - 128px);
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
  color: #FFFFFF;
  isolation: isolate;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    z-index: 0;

    transform: translateY(35px);

    transition:
        opacity 750ms ease,
        transform 750ms cubic-bezier(.2,.7,.2,1),
        visibility 750ms ease;
}


.hero-slide.active {
    opacity: 1;
    visibility: visible;

    z-index: 2;

    transform: translateY(0);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-slide.active .hero-background {
  animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.02) translate3d(0,0,0);
  }
  to {
    transform: scale(1.10) translate3d(-1%, -1%, 0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(10,31,61,1) 0%,
      rgba(10,31,61,.98) 24%,
      rgba(10,31,61,.82) 44%,
      rgba(10,31,61,.42) 69%,
      rgba(10,31,61,.16) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10,31,61,.55),
      transparent 45%
    );
}

.hero-frame {
  position: absolute;
  top: 55px;
  right: 5%;
  width: 42%;
  height: 72%;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 35px;
  pointer-events: none;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 25px;
}

.hero-container {
  min-height: calc(100vh - 128px);
  position: relative;
  display: flex;
  align-items: center;
  z-index: 5;
}

.hero-content {
  max-width: 800px;
  padding: 70px 0 110px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #D7E2EE;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  transform: translateY(18px);
  opacity: 0;
}

.hero-slide.active .hero-eyebrow {
  animation: heroContentIn .65s .08s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(232,111,36,.12);
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 25px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(50px, 5.8vw, 84px);
  line-height: 1.01;
  letter-spacing: -3.8px;
  font-weight: 800;
  transform: translateY(24px);
  opacity: 0;
}

.hero-slide.active h1 {
  animation: heroContentIn .75s .15s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero h1 em {
  display: block;
  color: #AFC0D2;
  font-style: normal;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 24px;
  color: #CBD7E4;
  font-size: 16px;
  line-height: 1.8;
  transform: translateY(22px);
  opacity: 0;
}

.hero-slide.active .hero-description {
  animation: heroContentIn .7s .25s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-locations {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 29px;
  transform: translateY(20px);
  opacity: 0;
}

.hero-slide.active .hero-locations {
  animation: heroContentIn .65s .34s cubic-bezier(.2,.7,.2,1) forwards;
}

.hero-locations span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
}

.hero-locations i {
  color: var(--orange);
  font-size: 9px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  transform: translateY(20px);
  opacity: 0;
}

.hero-slide.active .hero-actions {
  animation: heroContentIn .7s .43s cubic-bezier(.2,.7,.2,1) forwards;
}

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

.hero-primary-button,
.hero-secondary-button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.hero-primary-button {
  color: #FFFFFF;
  background: var(--orange);
}

.hero-primary-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232,111,36,.28);
}

.hero-primary-button span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}

.hero-primary-button span i {
  font-size: 9px;
}

.hero-secondary-button {
  color: #FFFFFF;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.30);
  backdrop-filter: blur(10px);
}

.hero-secondary-button:hover {
  color: var(--navy);
  background: #FFFFFF;
  transform: translateY(-2px);
}

.hero-secondary-button i {
  font-size: 15px;
}

/* info card */
.hero-info-card {
  position: absolute;
  right: 7%;
  bottom: 96px;
  min-width: 285px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 17px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
  opacity: 0;
  transform: translateY(20px);
}

.hero-slide.active .hero-info-card {
  animation: heroCardIn .8s .52s cubic-bezier(.2,.7,.2,1) forwards;
}

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

.hero-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  background: var(--orange);
  border-radius: 12px;
}

.hero-info-card strong,
.hero-info-card span {
  display: block;
}

.hero-info-card strong {
  font-size: 12px;
}

.hero-info-card span {
  margin-top: 3px;
  color: #C7D3DF;
  font-size: 10px;
}

/* =========================================================
   HERO CONTROLS
========================================================= */

.hero-slider-controls {
  position: absolute;
  left: max(24px, calc((100% - var(--container)) / 2));
  bottom: 34px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #FFFFFF;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero-arrow:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.hero-arrow i {
  font-size: 10px;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 26px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.hero-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-dot.active::after {
  animation: dotProgress 5.5s linear forwards;
}

@keyframes dotProgress {
  to {
    transform: scaleX(1);
  }
}

.hero-counter {
  position: absolute;
  right: max(24px, calc((100% - var(--container)) / 2));
  bottom: 38px;
  z-index: 20;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: rgba(255,255,255,.65);
  font-size: 11px;
  font-weight: 800;
}

.hero-counter strong {
  color: #FFFFFF;
  font-size: 20px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.70);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.hero-scroll i {
  animation: scrollArrow 1.5s ease-in-out infinite;
}

@keyframes scrollArrow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .container {
    width: calc(100% - 28px);
  }

  .topbar {
    display: none;
  }

  .site-header {
    height: 82px;
  }

  .navbar {
    height: 82px;
  }

  .brand {
    width: 190px;
    height: 62px;
  }

  .brand-logo {
    width: 174px;
    max-height: 56px;
  }

  /* .mobile-menu {
    top: 82px;
    height: calc(100vh - 82px);
  } */

  .hero {
    min-height: calc(100svh - 82px);
  }

  .hero-container {
    min-height: calc(100svh - 82px);
    align-items: flex-start;
  }

  .hero-background {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(10,31,61,.97) 0%,
        rgba(10,31,61,.90) 42%,
        rgba(10,31,61,.67) 74%,
        rgba(10,31,61,.62) 100%
      );
  }

  .hero-frame {
    top: 25px;
    right: 18px;
    width: calc(100% - 36px);
    height: 78%;
    border-radius: 25px;
  }

  .hero-frame::before {
    inset: 12px;
    border-radius: 18px;
  }

  .hero-content {
    width: 100%;
    padding: 67px 0 150px;
  }

  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
    margin-bottom: 17px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.5vw, 60px);
    line-height: 1.02;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.7;
    max-width: 96%;
    margin-bottom: 20px;
  }

  .hero-locations {
    gap: 9px;
    margin-bottom: 23px;
  }

  .hero-locations span {
    font-size: 10px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-primary-button,
  .hero-secondary-button {
    width: 100%;
    min-height: 52px;
  }

  .hero-info-card {
    display: none;
  }

  .hero-slider-controls {
    left: 14px;
    bottom: 25px;
    gap: 7px;
  }

  .hero-arrow {
    width: 35px;
    height: 35px;
  }

  .hero-dot {
    width: 18px;
    height: 3px;
  }

  .hero-counter {
    right: 15px;
    bottom: 30px;
  }

  .hero-counter strong {
    font-size: 17px;
  }

  .hero-scroll {
    display: none;
  }

  .floating-actions {
    right: 12px;
    bottom: 13px;
    gap: 8px;
  }

  .floating-button {
    width: 52px;
    height: 52px;
  }

  .floating-button span {
    display: none;
  }

  /* .back-to-top {
    right: 14px;
    bottom: 137px;
  } */
}
.hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.hero-slide.active .hero-background img {
    animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
    from {
        transform: scale(1.02) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.10) translate3d(-1%, -1%, 0);
    }
}
/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
/* =========================================================
   SPRINT 2
   TRUST STRIP
========================================================= */

.trust-strip {

    position: relative;

    padding: 24px 0;

    background: #FFFFFF;

    border-bottom: 1px solid var(--line);

    z-index: 5;
}


.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;
}


.trust-item {

    min-height: 74px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 10px 24px;

    border-right: 1px solid var(--line);
}


.trust-item:last-child {

    border-right: 0;

}


.trust-icon {

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: rgba(15, 118, 110, .09);

    color: var(--orange);

    font-size: 17px;

    transition:
        transform .3s ease,
        background .3s ease;
}


.trust-item:hover .trust-icon {

    transform:
        translateY(-3px)
        rotate(-3deg);

    background:
        rgba(15, 118, 110, .15);
}


.trust-content {

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.trust-content strong {

    color: var(--ink);

    font-size: 13px;

    font-weight: 850;

    line-height: 1.2;
}


.trust-content span {

    color: var(--muted);

    font-size: 11px;

    font-weight: 600;

    line-height: 1.3;
}

/* =========================================================
   FLOATING CONTACT BUTTONS
   ORDER:
   1. WhatsApp
   2. Call
   3. Back To Top
========================================================= */

.floating-actions {

    position: fixed;

    right: 19px;
    bottom: 22px;

    z-index: 900;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   FLOATING CONTACT BUTTON
========================================================= */

.floating-button {

    width: 58px;
    height: 58px;

    position: relative;

    display: grid;

    place-items: center;

    border: 2px solid #FFFFFF;

    border-radius: 50%;

    color: #FFFFFF;

    text-decoration: none;

    box-shadow:
        0 10px 28px rgba(10,31,61,.24);

    animation:
        floatButton 2.6s ease-in-out infinite;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.floating-button::before {

    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid currentColor;

    border-radius: 50%;

    opacity: .35;

    animation:
        contactRing 2.6s ease-out infinite;

    pointer-events: none;
}


.floating-button i {

    font-size: 21px;

    transition:
        transform var(--transition);
}


.floating-button:hover {

    transform:
        translateY(-4px)
        scale(1.04);

    box-shadow:
        0 15px 34px rgba(10,31,61,.30);
}


.floating-button:hover i {

    transform:
        scale(1.12)
        rotate(-7deg);
}


/* =========================================================
   FLOATING LABEL
========================================================= */

.floating-button span {

    position: absolute;

    right: 70px;

    padding: 7px 10px;

    border-radius: 7px;

    background: var(--navy);

    color: #FFFFFF;

    font-size: 9px;

    font-weight: 800;

    white-space: nowrap;

    opacity: 0;

    transform:
        translateX(7px);

    pointer-events: none;

    transition:
        opacity var(--transition),
        transform var(--transition);
}


.floating-button:hover span {

    opacity: 1;

    transform:
        translateX(0);
}


/* =========================================================
   WHATSAPP
========================================================= */

.floating-whatsapp {

    background: var(--whatsapp);

    animation-delay: 0s;
}


/* =========================================================
   CALL
========================================================= */

.floating-call {

    background: var(--orange);

    animation-delay: .25s;
}


/* =========================================================
   FLOAT ANIMATION
========================================================= */

@keyframes floatButton {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-6px);

    }

}


/* =========================================================
   CONTACT RING
========================================================= */

@keyframes contactRing {

    0% {

        transform:
            scale(.82);

        opacity: .45;

    }

    70%,
    100% {

        transform:
            scale(1.3);

        opacity: 0;

    }

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    width: 50px;
    height: 50px;

    position: relative;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border: 2px solid #FFFFFF;
    border-radius: 50%;

    background: var(--navy);
    color: #FFFFFF;

    box-shadow:
        0 10px 25px rgba(10,31,61,.22);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .25s ease;
}


.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.back-to-top:hover {
    background: var(--orange);

    transform:
        translateY(-3px);
}


.back-to-top i {
    font-size: 16px;
}

/* =========================================================
   SPRINT 2
   SERVICES SECTION
========================================================= */

.services-section {

    position: relative;

    padding: 110px 0 100px;

    background:
        linear-gradient(
            180deg,
            #F8FAFC 0%,
            #FFFFFF 100%
        );

    overflow: hidden;
}


.services-section::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -200px;
    right: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(15,118,110,.07),
            transparent 68%
        );

    pointer-events: none;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    max-width: 760px;

    margin-bottom: 55px;
}


.section-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

    color: var(--orange-dark);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.section-eyebrow span {

    width: 28px;
    height: 3px;

    border-radius: 10px;

    background: var(--orange);
}


.section-heading h2 {

    margin: 0;

    color: var(--ink);

    font-size:
        clamp(42px, 5vw, 68px);

    font-weight: 850;

    line-height: .98;

    letter-spacing: -2.8px;
}


.section-heading h2 em {

    color: var(--orange);

    font-style: normal;
}


.section-heading p {

    max-width: 680px;

    margin: 24px 0 0;

    color: var(--muted);

    font-size: 16px;

    font-weight: 500;

    line-height: 1.75;
}


/* =========================================================
   SERVICES GRID
========================================================= */

/* =========================================================
   SERVICES GRID — 3 CARDS PER ROW
========================================================= */

.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    min-width: 0;
    min-height: 420px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid #E5E9EE;
    border-radius: 22px;

    background: #FFFFFF;

    text-decoration: none;

    box-shadow:
        0 8px 30px rgba(15,23,42,.045);

    transition:
        transform .35s cubic-bezier(.2,.7,.2,1),
        box-shadow .35s ease,
        border-color .35s ease;
}


.service-card::after {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -65px;
    bottom: -65px;

    border-radius: 50%;

    background:
        rgba(15,118,110,.055);

    transition:
        transform .4s ease;

    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(15,118,110,.25);

    box-shadow:
        0 22px 55px rgba(15,23,42,.11);
}


.service-card:hover::after {

    transform:
        scale(1.6);
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-card-image {

    position: relative;

    width: 100%;

    height: 190px;

    overflow: hidden;
    border-radius: 17px;

    background: #E9EEF3;
}


.service-card-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 45%,
            rgba(0,0,0,.18) 100%
        );

    pointer-events: none;
}




.service-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition:
        transform .55s cubic-bezier(.2,.7,.2,1);
        /* filter .35s ease; */
}



.service-card:hover .service-card-image img {
    transform: scale(1.06);
}

/* =========================================================
   CARD NUMBER
========================================================= */

service-card-image .service-card-number {
    position: absolute;
    top: 13px;
    right: 13px;

    z-index: 3;

    min-width: 40px;
    height: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 9px;

    border-radius: 999px;

    background: rgba(255,255,255,.94);
    color: var(--navy);

    font-size: 11px;
    font-weight: 900;

    box-shadow:
        0 8px 20px rgba(0,0,0,.12);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.service-card-content {
    position: relative;
    z-index: 2;

    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 20px 22px 22px;

    background: #FFFFFF;
}


.service-card-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin-bottom: 15px;

    border-radius: 13px;

    background:
        rgba(15,118,110,.09);

    color: var(--orange);

    font-size: 17px;

    transition:
        transform .3s ease,
        background .3s ease;
}


.service-card:hover .service-card-icon {
    transform:
        translateY(-3px)
        rotate(-4deg);

    background:
        rgba(15,118,110,.14);
}


.service-card h3 {
    margin: 0 0 9px;

    color: var(--ink);

    font-size: 19px;
    font-weight: 850;

    line-height: 1.2;
    letter-spacing: -.4px;
}


.service-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    font-weight: 500;

    line-height: 1.65;
}


/* =========================================================
   CARD LINK
========================================================= */

.service-card-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: var(--orange-dark);

    font-size: 12px;

    font-weight: 850;
}


.service-card-link i {

    transition:
        transform .25s ease;
}


.service-card:hover
.service-card-link i {

    transform:
        translateX(4px);
}


/* =========================================================
   FEATURED SERVICE
========================================================= */

.service-card-featured {

    background:
        linear-gradient(
            145deg,
            #0F172A,
            #162D46
        );

    border-color:
        rgba(255,255,255,.08);
}


.service-card-featured
.service-card-content {

    color: #FFFFFF;
}


.service-card-featured h3 {

    color: #FFFFFF;
}


.service-card-featured p {

    color: #B8C5D3;
}


.service-card-featured
.service-card-image::after {

    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,0) 30%,
            rgba(15,23,42,.58) 100%
        );
}


.service-card-featured
.service-card-icon {

    background:
        rgba(255,255,255,.09);

    color: #FFFFFF;
}


.service-card-featured
.service-card-link {

    color: #FFFFFF;
}


/* =========================================================
   SERVICES BOTTOM CTA
========================================================= */

.services-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 55px;

    padding:
        28px 30px;

    border:
        1px solid var(--line);

    border-radius: 20px;

    background: #FFFFFF;

    box-shadow:
        0 10px 35px
        rgba(15,23,42,.04);
}


.services-bottom-text {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.services-bottom-text strong {

    color: var(--ink);

    font-size: 16px;

    font-weight: 850;
}


.services-bottom-text span {

    color: var(--muted);

    font-size: 13px;

    font-weight: 500;
}


.services-bottom-actions {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================================
   SERVICES CALL BUTTON
========================================================= */

.services-call-button {

    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        0 21px;

    border:
        1px solid #D9E0E7;

    border-radius: 999px;

    background: #FFFFFF;

    color: var(--navy);

    font-size: 13px;

    font-weight: 850;

    text-decoration: none;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}


.services-call-button i {

    color: var(--orange);
}


.services-call-button:hover {

    transform:
        translateY(-2px);

    border-color:
        var(--orange);

    background:
        rgba(15,118,110,.05);
}


/* =========================================================
   VIEW ALL SERVICES
========================================================= */

.services-all-button {

    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
        0 22px;

    border-radius: 999px;

    background: var(--orange);

    color: #FFFFFF;

    font-size: 13px;

    font-weight: 850;

    text-decoration: none;

    box-shadow:
        0 10px 25px
        rgba(15,118,110,.15);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.services-all-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 30px
        rgba(15,118,110,.22);
}


/* =========================================================
   TABLET — 1180px
========================================================= */

@media (max-width: 1180px) {

    .desktop-navigation,
    .nav-actions {

        display: none;

    }


    .mobile-menu-button {

        display: flex;

    }


    .hero h1 {

        font-size:
            clamp(48px, 7vw, 74px);

    }


    .hero-info-card {

        right: 4%;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   TABLET — 1100px
========================================================= */

@media (max-width: 1100px) {

    .trust-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .trust-item:nth-child(2) {

        border-right: 0;

    }


    .trust-item:nth-child(-n+2) {

        border-bottom:
            1px solid var(--line);

    }

}


/* =========================================================
   MOBILE — 700px
========================================================= */

@media (max-width: 700px) {

    .container {

        width:
            calc(100% - 28px);

    }


    /* ---------------------------------------------
       TOP BAR
    --------------------------------------------- */

    .topbar {

        display: none;

    }


    /* ---------------------------------------------
       HEADER
    --------------------------------------------- */

    .site-header {

        height: 82px;

    }


    .navbar {

        height: 82px;

    }


    .brand {

        width: 190px;
        height: 62px;

    }


    .brand-logo {

        width: 174px;

        max-height: 56px;

    }


    /* ---------------------------------------------
       FLOATING BUTTONS
    --------------------------------------------- */

    .floating-actions {

        right: 14px;

        bottom: 16px;

        gap: 8px;

    }


    .floating-button {

        width: 52px;
        height: 52px;

    }


    .floating-button i {

        font-size: 19px;

    }


    .back-to-top {

        width: 46px;
        height: 46px;

    }
    
    .back-to-top i {

        font-size: 15px;

    }



    .floating-button span {

        display: none;

    }


    /* ---------------------------------------------
       TRUST STRIP
    --------------------------------------------- */

    .trust-strip {

        padding:
            15px 0;

    }


    .trust-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .trust-item {

        min-height: 70px;

        gap: 9px;

        padding:
            10px 8px;

        border-right:
            1px solid var(--line);

    }


    .trust-item:nth-child(2) {

        border-right: 0;

    }


    .trust-item:nth-child(3) {

        border-bottom: 0;

    }


    .trust-item:nth-child(4) {

        border-bottom: 0;

        border-right: 0;

    }


    .trust-icon {

        width: 37px;
        height: 37px;

        border-radius: 11px;

        font-size: 14px;

    }


    .trust-content strong {

        font-size: 10px;

    }


    .trust-content span {

        font-size: 8px;

    }


    /* ---------------------------------------------
       SERVICES
    --------------------------------------------- */

    .services-section {

        padding:
            75px 0
            70px;

    }


    .section-heading {

        margin-bottom:
            35px;

    }


    .section-heading h2 {

        font-size:
            clamp(
                38px,
                11vw,
                52px
            );

        letter-spacing:
            -2px;

    }


    .section-heading p {

        margin-top: 18px;

        font-size: 14px;

        line-height: 1.7;

    }

    .services-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }



    .service-card {

        border-radius: 19px;

    }


    .service-card-image {

        height: 195px;

    }


    .service-card-content {

        padding:
            21px
            21px
            24px;

    }


    .service-card-icon {

        width: 44px;
        height: 44px;

        margin-bottom: 15px;

        border-radius: 12px;

        font-size: 16px;

    }


    .service-card h3 {

        font-size: 18px;

    }


    .service-card p {

        font-size: 13px;

    }


    /* ---------------------------------------------
       SERVICES CTA
    --------------------------------------------- */

    .services-bottom {

        align-items: stretch;

        flex-direction: column;

        gap: 20px;

        margin-top: 35px;

        padding:
            22px;

    }


    .services-bottom-text {

        text-align: center;

    }


    .services-bottom-text strong {

        font-size: 15px;

    }


    .services-bottom-text span {

        font-size: 12px;

    }


    .services-bottom-actions {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        width: 100%;

        gap: 8px;

    }


    .services-call-button,
    .services-all-button {

        width: 100%;

        min-height: 48px;

        padding:
            0 10px;

        font-size: 11px;

    }

}


/* =========================================================
   SMALL MOBILE — 430px
========================================================= */

@media (max-width: 430px) {

    .floating-actions {

        right: 11px;

        bottom: 13px;

    }


    .floating-button {

        width: 47px;
        height: 47px;

    }


    .back-to-top {

        width: 43px;
        height: 43px;

    }


    .services-section {

        padding:
            65px 0
            60px;

    }


    .service-card-image {

        height: 180px;

    }


    .services-bottom-actions {

        grid-template-columns:
            1fr;

    }

}
/* =========================================================
   SERVICE CARD ACTIONS
   EXPLORE + CALL
========================================================= */

.service-card-actions {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: auto;
    padding-top: 20px;
}

/* =========================================================
   EXPLORE BUTTON
========================================================= */


.service-explore {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 15px;

    border-radius: 999px;

    background: var(--orange);
    color: #FFFFFF;

    font-size: 12px;
    font-weight: 850;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.service-explore i {
    font-size: 10px;

    transition:
        transform .25s ease;
}

.service-card:hover .service-explore {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(15,118,110,.18);
}

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


/* =========================================================
   CALL BUTTON
========================================================= */

.service-call {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 14px;

    border: 1px solid #D8DEE6;

    border-radius: 999px;

    background: #FFFFFF;

    color: var(--navy);

    font-size: 12px;
    font-weight: 850;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.service-call:hover {
    background: var(--navy);
    color: #FFFFFF;

    border-color: var(--navy);

    transform: translateY(-2px);
}

.service-call i {
    font-size: 11px;
}
/* =========================================================
   FEATURED CARD ACTIONS
========================================================= */

.service-card-featured
.service-call {

    border-color:
        rgba(255,255,255,.20);

    background:
        rgba(255,255,255,.08);

    color: #FFFFFF;
}


.service-card-featured
.service-call i {

    color: #FFFFFF;
}


.service-card-featured
.service-call:hover {

    border-color:
        rgba(255,255,255,.45);

    background:
        rgba(255,255,255,.15);
}@media (max-width: 700px) {

    .service-card-actions {

        gap: 7px;

    }


    .service-explore,
    .service-call {

        min-height: 42px;

        flex: 1;

        padding:
            0 10px;

        font-size: 11px;

    }

}
@media (max-width: 700px) {

    .service-card {
        min-height: 400px;
        border-radius: 19px;
    }

    .service-card-image {
        height: 190px;
        border-radius: 15px;
    }

    .service-card-content {
        padding: 18px 19px 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card-actions {
        gap: 8px;
    }

    .service-explore,
    .service-call {
        min-height: 40px;
        font-size: 11px;
    }

}
/* =========================================================
   FINAL SERVICE GRID FIX
   DESKTOP = 3
   TABLET  = 2
   MOBILE  = 1
========================================================= */

.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}


/* TABLET */

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

}


/* SMALL MOBILE */

@media (max-width: 430px) {

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

}
/* =========================================================
   FINAL SERVICE CARD IMAGE
========================================================= */

.service-card-image {
    position: relative;
    width: 100%;
    height: 190px;

    overflow: hidden;

    border-radius: 17px;

    background: #E9EEF3;
}

.service-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform .55s cubic-bezier(.2,.7,.2,1);
}

.service-card:hover .service-card-image img {
    transform: scale(1.06);
}


/* MOBILE */

@media (max-width: 700px) {

    .service-card-image {
        height: 190px;
        border-radius: 15px;
    }

}
/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-choose-section {
    position: relative;
    padding: 120px 0;
    background: #0A1F3D;
    overflow: hidden;
    isolation: isolate;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -260px;
    right: -180px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(15,118,110,.20),
        transparent 70%
    );
    pointer-events: none;
}

.why-choose-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -220px;
    left: -180px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255,255,255,.06),
        transparent 70%
    );
    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.why-choose-container {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 80px;
    align-items: center;

    position: relative;
    z-index: 2;
}


/* =========================================================
   CONTENT
========================================================= */

.why-choose-content {
    max-width: 650px;
}

.why-choose-content .section-eyebrow {
    color: #8DD8D1;
}

.why-choose-content .section-eyebrow span {
    background: #8DD8D1;
}

.why-choose-content h2 {
    margin: 0;
    color: #FFFFFF;

    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 850;
}

.why-choose-content h2 em {
    color: #8DD8D1;
    font-style: normal;
}

.why-choose-intro {
    max-width: 600px;
    margin: 26px 0 38px;

    color: #B9C8D8;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   POINTS
========================================================= */

.why-choose-points {
    display: grid;
    gap: 20px;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-point-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;

    background: rgba(255,255,255,.07);
    color: #8DD8D1;

    font-size: 16px;

    transition:
        transform .35s ease,
        background .35s ease;
}

.why-point:hover .why-point-icon {
    transform: translateY(-4px) rotate(-4deg);
    background: rgba(15,118,110,.22);
}

.why-point h3 {
    margin: 1px 0 5px;

    color: #FFFFFF;

    font-size: 15px;
    font-weight: 850;
}

.why-point p {
    max-width: 450px;

    margin: 0;

    color: #91A4B8;

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   CTA
========================================================= */

.why-choose-button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    gap: 11px;

    margin-top: 40px;
    padding: 0 8px 0 8px;

    border-radius: 999px;

    background: #FFFFFF;
    color: var(--navy);

    font-size: 12px;
    font-weight: 850;

    box-shadow:
        0 15px 35px rgba(0,0,0,.16);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.why-choose-button span {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--orange);
    color: #FFFFFF;
}

.why-choose-button > i {
    margin-right: 12px;
    font-size: 11px;
}

.why-choose-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.25);
}


/* =========================================================
   IMAGE AREA
========================================================= */

.why-choose-visual {
    min-height: 570px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.why-image-frame {
    width: min(520px, 100%);
    height: 570px;

    position: relative;

    overflow: hidden;

    border-radius: 34px;

    border: 1px solid rgba(255,255,255,.18);

    box-shadow:
        0 35px 90px rgba(0,0,0,.28);

    transform:
        rotate(2deg);

    transition:
        transform .6s cubic-bezier(.2,.7,.2,1);
}

.why-choose-visual:hover .why-image-frame {
    transform:
        rotate(0deg)
        scale(1.015);
}

.why-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10,31,61,.05),
            rgba(10,31,61,.65)
        );

    pointer-events: none;
}

.why-image-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.04);

    transition:
        transform 1.2s ease;
}

.why-choose-visual:hover
.why-image-frame img {
    transform: scale(1.10);
}


/* =========================================================
   FLOATING TRUST CARD
========================================================= */

.why-floating-card {
    position: absolute;

    left: -35px;
    bottom: 65px;

    min-width: 245px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 18px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 17px;

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.25);

    animation:
        whyFloatingCard 4s ease-in-out infinite;
}

.why-floating-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: var(--orange);
    color: #FFFFFF;
}

.why-floating-card strong,
.why-floating-card span {
    display: block;
}

.why-floating-card strong {
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 850;
}

.why-floating-card span {
    margin-top: 4px;
    color: #B8C7D7;
    font-size: 9px;
}

@keyframes whyFloatingCard {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================================
   ORBIT DECORATION
========================================================= */

.why-orbit {
    position: absolute;

    right: -25px;
    top: 40px;

    width: 120px;
    height: 120px;

    border: 1px solid rgba(141,216,209,.30);

    border-radius: 50%;

    animation:
        whyOrbit 12s linear infinite;
}

.why-orbit::before {
    content: "";

    position: absolute;

    width: 9px;
    height: 9px;

    top: 10px;
    left: 50%;

    border-radius: 50%;

    background: #8DD8D1;

    box-shadow:
        0 0 20px rgba(141,216,209,.7);
}

@keyframes whyOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}
/* =========================================================
   WHY CHOOSE US — MOBILE
========================================================= */

@media (max-width: 900px) {

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .why-choose-content {
        max-width: none;
    }

    .why-choose-visual {
        min-height: 480px;
    }

    .why-image-frame {
        width: min(100%, 520px);
        height: 480px;
    }

    .why-floating-card {
        left: 15px;
        bottom: 35px;
    }

    .why-orbit {
        right: 0;
    }

}


@media (max-width: 600px) {

    .why-choose-section {
        padding: 80px 0;
    }

    .why-choose-container {
        width: calc(100% - 28px);
        gap: 40px;
    }

    .why-choose-content h2 {
        font-size: clamp(38px, 11vw, 52px);
        letter-spacing: -2px;
    }

    .why-choose-intro {
        font-size: 14px;
        line-height: 1.7;
    }

    .why-point {
        gap: 12px;
    }

    .why-point-icon {
        width: 42px;
        height: 42px;
    }

    .why-choose-visual {
        min-height: 410px;
    }

    .why-image-frame {
        height: 410px;
        border-radius: 25px;
        transform: none;
    }

    .why-floating-card {
        left: 8px;
        bottom: 22px;
        min-width: 220px;
    }

    .why-orbit {
        width: 80px;
        height: 80px;
        right: -5px;
        top: 15px;
    }

}
/* =========================================================
   PREMIUM SERVICE CARD SCROLL ANIMATION
========================================================= */

.service-card {
    opacity: 0;
    transform: translateY(45px) scale(.97);
    filter: blur(4px);

    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.2,.7,.2,1),
        filter .75s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* JS adds .visible */

.service-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}


/* =========================================================
   STAGGER
========================================================= */

.service-card:nth-child(1) {
    transition-delay: .04s;
}

.service-card:nth-child(2) {
    transition-delay: .10s;
}

.service-card:nth-child(3) {
    transition-delay: .16s;
}

.service-card:nth-child(4) {
    transition-delay: .22s;
}

.service-card:nth-child(5) {
    transition-delay: .28s;
}

.service-card:nth-child(6) {
    transition-delay: .34s;
}

.service-card:nth-child(7) {
    transition-delay: .40s;
}

.service-card:nth-child(8) {
    transition-delay: .46s;
}

.service-card:nth-child(9) {
    transition-delay: .52s;

}

.service-card:nth-child(10) {
    transition-delay: .58s;
}

.service-card:nth-child(11) {
    transition-delay: .64s;
}

.service-card:nth-child(12) {
    transition-delay: .70s;
}

.service-card:nth-child(13) {
    transition-delay: .76s;
}

.service-card:nth-child(14) {
    transition-delay: .82s;
}

.service-card:nth-child(15) {
    transition-delay: .88s;
}

.service-card:nth-child(16) {
    transition-delay: .94s;
}

.service-card:nth-child(17) {
    transition-delay: 1s;
}

.service-card:nth-child(18) {
    transition-delay: 1.06s;
}


/* =========================================================
   SERVICE IMAGE MOTION
========================================================= */

.service-card-image {
    overflow: hidden;
}

.service-card-image img {
    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.service-card:hover .service-card-image img {
    transform: scale(1.07);
}


/* =========================================================
   REDUCE MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-card-image img,
    .why-floating-card,
    .why-orbit {
        animation: none !important;
        transition: none !important;
    }

}
/* =========================================================
   PREMIUM PROJECT WALL
========================================================= */

.projects-section {

    position: relative;

    padding: 115px 0 105px;

    background:
        #071A31;

    overflow: hidden;
}


/* Background glow */

.projects-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -350px;
    right: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(20,184,166,.13),
            transparent 68%
        );

    pointer-events: none;
}


.projects-section::after {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    bottom: -300px;
    left: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(249,115,22,.09),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   TOP
========================================================= */

.projects-top {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        380px;

    gap: 70px;

    align-items: end;

    margin-bottom: 55px;
}


.projects-eyebrow {

    color: #67E8D8 !important;
}


.projects-eyebrow span {

    background:
        var(--orange) !important;
}


.projects-title-area h2 {

    margin: 0;

    color: #FFFFFF;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(
            50px,
            5.4vw,
            76px
        );

    font-weight: 800;

    line-height: .96;

    letter-spacing: -3.5px;
}


.projects-title-area h2 em {

    color: #67E8D8;

    font-style: normal;
}


.projects-intro {

    padding-bottom: 5px;
}


.projects-intro p {

    margin: 0 0 22px;

    color: #9FB3C8;

    font-size: 14px;

    line-height: 1.8;
}


.projects-top-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 850;

    text-decoration: none;

    transition:
        color .25s ease;
}


.projects-top-link i {

    color:
        #67E8D8;

    transition:
        transform .25s ease;
}


.projects-top-link:hover {

    color:
        #67E8D8;
}


.projects-top-link:hover i {

    transform:
        translate(3px,-3px);
}


/* =========================================================
   PROJECT WALL
========================================================= */

.projects-wall {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    grid-auto-flow: dense;

    gap: 16px;
}


/* =========================================================
   PROJECT ITEM
========================================================= */

.project-item {

    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 20px;

    background:
        rgba(255,255,255,.035);

    transition:
        transform .45s
        cubic-bezier(.2,.7,.2,1),
        border-color .35s ease,
        box-shadow .35s ease;
}


.project-item:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(103,232,216,.25);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.24);
}


/* =========================================================
   MAIN PROJECT
========================================================= */

.project-main {

    grid-column:
        span 2;

    grid-row:
        span 2;
}


/* Wide projects */

.project-wide {

    grid-column:
        span 2;
}


/* =========================================================
   PHOTO
========================================================= */

.project-photo {

    position: relative;

    display: block;

    height: 235px;

    overflow: hidden;

    text-decoration: none;
}


.project-main .project-photo {

    height: 490px;
}


.project-wide .project-photo {

    height: 270px;
}


.project-photo img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.2,.7,.2,1);
}


.project-item:hover
.project-photo img {

    transform:
        scale(1.08);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.project-photo-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7,26,49,.05),
            rgba(7,26,49,.75)
        );

    transition:
        opacity .4s ease;
}


.project-item:hover
.project-photo-overlay {

    opacity: .82;
}


/* =========================================================
   PHOTO TOP
========================================================= */

.project-photo-top {

    position: absolute;

    top: 14px;
    left: 14px;
    right: 14px;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.project-tag {

    padding:
        7px 10px;

    border:
        1px solid
        rgba(255,255,255,.22);

    border-radius:
        999px;

    background:
        rgba(7,26,49,.55);

    backdrop-filter:
        blur(12px);

    color:
        #FFFFFF;

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        .5px;

    text-transform:
        uppercase;
}


.project-index {

    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.92);

    color:
        #071A31;

    font-size: 9px;

    font-weight: 900;
}


/* =========================================================
   PHOTO BOTTOM
========================================================= */

.project-photo-bottom {

    position: absolute;

    left: 16px;
    right: 16px;
    bottom: 16px;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #FFFFFF;

    font-size: 10px;

    font-weight: 800;

    text-transform:
        uppercase;

    letter-spacing:
        .7px;
}


.project-photo-bottom i {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--orange);

    font-size: 10px;

    transform:
        translateY(8px);

    opacity: .85;

    transition:
        transform .3s ease,
        opacity .3s ease;
}


.project-item:hover
.project-photo-bottom i {

    transform:
        translateY(0);

    opacity: 1;
}


/* =========================================================
   DETAILS
========================================================= */

.project-details {

    padding:
        17px 18px 19px;
}


.project-details h3 {

    margin: 0 0 6px;

    color:
        #FFFFFF;

    font-size: 17px;

    font-weight: 800;

    letter-spacing:
        -.35px;
}


.project-details p {

    margin: 0;

    color:
        #8EA4BA;

    font-size: 11px;

    line-height: 1.65;
}


/* Main */

.project-main
.project-details {

    padding:
        20px 22px 22px;
}


.project-main
.project-details h3 {

    font-size:
        23px;
}


/* =========================================================
   FOOTER
========================================================= */

.projects-footer {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 35px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255,255,255,.09);
}


.projects-location-strip {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #8EA4BA;

    font-size: 11px;
}


.projects-location-strip strong {

    color:
        #FFFFFF;

    font-weight: 800;
}


.projects-location-strip i {

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        var(--orange);
}


.projects-main-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    min-height: 48px;

    padding:
        0 7px 0 18px;

    border-radius:
        999px;

    background:
        #FFFFFF;

    color:
        #071A31;

    font-size: 11px;

    font-weight: 850;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.projects-main-button span {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--orange);

    color:
        #FFFFFF;
}


.projects-main-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.25);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.projects-section .reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .7s ease,
        transform .7s
        cubic-bezier(.2,.7,.2,1);
}


.projects-section .reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* stagger */

.projects-wall
.project-item:nth-child(1) {
    transition-delay: .04s;
}

.projects-wall
.project-item:nth-child(2) {
    transition-delay: .10s;
}

.projects-wall
.project-item:nth-child(3) {
    transition-delay: .16s;
}

.projects-wall
.project-item:nth-child(4) {
    transition-delay: .22s;
}

.projects-wall
.project-item:nth-child(5) {
    transition-delay: .28s;
}

.projects-wall
.project-item:nth-child(6) {
    transition-delay: .34s;
}

.projects-wall
.project-item:nth-child(7) {
    transition-delay: .40s;
}

.projects-wall
.project-item:nth-child(8) {
    transition-delay: .46s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .projects-top {

        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .projects-wall {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .project-main {

        grid-column:
            span 2;

        grid-row:
            auto;
    }


    .project-main .project-photo {

        height: 400px;
    }


    .project-wide {

        grid-column:
            span 2;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .projects-section {

        padding:
            75px 0;
    }


    .projects-top {

        margin-bottom: 35px;
    }


    .projects-title-area h2 {

        font-size:
            clamp(
                42px,
                11vw,
                56px
            );

        letter-spacing:
            -2px;
    }


    .projects-intro p {

        font-size: 13px;
    }


    .projects-wall {

        grid-template-columns:
            1fr;

        gap: 13px;
    }


    .project-main,
    .project-wide {

        grid-column:
            auto;
    }


    .project-photo,
    .project-main .project-photo,
    .project-wide .project-photo {

        height:
            260px;
    }


    .project-main
    .project-details h3 {

        font-size: 20px;
    }


    .project-details h3 {

        font-size: 16px;
    }


    .project-details p {

        font-size: 11px;
    }


    .projects-footer {

        flex-direction:
            column;

        align-items:
            flex-start;
    }


    .projects-main-button {

        width: 100%;

        justify-content:
            space-between;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .project-item,
    .project-photo img,
    .projects-section .reveal {

        animation: none !important;

        transition: none !important;
    }
}
/* =========================================================
   PREMIUM INSTALLATION PROCESS
   WARM ARCHITECTURAL STYLE
========================================================= */

.installation-section {

    --install-bg: #F7F4EE;
    --install-card: #FFFFFF;
    --install-dark: #17202A;
    --install-text: #59636D;
    --install-copper: #C96B32;
    --install-copper-light: #F1E0D2;
    --install-line: #DDD8D0;

    position: relative;

    padding: 125px 0 120px;

    background: var(--install-bg);

    color: var(--install-dark);

    overflow: hidden;
}


/* =========================================================
   ARCHITECTURAL BACKGROUND
========================================================= */

.installation-section::before {

    content: "";

    position: absolute;

    width: 620px;
    height: 620px;

    top: -330px;
    right: -220px;

    border-radius: 50%;

    border:
        1px solid
        rgba(201,107,50,.12);

    box-shadow:
        0 0 0 70px
        rgba(201,107,50,.025),
        0 0 0 140px
        rgba(201,107,50,.018);

    pointer-events: none;
}


.installation-section::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    bottom: -260px;
    left: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201,107,50,.08),
            transparent 68%
        );

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.installation-header {

    position: relative;

    z-index: 2;

    margin-bottom: 75px;
}


.installation-eyebrow {

    color:
        var(--install-copper) !important;
}


.installation-eyebrow span {

    background:
        var(--install-copper) !important;
}


.installation-heading-row {

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, .8fr);

    align-items: end;

    gap: 80px;

    margin-top: 20px;
}


.installation-heading-row h2 {

    margin: 0;

    color:
        var(--install-dark);

    font-size:
        clamp(
            46px,
            5.3vw,
            74px
        );

    font-weight: 850;

    line-height: .98;

    letter-spacing:
        -3.2px;
}


.installation-heading-row h2 em {

    color:
        var(--install-copper);

    font-style: normal;
}


.installation-heading-row > p {

    max-width: 470px;

    margin: 0;

    color:
        var(--install-text);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   PROCESS GRID
========================================================= */

.installation-process {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 14px;
}


/* =========================================================
   CONNECTING LINE
========================================================= */

.installation-line {

    position: absolute;

    top: 34px;

    left: 6%;
    right: 6%;

    height: 1px;

    background:
        var(--install-line);

    z-index: 0;
}


.installation-progress {

    display: block;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--install-copper),
            rgba(201,107,50,.15)
        );

    transform-origin: left;

    animation:
        installationProgress
        3s
        ease-out
        both;
}


@keyframes installationProgress {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


/* =========================================================
   PROCESS CARD
========================================================= */

.installation-step {

    position: relative;

    z-index: 1;

    min-height: 330px;

    padding:
        0 20px 28px;

    border:
        1px solid
        rgba(23,32,42,.09);

    border-radius: 22px;

    background:
        rgba(255,255,255,.72);

    box-shadow:
        0 10px 35px
        rgba(23,32,42,.035);

    transition:
        transform .45s
        cubic-bezier(.2,.7,.2,1),
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}


.installation-step:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(201,107,50,.28);

    background:
        #FFFFFF;

    box-shadow:
        0 25px 55px
        rgba(23,32,42,.10);
}


/* =========================================================
   NUMBER
========================================================= */

.installation-step-number {

    width: 68px;
    height: 68px;

    display: grid;

    place-items: center;

    margin:
        0 auto 27px;

    border:
        1px solid
        rgba(201,107,50,.25);

    border-radius: 50%;

    background:
        var(--install-bg);

    color:
        var(--install-copper);

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;

    box-shadow:
        0 0 0 8px
        var(--install-bg);

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease;
}


.installation-step:hover
.installation-step-number {

    transform:
        scale(1.08);

    background:
        var(--install-copper);

    color:
        #FFFFFF;
}


/* =========================================================
   ICON
========================================================= */

.installation-step-icon {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    margin-bottom: 19px;

    border-radius: 14px;

    background:
        var(--install-copper-light);

    color:
        var(--install-copper);

    font-size: 17px;

    transition:
        transform .35s ease,
        background .35s ease;
}


.installation-step:hover
.installation-step-icon {

    transform:
        rotate(-5deg)
        translateY(-3px);

    background:
        var(--install-copper);

    color:
        #FFFFFF;
}


/* =========================================================
   STEP LABEL
========================================================= */

.installation-step-label {

    display: block;

    margin-bottom: 8px;

    color:
        #9B7258;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.7px;
}


/* =========================================================
   STEP CONTENT
========================================================= */

.installation-step h3 {

    margin:
        0 0 11px;

    color:
        var(--install-dark);

    font-size: 18px;

    font-weight: 850;

    line-height: 1.25;

    letter-spacing:
        -.3px;
}


.installation-step p {

    margin: 0;

    color:
        var(--install-text);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   FEATURE PANEL
========================================================= */

.installation-feature {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    min-height: 525px;

    margin-top: 75px;

    overflow: hidden;

    border:
        1px solid
        rgba(23,32,42,.10);

    border-radius: 30px;

    background:
        var(--install-dark);

    box-shadow:
        0 30px 75px
        rgba(23,32,42,.15);
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.installation-feature-image {

    position: relative;

    min-height: 525px;

    overflow: hidden;
}


.installation-feature-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s
        cubic-bezier(.2,.7,.2,1);
}


.installation-feature:hover
.installation-feature-image img {

    transform:
        scale(1.055);
}


.installation-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(23,32,42,.02),
            rgba(23,32,42,.58)
        );
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.installation-image-badge {

    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        13px 17px;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 15px;

    background:
        rgba(23,32,42,.78);

    backdrop-filter:
        blur(15px);

    -webkit-backdrop-filter:
        blur(15px);
}


.installation-badge-icon {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        var(--install-copper);

    color:
        #FFFFFF;
}


.installation-image-badge strong {

    display: block;

    color:
        #FFFFFF;

    font-size: 12px;
}


.installation-image-badge div span {

    display: block;

    margin-top: 3px;

    color:
        #BBC5CE;

    font-size: 9px;
}


/* =========================================================
   FEATURE CONTENT
========================================================= */

.installation-feature-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        60px;
}


.installation-feature-content
.section-eyebrow {

    color:
        #DDA783 !important;
}


.installation-feature-content
.section-eyebrow span {

    background:
        var(--install-copper) !important;
}


.installation-feature-content h3 {

    max-width: 500px;

    margin:
        15px 0 20px;

    color:
        #FFFFFF;

    font-size:
        clamp(
            38px,
            4vw,
            55px
        );

    line-height: 1;

    letter-spacing:
        -2.3px;
}


.installation-feature-content h3 em {

    color:
        #DDA783;

    font-style:
        normal;
}


.installation-feature-content > p {

    max-width: 490px;

    margin: 0;

    color:
        #B8C3CC;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.installation-highlights {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        13px 20px;

    margin-top:
        28px;
}


.installation-highlights div {

    display: flex;

    align-items: center;

    gap: 9px;

    color:
        #E3E8EC;

    font-size: 11px;

    font-weight: 700;
}


.installation-highlights i {

    color:
        #DDA783;

    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.installation-cta {

    width: fit-content;

    min-height: 51px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top:
        32px;

    padding:
        0 19px;

    border-radius:
        999px;

    background:
        var(--install-copper);

    color:
        #FFFFFF;

    text-decoration:
        none;

    font-size:
        12px;

    font-weight:
        900;

    box-shadow:
        0 12px 30px
        rgba(201,107,50,.20);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.installation-cta span {

    width: 29px;
    height: 29px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.15);
}


.installation-cta:hover {

    transform:
        translateY(-4px);

    background:
        #B85C27;

    box-shadow:
        0 18px 38px
        rgba(201,107,50,.28);
}


.installation-cta > i {

    transition:
        transform .25s ease;
}


.installation-cta:hover > i {

    transform:
        translateX(4px);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.installation-section .reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .75s ease,
        transform .75s
        cubic-bezier(.2,.7,.2,1);
}


.installation-section .reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* Stagger */

.installation-process
.installation-step:nth-child(2) {
    transition-delay: .05s;
}

.installation-process
.installation-step:nth-child(3) {
    transition-delay: .12s;
}

.installation-process
.installation-step:nth-child(4) {
    transition-delay: .19s;
}

.installation-process
.installation-step:nth-child(5) {
    transition-delay: .26s;
}

.installation-process
.installation-step:nth-child(6) {
    transition-delay: .33s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .installation-heading-row {

        grid-template-columns:
            1fr;

        gap: 22px;
    }


    .installation-process {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 16px;
    }


    .installation-line {

        display: none;
    }


    .installation-feature {

        grid-template-columns:
            1fr;
    }


    .installation-feature-image {

        min-height:
            430px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .installation-section {

        padding:
            80px 0
            75px;
    }


    .installation-header {

        margin-bottom:
            42px;
    }


    .installation-heading-row h2 {

        font-size:
            clamp(
                40px,
                11vw,
                54px
            );

        letter-spacing:
            -2px;
    }


    .installation-heading-row > p {

        font-size:
            13px;

        line-height:
            1.75;
    }


    .installation-process {

        grid-template-columns:
            1fr;

        gap:
            12px;
    }


    .installation-step {

        min-height:
            auto;

        padding:
            21px;

        border-radius:
            19px;
    }


    .installation-step-number {

        width: 54px;
        height: 54px;

        margin:
            0 0 19px;

        box-shadow:
            none;
    }


    .installation-step-content {

        padding-top:
            0;
    }


    .installation-step-icon {

        width: 43px;
        height: 43px;

        margin-bottom:
            15px;
    }


    .installation-step h3 {

        font-size:
            17px;
    }


    .installation-step p {

        font-size:
            12px;
    }


    .installation-feature {

        margin-top:
            45px;

        border-radius:
            22px;
    }


    .installation-feature-image {

        min-height:
            320px;
    }


    .installation-image-badge {

        left: 14px;
        right: 14px;
        bottom: 14px;
    }


    .installation-feature-content {

        padding:
            35px 23px 40px;
    }


    .installation-feature-content h3 {

        font-size:
            clamp(
                36px,
                10vw,
                48px
            );

        letter-spacing:
            -1.8px;
    }


    .installation-feature-content > p {

        font-size:
            13px;
    }


    .installation-highlights {

        grid-template-columns:
            1fr;

        gap:
            11px;
    }


    .installation-cta {

        width:
            100%;

        justify-content:
            center;
    }

}
/* =========================================================
   HERO LIMITED OFFER
========================================================= */

.hero-offer {

    width: min(100%, 540px);

    margin-top: 24px;

    padding: 13px 16px;

    border: 1px solid
        rgba(255,255,255,.18);

    border-radius: 18px;

    background:
        rgba(10,25,42,.68);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.20);

    color: #FFFFFF;

    animation:
        offerAppear .8s
        .35s
        both;
}


@keyframes offerAppear {

    from {

        opacity: 0;

        transform:
            translateY(15px)
            scale(.98);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


/* =========================================================
   OFFER TOP
========================================================= */

.hero-offer-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding-bottom: 9px;

    border-bottom:
        1px solid
        rgba(255,255,255,.10);
}


.hero-offer-live {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        rgba(255,255,255,.72);

    font-size: 9px;

    font-weight: 900;

    letter-spacing:
        1.5px;
}


.hero-offer-live > span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background:
        #E86B35;

    box-shadow:
        0 0 0 5px
        rgba(232,107,53,.12);

    animation:
        offerPulse 1.5s
        infinite;
}


@keyframes offerPulse {

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

    50% {
        opacity: .45;
        transform: scale(.75);
    }

}


.hero-offer-discount {

    padding:
        5px 9px;

    border-radius:
        999px;

    background:
        #E86B35;

    color:
        #FFFFFF;

    font-size: 10px;

    font-weight: 900;

    letter-spacing:
        .5px;
}


/* =========================================================
   OFFER CONTENT
========================================================= */

.hero-offer-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 12px;
}


.hero-offer-content > div:first-child {

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.hero-offer-content strong {

    color:
        #FFFFFF;

    font-size:
        13px;

    font-weight:
        850;
}


.hero-offer-content span {

    color:
        rgba(255,255,255,.58);

    font-size:
        9px;

    line-height:
        1.4;
}


/* =========================================================
   COUNTDOWN
========================================================= */

.hero-countdown {

    display: flex;

    align-items: center;

    gap: 5px;

    flex-shrink: 0;
}


.countdown-unit {

    min-width: 39px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 5px 4px;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 8px;

    background:
        rgba(255,255,255,.07);
}


.countdown-unit strong {

    color:
        #FFFFFF;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        15px;

    font-weight:
        800;

    line-height:
        1;
}


.countdown-unit span {

    margin-top: 4px;

    color:
        rgba(255,255,255,.45);

    font-size:
        6px;

    font-weight:
        900;

    letter-spacing:
        1px;
}


.hero-countdown > b {

    color:
        rgba(255,255,255,.5);

    font-size:
        13px;

    font-weight:
        700;

    animation:
        countdownBlink 1s
        infinite;
}


@keyframes countdownBlink {

    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }

}
@media (max-width: 700px) {

    .hero-offer {

        width: 100%;

        margin-top: 18px;

        padding: 12px;

        border-radius: 15px;

    }


    .hero-offer-top {

        padding-bottom: 8px;

    }


    .hero-offer-live {

        font-size: 8px;

        letter-spacing:
            1.2px;
    }


    .hero-offer-discount {

        font-size: 9px;

        padding:
            5px 8px;
    }


    .hero-offer-content {

        align-items: flex-end;

        gap: 10px;

    }


    .hero-offer-content strong {

        font-size: 11px;

    }


    .hero-offer-content
    span {

        font-size: 8px;

    }


    .hero-countdown {

        gap: 3px;

    }


    .countdown-unit {

        min-width: 34px;

        padding:
            5px 3px;

        border-radius: 7px;

    }


    .countdown-unit strong {

        font-size:
            13px;

    }


    .countdown-unit span {

        font-size:
            5px;

    }


    .hero-countdown > b {

        font-size:
            10px;

    }

}
/* =========================================================
   HERO MOBILE FIX
   DO NOT CHANGE DESKTOP HERO
========================================================= */

@media (max-width: 700px) {

    /* -----------------------------------------
       HERO CONTAINER
    ----------------------------------------- */

    .hero-container {

    display: flex !important;

    flex-direction: column !important;

    align-items: stretch !important;

    justify-content: flex-start !important;

    width: calc(100% - 28px) !important;

    min-height: auto !important;

    padding-top: 20px !important;

    padding-bottom: 110px !important;

}


    /* -----------------------------------------
       HERO CONTENT
    ----------------------------------------- */

    .hero-content {

        width: 100% !important;

        max-width: 100% !important;

        margin: 0 !important;

        padding: 0 !important;
         order: 1 !important;

    }


    /* -----------------------------------------
       HERO EYEBROW
    ----------------------------------------- */

    .hero-eyebrow {

        margin-bottom: 14px !important;

        font-size: 9px !important;

        letter-spacing: 1.4px !important;

    }


    /* -----------------------------------------
       HERO HEADING
    ----------------------------------------- */

    .hero h1 {

        width: 100% !important;

        max-width: 100% !important;

        margin: 0 0 18px !important;

        font-size: clamp(
            42px,
            11vw,
            58px
        ) !important;

        line-height: 1.02 !important;

        letter-spacing: -2.4px !important;

        overflow-wrap: normal !important;

        word-break: normal !important;

    }


    /* -----------------------------------------
       HERO DESCRIPTION
    ----------------------------------------- */

    .hero-description {

        width: 100% !important;

        max-width: 100% !important;

        margin: 0 0 20px !important;

        font-size: 13px !important;

        line-height: 1.65 !important;

    }


    /* -----------------------------------------
       LOCATION
    ----------------------------------------- */

    .hero-locations {

        width: 100% !important;

        margin-bottom: 20px !important;

    }


    /* -----------------------------------------
       HERO BUTTONS
    ----------------------------------------- */

    .hero-actions {

        width: 100% !important;

        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr) !important;

        gap: 9px !important;

        margin: 0 !important;

    }


    .hero-primary-button,
    .hero-secondary-button {

        width: 100% !important;

        min-width: 0 !important;

        justify-content: center !important;

        white-space: nowrap !important;

        padding-left: 12px !important;

        padding-right: 12px !important;

    }


    /* -----------------------------------------
       OFFER
       THIS IS THE MAIN FIX
    ----------------------------------------- */

    .hero-offer {

    order: -10 !important;

    position: relative !important;

    inset: auto !important;

    width: 100% !important;

    max-width: 100% !important;

    margin: 0 0 22px !important;

    padding: 12px !important;

    border-radius: 16px !important;

    box-sizing: border-box !important;

    transform: none !important;

    z-index: 20 !important;

}


    /* -----------------------------------------
   MOBILE OFFER CONTENT
----------------------------------------- */

.hero-offer-content {

    display: flex !important;

    flex-direction: column !important;

    align-items: stretch !important;

    justify-content: flex-start !important;

    gap: 12px !important;

    padding-top: 8px !important;

}


/* OFFER TEXT */

.hero-offer-content > div:first-child {

    width: 100% !important;

    min-width: 0 !important;

}


.hero-offer-content strong {

    display: block !important;

    font-size: 13px !important;

    line-height: 1.3 !important;

}


.hero-offer-content > div:first-child span {

    display: block !important;

    margin-top: 4px !important;

    font-size: 8px !important;

    line-height: 1.45 !important;

}


/* -----------------------------------------
   COUNTDOWN
----------------------------------------- */

.hero-countdown {

    width: 100% !important;

    display: flex !important;

    align-items: center !important;

    justify-content: flex-start !important;

    gap: 5px !important;

}


.countdown-unit {

    flex: 1 1 0 !important;

    min-width: 0 !important;

    height: 44px !important;

    padding: 4px !important;

    box-sizing: border-box !important;

}


.countdown-unit strong {

    font-size: 15px !important;

    line-height: 1 !important;

}


.countdown-unit span {

    display: block !important;

    font-size: 5px !important;

    margin-top: 4px !important;

    letter-spacing: .5px !important;

}


.hero-countdown > b {

    font-size: 11px !important;

    flex: 0 0 auto !important;

}

    /* -----------------------------------------
       INFO CARD
    ----------------------------------------- */

    .hero-info-card {

        position: relative !important;

        inset: auto !important;

        width: 100% !important;

        max-width: 100% !important;

        margin: 14px 0 0 !important;

        box-sizing: border-box !important;
        order: 2 !important;

    }


    /* -----------------------------------------
       SLIDER CONTROLS
    ----------------------------------------- */

    .hero-slider-controls {

        bottom: 28px !important;

    }


    .hero-counter {

        right: 18px !important;

        bottom: 30px !important;

    }


    .hero-scroll {

        display: none !important;

    }

}
/* =========================================================
   WHERE WE SERVE — BANGALORE
========================================================= */

.service-areas-section {

    position: relative;

    padding: 130px 0;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(20, 184, 166, 0.07),
            transparent 30%
        ),
        #f7fafb;

    overflow: hidden;

}


/* ---------------------------------------------------------
   BACKGROUND DETAIL
--------------------------------------------------------- */

.service-areas-section::before {

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -220px;
    top: 180px;

    border: 1px solid rgba(11, 110, 153, 0.10);

    border-radius: 50%;

    pointer-events: none;

}


.service-areas-section::after {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -310px;
    top: 90px;

    border: 1px solid rgba(11, 110, 153, 0.05);

    border-radius: 50%;

    pointer-events: none;

}


/* ---------------------------------------------------------
   CONTAINER
--------------------------------------------------------- */

.service-areas-container {

    width: min(
        1320px,
        calc(100% - 40px)
    );

    margin: 0 auto;

    position: relative;

    z-index: 2;

}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.service-areas-heading {

    max-width: 760px;

    margin-bottom: 55px;

}


.service-areas-heading h2 {

    margin: 16px 0 22px;

    font-size: clamp(
        48px,
        6vw,
        82px
    );

    line-height: .98;

    letter-spacing: -3.5px;

    color: #0b1f3a;

}


.service-areas-heading h2 em {

    color: #0b8f87;

    font-style: normal;

}


.service-areas-heading p {

    max-width: 680px;

    margin: 0;

    font-size: 17px;

    line-height: 1.75;

    color: #60748b;

}


/* ---------------------------------------------------------
   COVERAGE HIGHLIGHT
--------------------------------------------------------- */

.service-areas-highlight {

    display: grid;

    grid-template-columns:
        auto
        1px
        1fr
        auto;

    align-items: center;

    gap: 35px;

    padding: 32px 38px;

    margin-bottom: 55px;

    border-radius: 24px;

    background: #0b1f3a;

    color: white;

    box-shadow:
        0 25px 60px rgba(11, 31, 58, .16);

}


.coverage-number {

    display: flex;

    flex-direction: column;

}


.coverage-number strong {

    font-size: 58px;

    line-height: .9;

    letter-spacing: -3px;

}


.coverage-number span {

    margin-top: 8px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    color: #77d8cf;

}


.coverage-divider {

    width: 1px;

    height: 55px;

    background: rgba(
        255,
        255,
        255,
        .18
    );

}


.coverage-copy strong {

    display: block;

    font-size: 18px;

    margin-bottom: 6px;

}


.coverage-copy p {

    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: rgba(
        255,
        255,
        255,
        .65
    );

}


.coverage-location {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 16px;

    border: 1px solid rgba(
        255,
        255,
        255,
        .15
    );

    border-radius: 100px;

    font-size: 12px;

    font-weight: 700;

}


.coverage-location i {

    color: #72d8cf;

}


/* ---------------------------------------------------------
   AREA GRID
--------------------------------------------------------- */

.service-areas-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

}


/* ---------------------------------------------------------
   REGION CARD
--------------------------------------------------------- */

.area-region {

    position: relative;

    padding: 34px;

    min-height: 280px;

    border: 1px solid #dfe8ed;

    border-radius: 24px;

    background: rgba(
        255,
        255,
        255,
        .82
    );

    box-shadow:
        0 10px 35px rgba(
            11,
            31,
            58,
            .045
        );

    overflow: hidden;

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1),
        box-shadow .45s ease,
        border-color .45s ease;

}


.area-region::before {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -55px;
    top: -55px;

    border-radius: 50%;

    border: 1px solid rgba(
        20,
        184,
        166,
        .12
    );

}


.area-region:hover {

    transform: translateY(-7px);

    border-color: rgba(
        20,
        184,
        166,
        .35
    );

    box-shadow:
        0 25px 55px rgba(
            11,
            31,
            58,
            .10
        );

}


/* ---------------------------------------------------------
   REGION HEADER
--------------------------------------------------------- */

.area-region-header {

    display: flex;

    gap: 18px;

    align-items: flex-start;

    margin-bottom: 28px;

}


.area-region-number {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: #e8f6f5;

    color: #0b8f87;

    font-size: 11px;

    font-weight: 800;

}


.area-region-label {

    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;

    color: #0b8f87;

}


.area-region h3 {

    margin: 0;

    color: #0b1f3a;

    font-size: 20px;

    line-height: 1.2;

    letter-spacing: -.4px;

}


/* ---------------------------------------------------------
   AREA LIST
--------------------------------------------------------- */

.area-list {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

}


.area-list span {

    display: inline-flex;

    align-items: center;

    padding: 9px 13px;

    border-radius: 100px;

    border: 1px solid #e2e9ed;

    background: #fff;

    color: #455b70;

    font-size: 12px;

    font-weight: 600;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;

}


.area-list span:hover {

    background: #0b8f87;

    color: #fff;

    border-color: #0b8f87;

    transform: translateY(-2px);

}


/* ---------------------------------------------------------
   BOTTOM CTA
--------------------------------------------------------- */

.service-areas-cta {

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    gap: 22px;

    margin-top: 22px;

    padding: 25px 30px;

    border-radius: 22px;

    background: #eaf5f4;

    border: 1px solid #d3ebe8;

}


.service-areas-cta-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: #0b8f87;

    color: white;

    font-size: 19px;

}


.service-areas-cta-content span {

    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #0b8f87;

}


.service-areas-cta-content h3 {

    margin: 0 0 4px;

    color: #0b1f3a;

    font-size: 18px;

}


.service-areas-cta-content p {

    margin: 0;

    font-size: 12px;

    color: #65788b;

}


.service-areas-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 19px;

    border-radius: 100px;

    background: #0b1f3a;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        transform .3s ease,
        background .3s ease;

}


.service-areas-button:hover {

    transform: translateX(4px);

    background: #0b8f87;

}


/* ---------------------------------------------------------
   REVEAL ANIMATION
--------------------------------------------------------- */

.service-areas-section .reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.2,.7,.2,1);

}


.service-areas-section .reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* ---------------------------------------------------------
   STAGGER
--------------------------------------------------------- */

.area-region:nth-child(1) {
    transition-delay: .05s;
}

.area-region:nth-child(2) {
    transition-delay: .12s;
}

.area-region:nth-child(3) {
    transition-delay: .19s;
}

.area-region:nth-child(4) {
    transition-delay: .26s;
}

.area-region:nth-child(5) {
    transition-delay: .33s;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .service-areas-section {

        padding: 85px 0;

    }


    .service-areas-container {

        width:
            calc(100% - 28px);

    }


    .service-areas-heading {

        margin-bottom: 35px;

    }


    .service-areas-heading h2 {

        font-size: clamp(
            42px,
            12vw,
            58px
        );

        letter-spacing: -2.5px;

    }


    .service-areas-heading p {

        font-size: 14px;

        line-height: 1.65;

    }


    .service-areas-highlight {

        grid-template-columns:
            auto 1fr;

        gap: 18px;

        padding: 24px;

        border-radius: 20px;

    }


    .coverage-number strong {

        font-size: 45px;

    }


    .coverage-divider {

        display: none;

    }


    .coverage-location {

        grid-column:
            1 / -1;

        justify-content: center;

    }


    .service-areas-grid {

        grid-template-columns:
            1fr;

        gap: 15px;

    }


    .area-region {

        padding: 25px;

        min-height: auto;

        border-radius: 20px;

    }


    .area-region h3 {

        font-size: 17px;

    }


    .area-list span {

        font-size: 11px;

        padding: 8px 11px;

    }


    .service-areas-cta {

        grid-template-columns:
            auto 1fr;

        padding: 20px;

        gap: 15px;

    }


    .service-areas-cta-content {

        min-width: 0;

    }


    .service-areas-cta-content h3 {

        font-size: 15px;

    }


    .service-areas-cta-content p {

        font-size: 11px;

    }


    .service-areas-button {

        grid-column:
            1 / -1;

        width: 100%;

        justify-content: center;

    }

}
/* =========================================================
   CUSTOMER REVIEWS
   PREMIUM SECTION
========================================================= */

.reviews-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(20, 184, 166, 0.10),
            transparent 30%
        ),
        #071b38;
    color: #ffffff;
}


/* subtle background grid */

.reviews-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
    pointer-events: none;
}


.reviews-container {
    position: relative;
    z-index: 2;

    width: min(
        calc(100% - 40px),
        1320px
    );

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.reviews-heading {
    max-width: 760px;
    margin-bottom: 55px;
}


.reviews-eyebrow {
    color: #8ee7dc;
}


.reviews-heading h2 {
    margin: 18px 0 22px;

    font-size: clamp(
        44px,
        5.5vw,
        78px
    );

    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 800;
}


.reviews-heading h2 em {
    color: #8ee7dc;
    font-style: normal;
}


.reviews-heading p {
    max-width: 650px;

    color: rgba(255,255,255,0.68);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   SUMMARY
========================================================= */

.reviews-summary {
    display: flex;
    align-items: center;

    width: 100%;

    margin-bottom: 45px;
    padding: 25px 30px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 22px;

    background:
        rgba(255,255,255,0.045);

    backdrop-filter: blur(14px);
}


.reviews-rating {
    display: flex;
    align-items: center;
    gap: 14px;
}


.reviews-rating strong {
    font-size: 48px;
    line-height: 1;
}


.reviews-stars,
.review-stars {
    color: #fbbf24;
    letter-spacing: 2px;
}


.reviews-rating span {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
}


.reviews-divider {
    width: 1px;
    height: 45px;

    margin: 0 45px;

    background: rgba(255,255,255,0.12);
}


.reviews-google {
    display: flex;
    align-items: center;
    gap: 14px;

    flex: 1;
}


.google-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: #ffffff;
    color: #4285f4;

    font-size: 20px;
}


.reviews-google strong {
    display: block;
    font-size: 14px;
}


.reviews-google span {
    display: block;

    margin-top: 4px;

    color: rgba(255,255,255,0.55);

    font-size: 12px;
}


.reviews-google > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-left: auto;

    padding: 12px 18px;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease;
}


.reviews-google > a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
}


/* =========================================================
   REVIEW GRID
========================================================= */

.reviews-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   REVIEW CARD
========================================================= */

.review-card {
    position: relative;

    min-height: 355px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.085),
            rgba(255,255,255,0.025)
        );

    backdrop-filter: blur(14px);

    overflow: hidden;

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1),
        border-color .45s ease,
        box-shadow .45s ease;
}


.review-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background:
        rgba(20,184,166,0.08);

    pointer-events: none;
}


.review-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(142,231,220,0.35);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.25);
}


.review-card-featured {
    background:
        linear-gradient(
            145deg,
            rgba(20,184,166,0.16),
            rgba(255,255,255,0.035)
        );

    border-color:
        rgba(142,231,220,0.25);
}


/* =========================================================
   CUSTOMER
========================================================= */

.review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;
}


.review-avatar {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #0f8f83,
            #0b6e99
        );

    color: #ffffff;

    font-weight: 800;
}


.review-customer {
    flex: 1;
}


.review-customer strong {
    display: block;
    font-size: 14px;
}


.review-customer span {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,0.48);

    font-size: 11px;
}


.review-google-small {
    color: #ffffff;
    opacity: .8;
}


/* =========================================================
   REVIEW BODY
========================================================= */

.review-card .review-stars {
    margin-bottom: 18px;
    font-size: 13px;
}


.review-card blockquote {
    margin: 0;

    color: rgba(255,255,255,0.76);

    font-size: 14px;
    line-height: 1.75;

    flex: 1;
}


.review-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    margin-top: 25px;
    padding: 8px 12px;

    border-radius: 100px;

    background: rgba(255,255,255,0.06);

    color: rgba(255,255,255,0.58);

    font-size: 10px;
    font-weight: 700;
}


.review-service i {
    color: #8ee7dc;
}


/* =========================================================
   CTA
========================================================= */

.reviews-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 25px;
    padding: 28px 32px;

    border-radius: 22px;

    background:
        linear-gradient(
            90deg,
            rgba(20,184,166,0.14),
            rgba(255,255,255,0.04)
        );

    border: 1px solid rgba(255,255,255,0.10);
}


.reviews-cta span {
    display: block;

    margin-bottom: 5px;

    color: #8ee7dc;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.reviews-cta strong {
    font-size: 16px;
}


.reviews-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 21px;

    border-radius: 100px;

    background: #0f8f83;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease;
}


.reviews-cta a:hover {
    transform: translateY(-2px);
    background: #12a095;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1000px) {

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

}


@media (max-width: 700px) {

    .reviews-section {
        padding: 85px 0;
    }


    .reviews-container {
        width: calc(100% - 28px);
    }


    .reviews-heading {
        margin-bottom: 35px;
    }


    .reviews-heading h2 {
        font-size: clamp(40px, 12vw, 56px);
        letter-spacing: -2px;
    }


    .reviews-heading p {
        font-size: 14px;
        line-height: 1.7;
    }


    .reviews-summary {
        flex-direction: column;
        align-items: stretch;

        gap: 20px;

        padding: 22px;
    }


    .reviews-rating {
        flex-wrap: wrap;
    }


    .reviews-rating strong {
        font-size: 40px;
    }


    .reviews-divider {
        width: 100%;
        height: 1px;

        margin: 0;
    }


    .reviews-google {
        width: 100%;
        flex-wrap: wrap;
    }


    .reviews-google > a {
        width: 100%;
        justify-content: center;

        margin-left: 0;
    }


    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .review-card {
        min-height: auto;
        padding: 24px;
    }


    .reviews-cta {
        flex-direction: column;
        align-items: stretch;

        padding: 24px;
    }


    .reviews-cta a {
        justify-content: center;
    }

}
/* =========================================================
   PREMIUM FAQ SECTION
========================================================= */

.faq-section {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fafb 100%
        );
    overflow: hidden;
}


/* =========================================================
   FAQ CONTAINER
========================================================= */

.faq-container {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: center;
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.faq-visual {
    position: relative;
}


.faq-image-frame {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 30px;
    background: #0f172a;
    box-shadow:
        0 30px 80px rgba(15, 23, 42, .16);
}


.faq-image-frame img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    display: block;
    object-fit: cover;
    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}


.faq-image-frame:hover img {
    transform: scale(1.05);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.faq-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,.02) 30%,
            rgba(15,23,42,.72) 100%
        );

    pointer-events: none;
}


/* =========================================================
   FLOATING CARD
========================================================= */

.faq-floating-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px;

    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;

    background:
        rgba(255,255,255,.12);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    color: #ffffff;

    box-shadow:
        0 15px 40px rgba(0,0,0,.18);

    animation:
        faqFloat 4s ease-in-out infinite;
}


.faq-floating-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: rgba(255,255,255,.15);

    font-size: 18px;
}


.faq-floating-card strong {
    display: block;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}


.faq-floating-card span {
    display: block;

    margin-top: 4px;

    color: rgba(255,255,255,.72);

    font-size: 11px;
    line-height: 1.4;
}


@keyframes faqFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* =========================================================
   FAQ CONTENT
========================================================= */

.faq-content {
    max-width: 720px;
}


.faq-content h2 {
    margin: 0;

    color: var(--ink);

    font-size: clamp(
        40px,
        4.5vw,
        62px
    );

    font-weight: 850;
    line-height: 1;
    letter-spacing: -2.8px;
}


.faq-content h2 em {
    color: var(--orange);
    font-style: normal;
}


.faq-intro {
    max-width: 620px;

    margin: 22px 0 35px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    border-top: 1px solid var(--line);
}


.faq-item {
    border-bottom: 1px solid var(--line);
}


.faq-item summary {
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0;

    color: var(--ink);

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    list-style: none;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary i {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eef4f5;

    color: var(--orange);

    font-size: 11px;

    transition:
        transform .3s ease,
        background .3s ease;
}


.faq-item[open] summary i {
    transform: rotate(45deg);

    background: var(--orange);
    color: #ffffff;
}


.faq-answer {
    max-width: 620px;

    padding:
        0 45px 22px 0;

    animation:
        faqAnswer .3s ease;
}


.faq-answer p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.75;
}


@keyframes faqAnswer {

    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

}


/* =========================================================
   FAQ CTA
========================================================= */

.faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 30px;
    padding-top: 24px;

    border-top: 1px solid var(--line);

    color: var(--muted);

    font-size: 13px;
    font-weight: 700;
}


.faq-call-button {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 20px;

    border-radius: 999px;

    background: var(--navy);
    color: #ffffff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(15,23,42,.15);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.faq-call-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 32px rgba(15,23,42,.22);
}


/* =========================================================
   FAQ TABLET
========================================================= */

@media (max-width: 1000px) {

    .faq-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .faq-visual {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }


    .faq-image-frame,
    .faq-image-frame img {
        min-height: 480px;
    }


    .faq-content {
        max-width: 760px;
        margin: 0 auto;
    }

}


/* =========================================================
   FAQ MOBILE
========================================================= */

@media (max-width: 700px) {

    .faq-section {
        padding: 75px 0;
    }


    .faq-container {
        gap: 35px;
    }


    .faq-image-frame,
    .faq-image-frame img {
        min-height: 390px;
    }


    .faq-floating-card {
        left: 14px;
        right: 14px;
        bottom: 14px;

        padding: 13px;
    }


    .faq-floating-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }


    .faq-floating-card strong {
        font-size: 12px;
    }


    .faq-floating-card span {
        font-size: 9px;
    }


    .faq-content h2 {
        font-size: clamp(
            36px,
            10vw,
            48px
        );

        letter-spacing: -2px;
    }


    .faq-intro {
        font-size: 13px;
        margin-top: 18px;
        margin-bottom: 25px;
    }


    .faq-item summary {
        min-height: 62px;
        font-size: 13px;
    }


    .faq-item summary i {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
    }


    .faq-answer {
        padding:
            0 35px 18px 0;
    }


    .faq-answer p {
        font-size: 12px;
    }


    .faq-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }


    .faq-call-button {
        width: 100%;
    }

}
/* =========================================================
   PREMIUM Divi SAFETY NETS FOOTER
========================================================= */

.site-footer {
    position: relative;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(15,118,110,.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 65%,
            rgba(15,118,110,.08),
            transparent 30%
        ),
        #07111F;

    color: #FFFFFF;
    overflow: hidden;
}


/* =========================================================
   PREMIUM CTA
========================================================= */

.footer-cta {
    position: relative;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(
            135deg,
            rgba(15,118,110,.15),
            rgba(255,255,255,.025)
        );
}


.footer-cta-inner {
    min-height: 260px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


.footer-cta-content {
    max-width: 650px;
}


.footer-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: #70D5CC;

    font-size: 10px;
    font-weight: 850;

    letter-spacing: 1.8px;
}


.footer-cta-eyebrow i {
    font-size: 13px;
}


.footer-cta h2 {
    margin: 0;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: clamp(36px, 4vw, 60px);

    line-height: 1.02;

    letter-spacing: -2.5px;
}


.footer-cta h2 em {
    color: #67CFC6;
    font-style: normal;
}


.footer-cta-content p {
    max-width: 560px;

    margin: 18px 0 0;

    color: #94A5B7;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.footer-cta-actions {
    min-width: 330px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}


.footer-cta-call,
.footer-cta-whatsapp {
    min-height: 68px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 10px 16px;

    border-radius: 17px;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.footer-cta-call {
    background: #FFFFFF;
    color: #07111F;
}


.footer-cta-call:hover {
    transform: translateY(-3px);
}


.footer-cta-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    flex: 0 0 46px;

    border-radius: 13px;

    background: #0F766E;
    color: #FFFFFF;
}


.footer-cta-call small,
.footer-cta-call strong {
    display: block;
}


.footer-cta-call small {
    margin-bottom: 3px;

    color: #738092;

    font-size: 8px;
    font-weight: 850;

    letter-spacing: 1.2px;
}


.footer-cta-call strong {
    font-size: 16px;
}


.footer-cta-call > i {
    margin-left: auto;
}


.footer-cta-whatsapp {
    justify-content: center;

    border: 1px solid rgba(255,255,255,.13);

    color: #FFFFFF;

    background: rgba(255,255,255,.045);

    font-size: 13px;
    font-weight: 800;
}


.footer-cta-whatsapp:hover {
    transform: translateY(-3px);

    border-color: rgba(255,255,255,.25);

    background: rgba(255,255,255,.08);
}


.footer-cta-whatsapp i:first-child {
    color: #35D47C;
    font-size: 20px;
}


.footer-cta-whatsapp i:last-child {
    margin-left: 5px;
    font-size: 10px;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    position: relative;

    padding: 85px 0 70px;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.45fr
        1fr
        1fr
        1.2fr;

    gap: 60px;
}


/* =========================================================
   BRAND
========================================================= */

.footer-logo {
    display: inline-flex;

    margin-bottom: 17px;
}


.footer-logo img {
    width: 190px;
    height: auto;
    display: block;
}


.footer-brand-tagline {
    display: block;

    margin-bottom: 15px;

    color: #63C8C0;

    font-size: 8px;
    font-weight: 850;

    letter-spacing: 1.6px;
}


.footer-brand p {
    max-width: 370px;

    margin: 0;

    color: #8C9BAB;

    font-size: 12px;
    line-height: 1.85;
}


/* =========================================================
   TRUST
========================================================= */

.footer-trust {
    display: flex;

    gap: 8px;

    margin-top: 28px;
}


.footer-trust-item {
    min-width: 92px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 9px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 11px;

    background:
        rgba(255,255,255,.025);
}


.footer-trust-item i {
    color: #5CC9C0;

    font-size: 13px;
}


.footer-trust-item span {
    color: #8999AA;

    font-size: 8px;
    font-weight: 750;

    line-height: 1.35;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;

    gap: 8px;

    margin-top: 25px;
}


.footer-social a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 50%;

    background:
        rgba(255,255,255,.035);

    color: #FFFFFF;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}


.footer-social a:hover {
    transform: translateY(-4px);

    background: #0F766E;

    border-color: #0F766E;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column-eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #5BC7BE;

    font-size: 8px;
    font-weight: 850;

    letter-spacing: 1.5px;
}


.footer-column h3 {
    margin: 0 0 24px;

    color: #FFFFFF;

    font-size: 16px;
    font-weight: 800;
}


.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-column li {
    margin-bottom: 4px;
}


.footer-column li a {
    min-height: 33px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 5px 0;

    color: #8291A1;

    font-size: 11px;
    font-weight: 650;

    transition:
        color .25s ease,
        transform .25s ease;
}


.footer-column li a i {
    opacity: 0;

    color: #5AC8BF;

    font-size: 8px;

    transform: translateX(-5px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}


.footer-column li a:hover {
    color: #FFFFFF;

    transform: translateX(4px);
}


.footer-column li a:hover i {
    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   CONTACT CARDS
========================================================= */

.footer-contact-card {
    min-height: 66px;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 9px;

    padding: 10px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 15px;

    background:
        rgba(255,255,255,.025);

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.footer-contact-card:hover {
    transform: translateX(4px);

    background:
        rgba(255,255,255,.06);

    border-color:
        rgba(255,255,255,.14);
}


.footer-contact-icon {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    flex: 0 0 39px;

    border-radius: 11px;

    background:
        rgba(15,118,110,.14);

    color: #5CCAC1;

    font-size: 14px;
}


.footer-contact-text {
    min-width: 0;
}


.footer-contact-text small,
.footer-contact-text strong,
.footer-contact-text em {
    display: block;
}


.footer-contact-text small {
    margin-bottom: 3px;

    color: #667587;

    font-size: 7px;
    font-weight: 850;

    letter-spacing: 1.2px;
}


.footer-contact-text strong {
    color: #FFFFFF;

    font-size: 12px;
    font-weight: 800;
}


.footer-contact-text em {
    margin-top: 2px;

    color: #778798;

    font-size: 9px;
    font-style: normal;
}


.footer-contact-card > i {
    margin-left: auto;

    color: #596B7D;

    font-size: 9px;
}


.footer-whatsapp
.footer-contact-icon {
    color: #35D47C;
}


/* =========================================================
   LOCATION
========================================================= */

.footer-contact-location {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 14px;

    padding: 11px;

    border-radius: 14px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.06);
}


.footer-contact-location small,
.footer-contact-location strong {
    display: block;
}


.footer-contact-location small {
    margin-bottom: 4px;

    color: #657486;

    font-size: 7px;
    font-weight: 850;

    letter-spacing: 1.2px;
}


.footer-contact-location strong {
    color: #FFFFFF;

    font-size: 11px;
}


/* =========================================================
   SECURITY BADGE
========================================================= */

.footer-security-badge {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-top: 14px;

    padding: 13px;

    border:
        1px solid
        rgba(15,118,110,.22);

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(15,118,110,.12),
            rgba(255,255,255,.025)
        );
}


.footer-security-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    flex: 0 0 35px;

    border-radius: 10px;

    background: #0F766E;

    color: #FFFFFF;
}


.footer-security-badge strong,
.footer-security-badge span {
    display: block;
}


.footer-security-badge strong {
    margin-bottom: 3px;

    color: #FFFFFF;

    font-size: 10px;
}


.footer-security-badge span {
    color: #77899A;

    font-size: 8px;

    line-height: 1.45;
}


/* =========================================================
   BANGALORE STRIP
========================================================= */

.footer-location-strip {
    border-top:
        1px solid
        rgba(255,255,255,.06);

    border-bottom:
        1px solid
        rgba(255,255,255,.06);

    background:
        rgba(255,255,255,.018);
}


.footer-location-inner {
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


.footer-location-title {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.footer-location-title > i {
    color: #5CC9C0;
    font-size: 19px;
}


.footer-location-title span,
.footer-location-title strong {
    display: block;
}


.footer-location-title span {
    margin-bottom: 4px;

    color: #5BC7BE;

    font-size: 7px;
    font-weight: 850;

    letter-spacing: 1.4px;
}


.footer-location-title strong {
    color: #FFFFFF;

    font-size: 12px;
}


.footer-location-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    gap: 7px;
}


.footer-location-areas span {
    padding: 7px 10px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 20px;

    color: #8191A1;

    font-size: 8px;
    font-weight: 700;
}


/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom {
    border-top:
        1px solid
        rgba(255,255,255,.04);

    background: #050C16;
}


.footer-bottom-inner {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-copyright {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 5px;

    color: #566678;

    font-size: 9px;
    font-weight: 600;
}


.footer-copyright strong {
    color: #9AA8B7;
}


.footer-bottom-links {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 9px;
}


.footer-bottom-links a,
.footer-bottom-links span {
    color: #566678;

    font-size: 9px;
    font-weight: 600;

    text-decoration: none;

    transition: color .25s ease;
}


.footer-bottom-links a:hover {
    color: #FFFFFF;
}


.footer-back-top {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    margin-left: 5px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 50%;

    color: #FFFFFF;

    transition:
        transform .25s ease,
        background .25s ease;
}


.footer-back-top:hover {
    transform: translateY(-3px);

    background: #0F766E;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 3;
        max-width: 500px;
    }

    .footer-location-inner {
        align-items: flex-start;
        padding: 22px 0;
        flex-direction: column;
    }

    .footer-location-areas {
        justify-content: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .footer-cta-inner {
        min-height: auto;

        padding-top: 55px;
        padding-bottom: 55px;

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }


    .footer-cta h2 {
        font-size: 40px;

        letter-spacing: -1.8px;
    }


    .footer-cta-content p {
        font-size: 12px;
    }


    .footer-cta-actions {
        width: 100%;
        min-width: 0;
    }


    .footer-main {
        padding: 60px 0 45px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .footer-contact {
        grid-column: auto;

        max-width: none;
    }


    .footer-brand p {
        max-width: 100%;
    }


    .footer-trust {
        flex-wrap: wrap;
    }


    .footer-trust-item {
        flex: 1;
    }


    .footer-column h3 {
        margin-bottom: 17px;
    }


    .footer-column li a {
        min-height: 38px;

        font-size: 11px;
    }


    .footer-column li a i {
        opacity: 1;

        transform: none;
    }


    .footer-location-inner {
        padding: 24px 0;
    }


    .footer-location-areas {
        width: 100%;

        gap: 6px;
    }


    .footer-location-areas span {
        padding: 7px 9px;
    }


    .footer-bottom-inner {
        min-height: auto;

        padding: 22px 0;

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }


    .footer-bottom-links {
        gap: 7px;
    }


    .footer-back-top {
        position: absolute;

        right: 20px;

        margin-top: -5px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-cta h2 {
        font-size: 35px;
    }


    .footer-trust-item {
        min-width: 85px;
    }


    .footer-trust-item span {
        font-size: 7px;
    }

}
/* =========================================================
   Divi SAFETY NETS
   PREMIUM CONTACT SECTION
========================================================= */

.contact-section {

    position: relative;

    padding: 125px 0 90px;

    background:
        linear-gradient(
            135deg,
            #07111f 0%,
            #0d1b2e 48%,
            #10283b 100%
        );

    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND GLOWS
========================================================= */

.contact-bg-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(10px);

}


.contact-bg-glow-one {

    width: 520px;
    height: 520px;

    top: -250px;
    right: -180px;

    background:
        radial-gradient(
            circle,
            rgba(20,184,166,.18),
            transparent 68%
        );

}


.contact-bg-glow-two {

    width: 420px;
    height: 420px;

    bottom: -220px;
    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(249,115,22,.12),
            transparent 68%
        );

}


/* =========================================================
   HEADING
========================================================= */

.contact-heading {

    position: relative;

    max-width: 780px;

    margin-bottom: 65px;

    z-index: 2;

}


.contact-heading .section-eyebrow {

    color: #5eead4;

}


.contact-heading .section-eyebrow span {

    background: #14b8a6;

}


.contact-heading h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(
        44px,
        5vw,
        70px
    );

    font-weight: 850;

    line-height: .98;

    letter-spacing: -3px;

}


.contact-heading h2 em {

    color: #5eead4;

    font-style: normal;

}


.contact-heading p {

    max-width: 680px;

    margin: 25px 0 0;

    color: #aebdca;

    font-size: 16px;

    line-height: 1.75;

}


/* =========================================================
   CONTACT GRID
========================================================= */

.contact-grid {

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, 500px);

    gap: 75px;

    align-items: start;

    z-index: 2;

}


/* =========================================================
   LEFT CONTENT
========================================================= */

.contact-info {

    min-width: 0;

}


/* =========================================================
   STORY
========================================================= */

.contact-story {

    position: relative;

    display: flex;

    gap: 20px;

    padding-bottom: 35px;

    margin-bottom: 30px;

    border-bottom: 1px solid
        rgba(255,255,255,.09);

}


.contact-story-number {

    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border: 1px solid
        rgba(94,234,212,.25);

    border-radius: 12px;

    background:
        rgba(20,184,166,.08);

    color: #5eead4;

    font-size: 11px;

    font-weight: 900;

}


.contact-story span {

    display: block;

    margin-bottom: 10px;

    color: #5eead4;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.8px;

}


.contact-story h3 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 27px;

    line-height: 1.15;

    letter-spacing: -.8px;

}


.contact-story p {

    max-width: 570px;

    margin: 0;

    color: #9eafbe;

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   CONTACT OPTIONS
========================================================= */

.contact-options {

    display: grid;

    gap: 12px;

    margin-bottom: 25px;

}


.contact-option {

    position: relative;

    display: flex;

    align-items: center;

    gap: 17px;

    min-height: 92px;

    padding: 15px 18px;

    border: 1px solid
        rgba(255,255,255,.09);

    border-radius: 18px;

    background:
        rgba(255,255,255,.035);

    color: #ffffff;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;

}


.contact-option::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20,184,166,.08),
            transparent
        );

    opacity: 0;

    transition: opacity .3s ease;

}


.contact-option:hover {

    transform: translateX(7px);

    border-color:
        rgba(94,234,212,.35);

    background:
        rgba(255,255,255,.06);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.15);

}


.contact-option:hover::before {

    opacity: 1;

}


.contact-option-icon {

    position: relative;

    flex: 0 0 auto;

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background:
        rgba(20,184,166,.12);

    color: #5eead4;

    font-size: 18px;

    z-index: 1;

}


.contact-whatsapp
.contact-option-icon {

    color: #86efac;

    background:
        rgba(34,197,94,.12);

}


.contact-option-content {

    position: relative;

    min-width: 0;

    flex: 1;

    z-index: 1;

}


.contact-option-content span {

    display: block;

    margin-bottom: 4px;

    color: #718394;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.4px;

}


.contact-option-content strong {

    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 800;

}


.contact-option-content small {

    display: block;

    color: #8fa1b0;

    font-size: 11px;

}


.contact-option-arrow {

    position: relative;

    flex: 0 0 auto;

    color: #607382;

    font-size: 12px;

    transition:
        transform .3s ease,
        color .3s ease;

    z-index: 1;

}


.contact-option:hover
.contact-option-arrow {

    color: #5eead4;

    transform:
        translate(3px,-3px);

}


/* =========================================================
   LOCATION
========================================================= */

.contact-location {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px;

    margin-top: 10px;

    border-radius: 17px;

    background:
        rgba(255,255,255,.035);

    border: 1px solid
        rgba(255,255,255,.07);

}


.contact-location-icon {

    width: 43px;
    height: 43px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        rgba(249,115,22,.10);

    color: #fb923c;

}


.contact-location span {

    display: block;

    margin-bottom: 3px;

    color: #718394;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.contact-location strong {

    display: block;

    color: #ffffff;

    font-size: 14px;

}


.contact-location small {

    display: block;

    margin-top: 3px;

    color: #8fa1b0;

    font-size: 10px;

}


/* =========================================================
   TRUST LINE
========================================================= */

.contact-trust-line {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 20px;

}


.contact-trust-item {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #8fa1b0;

    font-size: 10px;

    font-weight: 600;

}


.contact-trust-item i {

    color: #5eead4;

    font-size: 11px;

}


/* =========================================================
   ENQUIRY CARD
========================================================= */

.contact-card {

    position: relative;

    padding: 32px;

    border: 1px solid
        rgba(255,255,255,.12);

    border-radius: 27px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.045)
        );

    box-shadow:
        0 35px 90px
        rgba(0,0,0,.25),

        inset 0 1px 0
        rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

}


.contact-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(94,234,212,.13),
            transparent 70%
        );

    pointer-events: none;

}


/* =========================================================
   CARD HEADER
========================================================= */

.contact-card-header {

    position: relative;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

}


.contact-card-label {

    display: block;

    margin-bottom: 13px;

    color: #5eead4;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.7px;

}


.contact-card-header h3 {

    margin: 0;

    color: #ffffff;

    font-size: 28px;

    line-height: 1.08;

    letter-spacing: -.9px;

}


.contact-card-shield {

    width: 48px;
    height: 48px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background:
        rgba(20,184,166,.10);

    border: 1px solid
        rgba(94,234,212,.16);

    color: #5eead4;

    font-size: 18px;

}


.contact-card-description {

    margin: 17px 0 25px;

    color: #94a6b5;

    font-size: 12px;

    line-height: 1.65;

}


/* =========================================================
   FORM
========================================================= */

.contact-form {

    display: grid;

    gap: 15px;

}


.contact-form-group {

    display: grid;

    gap: 7px;

}


.contact-form-group label {

    color: #b8c5d0;

    font-size: 10px;

    font-weight: 800;

}


.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid
        rgba(255,255,255,.10);

    border-radius: 11px;

    outline: none;

    background:
        rgba(0,0,0,.17);

    color: #ffffff;

    font-family: inherit;

    font-size: 12px;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

}


.contact-form-group input,
.contact-form-group select {

    height: 46px;

    padding: 0 13px;

}


.contact-form-group textarea {

    min-height: 78px;

    padding: 12px 13px;

    resize: vertical;

}


.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {

    color: #657786;

}


.contact-form-group select {

    appearance: none;

    cursor: pointer;

}


.contact-form-group select option {

    background: #0d1b2e;

    color: #ffffff;

}


.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {

    border-color:
        rgba(94,234,212,.65);

    background:
        rgba(20,184,166,.045);

    box-shadow:
        0 0 0 3px
        rgba(20,184,166,.08);

}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {

    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 4px;

    padding: 0 18px;

    border: 0;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #14b8a6,
            #0f766e
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 12px;

    font-weight: 850;

    cursor: pointer;

    box-shadow:
        0 12px 28px
        rgba(20,184,166,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.contact-submit:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px
        rgba(20,184,166,.28);

}


.contact-submit-icon {

    display: grid;

    place-items: center;

    font-size: 18px;

}


.contact-submit > i {

    font-size: 10px;

    transition:
        transform .25s ease;

}


.contact-submit:hover > i {

    transform:
        translateX(4px);

}


/* =========================================================
   CARD TRUST
========================================================= */

.contact-card-trust {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 16px;

    color: #718394;

    font-size: 9px;

}


.contact-card-trust i {

    color: #5eead4;

}


/* =========================================================
   BOTTOM CTA
========================================================= */

.contact-bottom {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 75px;

    padding: 25px 28px;

    border: 1px solid
        rgba(255,255,255,.09);

    border-radius: 19px;

    background:
        rgba(255,255,255,.035);

    z-index: 2;

}


.contact-bottom-content span {

    display: block;

    margin-bottom: 5px;

    color: #718394;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.contact-bottom-content strong {

    color: #ffffff;

    font-size: 17px;

}


.contact-bottom-button {

    min-height: 45px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 0 18px;

    border-radius: 999px;

    background: #ffffff;

    color: #0d1b2e;

    font-size: 11px;

    font-weight: 850;

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.contact-bottom-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.20);

}


/* =========================================================
   CONTACT REVEAL ANIMATION
========================================================= */

.contact-section .reveal {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .75s ease,
        transform .75s
        cubic-bezier(.2,.7,.2,1);

}


.contact-section .reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .contact-card {

        max-width: 650px;

        width: 100%;

        margin: 0 auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .contact-section {

        padding:
            80px 0
            65px;

    }


    .contact-heading {

        margin-bottom: 40px;

    }


    .contact-heading h2 {

        font-size:
            clamp(
                40px,
                11vw,
                54px
            );

        letter-spacing: -2.3px;

    }


    .contact-heading p {

        margin-top: 18px;

        font-size: 13px;

        line-height: 1.7;

    }


    .contact-grid {

        gap: 30px;

    }


    .contact-story {

        gap: 13px;

        padding-bottom: 25px;

        margin-bottom: 22px;

    }


    .contact-story-number {

        width: 36px;
        height: 36px;

        border-radius: 10px;

    }


    .contact-story h3 {

        font-size: 22px;

    }


    .contact-story p {

        font-size: 12px;

    }


    .contact-option {

        min-height: 80px;

        padding: 12px;

        border-radius: 15px;

    }


    .contact-option-icon {

        width: 43px;
        height: 43px;

        border-radius: 12px;

    }


    .contact-option-content strong {

        font-size: 14px;

    }


    .contact-option-content small {

        font-size: 9px;

    }


    .contact-location {

        padding: 15px;

    }


    .contact-trust-line {

        gap: 10px;

    }


    .contact-trust-item {

        font-size: 9px;

    }


    .contact-card {

        padding: 22px 17px;

        border-radius: 21px;

    }


    .contact-card-header h3 {

        font-size: 24px;

    }


    .contact-card-shield {

        width: 42px;
        height: 42px;

    }


    .contact-bottom {

        flex-direction: column;

        align-items: stretch;

        gap: 18px;

        margin-top: 45px;

        padding: 20px;

    }


    .contact-bottom-button {

        width: 100%;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .contact-option-content small {

        display: none;

    }


    .contact-option-arrow {

        display: none;

    }


    .contact-card-header h3 {

        font-size: 21px;

    }

}

/* =========================================================
   PREMIUM ABOUT — Divi SAFETY NETS
========================================================= */

.about-Divi-section {
    position: relative;
    padding: 120px 0 105px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(15,118,110,.07),
            transparent 30%
        ),
        #F8FAFC;
    overflow: hidden;
}


/* =========================================================
   BACKGROUND DETAIL
========================================================= */

.about-Divi-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -280px;
    bottom: -250px;
    border-radius: 50%;
    background: rgba(10,31,61,.035);
    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.about-Divi-container {
    position: relative;
    z-index: 2;

    width: min(
        1240px,
        calc(100% - 48px)
    );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(0, .92fr)
        minmax(0, 1.08fr);

    gap: 90px;

    align-items: center;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.about-Divi-visual {
    position: relative;
    min-height: 650px;
}


.about-Divi-image-wrap {
    position: absolute;

    inset: 0;

    overflow: hidden;

    border-radius: 28px;

    background: #DDE3E9;

    box-shadow:
        0 30px 80px rgba(10,31,61,.16);
}


.about-Divi-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1);
}


.about-Divi-visual:hover
.about-Divi-image-wrap img {
    transform: scale(1.045);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.about-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10,31,61,.02) 35%,
            rgba(10,31,61,.58) 100%
        );

    pointer-events: none;
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.about-experience-card {
    position: absolute;

    left: -28px;
    bottom: 55px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 16px 22px 16px 16px;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 17px;

    box-shadow:
        0 20px 50px rgba(10,31,61,.18);

    z-index: 3;
}


.about-experience-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--navy);

    color: #FFFFFF;

    font-size: 17px;
}


.about-experience-card strong,
.about-experience-card span {
    display: block;
}


.about-experience-card strong {
    color: var(--ink);

    font-size: 13px;

    font-weight: 850;
}


.about-experience-card span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 600;
}


/* =========================================================
   LOCATION BADGE
========================================================= */

.about-location-badge {
    position: absolute;

    right: -18px;
    top: 35px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 11px 16px;

    border-radius: 50px;

    background: var(--navy);

    color: #FFFFFF;

    box-shadow:
        0 15px 40px rgba(10,31,61,.22);

    z-index: 4;
}


.about-location-badge i {
    color: var(--orange);

    font-size: 12px;
}


.about-location-badge span {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: .5px;
}


/* =========================================================
   CONTENT
========================================================= */

.about-Divi-content {
    max-width: 620px;
}


.about-section-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--orange-dark);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}


.about-section-eyebrow span {
    width: 28px;
    height: 2px;

    background: var(--orange);

    border-radius: 10px;
}


/* =========================================================
   HEADING
========================================================= */

.about-Divi-content h2 {
    margin: 0 0 27px;

    color: var(--navy);

    font-family:
        "Plus Jakarta Sans",
        "Manrope",
        sans-serif;

    font-size: clamp(
        38px,
        4.2vw,
        60px
    );

    line-height: 1.08;

    letter-spacing: -2.5px;

    font-weight: 800;
}


.about-Divi-content h2 em {
    color: var(--orange-dark);

    font-style: normal;
}


/* =========================================================
   TEXT
========================================================= */

.about-Divi-content p {
    margin: 0 0 17px;

    color: #657184;

    font-size: 14px;

    line-height: 1.9;

    font-weight: 500;
}


.about-Divi-content .about-lead {
    color: #344155;

    font-size: 16px;

    line-height: 1.85;

    font-weight: 600;

    margin-bottom: 18px;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.about-highlights {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 12px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid #E1E6EC;
}


.about-highlight {
    display: flex;

    gap: 12px;

    padding: 13px;

    border-radius: 14px;

    transition:
        background .3s ease,
        transform .3s ease;
}


.about-highlight:hover {
    background: #FFFFFF;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(10,31,61,.07);
}


.about-highlight-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: rgba(15,118,110,.09);

    color: var(--orange-dark);

    font-size: 13px;
}


.about-highlight strong,
.about-highlight span {
    display: block;
}


.about-highlight strong {
    color: var(--ink);

    font-size: 11px;

    font-weight: 850;

    line-height: 1.3;
}


.about-highlight span {
    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.55;

    font-weight: 500;
}


/* =========================================================
   CTA
========================================================= */

.about-Divi-cta {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 30px;
}


.about-primary-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 21px;

    border-radius: 11px;

    background: var(--navy);

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 12px 28px rgba(10,31,61,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.about-primary-btn:hover {
    color: #FFFFFF;

    transform: translateY(-3px);

    background: var(--orange-dark);

    box-shadow:
        0 18px 35px rgba(15,118,110,.22);
}


.about-primary-btn i {
    font-size: 12px;
}


.about-cta-note {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #758193;

    font-size: 10px;

    font-weight: 700;
}


.about-cta-note i {
    color: var(--orange);

    font-size: 12px;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.about-trust-strip {
    position: relative;

    z-index: 2;

    width: min(
        1120px,
        calc(100% - 48px)
    );

    margin: 80px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 27px 35px;

    background: #FFFFFF;

    border: 1px solid #E5E9EE;

    border-radius: 18px;

    box-shadow:
        0 20px 60px rgba(10,31,61,.07);
}


.about-trust-item {
    min-width: 170px;

    text-align: center;
}


.about-trust-item strong {
    display: block;

    color: var(--navy);

    font-size: 14px;

    font-weight: 850;
}


.about-trust-item span {
    display: block;

    margin-top: 4px;

    color: #8490A0;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .5px;
}


.about-trust-divider {
    width: 1px;

    height: 38px;

    background: #E3E7EC;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-Divi-section {
        padding: 90px 0 80px;
    }

    .about-Divi-container {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .about-Divi-visual {
        min-height: 580px;

        max-width: 650px;

        width: 100%;

        margin-inline: auto;
    }

    .about-Divi-content {
        max-width: 720px;

        margin-inline: auto;
    }

    .about-Divi-content h2 {
        font-size: 48px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-Divi-section {
        padding: 70px 0 65px;
    }


    .about-Divi-container {
        width: min(
            100% - 30px,
            600px
        );

        gap: 48px;
    }


    .about-Divi-visual {
        min-height: 430px;
    }


    .about-Divi-image-wrap {
        border-radius: 21px;
    }


    .about-experience-card {
        left: 12px;

        bottom: 25px;

        padding: 12px 15px 12px 12px;
    }


    .about-experience-icon {
        width: 38px;
        height: 38px;

        font-size: 14px;

        border-radius: 10px;
    }


    .about-location-badge {
        right: 10px;

        top: 20px;

        padding: 9px 12px;
    }


    .about-Divi-content h2 {
        font-size: 38px;

        line-height: 1.1;

        letter-spacing: -1.7px;

        margin-bottom: 21px;
    }


    .about-Divi-content p {
        font-size: 13px;

        line-height: 1.8;
    }


    .about-Divi-content .about-lead {
        font-size: 14px;

        line-height: 1.8;
    }


    .about-highlights {
        grid-template-columns: 1fr;

        gap: 5px;

        margin-top: 25px;

        padding-top: 20px;
    }


    .about-highlight {
        padding: 11px 5px;
    }


    .about-Divi-cta {
        align-items: flex-start;

        flex-direction: column;

        gap: 13px;

        margin-top: 25px;
    }


    .about-primary-btn {
        width: 100%;

        justify-content: center;

        padding: 15px;
    }


    .about-trust-strip {
        width: min(
            100% - 30px,
            600px
        );

        margin-top: 55px;

        padding: 20px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px 10px;
    }


    .about-trust-item {
        min-width: 0;
    }


    .about-trust-divider {
        display: none;
    }

}
/* =========================================================
   ABOUT SECTION — LARGER TYPOGRAPHY
========================================================= */

/* Main heading */
/* .about-Divi-content h2 {
    font-size: clamp(44px, 4.8vw, 66px);
    line-height: 1.08;
    letter-spacing: -2.8px;
} */


/* Main introductory paragraph */
.about-Divi-content .about-lead {
    font-size: 18px;
    line-height: 1.85;
}


/* Normal paragraphs */
.about-Divi-content p {
    font-size: 15px;
    line-height: 1.9;
}


/* Highlight titles */
.about-highlight strong {
    font-size: 13px;
}


/* Highlight descriptions */
.about-highlight span {
    font-size: 11px;
    line-height: 1.6;
}


/* Eyebrow */
.about-section-eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
}


/* CTA note */
.about-cta-note {
    font-size: 11px;
}


/* Trust strip */
.about-trust-item strong {
    font-size: 15px;
}

.about-trust-item span {
    font-size: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* .about-Divi-content h2 {
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: -1.8px;
    } */

    .about-Divi-content .about-lead {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-Divi-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-highlight strong {
        font-size: 12px;
    }

    .about-highlight span {
        font-size: 11px;
    }

}
/* =========================================================
   PREMIUM BANGALORE LOCATION SECTION
========================================================= */

.premium-location-section {
    position: relative;
    padding: 125px 0 110px;
    background: #FFFFFF;
    overflow: hidden;
}


/* BACKGROUND DETAILS */

.premium-location-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -360px;
    top: -280px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(15,118,110,.08),
        transparent 68%
    );
    pointer-events: none;
}

.premium-location-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    left: -250px;
    bottom: -250px;
    border-radius: 50%;
    background: rgba(10,31,61,.025);
    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.premium-location-container {
    position: relative;
    z-index: 2;

    width: min(
        1240px,
        calc(100% - 48px)
    );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 90px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.premium-location-content {
    max-width: 600px;
}


.premium-location-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: var(--orange-dark);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}


.premium-location-eyebrow span {
    width: 30px;
    height: 2px;

    background: var(--orange);

    border-radius: 20px;
}


.premium-location-content h2 {
    margin: 0 0 27px;

    color: var(--navy);

    font-family:
        "Plus Jakarta Sans",
        "Manrope",
        sans-serif;

    font-size: clamp(
        42px,
        4.4vw,
        62px
    );

    line-height: 1.08;

    letter-spacing: -2.8px;

    font-weight: 800;
}


.premium-location-content h2 em {
    color: var(--orange-dark);
    font-style: normal;
}


.premium-location-content p {
    margin: 0 0 17px;

    color: #687587;

    font-size: 14px;

    line-height: 1.9;

    font-weight: 500;
}


.premium-location-content .premium-location-intro {
    color: #344155;

    font-size: 17px;

    line-height: 1.85;

    font-weight: 600;
}


/* =========================================================
   FEATURES
========================================================= */

.premium-location-features {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 12px;

    margin-top: 32px;

    padding-top: 25px;

    border-top: 1px solid #E4E8ED;
}


.premium-location-feature {
    display: flex;

    gap: 12px;

    padding: 12px;

    border-radius: 14px;

    transition:
        background .3s ease,
        transform .3s ease;
}


.premium-location-feature:hover {
    background: #F7FAFA;

    transform: translateY(-3px);
}


.premium-location-feature-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: rgba(15,118,110,.09);

    color: var(--orange-dark);

    font-size: 14px;
}


.premium-location-feature strong,
.premium-location-feature span {
    display: block;
}


.premium-location-feature strong {
    color: var(--ink);

    font-size: 12px;

    font-weight: 850;
}


.premium-location-feature span {
    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.55;

    font-weight: 500;
}


/* =========================================================
   CTA
========================================================= */

.premium-location-cta {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-top: 28px;

    padding: 15px 20px;

    border-radius: 12px;

    background: var(--navy);

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 15px 35px rgba(10,31,61,.16);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.premium-location-cta:hover {
    color: #FFFFFF;

    background: var(--orange-dark);

    transform: translateY(-3px);

    box-shadow:
        0 20px 40px rgba(15,118,110,.2);
}


.premium-location-cta span {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: rgba(255,255,255,.1);
}


.premium-location-cta > i {
    margin-left: 4px;
}


/* =========================================================
   RIGHT LOCATION CARD
========================================================= */

.premium-location-visual {
    position: relative;

    padding: 25px;
}


.premium-location-card {
    position: relative;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #0A1F3D,
            #102B4D
        );

    border-radius: 28px;

    box-shadow:
        0 35px 90px rgba(10,31,61,.23);

    overflow: hidden;
}


.premium-location-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    top: -120px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(15,118,110,.35),
        transparent 68%
    );
}


/* =========================================================
   CARD TOP
========================================================= */

.premium-location-card-top {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}


.premium-location-card-top span {
    display: block;

    margin-bottom: 5px;

    color: #7E91A7;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}


.premium-location-card-top strong {
    display: block;

    color: #FFFFFF;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 30px;

    font-weight: 800;

    letter-spacing: -1px;
}


.premium-location-pin {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background: rgba(15,118,110,.15);

    color: #5DD6C9;

    font-size: 20px;
}


/* =========================================================
   AREA GRID
========================================================= */

.premium-area-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 7px;

    padding: 25px 0;
}


.premium-area-grid a {
    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding: 10px 13px;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 10px;

    background: rgba(255,255,255,.035);

    color: #DDE7F0;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.premium-area-grid a:hover {
    background: rgba(15,118,110,.16);

    border-color: rgba(93,214,201,.2);

    transform: translateX(3px);
}


.premium-area-grid a span {
    font-size: 11px;

    font-weight: 700;
}


.premium-area-grid a i {
    color: #6C849B;

    font-size: 8px;

    transition:
        color .25s ease,
        transform .25s ease;
}


.premium-area-grid a:hover i {
    color: #5DD6C9;

    transform: translateX(2px);
}


/* =========================================================
   CARD FOOTER
========================================================= */

.premium-location-card-footer {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 19px;

    border-top: 1px solid rgba(255,255,255,.1);
}


.premium-location-card-footer div {
    display: flex;

    align-items: center;

    gap: 9px;
}


.premium-location-card-footer i {
    color: #5DD6C9;

    font-size: 12px;
}


.premium-location-card-footer span {
    color: #D9E3EC;

    font-size: 10px;

    font-weight: 700;
}


.premium-location-card-footer small {
    color: #708399;

    font-size: 9px;

    font-weight: 700;
}


/* =========================================================
   FLOATING CARD
========================================================= */

.premium-location-floating {
    position: absolute;

    right: -5px;
    bottom: 5px;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px 14px 14px;

    border-radius: 15px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 20px 45px rgba(10,31,61,.2);

    backdrop-filter: blur(15px);
}


.premium-location-floating-icon {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: rgba(15,118,110,.1);

    color: var(--orange-dark);

    font-size: 13px;
}


.premium-location-floating strong,
.premium-location-floating span {
    display: block;
}


.premium-location-floating strong {
    color: var(--ink);

    font-size: 11px;

    font-weight: 850;
}


.premium-location-floating span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 9px;

    font-weight: 600;
}


/* =========================================================
   BOTTOM CTA BAR
========================================================= */

.premium-location-bottom {
    position: relative;

    z-index: 3;

    width: min(
        1080px,
        calc(100% - 48px)
    );

    margin: 85px auto 0;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    background: #F5F7F9;

    border: 1px solid #E5E9EE;

    border-radius: 17px;
}


.premium-location-bottom span {
    display: block;

    margin-bottom: 5px;

    color: var(--orange-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


.premium-location-bottom strong {
    display: block;

    color: var(--navy);

    font-size: 15px;

    font-weight: 850;
}


.premium-location-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 18px;

    border-radius: 10px;

    background: #20C76A;

    color: #FFFFFF;

    white-space: nowrap;

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(32,199,106,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.premium-location-bottom a:hover {
    color: #FFFFFF;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(32,199,106,.25);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .premium-location-section {
        padding: 95px 0 85px;
    }

    .premium-location-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .premium-location-content {
        max-width: 720px;

        margin-inline: auto;
    }

    .premium-location-visual {
        max-width: 700px;

        width: 100%;

        margin-inline: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .premium-location-section {
        padding: 70px 0 65px;
    }


    .premium-location-container {
        width: min(
            100% - 30px,
            600px
        );

        gap: 45px;
    }


    .premium-location-content h2 {
        font-size: 40px;

        line-height: 1.1;

        letter-spacing: -1.8px;
    }


    .premium-location-content .premium-location-intro {
        font-size: 15px;

        line-height: 1.8;
    }


    .premium-location-content p {
        font-size: 14px;

        line-height: 1.8;
    }


    .premium-location-features {
        grid-template-columns: 1fr;

        gap: 4px;
    }


    .premium-location-visual {
        padding: 0;
    }


    .premium-location-card {
        padding: 22px 17px;

        border-radius: 21px;
    }


    .premium-location-card-top strong {
        font-size: 25px;
    }


    .premium-location-pin {
        width: 45px;
        height: 45px;

        border-radius: 13px;
    }


    .premium-area-grid {
        grid-template-columns: 1fr;

        gap: 6px;

        padding: 20px 0;
    }


    .premium-area-grid a {
        min-height: 47px;
    }


    .premium-location-floating {
        right: 10px;

        bottom: -18px;

        padding: 11px 14px 11px 11px;
    }


    .premium-location-floating-icon {
        width: 34px;
        height: 34px;
    }


    .premium-location-bottom {
        width: min(
            100% - 30px,
            600px
        );

        margin-top: 55px;

        flex-direction: column;

        align-items: flex-start;

        padding: 21px;
    }


    .premium-location-bottom a {
        width: 100%;

        justify-content: center;
    }

}
/* =========================================================
   BALCONY SAFETY NETS
   PREMIUM CUSTOMER REVIEWS
========================================================= */

.balcony-reviews-section {
    position: relative;
    padding: 125px 0;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(15,118,110,.07),
            transparent 30%
        ),
        #f8fafb;
    overflow: hidden;
}


/* subtle background detail */

.balcony-reviews-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -180px;
    border-radius: 50%;
    border: 1px solid rgba(15,118,110,.08);
    box-shadow:
        0 0 0 60px rgba(15,118,110,.025),
        0 0 0 120px rgba(15,118,110,.018);
    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.balcony-reviews-header {
    max-width: 760px;
    margin-bottom: 65px;
}

.balcony-reviews-header .section-eyebrow {
    margin-bottom: 20px;
}

.balcony-reviews-header h2 {
    margin: 0;
    color: #0a1f3d;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 800;
}

.balcony-reviews-header h2 em {
    color: #0f766e;
    font-style: normal;
}

.balcony-reviews-header p {
    max-width: 650px;
    margin-top: 24px;
    color: #667384;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   REVIEW GRID
========================================================= */

.balcony-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.balcony-review-card {
    position: relative;
    min-height: 315px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: rgba(255,255,255,.88);

    border: 1px solid rgba(10,31,61,.08);
    border-radius: 24px;

    box-shadow:
        0 15px 45px rgba(10,31,61,.055);

    transition:
        transform .4s cubic-bezier(.2,.7,.2,1),
        box-shadow .4s ease,
        border-color .4s ease;
}

.balcony-review-card:hover {
    transform: translateY(-9px);
    border-color: rgba(15,118,110,.25);

    box-shadow:
        0 25px 65px rgba(10,31,61,.11);
}


/* FEATURED CARD */

.balcony-review-featured {
    background:
        linear-gradient(
            145deg,
            #0a1f3d,
            #102d50
        );

    border-color: rgba(255,255,255,.08);
    transform: translateY(-12px);
}

.balcony-review-featured:hover {
    transform: translateY(-20px);
}


/* =========================================================
   TOP
========================================================= */

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.review-stars {
    display: flex;
    gap: 4px;
    color: #e7a928;
    font-size: 11px;
}

.review-mark {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(15,118,110,.08);
    color: #0f766e;

    font-size: 13px;
}

.balcony-review-featured .review-mark {
    background: rgba(255,255,255,.08);
    color: #7edbd1;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.review-text {
    margin: 25px 0 30px;

    color: #465365;

    font-size: 13px;
    line-height: 1.85;
    font-weight: 500;
}

.balcony-review-featured .review-text {
    color: #d9e4ed;
}


/* =========================================================
   AUTHOR
========================================================= */

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;

    padding-top: 20px;

    border-top: 1px solid rgba(10,31,61,.08);
}

.balcony-review-featured .review-author {
    border-color: rgba(255,255,255,.1);
}

.review-avatar {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #0f766e,
            #0a1f3d
        );

    color: #fff;

    font-size: 14px;
    font-weight: 800;
}

.review-author strong,
.review-author span {
    display: block;
}

.review-author strong {
    color: #0a1f3d;
    font-size: 12px;
    font-weight: 800;
}

.review-author span {
    margin-top: 3px;
    color: #8290a0;
    font-size: 10px;
    font-weight: 600;
}

.balcony-review-featured .review-author strong {
    color: #fff;
}

.balcony-review-featured .review-author span {
    color: #91a4b7;
}


/* =========================================================
   BOTTOM TRUST
========================================================= */

.balcony-reviews-bottom {
    margin-top: 45px;

    padding: 25px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: #ffffff;

    border: 1px solid rgba(10,31,61,.08);
    border-radius: 20px;

    box-shadow:
        0 15px 45px rgba(10,31,61,.045);
}

.reviews-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviews-trust-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    flex: 0 0 46px;

    border-radius: 14px;

    background: rgba(15,118,110,.08);
    color: #0f766e;
}

.reviews-trust strong,
.reviews-trust span {
    display: block;
}

.reviews-trust strong {
    color: #0a1f3d;
    font-size: 13px;
    font-weight: 800;
}

.reviews-trust span {
    margin-top: 4px;
    color: #7b8795;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   CTA
========================================================= */

.reviews-cta {
    min-width: 205px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    text-decoration: none;
}

.reviews-cta span {
    color: #8994a2;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-cta strong {
    margin-top: 5px;

    color: #0f766e;

    font-size: 13px;
    font-weight: 800;
}

.reviews-cta i {
    margin-left: 7px;
    transition: transform .25s ease;
}

.reviews-cta:hover i {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .balcony-reviews-section {
        padding: 95px 0;
    }

    .balcony-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .balcony-review-featured {
        transform: none;
    }

    .balcony-review-featured:hover {
        transform: translateY(-9px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .balcony-reviews-section {
        padding: 75px 0;
    }

    .balcony-reviews-header {
        margin-bottom: 40px;
    }

    .balcony-reviews-header h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .balcony-reviews-header p {
        font-size: 13px;
        line-height: 1.7;
    }

    .balcony-reviews-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .balcony-review-card {
        min-height: auto;
        padding: 25px;
        border-radius: 20px;
    }

    .review-text {
        font-size: 12px;
        line-height: 1.8;
        margin: 22px 0 25px;
    }

    .balcony-reviews-bottom {
        margin-top: 25px;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .reviews-cta {
        align-items: flex-start;
        width: 100%;
    }

}
/* =========================================================
   PREMIUM SEO CONTENT SECTION
   ========================================================= */

.seo-content-section {
    position: relative;
    display: block;
    width: 100%;
    padding: 100px 0;
    background: #f7fafc;
    overflow: hidden;
    isolation: isolate;
}

.seo-content-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(20, 184, 166, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(11, 110, 153, 0.08),
            transparent 30%
        );
}

.seo-content-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING
   ========================================================= */

.seo-content-section .section-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.seo-content-section .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;

    color: #0b6e99;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.seo-content-section .section-eyebrow span {
    display: inline-block;
    width: 30px;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, #0b6e99, #14b8a6);
}

.seo-content-section .section-heading h2 {
    margin: 0 0 20px;
    color: #0f172a;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.06;
    letter-spacing: -2px;
    font-weight: 750;
}

.seo-content-section .section-heading h2 em {
    color: #0b6e99;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -1px;
}

.seo-content-section .section-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: #64748b;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   CARDS
   ========================================================= */

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

.seo-content-card {
    position: relative;
    display: block;
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 24px;

    box-shadow:
        0 10px 35px rgba(15, 23, 42, 0.05);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.seo-content-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #0b6e99,
        #14b8a6
    );
}

.seo-content-card:hover {
    transform: translateY(-6px);

    border-color: rgba(20, 184, 166, 0.25);

    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.10);
}


/* =========================================================
   NUMBER
   ========================================================= */

.seo-content-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin-bottom: 22px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        rgba(11, 110, 153, 0.10),
        rgba(20, 184, 166, 0.12)
    );

    border: 1px solid rgba(11, 110, 153, 0.08);

    color: #0b6e99;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;

    transition: all 0.3s ease;
}

.seo-content-card:hover .seo-content-number {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #0b6e99,
        #14b8a6
    );

    transform: rotate(-4deg);
}


/* =========================================================
   CARD TEXT
   ========================================================= */

.seo-content-card h3 {
    margin: 0 0 16px;

    color: #0f172a;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 750;
    letter-spacing: -0.4px;
}

.seo-content-card p {
    margin: 0 0 16px;

    color: #64748b;

    font-size: 14px;
    line-height: 1.85;
}

.seo-content-card p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LONG CONTENT
   ========================================================= */

.seo-long-copy {
    position: relative;

    max-width: 1000px;

    margin: 65px auto 0;
    padding: 50px 55px;

    border-radius: 26px;

    background: #0f172a;

    overflow: hidden;

    box-shadow:
        0 25px 65px rgba(15, 23, 42, 0.15);
}

.seo-long-copy::before {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    top: -160px;
    right: -100px;

    border-radius: 50%;

    background: rgba(20, 184, 166, 0.13);

    filter: blur(55px);
}

.seo-long-copy h3 {
    position: relative;

    margin: 0 0 24px;

    color: #ffffff;

    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.2;
    letter-spacing: -1px;
}

.seo-long-copy p {
    position: relative;

    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14.5px;
    line-height: 1.9;
}

.seo-long-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   CTA
   ========================================================= */

.seo-cta {
    position: relative;

    max-width: 1000px;

    margin: 20px auto 0;
    padding: 28px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    border-radius: 22px;

    background: linear-gradient(
        135deg,
        #0b6e99,
        #0f7fa2,
        #14b8a6
    );

    box-shadow:
        0 18px 45px rgba(11, 110, 153, 0.18);

    overflow: hidden;
}

.seo-cta > div {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.seo-cta span {
    color: rgba(255, 255, 255, 0.72);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.seo-cta strong {
    color: #ffffff;

    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.seo-cta a {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 0 23px;

    border-radius: 12px;

    background: #ffffff;
    color: #0f172a;

    text-decoration: none;

    font-size: 13px;
    font-weight: 750;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.seo-cta a:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(15, 23, 42, 0.18);
}

.seo-cta a i {
    color: #14b8a6;
    font-size: 18px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .seo-content-section {
        padding: 80px 0;
    }

    .seo-content-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

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

    .seo-cta a {
        width: 100%;
    }
}


@media (max-width: 600px) {

    .seo-content-section {
        padding: 65px 0;
    }

    .seo-content-section .section-heading {
        padding: 0 18px;
        margin-bottom: 38px;
    }

    .seo-content-section .section-heading h2 {
        font-size: 33px;
        letter-spacing: -1.2px;
    }

    .seo-content-section .section-heading p {
        font-size: 14px;
    }

    .seo-content-grid {
        padding: 0 15px;
        gap: 15px;
    }

    .seo-content-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .seo-content-card h3 {
        font-size: 20px;
    }

    .seo-content-card p {
        font-size: 14px;
    }

    .seo-long-copy {
        margin: 45px 15px 0;
        padding: 32px 25px;
        border-radius: 21px;
    }

    .seo-long-copy h3 {
        font-size: 27px;
    }

    .seo-long-copy p {
        font-size: 14px;
    }

    .seo-cta {
        margin: 15px 15px 0;
        padding: 25px 22px;
        border-radius: 19px;
    }

    .seo-cta strong {
        font-size: 17px;
    }
}