/* ==========================================================================
   Dynamic Lifts — premium theme
   Brand: teal #10A79B / deep charcoal #12201F
   ========================================================================== */

:root {
  --teal: #10a79b;
  --teal-600: #0d8b81;
  --teal-300: #4ecfc3;
  --teal-soft: #e6f7f5;
  --ink: #101d1c;
  --ink-2: #172b29;
  --charcoal: #2b3a39;
  --body: #4a5c5b;
  --line: rgba(16, 167, 155, 0.16);
  --white: #ffffff;
  --bg-soft: #f4f8f7;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 6px 18px rgba(16, 40, 38, 0.06);
  --shadow: 0 18px 44px rgba(16, 40, 38, 0.1);
  --shadow-lg: 0 34px 80px rgba(16, 40, 38, 0.18);
  --grad: linear-gradient(120deg, var(--teal) 0%, #16c2a8 55%, #0d8b81 100%);
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-brand {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

a { color: var(--teal-600); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--teal); }

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

section { position: relative; }












.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--ink); color: rgba(255, 255, 255, .74); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.text-teal { color: var(--teal) !important; }
.bg-ink { background: var(--ink) !important; }
.lead-lg { font-size: clamp(1rem, 1.6vw, 1.15rem); }

/* Eyebrow --------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-600);
  background: var(--teal-soft);
  border: 1px solid var(--line);
  padding: .42rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-dark .eyebrow { background: rgba(16, 167, 155, .14); color: var(--teal-300); border-color: rgba(16,167,155,.3); }
.eyebrow::before { content: ""; width: 16px; height: 2px; background: currentColor; border-radius: 2px; }

/* Buttons --------------------------------------------------------------- */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 100px;
  padding: .8rem 1.7rem;
  font-size: .95rem;
  letter-spacing: -.01em;
  border: 0;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:active { transform: translateY(1px); }
.btn-brand {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 26px rgba(16, 167, 155, .32);
}
.btn-brand:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 38px rgba(16, 167, 155, .42); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(16, 167, 155, .38);
}
.btn-ghost:hover { background: var(--teal-soft); color: var(--teal-600); transform: translateY(-3px); }
.btn-glass {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .38);
}
.btn-glass:hover { background: rgba(255, 255, 255, .22); color: #fff; transform: translateY(-3px); }
.btn-lg { padding: 1rem 2.1rem; font-size: 1rem; }

/* Header ---------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  font-size: .84rem;
  padding: .5rem 0;
}
.topbar a { color: rgba(255, 255, 255, .82); }
.topbar a:hover { color: var(--teal-300); }
.topbar .sep { opacity: .28; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(16, 40, 38, .07);
  transition: box-shadow .3s ease, padding .3s ease, background .3s ease;
}
.site-header.is-stuck { box-shadow: 0 14px 34px rgba(16, 40, 38, .1); background: rgba(255,255,255,.94); }
.navbar { padding: .7rem 0; transition: padding .3s ease; }
.site-header.is-stuck .navbar { padding: .35rem 0; }

.brand-logo { height: 90px; width: auto; transition: height .3s ease; }
.site-header.is-stuck .brand-logo { height: 90px; }

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .93rem;
  color: var(--ink) !important;
  padding: .6rem 1rem !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: .3rem;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s cubic-bezier(.2,.7,.3,1);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.navbar-nav .nav-link.active { color: var(--teal-600) !important; }

.navbar-toggler { border: 0; padding: .35rem .5rem; font-size: 1.6rem; color: var(--ink); }
.navbar-toggler:focus { box-shadow: none; }

/* Mega menu */
.mega { position: static; }
.mega-panel {
  border: 0;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin-top: .55rem;
  box-shadow: var(--shadow-lg);
  background: #fff;
  min-width: 640px;
}
.mega-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .7rem .8rem;
  border-radius: 14px;
  color: var(--ink);
  transition: background .22s ease, transform .22s ease;
}
.mega-item:hover { background: var(--teal-soft); transform: translateX(4px); color: var(--ink); }
.mega-item i { color: var(--teal); font-size: 1.15rem; margin-top: .15rem; }
.mega-item strong { font-family: var(--font-head); font-size: .92rem; display: block; }
.mega-item span { font-size: .78rem; color: var(--body); line-height: 1.45; display: block; }
@media (min-width: 992px) {
  .mega .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .28s cubic-bezier(.2,.7,.3,1); }
  .mega:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
}
@media (max-width: 991.98px) {
  .mega-panel { min-width: 100%; box-shadow: none; padding: .4rem 0; }
  .navbar-collapse { max-height: 78vh; overflow-y: auto; padding-bottom: 1rem; }
  .navbar-nav .nav-link::after { display: none; }
}

/* Hero slider ----------------------------------------------------------- */
.hero { position: relative; }
.hero .carousel-item { height: clamp(520px, 88vh, 900px); }
.hero .carousel-item img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s linear;
}
.hero .carousel-item.active img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(9, 24, 23, .92) 8%, rgba(9, 24, 23, .68) 45%, rgba(9, 24, 23, .28) 100%),
    radial-gradient(60% 80% at 85% 20%, rgba(16, 167, 155, .32), transparent 70%);
}
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; z-index: 3; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero p { color: rgba(255, 255, 255, .8); max-width: 56ch; font-size: clamp(1rem, 1.5vw, 1.15rem); }
.hero .eyebrow { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: #fff; }
.hero .carousel-indicators { margin-bottom: 2.2rem; z-index: 4; }
.hero .carousel-indicators [data-bs-target] {
  width: 34px; height: 4px; border-radius: 4px; border: 0;
  background: rgba(255, 255, 255, .34); opacity: 1;
}
.hero .carousel-indicators .active { background: var(--teal-300); width: 56px; }
.hero .carousel-control-prev, .hero .carousel-control-next { width: 8%; opacity: .55; z-index: 4; }
.hero .carousel-control-prev:hover, .hero .carousel-control-next:hover { opacity: 1; }

.hero-badges {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  background: rgba(9, 24, 23, .55);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.hero-badges .badge-item { color: rgba(255,255,255,.86); font-size: .88rem; display: flex; gap: .6rem; align-items: center; padding: .95rem 0; }
.hero-badges i { color: var(--teal-300); font-size: 1.15rem; }

/* Page hero (inner pages) ------------------------------------------------ */
.page-hero {
  position: relative;
  padding: clamp(96px, 15vw, 190px) 0 clamp(56px, 8vw, 96px);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(9, 24, 23, .94) 10%, rgba(9, 24, 23, .72) 55%, rgba(9, 24, 23, .45) 100%),
    radial-gradient(50% 70% at 82% 25%, rgba(16, 167, 155, .38), transparent 70%);
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255, 255, 255, .78); max-width: 60ch; }
.breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,.4); margin: 0; }
.breadcrumb a { color: rgba(255, 255, 255, .72); font-size: .88rem; }
.breadcrumb a:hover { color: var(--teal-300); }
.breadcrumb-item.active { color: var(--teal-300); font-size: .88rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.36); }

/* Cards ------------------------------------------------------------------ */
.card-premium {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 40, 38, .07);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.card-premium::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.card-premium:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line); }
.card-premium:hover::after { transform: scaleX(1); }
.card-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal-600);
  font-size: 1.5rem; margin-bottom: 1.1rem;
  transition: background .35s ease, color .35s ease, transform .35s ease;
}
.card-premium:hover .card-icon { background: var(--grad); color: #fff; transform: rotate(-6deg) scale(1.05); }
.card-premium h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.card-premium p { font-size: .94rem; margin-bottom: .9rem; }
.card-link { font-family: var(--font-head); font-weight: 600; font-size: .86rem; display: inline-flex; align-items: center; gap: .4rem; }
.card-link i { transition: transform .25s ease; }
.card-premium:hover .card-link i { transform: translateX(5px); }

/* Service media card */
.svc-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(16, 40, 38, .07);
  height: 100%;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.svc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.svc-card:hover .svc-media img { transform: scale(1.09); }
.svc-media .tag {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(9, 24, 23, .62); backdrop-filter: blur(10px);
  color: #fff; font-family: var(--font-head); font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 100px;
}
.svc-body { padding: 1.5rem 1.5rem 1.7rem; }

/* Category tile */
.cat-tile {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm);
}
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.cat-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9, 24, 23, .92) 6%, rgba(9, 24, 23, .35) 48%, rgba(9,24,23,.06) 100%);
}
.cat-tile:hover img { transform: scale(1.08); }
.cat-body { position: relative; z-index: 2; padding: 1.8rem; color: rgba(255,255,255,.82); }
.cat-body h3 { color: #fff; margin-bottom: .35rem; }
.cat-body p { font-size: .9rem; margin-bottom: .8rem; }

/* Stats ------------------------------------------------------------------ */
.stat-card {
  text-align: center; padding: 1.6rem 1rem;
  border-radius: var(--radius); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(8px);
}
.stat-num {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(120deg, #fff, var(--teal-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat-label { font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; margin-top: .6rem; color: rgba(255,255,255,.66); }

/* Split media ------------------------------------------------------------ */
.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; display: block; }
.media-accent {
  position: absolute; z-index: -1; border-radius: var(--radius-lg);
  inset: 26px -26px -26px 26px; background: var(--grad); opacity: .16;
}
.float-card {
  position: absolute; right: -8px; bottom: -18px;
  background: #fff; border-radius: 18px; padding: 1rem 1.25rem;
  box-shadow: var(--shadow); display: flex; gap: .85rem; align-items: center;
  border: 1px solid var(--line);
}
.float-card i { font-size: 1.6rem; color: var(--teal); }
.float-card strong { font-family: var(--font-head); display: block; color: var(--ink); font-size: 1.05rem; line-height: 1.2; }
.float-card span { font-size: .78rem; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .7rem; font-size: .96rem; }
.check-list li::before {
  content: "\F26E"; font-family: "bootstrap-icons";
  position: absolute; left: 0; top: -1px; color: var(--teal); font-size: 1.05rem;
}
.section-dark .check-list li { color: rgba(255,255,255,.75); }

/* Process ---------------------------------------------------------------- */
.process-step { position: relative; padding: 2rem 1.5rem; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); height: 100%; border: 1px solid rgba(16,40,38,.06); transition: transform .35s ease, box-shadow .35s ease; }
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.process-num {
  font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--teal); opacity: .55; margin-bottom: .6rem;
}
.process-step h3 { font-size: 1.05rem; }
.process-step p { font-size: .9rem; margin: 0; }

/* Why choose ------------------------------------------------------------- */
.why-item { display: flex; gap: 1rem; padding: 1.3rem; border-radius: var(--radius); transition: background .3s ease, transform .3s ease; }
.why-item:hover { background: rgba(255,255,255,.05); transform: translateX(6px); }
.why-item i { font-size: 1.5rem; color: var(--teal-300); }
.why-item h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.why-item p { font-size: .9rem; margin: 0; }

/* Gallery ---------------------------------------------------------------- */
.gal-item {
  position: relative; display: block; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); cursor: zoom-in;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.gal-item::after {
  content: "\F4FE"; font-family: "bootstrap-icons";
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(to top, rgba(9,24,23,.78), rgba(16,167,155,.35));
  color: #fff; font-size: 1.6rem; opacity: 0; transition: opacity .35s ease;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none;
  background: rgba(6, 16, 15, .93); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; background: none; border: 0;
  color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer;
}

/* Videos ----------------------------------------------------------------- */
.video-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; height: 100%; transition: transform .35s ease, box-shadow .35s ease; }
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: var(--ink); }
.video-frame::after { content: "\F4F4"; font-family: "bootstrap-icons"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 3rem; color: #fff; text-shadow: 0 6px 18px rgba(0,0,0,.5); pointer-events: none; }
.video-frame:has(iframe)::after { display: none; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card p { padding: 1rem 1.1rem; margin: 0; font-family: var(--font-head); font-size: .92rem; color: var(--ink); font-weight: 600; }

/* Certificates ----------------------------------------------------------- */
.cert-card { background: #fff; border-radius: var(--radius-lg); padding: 1.1rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(16,40,38,.07); transition: transform .35s ease, box-shadow .35s ease; height: 100%; }
.cert-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.cert-card img { border-radius: 12px; width: 100%; cursor: zoom-in; }
.cert-card h3 { font-size: 1rem; margin: 1rem 0 .2rem; }
.cert-card p { font-size: .85rem; margin: 0; }

/* Testimonials ----------------------------------------------------------- */
.tst-card { background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); height: 100%; border: 1px solid rgba(16,40,38,.06); position: relative; }
.tst-card .bi-quote { font-size: 2.4rem; color: var(--teal); opacity: .3; }
.tst-card p { font-size: .96rem; }
.tst-stars { color: #f5a623; font-size: .9rem; letter-spacing: .12em; }
.tst-name { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.tst-role { font-size: .82rem; }

/* CTA band --------------------------------------------------------------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: var(--grad);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.4rem);
  position: relative; overflow: hidden;
  box-shadow: 0 30px 70px rgba(16, 167, 155, .3);
}
.cta-band::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(255, 255, 255, .12);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .88); margin-bottom: 0; }

/* Forms ------------------------------------------------------------------ */
.form-panel { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.5rem, 3vw, 2.4rem); border: 1px solid rgba(16,40,38,.06); }
.form-label { font-family: var(--font-head); font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.form-control, .form-select {
  border-radius: 14px; border: 1.5px solid rgba(16, 40, 38, .12);
  padding: .8rem 1rem; font-size: .95rem; background: #fbfdfd; color: var(--ink);
}
.form-control:focus, .form-select:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(16, 167, 155, .13); background: #fff; }
.form-note { font-size: .8rem; }

.contact-tile { display: flex; gap: 1rem; padding: 1.4rem; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); height: 100%; border: 1px solid rgba(16,40,38,.06); }
.contact-tile i { font-size: 1.4rem; color: var(--teal); }
.contact-tile h3 { font-size: 1rem; margin-bottom: .25rem; }
.contact-tile p, .contact-tile a { font-size: .92rem; margin: 0; display: block; overflow-wrap: anywhere; }
.contact-tile > div { min-width: 0; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-frame iframe { width: 100%; height: 420px; border: 0; }

/* Accordion -------------------------------------------------------------- */
.accordion-item { border: 1px solid rgba(16,40,38,.08); border-radius: var(--radius) !important; margin-bottom: .8rem; overflow: hidden; background: #fff; }
.accordion-button { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1rem; padding: 1.1rem 1.3rem; }
.accordion-button:not(.collapsed) { background: var(--teal-soft); color: var(--teal-600); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-body { font-size: .95rem; padding-top: .4rem; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding-top: clamp(48px, 7vw, 84px); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; letter-spacing: 0; }
.site-footer a { color: rgba(255,255,255,.62); font-size: .92rem; }
.site-footer a:hover { color: var(--teal-300); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-logo { height: auto; background: #fff; padding: .5rem .7rem; border-radius: 14px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; display: inline-grid; place-items: center;
  background: rgba(255,255,255,.07); color: #fff; margin-right: .5rem; transition: all .3s ease;
}
.footer-social a:hover { background: var(--grad); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); margin-top: 2.5rem; padding: 1.2rem 0; font-size: .85rem; }

/* Floating actions -------------------------------------------------------- */
.float-actions {
  position: fixed; right: 14px; bottom: 16px; z-index: 1050;
  display: flex; flex-direction: column; gap: .6rem;
}
.float-actions a {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-size: 1.35rem; box-shadow: var(--shadow);
  transition: transform .28s cubic-bezier(.2,.7,.3,1), filter .28s ease;
  position: relative;
}
.float-actions a:hover { transform: translateY(-4px) scale(1.06); color: #fff; }
.fa-wa { background: #25d366; }
.fa-call { background: var(--teal); animation: pulse-ring 2.4s infinite; }
.fa-review { background: #4285f4; }
.fa-enq { background: var(--ink); }
.float-actions .fa-tip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff; font-size: .76rem; font-family: var(--font-head);
  padding: .3rem .7rem; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.float-actions a:hover .fa-tip { opacity: 1; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(16, 167, 155, .55); }
  70% { box-shadow: 0 0 0 16px rgba(16, 167, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 167, 155, 0); }
}
@media (max-width: 575.98px) {
  .float-actions { right: 10px; bottom: 10px; gap: .45rem; }
  .float-actions a { width: 46px; height: 46px; font-size: 1.2rem; }
  .float-actions .fa-tip { display: none; }
}

/* Utility ---------------------------------------------------------------- */
.rounded-xl { border-radius: var(--radius-lg) !important; }
.divider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); display: inline-block; }
.text-body-soft { color: var(--body); }
.section-dark p { color: rgba(255,255,255,.7); }
.op-70 { opacity: .7; }

.reveal { opacity: 0; }
.no-js .reveal, .anim-off .reveal { opacity: 1 !important; transform: none !important; }

@media (max-width: 475.98px) {

.hero .carousel-control-prev {
        display:none;
    }

    .hero .carousel-control-next {
        display:none;
    }
    
    
    
     section,
    header,
    footer,
    main {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .container-fluid {
        width: 100%;
        max-width: 100%;
    }

    [class*="col-"] {
        max-width: 100%;
    }
    
    }


@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
