:root {
  color-scheme: light;
  --bg: #f7f2e9;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.92);
  --panel: #f4e7d7;
  --panel-light: #e9ddcf;
  --text: #141414;
  --muted: #6b6b6b;
  --accent: #b38a64;
  --success: #4da67f;
  --border: rgba(20, 20, 20, 0.08);
  --shadow: 0 32px 80px rgba(24, 24, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(179, 138, 100, 0.08), transparent 32%),
    linear-gradient(180deg, #f7f2e9 0%, #efe4d5 100%);
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #08141d;
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: var(--text);
}

.loader-mark {
  display: inline-flex;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(0, 168, 150, 0.24), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(247, 242, 233, 0.86);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand,
.brand-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #00a896, #0b1f2a);
  color: #08141d;
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.brand span,
.brand-footer span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button-primary {
  background: linear-gradient(135deg, #b38a64 0%, #d2b49f 100%);
  color: #1a1208;
  box-shadow: 0 20px 50px rgba(115, 76, 49, 0.15);
}

.button-secondary,
.button-tertiary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid rgba(20, 20, 20, 0.08);
}

.button:hover,
.text-button:hover,
.button-secondary:hover,
.button-tertiary:hover {
  transform: translateY(-2px);
}

.text-button {
  color: var(--text);
  background: transparent;
  padding: 0.9rem 1rem;
}

.hero-section {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-copy h1 {
  margin: 0 0 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.85rem, 4vw, 4.5rem);
  line-height: 0.95;
}

.hero-copy p {
  margin: 0 0 2rem;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-strip div {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.trust-strip strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-card {
  width: 100%;
  max-width: 560px;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section {
  padding: 4rem 0;
}

.section-soft {
  background: rgba(244, 234, 221, 0.85);
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head span {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.section-head h2 {
  margin: 1rem auto 0.8rem;
  max-width: 720px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
}

.section-head p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.9;
}

.card-grid,
.gallery-grid,
.expert-grid {
  display: grid;
  gap: 1.5rem;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem;
  padding-inline: 1.5rem;
}

.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding-inline: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: #fff;
  box-shadow: 0 16px 44px rgba(24, 24, 24, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  border-color: rgba(0, 168, 150, 0.32);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(0, 168, 150, 0.13);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 1.35rem;
}

.feature-card h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.condition-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.condition-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  color: var(--text);
  text-align: center;
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.condition-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 168, 150, 0.3);
}

.service-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-block.reverse {
  direction: ltr;
}

.service-block.reverse .service-copy {
  text-align: left;
}

.service-block.reverse .service-visual {
  justify-self: start;
}

.service-block.reverse img {
  transform: none;
}

.service-copy {
  display: grid;
  gap: 0.75rem;
  align-self: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-inline: 1.5rem;
}

.service-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: #d9d3c7;
  color: #57524a;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(20, 20, 20, 0.08);
}

.service-copy h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.service-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-copy ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.service-copy li {
  margin-bottom: 0.65rem;
}

.service-image-holder {
  width: 500px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  background: #d9d3c7;
  box-shadow: 0 16px 48px rgba(24, 24, 24, 0.14);
}

.service-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #57524a;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-visual {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.4s ease;
}

.service-visual:hover img {
  transform: scale(1.03);
}

.expert-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 2rem;
}

.expert-image-card {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.expert-image-card img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.expert-copy span {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.expert-copy h2 {
  margin: 1rem 0 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 2.7vw, 3rem);
}

.subtitle {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.expert-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  color: var(--text);
}

.credential-pill {
  display: inline-flex;
  margin-top: 1.4rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: rgba(0, 168, 150, 0.12);
  color: var(--accent);
  font-weight: 600;
}

.testimonial-carousel {
  display: grid;
  gap: 1.5rem;
}

.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding: 2rem;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.testimonial-profile img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-profile strong {
  display: block;
  font-size: 1rem;
}

.testimonial-profile span {
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.9;
}

.rating {
  color: #ffd166;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: var(--text);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 29, 0.05), rgba(8, 20, 29, 0.8));
}

.gallery-item span {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 600;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.booking-section {
  padding: 4.5rem 0;
  background: radial-gradient(circle at top left, rgba(0, 168, 150, 0.18), transparent 28%),
    linear-gradient(135deg, #08141d 0%, #0b1f2a 100%);
}

.booking-panel {
  padding: 3rem;
  max-width: 1180px;
  margin-inline: auto;
  border-radius: 2.25rem;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: 0 40px 95px rgba(24, 24, 24, 0.12);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 1.5rem;
}

.booking-panel span {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.booking-panel h2 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2rem, 2.7vw, 3.2rem);
  line-height: 1.02;
}

.booking-panel p {
  margin: 0;
  color: var(--muted);
  max-width: 650px;
  line-height: 1.85;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-section .contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-card {
  padding: 1.35rem 1.4rem;
  margin-bottom: 1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
}

.map-frame {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.9;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(8, 20, 29, 0.92);
  z-index: 1000;
}

.lightbox.active {
  display: grid;
}

.lightbox img {
  width: min(90%, 980px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 24px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 60;
}

.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #00a896, #3dd598);
  color: #08141d;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(0, 168, 150, 0.22);
}

@media (max-width: 1080px) {
  .hero-grid,
  .expert-grid,
  .service-block,
  .contact-grid,
  .gallery-grid,
  .why-grid,
  .condition-grid,
  .booking-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-block.reverse {
    direction: ltr;
  }

  .service-block.reverse .service-copy {
    text-align: left;
  }

  .service-block.reverse img {
    transform: none;
  }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }

  .hero-section {
    padding-top: 3rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .service-visual img,
  .hero-card img {
    aspect-ratio: 4 / 3;
  }

  .condition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 1rem;
  }
}
