/* ---------- Design tokens ---------- */
:root {
  --navy: #16345f;
  --navy-dark: #0d2340;
  --bronze: #a8703c;
  --bronze-dark: #8a5a2c;
  --gold: #cf9a52;
  --cream: #fbf6ee;
  --cream-2: #f3e9d9;
  --ink: #2c241c;
  --muted: #6b6055;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ea952;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(22, 52, 95, 0.1);
  --shadow-lg: 0 20px 50px rgba(22, 52, 95, 0.16);
  --font-head: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #171310;
    --cream-2: #201a15;
    --ink: #f1e9dd;
    --muted: #c9bcac;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.45);
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
section[id],
.service-card[id] {
  scroll-margin-top: 100px;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-dark);
}

@media (prefers-color-scheme: dark) {
  h1,
  h2,
  h3,
  h4 {
    color: #f6ecdd;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 10px 0 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  color: var(--bronze);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
}
.btn svg.lucide {
  width: 18px;
  height: 18px;
}
.btn-sm svg.lucide {
  width: 15px;
  height: 15px;
}
.hero-badge i {
  color: var(--gold);
  margin-right: 4px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(168, 112, 60, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(168, 112, 60, 0.45);
}
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
}
@media (prefers-color-scheme: dark) {
  .btn-outline {
    border-color: var(--gold);
    color: var(--gold);
  }
  .btn-outline:hover {
    background: var(--gold);
    color: var(--navy-dark);
  }
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  flex: 1;
  transition: all 0.25s ease;
}
.btn-sm.btn-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-sm.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-whatsapp-sm {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp-sm:hover {
  background: var(--whatsapp-dark);
}
@media (prefers-color-scheme: dark) {
  .btn-sm.btn-outline {
    border-color: var(--gold);
    color: var(--gold);
  }
  .btn-sm.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-dark);
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 700;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(22, 52, 95, 0.08);
  transition: box-shadow 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo img {
  height: 42px;
  width: auto;
}

/* ===== Main nav: desktop layout (row) ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-dark);
  position: relative;
  padding: 4px 0;
  line-height: 1;
  white-space: nowrap;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--bronze);
  transition: width 0.25s ease;
}
.main-nav a:not(.btn):hover::after,
.main-nav a.active::after {
  width: 100%;
}
.main-nav a.active {
  color: var(--bronze);
}
.nav-cta {
  padding: 10px 22px;
}
.nav-cta i {
  font-size: 0.9rem;
}

/* ===== Services dropdown =====
   Resting state is CLOSED at every breakpoint (display: none is the only
   unconditional rule for .dropdown — every other rule that reveals it is
   scoped inside a media query or gated behind a class, so there is never
   two equal-specificity rules fighting over the same property). */
.has-dropdown {
  position: relative;
}
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.has-dropdown > a:focus,
.has-dropdown > a:focus-visible {
  outline: none;
}
.dd-caret {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  color: var(--bronze);
  transition: transform 0.25s ease;
}
.dropdown {
  display: none;
  margin: 0;
  list-style: none;
  z-index: 50;
}
.dropdown li a {
  display: block;
  padding: 11px 16px;
  border-radius: 9px;
  font-size: 0.9rem;
  color: var(--navy-dark);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease, color 0.18s ease;
}
.dropdown li a:hover,
.dropdown li a:focus-visible {
  outline: none;
  /* background: var(--cream-2); */
  color: var(--bronze);
}
.dropdown li a::after {
  display: none;
}

/* ---- Desktop (>840px): dropdown is a floating panel, revealed on hover ---- */
@media (min-width: 841px) {
  .dropdown {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    min-width: 250px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(22, 52, 95, 0.06);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  }
  .dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid rgba(22, 52, 95, 0.06);
    border-top: 1px solid rgba(22, 52, 95, 0.06);
    border-radius: 2px 0 0 0;
  }
  /* .open is added/removed by JS with a short close-delay, giving the
     cursor time to travel from the trigger into the panel without it
     snapping shut the instant :hover is technically lost. */
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown,
  .has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .has-dropdown:hover .dd-caret,
  .has-dropdown:focus-within .dd-caret,
  .has-dropdown.open .dd-caret {
    transform: rotate(180deg);
  }
}

/* ---- Mobile (<=840px): dropdown expands inline. Its show/hide is driven
   directly by an inline style set from JS (see script.js) — not by a CSS
   class — so there is no stylesheet rule of any specificity that can
   override it. This block only supplies its cosmetic appearance. ---- */
@media (max-width: 840px) {
  .has-dropdown .dropdown {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    background: #f3e9d9;
    border-radius: 14px;
    padding: 20px;
    margin-top: 10px;
  }
  .dropdown li a {
    color: var(--navy-dark);
  }
  .has-dropdown.open .dd-caret {
    transform: rotate(180deg);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}
.hero-inner {
  max-width: 780px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero .eyebrow {
  color: var(--gold);
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--gold);
}
.hero-lede {
  color: #ecdfcd;
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-action {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
}

/* Center the hero copy on laptop/desktop screens */
@media (min-width: 841px) {
  .hero-inner {
    margin: 0 auto;
    text-align: center;
  }
  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,.hero-action {
    justify-content: start;
  }
   .hero-actions {
    justify-content: center;
  }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 46%;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lg);
}
.about-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin: 10px 0 20px;
}
.about-content p {
  color: var(--muted);
  margin-bottom: 16px;
}
.about-content .btn {
  margin-top: 8px;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.stat {
  position: relative;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--bronze);
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--bronze);
}
.stat-suffix i {
  font-size: 1.5rem;
  margin-left: 2px;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Page hero (About / Contact) ---------- */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.page-hero .eyebrow {
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 14px;
}
.page-hero .hero-lede {
  color: #ecdfcd;
  max-width: 560px;
  margin: 0 auto 26px;
}
.page-hero .hero-actions {
  justify-content: center;
}

/* ---------- Facilities (About page) ---------- */
.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.facilities-grid h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin: 10px 0 20px;
}
.facilities-grid > div > p {
  color: var(--muted);
  margin-bottom: 16px;
}
.facilities-grid .btn {
  margin-top: 8px;
}
.facilities-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.facilities-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
}
.facilities-list i {
  color: var(--bronze);
  font-size: 1.1rem;
}

/* ---------- Contact CTA (About page) ---------- */
.contact-cta {
  background: var(--navy-dark);
  text-align: center;
}
.contact-cta .eyebrow {
  color: var(--gold);
}
.contact-cta h2,
.contact-cta p {
  color: #fff;
}
.contact-cta p {
  color: #d9cdb9;
  max-width: 560px;
  margin: 14px auto 30px;
}

/* ---------- Services ---------- */
.services {
  background: var(--cream-2);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  height: 220px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}
.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-body p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 20px;
  flex: 1;
}
.service-actions {
  display: flex;
  gap: 10px;
}

/* ---------- Why us ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--cream);
  padding: 34px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  margin-bottom: 14px;
  color: var(--bronze);
}
.feature-icon svg.lucide {
  width: 34px;
  height: 34px;
  stroke-width: 1.6;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 260px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* ---------- Location ---------- */
.location {
  background: var(--navy);
}
.location .eyebrow {
  color: var(--gold);
}
.location h2,
.location p {
  color: #fff;
}
.location p {
  color: #d9cdb9;
}
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 20px 0;
}
.areas span {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.9rem;
  color: #f1e9dd;
}
.areas-note {
  text-align: center;
  color: #d9cdb9 !important;
  margin-bottom: 26px;
}
.location > .container > div:last-child {
  text-align: center;
}
.location .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.location .btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 10px 0 16px;
}
.contact-info > p {
  color: var(--muted);
  margin-bottom: 30px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 34px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.3rem;
  color: var(--bronze);
  width: 24px;
  text-align: center;
}
.contact-list strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.contact-list p {
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-list a:hover {
  color: var(--bronze);
}
.contact-map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #d9cdb9;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact a:hover {
  color: var(--gold);
}
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #a89a86;
}

/* ---------- Floating buttons ---------- */
.float-btn {
  position: fixed;
  left: 24px;
  z-index: 600;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-call {
  bottom: 96px;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-dark));
}
.float-whatsapp {
  bottom: 24px;
  background: var(--whatsapp);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid,
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-media {
    margin-bottom: 20px;
  }
}

@media (max-width: 840px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 90vw);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 64px 32px 32px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    width: 100%;
    overflow-y: auto;
  }
  .main-nav ul li {
    align-items: flex-start;
    width: 100%;
  }
  .main-nav a:not(.btn) {
    white-space: normal;
  }
  .hamburger {
    display: flex;
  }
  .nav-cta {
    margin-top: 10px;
  }

  .main-nav ul li.has-dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .has-dropdown > a {
    width: 100%;
  }
  .dd-caret {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }
  .hero {
    min-height: 100vh;
  }
  .about-img-accent {
    display: none;
  }
  .stats {
    gap: 26px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    left: 16px;
  }
  .float-call {
    bottom: 84px;
  }
  .float-whatsapp {
    bottom: 16px;
  }
  .about-img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 260px;
  object-fit: cover;
}
}
