@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

:root {
  --primary: #0b3d3b;
  --ink: #0b3d3b;
  --ink-2: #0f4744;
  --paper: #fbf8f2;
  --sand: #f2e9da;
  --mint: #dceee7;
  --gold: #c7962e;
  --gold-dark: #a97a22;
  --text: #1b2b29;
  --muted: #5c6d6a;
  --line: #d8cdb6;
  --radius: 14px;
  --maxw: 1180px;
}
#chatBtn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    z-index: 9999;
}
.btn {
    min-height: 46px;
    box-shadow: 0 8px 18px rgba(11, 61, 59, 0.06);
        display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    box-shadow: 0 10px 22px rgba(208, 154, 45, 0.22);
    background: var(--gold);
    color: var(--ink);
    border: 0;
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--paper);
  transform: translateY(-1px);
  border: 0;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 1rem; /* 16px minimum */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  color: var(--ink);
  margin: 0 0 0.4em 0;
  line-height: 1.15;
  font-weight: 700;
}
em {
  font-style: italic;
  color: var(--gold-dark);
}
p {
  margin: 0 0 1em 0;
  color:var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1rem;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-dark);
  display: inline-block;
}
section {
  padding: 90px 0;
}

/* â”€â”€ Section background utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-sand  { background: linear-gradient(180deg, var(--sand) 0%, #f5ede0 100%); }
.bg-mint  { background: linear-gradient(180deg, var(--mint) 0%, var(--paper) 100%); }
.bg-ink   { background: var(--ink); }
.bg-paper { background: var(--paper); }
.bg-white {background-color: #fff;}

/* Signature smile-arc divider */
.arc-divider {
  width: 100%;
  height: 46px;
  display: block;
}
.arc-divider path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
}
.arc-underline {
  display: block;
  width: 110px;
  height: 16px;
  margin-top: 2px;
}
.arc-underline path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* Header */
header {
  position: relative;
  z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    animation: slideDown 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,.1);
}

body.sticky-padding {
    padding-top: 94px; /* Same as your header height */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}



.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 50px;
  background: var(--paper);
  padding: 8px 14px;
  border-radius: 10px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
nav ul li a:hover {
  color: var(--gold-dark);
}
nav ul li a.active {
  color: var(--gold-dark);
  border-bottom: 2px solid var(--gold);
}
nav ul li a .chev {
  flex: none;
  transition: transform 0.15s ease;
}
nav ul li.has-dropdown:hover a .chev {
  transform: rotate(180deg);
}

/* Services dropdown - Floating Card style */
nav ul li.has-dropdown {
  position: relative;
}
.dropdown-menu {
  display: block !important;
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 680px;
  background: var(--paper);
  border: 1px solid rgba(11,61,59,0.12);
  border-radius: 18px;
  box-shadow:
    0 4px 12px rgba(11,61,59,0.04),
    0 20px 48px rgba(11,61,59,0.14);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 500;
}
/* Gold top accent line */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ink) 0%, var(--gold) 50%, var(--ink) 100%);
}
/* Invisible hover bridge gap filler */
.dropdown-menu::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}
nav ul li.has-dropdown:hover .dropdown-menu,
nav ul li.has-dropdown:focus-within .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}
/* Dropdown header */
.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px 12px;
  border-bottom: 1px solid var(--line);
}
.dropdown-header-title {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.dropdown-header-count {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  color: var(--ink-2);
  background: var(--mint);
  padding: 3px 12px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
/* Grid body - 2 service cols */
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  padding: 14px 16px;
}
.dropdown-col a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.18s ease, transform 0.18s ease;
  text-decoration: none;
}
.dropdown-col a:hover {
  background: #f0f6f5;
  transform: translateX(3px);
}
/* Icon chip */
.dd-icon {
  width: 38px;
  height: 38px;
  background: rgba(11,61,59,0.06);
  border: 1px solid rgba(11,61,59,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 1rem;
  color: var(--ink);
  transition: all 0.18s ease;
  margin-top: 1px;
}
.dropdown-col a:hover .dd-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
}
/* Text content */
.dd-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.dropdown-col a strong {
  font-size: 1rem;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.15s ease;
}
.dropdown-col a:hover strong {
  color: var(--gold-dark);
}
.dd-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.35;
  white-space: normal;
}
/* Dropdown footer */
.dropdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  background: rgba(11,61,59,0.03);
  border-top: 1px solid var(--line);
}
.dd-footer-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}
.dd-footer-link:hover {
  color: var(--gold-dark);
}
.dd-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease;
}
.dd-footer-btn:hover {
  background: #d89f2d;
  transform: translateY(-1px);
  color: #fff;
}

.dd-feat-wa:hover {
  background: #d9a93a;
  transform: translateY(-1px);
}
.dd-feat-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(251,248,242,0.9);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.15s ease;
}
.dd-feat-call:hover {
  background: rgba(255,255,255,0.14);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

.call-chip {
  display: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  color: var(--ink);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}


.nav-actions .whatsapp-btn {
  padding: 11px 22px;
}

/* Page header banner (for inner pages) */
.page-banner {
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(135deg, rgba(220, 238, 231, 0.82) 0%, rgba(251, 248, 242, 0.88) 75%),
    url("../images/breadcrumb-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 64px 0 50px;
}
.page-banner h1 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
}
.breadcrumb-wrapper {
  display: inline-block;
  margin-bottom: 20px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px 16px 6px 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(199, 150, 46, 0.35);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(11, 61, 59, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 18px;
  list-style: none;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: none;
  padding: 4px 10px;
  border-radius: 999px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 500;
}
.breadcrumb a:hover {
  color: var(--ink);
  background: rgba(11, 61, 59, 0.08);
  transform: translateY(-1px);
}
.breadcrumb a i,
.breadcrumb a svg {
  font-size: 1rem;
  color: var(--gold-dark);
  transition: transform 0.2s ease, color 0.2s ease;
}
.breadcrumb a:hover i {
  color: var(--gold);
  transform: scale(1.15);
}
.breadcrumb .sep,
.breadcrumb-separator {
  color: var(--gold-dark);
  font-size: 1rem;
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  user-select: none;
  margin: 0 1px;
}
.breadcrumb .active-page,
.breadcrumb-item.active {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 600;
  background: linear-gradient(135deg, rgba(11, 61, 59, 0.09) 0%, rgba(11, 61, 59, 0.04) 100%);
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 61, 59, 0.14);
}

/* About / SEO Body Section (home page) */
.about-seo-section {
  padding: 80px 0;
}


.about-seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-seo-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 20px;
}
.about-seo-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 14px;
}
.about-seo-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-seo-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}
.about-seo-img--main {
  height: 280px;
}
.about-seo-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-seo-img-row .about-seo-img {
  height: 160px;
}
@media (max-width: 800px) {
  .about-seo-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-seo-img--main {
    height: 220px;
  }
}

/* Hero (home page) */
.hero {
  padding: 80px 0 50px;
  background: linear-gradient(135deg, #d8eedf 0%, #eaf5ee 35%, var(--paper) 75%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(199,150,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-size: 1.08rem;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin: 28px 0 34px;
  flex-wrap: wrap;
}
.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.trust-item {
  font-family: "IBM Plex Mono", monospace;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(11,61,59,0.06);
  flex: 1;
  min-width: 90px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,61,59,0.12);
}
.trust-num {
  font-size: 1.6rem;
  color: var(--ink);
  font-weight: 600;
  display: block;
  line-height: 1.2;
}
.trust-label {
  font-size: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 2px;
}
.hero-art {
  position: relative;
  background: var(--ink);
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-art svg {
  width: 78%;
  height: 78%;
}
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slider::before,
.hero-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 2;
  pointer-events: none;
}
.hero-slider::before {
  top: 0;
  background: linear-gradient(var(--ink), transparent);
}
.hero-slider::after {
  bottom: 0;
  background: linear-gradient(transparent, var(--ink));
}
.hero-slider-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  animation: heroSlide 26s linear infinite;
}
.hero-slider-track img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 14px;
  display: block;
}
.hero-art:hover .hero-slider-track {
  animation-play-state: paused;
}
@keyframes heroSlide {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider-track {
    animation: none;
  }
}

/* Homepage-only: photo strip */
.home-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.home-photo-grid-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.home-photo-grid-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.home-photo-grid-item:hover img {
  transform: scale(1.07);
}
.home-photo-grid-item .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,61,59,0.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.home-photo-grid-item:hover .photo-overlay {
  opacity: 1;
}
.photo-overlay span {
  color: var(--paper);
  font-size: 1rem;
  font-weight: 600;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 800px) {
  .home-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-photo-grid-item img {
    height: 200px;
  }
}

/* Services Quick Strip */
.services-quick-strip {
  padding: 28px 0;
  background: var(--ink);
  overflow: hidden;
}
.services-strip-inner {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 28px;
  scrollbar-width: none;
  max-width: calc(var(--maxw) + 56px);
  margin: 0 auto;
}
.services-strip-inner::-webkit-scrollbar { display: none; }
.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(199,150,46,0.3);
  border-radius: 999px;
  color: #c9dad5;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  flex: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.service-chip:hover {
  background: rgba(199,150,46,0.15);
  border-color: var(--gold);
  color: var(--paper);
}
.service-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* Homepage-only: big sliding reviews */
.testimonials--big {
  padding: 90px 0;
}
.testimonials--big .section-head h2 {
  font-size: 2.1rem;
  margin: 8px 0 16px;
}
.review-slider {
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}
.review-slider::before,
.review-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.review-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}
.review-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}
.review-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewSlide 34s linear infinite;
}
.review-slider-track .google-card {
  width: 340px;
  flex: none;
}
.review-slider:hover .review-slider-track {
  animation-play-state: paused;
}
@keyframes reviewSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .review-slider-track {
    animation: none;
    flex-wrap: wrap;
  }
}

.qr-review-band {
  margin-top: 56px;
  background: var(--ink);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--sand);
}
.qr-review-band h3 {
  color: var(--paper);
  margin: 0 0 8px;
}
.qr-review-band p {
  color: var(--sand);
  margin: 0 0 18px;
}
.qr-review-img {
  width: 150px;
  height: 150px;
  flex: none;
  background: #fff;
  padding: 10px;
  border-radius: 14px;
  object-fit: contain;
}

/* Homepage-only: big social section */
.social-big {
  padding: 90px 0;
  background: var(--sand);
}
.social-big .section-head h2 {
  font-size: 2.1rem;
  margin: 8px 0 0;
}
.social-big-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 850px) {
  .social-big-grid {
    grid-template-columns: 1fr;
  }
}
.social-big .social-card {
  background: var(--paper);
}
.ig-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.ig-tile {
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(251, 248, 242, 0.95);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3e8e75;
  flex: none;
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,142,117,0.5); }
  50% { box-shadow: 0 0 0 7px rgba(62,142,117,0); }
}
.hero-badge strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
}
.hero-badge small {
  color: var(--muted);
  font-size: 1rem;
}

/* Section head */
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -20px rgba(11, 61, 59, 0.35);
  border-color: var(--gold);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--ink);
}
.service-icon i {
  color: var(--ink);
  font-size: 1.25rem;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 1rem;
  margin-bottom: 12px;
}
.service-card .learn-more {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* Service detail rows (services.html) */
.service-detail {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child {
  border-bottom: none;
}
.service-detail-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-detail-media h3 {
  font-size: 1.35rem;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}
.service-detail ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 1rem;
}
.service-detail ul li {
  margin-bottom: 6px;
}
.services-list {
  padding: 64px 0 80px;
  background: var(--mint-soft, #f0f7f5);
}

/* Hostinger Aura Inspired Services Grid & Cards for services.html */
.aura-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 48px;
}

.aura-service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 92, 0.09);
  box-shadow: 0 10px 30px rgba(11, 61, 59, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.aura-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(11, 61, 59, 0.13);
  border-color: rgba(197, 155, 39, 0.4);
}

.aura-card-media {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #eaf2f1;
}

.aura-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aura-service-card:hover .aura-card-img {
  transform: scale(1.06);
}

.aura-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.aura-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.aura-card-header h3 {
  font-family: var(--font-heading, 'Fraunces', serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink, #0b2e38);
  margin: 0;
  line-height: 1.25;
}

.aura-card-body p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted, #4a5d65);
  margin-bottom: 20px;
}

.aura-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.aura-card-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--ink-light, #2c4048);
}

.aura-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold, #c59b27);
  font-weight: 700;
  font-size: 0.9rem;
}

.aura-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 76, 92, 0.08);
}

.aura-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal, #0f4c5c);
  text-decoration: none;
  transition: all 0.25s ease;
}

.aura-btn-link i {
  transition: transform 0.25s ease;
  font-size: 0.85rem;
}

.aura-btn-link:hover {
  color: var(--gold-dark, #a88018);
}

.aura-btn-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .aura-services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .aura-card-media {
    height: 220px;
  }
}

/* Service Detail 2-Column Split Layout for individual service pages */
.service-2col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-2col-content {
  min-width: 0;
}
.service-2col-image {
  position: relative;
}
.service-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(11, 61, 59, 0.14);
  border: 4px solid var(--paper-strong, #fffdf9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-img-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(11, 61, 59, 0.22);
}
.service-featured-img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-img-wrapper:hover .service-featured-img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .service-detail-right {
    grid-column: span 2;
  }
  .service-detail-img {
    height: 220px;
  }
  .service-2col-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-featured-img {
    height: 300px;
  }
}
@media (max-width: 560px) {
  .service-detail {
    grid-template-columns: 1fr;
  }
  .service-detail-right {
    grid-column: span 1;
  }
}

/* Hero Trust Bar & Actions */
.banner-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 40px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
}
.btn-secondary-outline:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

/* Feature Check Pills inside Overview */
.overview-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.highlight-item i {
  color: var(--primary);
  font-size: 1rem;
}

/* Reusable Dark Section Utility */
.section-dark,
.implant-section {
  background: var(--ink);
  color: var(--sand);
  padding: 80px 0;
  position: relative;
}
.section-dark .eyebrow,
.implant-section .eyebrow {
  color: var(--gold);
}
.section-dark .eyebrow::before,
.implant-section .eyebrow::before {
  background: var(--gold);
}
.section-dark h2,
.implant-section h2 {
  color: var(--paper);
}
.section-dark .section-subtitle,
.implant-section .section-subtitle {
  color: #b7cbc5;
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Implant procedure types grid */
.implant-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.type-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: calc(var(--radius) * 1.5);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(199, 150, 46, 0.3);
}
.type-card:hover::before {
  opacity: 1;
}
.type-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.type-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 62, 54, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.type-badge {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(199, 150, 46, 0.12);
  color: var(--gold-dark);
}
.type-card h4 {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  color: var(--text);
  margin-bottom: 10px;
}
.type-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 20px;
}
.type-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.type-features li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.type-features li i {
  color: var(--primary);
  font-size: 1rem;
}

/* 4-Step Process Timeline Cards */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
}
.step-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.step-card-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 14px;
}
.step-card h3 {
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.step-card p {
  color: #b7cbc5;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Comparison Table */
.comparison-section {
  padding: 80px 0;
}
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  background: #fff;
  margin-top: 36px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.comparison-table th,
.comparison-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1rem;
}
.comparison-table th {
  background: #f8faf9;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}
.comparison-table th.col-implant {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.comparison-table td.col-implant {
  background: rgba(15, 62, 54, 0.04);
  font-weight: 600;
  color: var(--primary);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.badge-winner {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  vertical-align: middle;
}
.table-icon-check {
  color: var(--primary);
}
.table-icon-cross {
  color: #d9534f;
}

/* Why Choose Us Feature Cards */
.why-implant-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.why-card {
  background: #ffffff;
  border: 1px solid rgba(11, 61, 59, 0.12);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(11, 61, 59, 0.2);
}
.why-card h5 { 
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  margin-bottom: 6px;
  color: var(--ink);
}

/* FAQ Accordion */
.faq-accordion {
 
}

/* Service page intro text */
.service-intro-text {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
}

/* What-is sub-block inside overview */
.service-what-is {
  margin-top: 2rem;
  max-width: 760px;
}
.service-what-is h3 {
  font-size: 1.35rem;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}
.service-what-is p {
  font-size: 1rem;
  line-height: 1.6; 
}

/* Two-column image + text grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

/* Mint & Sand background sections */
.section-mint {
  background: var(--mint);
}
.section-sand {
  background: var(--sand);
}

/* section-head when inside a grid (no bottom margin needed) */
.grid-2 .section-head {
  margin-bottom: 1.5rem;
}

/* Section content paragraph (muted) */
.section-content-p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Clinic image inside grid */
.clinic-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* Check list (why choose us) */
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.check-list li i {
  color: var(--primary);
  flex-shrink: 0;
}

/* Banner CTA button top spacing */
.banner-cta {
  margin-top: 10px;
}

#apptForm {
    background: rgba(255, 253, 249, 0.62);
    border: 1px solid rgba(216, 205, 182, 0.7);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

/* Responsive: stack grid on mobile */
@media (max-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.faq-item,
details.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  transition: all 0.2s ease;
}
details.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
details.faq-item summary h4,
.faq-item h4 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", serif;
}
details.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-left: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}
details[open].faq-item summary::after {
  content: "-";
}
details.faq-item p,
.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 12px 0 0 0;
}

/* Why choose us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--sand);
}
.why-card h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.why-card p {
  margin: 0;
}

/* Team / about specific */
.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.doctor-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  padding: 34px;
  text-align: left;
  box-shadow: 0 18px 36px -28px rgba(11, 61, 59, 0.55);
}
.doctor-intro {
  text-align: center;
  padding: 8px 0;
}
.doctor-intro .team-photo {
  width: 112px;
  height: 112px;
  margin-bottom: 20px;
  border: 8px solid var(--paper);
  box-shadow:
    0 0 0 1px var(--line),
    0 10px 20px -14px rgba(11, 61, 59, 0.6);
}
.doctor-intro .team-photo svg {
  width: 46px;
  height: 46px;
}
.doctor-intro h4 {
  font-size: 1.18rem;
}
.doctor-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.doctor-copy {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}
.doctor-copy p {
  font-size: 1rem;
  margin-bottom: 14px;
}
.doctor-copy p:last-child {
  margin-bottom: 0;
}
.doctor-contact {
  grid-column: 1 / -1;
  display: grid;
  gap: 28px;
  padding-top: 14px;
  text-align: center;
}
.doctor-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.doctor-ctas .btn {
  min-width: 168px;
}
.doctor-trust {
  justify-content: center;
  gap: clamp(26px, 6vw, 64px);
  padding-top: 2px;
}
.doctor-trust .trust-item {
  min-width: 110px;
}
.doctor-trust .trust-label {
  justify-content: center;
}
.doctor-trust .trust-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.google-mark {
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.team-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--mint);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo svg {
  width: 40px;
  height: 40px;
  stroke: var(--ink);
}
.team-card h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.team-role {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.team-card p {
  font-size: 1rem;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  padding: 26px;
  border-left: 2px solid var(--gold);
}
.value-card h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.value-card p {
  font-size: 1rem;
  margin: 0;
}

/* Timeline (about.html clinic story) */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--line);
}
.timeline li {
  position: relative;
  padding: 0 0 30px 28px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline .t-year {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 4px;
}
.timeline h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.timeline p {
  font-size: 1rem;
  margin: 0;
}

/* Testimonials */
.testimonials {
  background: var(--mint);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}
.t-stars {
  color: var(--gold-dark);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.t-quote {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 18px;
}
.t-name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Review summary (reviews.html) */
.review-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 50px;
}
.review-score {
  text-align: center;
}
.review-score .num {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  color: var(--ink);
  font-weight: 700;
  display: block;
}
.review-score .stars {
  color: var(--gold-dark);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.review-bars {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-family: "IBM Plex Mono", monospace;
  color: var(--muted);
}
.review-bar-track {
  flex: 1;
  height: 8px;
  background: var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.review-bar-fill {
  height: 100%;
  background: var(--gold);
}

/* Contact / appointment */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-card {
  background: var(--ink);
  color: var(--sand);
  border-radius: 20px;
  padding: 40px;
}
.contact-card h2 {
  color: var(--paper);
}
.contact-card p {
  color: #c9dad5;
}
.contact-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
}
.contact-list svg {
  flex: none;
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  margin-top: 2px;
}
.contact-list a {
  border-bottom: 1px solid rgba(220, 238, 231, 0.35);
}
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#apptForm {
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: rgba(255, 253, 249, 0.62);
    border: 1px solid rgba(216, 205, 182, 0.7);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#apptForm .form-row {
  gap: 20px;
}
.form-trap {
  display: none !important;
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
label {
  font-size: 1rem;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text);
}
select {
  padding-right: 36px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: var(--paper) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231b322b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 14px 12px !important;
  cursor: pointer !important;
}
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: var(--gold-dark) !important;
  box-shadow: none !important;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.map-embed {
  margin-top: 26px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 260px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* CTA band (used on inner pages) */
.cta-band {
  background: var(--sand);
  border-radius: 20px;
  padding: 50px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h3 {
  margin-bottom: 4px;
  font-size: 1.4rem;
}
.cta-band p {
  margin: 0;
}

/* Footer */
footer {
  background: var(--ink);
  color: var(--sand);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--paper);
  font-family: "Fraunces", serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-grid p,
.footer-grid a {
  color: #b7cbc5;
  font-size: 1rem;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin: -12px 0 28px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(220, 238, 231, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.footer-bottom {
  border-top: 1px solid rgba(220, 238, 231, 0.15);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1rem;
  color: #93a9a3;
}

/* Mobile nav */
body.menu-open {
  overflow: hidden;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 60;
  padding: 18px 20px 28px;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex: none;
}
.mobile-menu-top .brand-logo {
  height: 38px;
}
.mobile-menu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu > ul > li:not(.mobile-services) {
  border-bottom: 1px solid var(--line);
}
.mobile-menu > ul > li > a {
  display: flex;
  align-items: center;
  min-height: 52px;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  color: var(--ink);
}
.mobile-menu ul a.active {
  color: var(--gold-dark);
}
.close-menu {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.close-menu:hover,
.close-menu:focus-visible {
  background: var(--mint);
}

.mobile-services {
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  min-height: 52px;
  cursor: pointer;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  color: var(--ink);
  text-align: left;
}
.mobile-services-toggle span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.mobile-services-toggle span::after {
  content: "13 services";
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.mobile-services-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.15s ease;
  flex: none;
  color: var(--gold-dark);
}
.mobile-services.open .mobile-services-toggle svg {
  transform: rotate(180deg);
}
.mobile-services-list {
  list-style: none;
  margin: 4px 0 10px;
  padding: 10px 0 4px 16px;
  display: none;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--gold);
}
.mobile-services.open .mobile-services-list {
  display: flex;
}
.mobile-services-list li {
  border-bottom: 1px solid var(--line);
}
.mobile-services-list li:last-child {
  border-bottom: 0;
}
.mobile-services-list a {
  display: block;
  padding: 10px 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-2);
}
.mobile-services-list a:first-child {
  color: var(--gold-dark);
  font-weight: 700;
}
.mobile-services-list a:hover,
.mobile-services-list a:focus-visible {
  background: var(--mint);
  color: var(--ink);
}
.mobile-services-list a.active {
  color: var(--gold-dark);
}

/* Google-style review card */
.google-g {
  width: 22px;
  height: 22px;
  flex: none;
}
.google-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.google-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.google-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex: none;
}
.google-meta {
  flex: 1;
  min-width: 0;
}
.google-name {
  font-size: 1rem;
  font-weight: 600;
  color: #202124;
  font-family: "Inter", sans-serif;
}
.google-date {
  font-size: 1rem;
  color: #70757a;
}
.google-stars {
  color: #f2b203;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.google-text {
  font-size: 1rem;
  color: #3c4043;
  margin: 0;
}

.google-rating-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 6px;
}
.google-rating-strip .google-g {
  width: 30px;
  height: 30px;
}
.google-rating-num {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}
.google-rating-stars {
  color: #f2b203;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-left: 4px;
}
.google-rating-sub {
  font-size: 1rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
}

.review-score .google-g {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
}

/* Services page badge */
.service-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 4px 10px;
}

/* Social media page */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.social-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
.social-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: #fff;
  box-shadow: 0 8px 16px rgba(11, 61, 59, 0.14);
  transition: transform 0.2s ease;
}
.social-card:hover .social-icon {
  transform: translateY(-2px) rotate(-3deg);
}
.social-icon svg {
  width: 24px;
  height: 24px;
}
.social-icon.fb {
  background: #1877f2;
}
.social-icon.ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.social-embed {
  margin-top: 6px;
  border-radius: 12px;
  overflow: hidden;
  min-height: 120px;
  background: var(--sand);
}
.social-preview {
  display: block;
  position: relative;
  margin-top: 18px;
  min-height: 300px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(11, 61, 59, 0.13);
}
.social-preview img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.social-preview::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(11, 61, 59, 0.9));
}
.social-preview-label {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: var(--paper);
  font-weight: 600;
  font-size: 1rem;
}
.social-preview-label b {
  color: var(--gold);
  font-size: 1.1rem;
}
.social-preview:hover img {
  transform: scale(1.04);
  opacity: 1;
}
.facebook-preview-grid {
  margin-top: 18px;
}
.facebook-preview-grid .ig-tile {
  display: block;
  background: var(--mint);
}
.facebook-preview-grid .ig-tile img {
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}
.facebook-preview-grid .ig-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.ig-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 6px;
}
.ig-tile {
  aspect-ratio: 1/1;
  background: var(--mint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-preview-grid .ig-tile {
  background-size: cover;
  background-position: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.ig-preview-grid .ig-tile:nth-child(1) {
  background-image: url("../images/gallery/gallery-4-zirconia-match.jpg");
}
.ig-preview-grid .ig-tile:nth-child(2) {
  background-image: url("../images/gallery/gallery-3-aesthetic-filling.jpg");
}
.ig-preview-grid .ig-tile:nth-child(3) {
  background-image: url("../images/gallery/gallery-2-zirconia-cap.jpg");
}
.ig-preview-grid .ig-tile:nth-child(4) {
  background-image: url("../images/gallery/gallery-1-aesthetic-caps.jpg");
}
.ig-preview-grid .ig-tile:nth-child(5) {
  background-image: url("../images/gallery/gallery-4-zirconia-match.jpg");
}
.ig-preview-grid .ig-tile:nth-child(6) {
  background-image: url("../images/gallery/gallery-3-aesthetic-filling.jpg");
}
.ig-preview-grid .ig-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(11, 61, 59, 0.15);
}
.ig-preview-grid .ig-tile svg {
  display: none;
}
.ig-tile svg {
  width: 26px;
  height: 26px;
  stroke: var(--ink);
}

/* Gallery page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.gallery-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -20px rgba(11, 61, 59, 0.35);
  border-color: var(--gold);
}
.gallery-item .gallery-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: var(--mint);
}
.gallery-caption {
  padding: 12px 14px;
}
.gallery-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 2px;
}
.gallery-caption span {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 61, 59, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: min(720px, 92vw);
  max-height: 86vh;
  border-radius: 12px;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-caption {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--sand);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
}

@media (max-width: 980px) {
  nav ul {
    display: none;
  }
  .call-chip {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    padding: 14px 20px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .whatsapp-btn {
    padding: 11px;
    border-radius: 50%;
  }
  .nav-actions .whatsapp-btn .wa-text {
    display: none;
  }
  .nav-actions .whatsapp-btn svg {
    width: 20px;
    height: 20px;
    margin: 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    max-width: 420px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .implant-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .implant-types {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .t-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-detail {
    grid-template-columns: 1fr;
  }
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 420px) {
  .brand-logo {
    height: 33px;
  }
  .nav {
    padding: 12px 16px;
  }
}
@media (max-width: 560px) {
  section {
    padding: 64px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .implant-types {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .doctor-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }
  .doctor-copy {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .doctor-contact {
    gap: 24px;
    padding-top: 12px;
  }
  .doctor-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .doctor-ctas .btn {
    width: 100%;
  }
  .doctor-trust {
    gap: 18px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-card {
    padding: 24px 18px;
    border-radius: 16px;
    overflow: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .contact-card h2 {
    font-size: 1.55rem;
    line-height: 1.25;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .contact-list li {
    font-size: 0.95rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  #apptForm {
    padding: 20px 16px;
    border-radius: 16px;
    gap: 16px;
  }
  #apptForm .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-row {
    gap: 22px;
  }
  .review-summary {
    flex-direction: column;
    text-align: center;
  }
  .cta-band {
    flex-direction: column;
    text-align: center;
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .gallery-caption {
    padding: 10px;
  }
  .gallery-caption h4 {
    font-size: 1rem;
  }
  .gallery-caption span {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
 
}

/* Visual polish */
:root {
  --paper: #fcfaf6;
  --paper-strong: #fffdf9;
  --mint: #e3f1eb;
  --mint-deep: #c8e3d8;
  --sand: #f5ead8;
  --gold: #d09a2d;
  --gold-dark: #9a6b17;
  --line: #dfd5c4;
  --shadow-soft: 0 18px 48px rgba(11, 61, 59, 0.08);
  --shadow-hover: 0 22px 46px rgba(11, 61, 59, 0.15);
}
body {
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(227, 241, 235, 0.72),
      transparent 28rem
    ),
    var(--paper);
}
header {
  background: rgba(252, 250, 246, 0.86);
  box-shadow: 0 8px 24px rgba(11, 61, 59, 0.04);
}
.nav {
  min-height: 78px;
}
.brand-logo {
  filter: drop-shadow(0 5px 10px rgba(11, 61, 59, 0.08));
}
nav ul li a {
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}
nav ul li a:hover {
  transform: translateY(-1px);
}
.dropdown-menu {
  box-shadow: var(--shadow-hover);
  background: var(--paper-strong);
  border-color: rgba(207, 154, 45, 0.35);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}
/* WhatsApp CTA button */
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border: 0;
}
.whatsapp-btn:hover {
  background: #1da851;
  color: #fff;
}
.whatsapp-btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      rgba(227, 241, 235, 0.96),
      rgba(252, 250, 246, 0.88) 65%
    ),
    var(--paper);
}
.page-banner {
  position: relative;
  overflow: hidden;
}
.hero::after,
.page-banner::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -150px;
  top: -190px;
  border: 1px solid rgba(208, 154, 45, 0.26);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid,
.page-banner .wrap {
  position: relative;
  z-index: 1;
}
.hero h1,
.page-banner h1 {
  letter-spacing: -0.025em;
}
.hero-art {
  box-shadow: 0 24px 54px rgba(11, 61, 59, 0.2);
  border: 8px solid rgba(255, 253, 249, 0.72);
}
.home-photo-grid img,
.gallery-item,
.service-card,
.social-card,
.google-card {
  box-shadow: var(--shadow-soft);
}
.home-photo-grid img {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.home-photo-grid img:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: var(--shadow-hover);
}
.service-card,
.social-card,
.google-card,
.gallery-item {
  background: rgba(255, 253, 249, 0.86);
  border-color: rgba(216, 205, 182, 0.82);
}
.service-card:hover,
.gallery-item:hover {
  box-shadow: var(--shadow-hover);
}
.service-icon {
  background: var(--mint);
  border: 1px solid var(--mint-deep);
}
.cta-band,
.qr-review-band {
  box-shadow: var(--shadow-soft);
}

.cta-band {
  background: linear-gradient(135deg, var(--sand), #f9f0e2);
  border: 1px solid rgba(208, 154, 45, 0.2);
}
.form1 {
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  gap: 0  ;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-trap {
  display: none !important;
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
label {
  font-size: 1rem;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text);
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
textarea {
  resize: vertical;
  min-height: 100px;
}

footer {
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -250px;
  border: 1px solid rgba(242, 233, 218, 0.13);
  border-radius: 50%;
}
@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }
  .hero {
    padding-top: 54px;
  }
}
@media (max-width: 560px) {
  .inq-btn-home img {   
    width: 35px; 
}

  section {
    padding: 68px 0;
  }
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }
  .hero-ctas .btn,
  .cta-band .btn {
    width: 100%;
  }

  .mobile-menu {
    background:
      linear-gradient(145deg, rgba(227, 241, 235, 0.78), transparent 38%),
      var(--paper);
  }
}

/* Articles, Q&A and responsive guardrails */
html,
body {
  overflow-x: hidden;
}
.blog-intro {
  max-width: 600px;
  margin-top: 18px;
  font-size: 1.05rem;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.article-card > img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 28%;
}
.article-card-body {
  padding: 22px;
}
.article-card h3 {
  font-size: 1.22rem;
  margin: 7px 0 10px;
}
.article-card p {
  font-size: 1rem;
}
.article-tag {
  color: var(--gold-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.insights-preview {
  background: var(--mint);
}
.insights-preview .article-grid-preview {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.insights-preview .article-card > img {
  width: 100%;
  height: 340px !important;
  min-height: 340px !important;
  max-height: 340px !important;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 24%;
}
.insights-preview .article-card-body {
  padding: 16px 18px 18px;
}
.insights-preview .article-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.article-grid-preview .article-card > img {
  height: 340px;
}
.faq-band {
  background: var(--sand);
}

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.two-columns {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-strong);
  padding: 18px 20px;
}
.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-weight: 700;
  padding-right: 20px;
}
.faq-grid details p {
  margin: 14px 0 0;
  font-size: 1rem;
}
.center-action {
  text-align: center;
  margin-top: 28px;
}
@media (max-width: 980px) {
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .article-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .article-card > img,
  .article-grid-preview .article-card > img {
    height: 190px;
  }
  .insights-preview .article-card > img {
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
  }
  .faq-grid details {
    padding: 16px;
  }
  .mobile-menu > ul {
    padding-bottom: 24px;
  }
  .btn,
  input,
  select,
  textarea {
    max-width: 100%;
  }
  .home-photo-grid,
  .gallery-grid,
  .services-grid,
  .social-grid {
    min-width: 0;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .nav {
    padding-left: 20px;
    padding-right: 20px;
  }
  .brand-logo {
    height: 39px;
  }
  nav ul {
    gap: 18px;
  }
  nav ul li a {   
    gap: 3px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .whatsapp-btn {
    padding: 10px 15px;
    font-size: 1rem;
  }
}
@media (min-width: 981px) and (max-width: 1050px) {
  nav ul {
    gap: 12px;
  }
  nav ul li a {
    font-size: 1rem;
  }
}

/* Custom SEO & Content Helper Classes (Zero Inline CSS) */
/* .seo-body-content {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.7;
} */

.seo-lead-p {
  max-width: 720px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.seo-margin-top-sm {
  margin-top: 12px;
}

.seo-margin-top-md {
  margin-top: 24px;
}

.seo-margin-top-lg {
  margin-top: 28px;
}

.seo-margin-top-xl {
  margin-top: 32px;
}

.seo-margin-bottom-md {
  margin-bottom: 24px;
}

.seo-list-muted {
  max-width: 640px;
  padding-left: 18px;
  color: var(--muted);
}

.seo-list-muted li {
  margin-bottom: 8px;
}

.seo-list-formatted {
  max-width: 720px;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.8;
}

.seo-list-formatted li {
  margin-bottom: 8px;
}

.seo-section-title {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.seo-hero-subtext {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 10px;
  margin-bottom: 0;
}

.seo-hero-lead {
  margin-top: 18px;
}

.seo-cta-group {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.seo-faq-box {
  margin-top: 32px;
  background: var(--sand);
  padding: 24px;
  border-radius: 12px;
  max-width: 800px;
}

.seo-faq-box h3 {
  margin-top: 0;
}

.seo-faq-box p:last-child {
  margin-bottom: 0;
}

.btn-emergency-call {
  background-color: #d97706;
  border-color: #d97706;
}

.text-gold {
  color: var(--gold);
}

.btn-full-width {
  width: 100%;
}

.text-center {
  text-align: center;
}

.margin-top-lg {
  margin-top: 36px;
}

.social-handle {
  margin: 0;
  font-size: 0.85rem;
}

.avatar-primary {
  background: #0b3d3b;
}

.avatar-gold {
  background: #a97a22;
}

.avatar-mint {
  background: #2f8f7b;
}

.btn-gold-outline {
  margin-top: 26px;
  border-color: var(--gold);
  color: var(--gold);
}

.seo-form-note {
  font-size: 0.82rem;
  margin-top: 4px;
}

.learn-more {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.learn-more:hover {
  text-decoration: underline;
}

.social-note {
  font-size: 0.78rem;
  margin-top: 12px;
}

.margin-y-md {
  margin: 14px 0;
}

.review-sub {
  margin: 6px 0 0;
  font-size: 0.8rem;
}

.btn-write-review {
  margin-top: 14px;
  padding: 10px 20px;
  font-size: 0.82rem;
}

.w-88 { width: 88%; }
.w-9  { width: 9%; }
.w-2  { width: 2%; }
.w-1  { width: 1%; }
.w-0  { width: 0%; }

.avatar-slate { background: #5c6d6a; }
.avatar-dark  { background: #0f4744; }

.gallery-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
}

/* FAQ Accordion Band & Items */
.faq-band {
  background: var(--paper);
  padding: 80px 0;
}
.faq-accordion {
  max-width: 800px;
  margin: 32px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 24px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.faq-item[open] {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 4px 12px rgba(199, 150, 46, 0.1);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  outline: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gold-dark);
  font-weight: 400;
  transition: transform 0.25s ease;
  margin-left: 12px;
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-item p {
  margin: 12px 0 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ==========================================================================
   Services Page Custom Alternating Layout (Mockup Style)
   ========================================================================== */
.services-section-wrapper {
  width: 100%;
  padding: 0;
}

.services-top-header {
  padding: 60px 0 20px;
  text-align: center;
  background-color: #ffffff;
}

.service-block {
  padding: 70px 0;
  width: 100%;
  transition: background-color 0.3s ease;
}

.service-block.bg-white {
  background-color: #ffffff;
}

.service-block.bg-mint-soft {
  background-color: #e0f4f1;
}

.service-block.bg-pink-soft {
  background-color: #fde8e8;
}

.service-block.bg-slate-soft {
  background-color: #eef2f5;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-content h2 {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.service-content p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 24px;
  max-width: 540px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.service-list li {
  font-size: 0.98rem;
  color: #334155;
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-list li::before {
  content: "–";
  color: #475569;
  font-weight: 600;
  flex-shrink: 0;
}

.service-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease-in-out;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-btn.btn-cyan {
  background-color: #b2ece4;
  color: #0b3d3b;
}

.service-btn.btn-cyan:hover {
  background-color: #97ded5;
  color: #052625;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 61, 59, 0.15);
}

.service-btn.btn-pink {
  background-color: #f7c5c5;
  color: #701a1a;
}

.service-btn.btn-pink:hover {
  background-color: #f2adad;
  color: #4a0f0f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(112, 26, 26, 0.15);
}

.service-detail-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #0b3d3b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.service-detail-link:hover {
  color: #c7962e;
  transform: translateX(3px);
}

.service-media {
  width: 100%;
  position: relative;
}

.service-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-media img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .service-block {
    padding: 50px 0;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-media img {
    height: 280px;
  }
}
