/* =============================================================
   JAY BHAVANI CONSTRUCTION — STYLESHEET
   Theme: "Blueprint" — navy + white, structural grid lines and
   corner brackets borrowed from technical/architectural drawings.
   Colours are exposed as CSS variables below — change here only.
============================================================= */

/* ---------- 0. DESIGN TOKENS (edit colours here) ---------- */
:root {
  /* Brand navy scale */
  --navy-900: #0A1B33;
  --navy-800: #0F2A4D;
  --navy-700: #14345F;
  --navy-600: #1B4A82;
  --navy-500: #2C5FA0;

  /* Accent (used sparingly — CTAs, highlights) */
  --amber-500: #E8973A;
  --amber-600: #D4832A;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F4F7FA;
  --line: #DCE3EC;
  --ink-900: #1A2333;
  --ink-500: #5C6B84;

  /* Type */
  --font-heading: 'Archivo', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Shape / motion */
  --radius-sm: 6px;
  --radius-md: 10px;
  --shadow-card: 0 10px 30px -12px rgba(10, 27, 51, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 1. RESET / BASE ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  /* keeps sticky header from covering anchors */
}

html,
body {
  overflow-x: clip;
  /* safety net against any stray horizontal overflow */
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

.section-pad {
  padding: 96px 0;
}

.section-pad--tint {
  background: var(--off-white);
}

.section-pad--dark {
  background: var(--navy-900);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 40%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 48px);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-title {
  font-size: clamp(1.9rem, 1.6rem + 1.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-title--light {
  color: var(--white);
}

.section-lead {
  font-size: 1.08rem;
  color: var(--ink-500);
  max-width: 560px;
}

.section-lead--light {
  color: #B9C6DC;
}

.section-body {
  color: var(--ink-500);
  margin-bottom: 18px;
  max-width: 62ch;
}

/* ---------- Buttons ---------- */
.btn-cta,
.btn-cta-outline,
.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-cta {
  background: var(--amber-500);
  color: var(--navy-900);
  box-shadow: 0 10px 24px -8px rgba(232, 151, 58, 0.55);
}

.btn-cta:hover {
  background: var(--amber-600);
  transform: translateY(-3px);
  color: var(--navy-900);
}

.btn-cta--wide {
  width: 100%;
  justify-content: center;
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-nav-call {
  background: var(--navy-800);
  color: var(--white);
  padding: 11px 22px;
  font-size: 0.92rem;
}

.btn-nav-call:hover {
  background: var(--navy-700);
  color: var(--white);
}

/* =============================================================
   1. TOP BAR
============================================================= */
.topbar {
  background: var(--navy-900);
  color: #C9D5E8;
  font-size: 0.84rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 10px;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar__left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.topbar__item:hover {
  color: var(--amber-500);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__hours {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__socials {
  display: inline-flex;
  gap: 14px;
}

.topbar__socials a {
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.topbar__socials a:hover {
  color: var(--amber-500);
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {

  .topbar__item--email,
  .topbar__hours {
    display: none;
  }
}

/* =============================================================
   2. STICKY HEADER
============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px -12px rgba(10, 27, 51, 0.18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  color: var(--amber-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy-900);
  font-size: 1.18rem;
}

.brand__subtitle {
  font-size: 0.72rem;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav__list {
  display: flex;
  gap: 26px;
}

.site-nav__list a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy-800);
  position: relative;
  padding: 4px 0;
}

.site-nav__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--amber-500);
  transition: width 0.25s var(--ease);
}

.site-nav__list a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 24px -16px rgba(10, 27, 51, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }

  .site-nav.is-open {
    max-height: 480px;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }

  .site-nav__list a {
    display: block;
    padding: 10px 4px;
  }

  .btn-nav-call {
    justify-content: center;
    margin-top: 8px;
  }
}

/* =============================================================
   3. HERO
============================================================= */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  /* safety net: nothing inside the hero can bleed into sections below */
}

.hero__brackets {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  z-index: 3;
  pointer-events: none;
}

.hero__bracket-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 0.6;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw-brackets 1.6s var(--ease) 0.3s forwards;
}

@keyframes draw-brackets {
  to {
    stroke-dashoffset: 0;
  }
}

.hero__carousel {
  height: 90vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
}

.carousel-inner {
  height: 100%;
}

/* NOTE: we deliberately do NOT touch .carousel-item's `display` here.
   Bootstrap already sets `.carousel-item.active { display: block }`,
   and that item also has `float:left` from Bootstrap's own carousel
   CSS — overriding display to `flex` on top of that float previously
   collapsed the item's width, which is what caused the hero text to
   wrap one word per line and spill into the sections below. Centring
   is instead handled entirely inside .hero__content below. */
.hero .carousel-item {
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-900);
  /* fallback while image loads */
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.397) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero__eyebrow {
  color: var(--amber-500);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.hero__title {
  color: var(--white);
  font-size: clamp(2rem, 1.5rem + 2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.hero__text {
  color: #D6E0EF;
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 auto 30px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 64px;
  z-index: 4;
  opacity: 1;
}

.hero__nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  background: rgba(10, 27, 51, 0.35);
  transition: background 0.25s, border-color 0.25s;
}

.hero .carousel-control-prev:hover .hero__nav-icon,
.hero .carousel-control-next:hover .hero__nav-icon {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--navy-900);
}

.hero__indicators {
  position: absolute;
  z-index: 4;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero__indicators button {
  width: 30px;
  height: 4px;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}

.hero__indicators button.active {
  background: var(--amber-500);
  width: 46px;
}

@media (max-width: 767.98px) {
  .hero__carousel {
    height: 82vh;
    min-height: 480px;
  }

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

/* =============================================================
   4. MARQUEE (JS-driven via requestAnimationFrame — see script.js)
============================================================= */
.marquee {
  background: var(--navy-800);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  will-change: transform;
}

.marquee__group {
  display: inline-flex;
  align-items: center;
  padding-right: 8px;
}

.marquee__group span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0 18px;
}

.marquee__dot {
  color: var(--amber-500);
  padding: 0 !important;
}

/* =============================================================
   Scroll-reveal utility classes (see script.js IntersectionObserver)
============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal--left {
  transform: translate(-30px, 0);
}

.reveal--right {
  transform: translate(30px, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =============================================================
   5. ABOUT US
============================================================= */
.about__media {
  position: relative;
  padding: 0 20px 40px 0;
}

.about__frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--white);
  outline: 1px solid var(--line);
}

.about__img-main {
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.about__frame--small {
  position: absolute;
  right: -10px;
  bottom: 6px;
  width: 42%;
  z-index: 2;
}

.about__img-small {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  left: -10px;
  top: 20px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px;
  max-width: 150px;
  box-shadow: var(--shadow-card);
  z-index: 3;
}

.about__badge-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--amber-500);
}

.about__badge-suffix {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--amber-500);
}

.about__badge-label {
  width: 100%;
  font-size: 0.76rem;
  color: #C9D5E8;
  margin-top: 2px;
}

.about__stats {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px dashed var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__num,
.stat__suffix {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy-800);
  display: inline;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--ink-500);
  margin-top: 4px;
}

/* =============================================================
   Staggered reveal utility — used by "How It Works" steps below.
============================================================= */
.reveal-stagger {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--stagger, 0) * 0.16s);
}

/* =============================================================
   6. SERVICES — single Invisible Grill spotlight (image one side,
   content on the other; also reused as the standalone service block)
============================================================= */
.spotlight__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.spotlight__media img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.spotlight__tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(10, 27, 51, 0.85);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

.spotlight__list {
  margin: 22px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.spotlight__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-900);
  font-size: 0.98rem;
}

.spotlight__list i {
  color: var(--amber-500);
  margin-top: 3px;
  flex-shrink: 0;
}

/* =============================================================
   7. WHY CHOOSE US — staggered icon strip (not a card grid)
============================================================= */
.why__strip {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.why__strip::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0 6px, transparent 6px 12px);
}

.why__item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 22px 26px;
}

.why__item--offset {
  margin-left: 48px;
}

.why__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--amber-500);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.why__body h3 {
  color: var(--white);
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.why__body p {
  color: #B9C6DC;
  font-size: 0.94rem;
}

@media (max-width: 767.98px) {
  .why__strip::before {
    display: none;
  }

  .why__item--offset {
    margin-left: 0;
  }

  .why__item {
    flex-direction: column;
    text-align: left;
    gap: 14px;
  }
}

/* =============================================================
   8. HOW IT WORKS — connected numbered steps
============================================================= */
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 0;
  border-top: 1.5px dashed var(--line);
  z-index: 0;
}

.how__step {
  position: relative;
  z-index: 1;
  padding-right: 8px;
}

.how__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--amber-500);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.how__step h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.how__step p {
  color: var(--ink-500);
  font-size: 0.93rem;
}

@media (max-width: 991.98px) {
  .how__steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }

  .how__steps::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .how__steps {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   10. GALLERY
============================================================= */
.gallery__item {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.gallery__item img {
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 27, 51, 0.45);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

/* =============================================================
   11. FAQs
============================================================= */
.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px dashed var(--line);
  background: transparent;
}

.faq-accordion .accordion-item:first-of-type,
.faq-accordion .accordion-item:last-of-type {
  border-radius: 0;
}

.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-900);
  background: transparent;
  padding: 22px 8px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--amber-600);
  background: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-body {
  color: var(--ink-500);
  padding: 0 8px 24px;
  font-size: 0.95rem;
}

/* =============================================================
   12. TESTIMONIALS
============================================================= */
.testimonial-carousel {
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 44px 40px;
  text-align: center;
}

.testimonial-card__quote-icon {
  font-size: 2.2rem;
  color: var(--amber-500);
  margin-bottom: 8px;
}

.testimonial-card__text {
  color: #E4EBF5;
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 52ch;
  margin-inline: auto;
}

.testimonial-card__stars {
  color: var(--amber-500);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 3px;
}

.testimonial-card__author {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-card__author span {
  font-weight: 400;
  color: #9FAFC7;
}

.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
}

.testimonial-carousel__controls button:not(.testimonial-carousel__dots button) {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}

.testimonial-carousel__controls button:not(.testimonial-carousel__dots button):hover {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--navy-900);
}

.testimonial-carousel__dots {
  display: flex;
  gap: 8px;
}

.testimonial-carousel__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.testimonial-carousel__dots button.active {
  background: var(--amber-500);
  transform: scale(1.2);
}

/* =============================================================
   13. FLOATING BUTTONS
============================================================= */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(10, 27, 51, 0.45);
  transition: transform 0.25s var(--ease);
}

.float-btn:hover {
  transform: scale(1.08);
  color: var(--white);
}

.float-btn--whatsapp {
  left: 24px;
  background: #25D366;
}

.float-btn--call {
  right: 24px;
  background: var(--amber-500);
  color: var(--navy-900);
}

.float-btn__ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.6;
  animation: ping 2.2s ease-out infinite;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

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

@media (max-width: 575.98px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    bottom: 18px;
  }

  .float-btn--whatsapp {
    left: 16px;
  }

  .float-btn--call {
    right: 16px;
  }
}

/* =============================================================
   14. CONTACT
============================================================= */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 26px 0 28px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.96rem;
  color: var(--ink-900);
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--line);
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__item a:hover {
  color: var(--amber-600);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.contact-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px;
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.95rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(27, 74, 130, 0.15);
}

.contact-form__success {
  display: none;
  margin-top: 14px;
  color: #1F7A46;
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form__success.is-visible {
  display: block;
}

/* =============================================================
   15. FOOTER
============================================================= */
.site-footer {
  background: var(--navy-900);
  padding: 72px 0 0;
}

.brand--footer .brand__title {
  color: var(--white);
}

.brand--footer .brand__subtitle {
  color: #92A2BC;
}

.site-footer__about {
  color: #9FAFC7;
  font-size: 0.92rem;
  margin: 18px 0 20px;
  max-width: 34ch;
}

.site-footer__socials {
  display: flex;
  gap: 14px;
}

.site-footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.site-footer__socials a:hover {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--navy-900);
}

.site-footer__heading {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__list li {
  color: #9FAFC7;
  font-size: 0.9rem;
}

.site-footer__list a {
  color: #9FAFC7;
  transition: color 0.2s, padding-left 0.2s;
}

.site-footer__list a:hover {
  color: var(--amber-500);
  padding-left: 4px;
}

.site-footer__list--contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__list--contact i {
  margin-top: 4px;
  color: var(--amber-500);
  flex-shrink: 0;
}

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

.site-footer__bottom p {
  color: #7C8CAA;
  font-size: 0.86rem;
}

/* =============================================================
   RESPONSIVE TWEAKS
============================================================= */
@media (max-width: 767.98px) {
  .section-pad {
    padding: 64px 0;
  }
}