/* ============================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ============================================ */
:root {
  --color-base:        #0A0D0F;
  --color-surface:     #111518;
  --color-surface-alt: #181D21;
  --color-teal:        #1ABFBF;
  --color-teal-dim:    #0F8A8A;
  --color-teal-glow:   rgba(26,191,191,0.12);
  --color-warm-white:  #F0EDE8;
  --color-muted:       #8A9099;
  --color-border:      #1E2428;
  --color-whatsapp:    #25D366;
  --font-display:      'Playfair Display', Georgia, serif;
  --font-body:         'DM Sans', system-ui, -apple-system, sans-serif;
  --section-pad:       clamp(4rem, 8vw, 7rem);
  --max-width:         1200px;
  --transition-base:   0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-base);
  /* Geometric grid + ambient color glow */
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(26, 191, 191, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(15, 138, 138, 0.05) 0%, transparent 40%),
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
  background-attachment: fixed;
  color: var(--color-warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-muted);
}

ul {
  list-style: none;
}

/* Focus States for Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.site-wrapper {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

main {
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.clean-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-teal);
  box-shadow: 0 0 12px rgba(26,191,191,0.5);
  margin-bottom: 1rem;
  border-radius: 2px;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 720px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-warm-white);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.center { text-align: center; }
.center .clean-line { margin-left: auto; margin-right: auto; }
.center .section-header { margin-left: auto; margin-right: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-teal);
  color: #0A0D0F;
}

.btn--primary:hover {
  background: var(--color-teal-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,191,191,0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-teal);
  border: 1px solid var(--color-teal);
}

.btn--secondary:hover {
  background: var(--color-teal-glow);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #ffffff;
}

.btn--whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* Custom UI SVG Icon styles */
.icon-svg {
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition-base), stroke var(--transition-base), fill var(--transition-base);
}

.badge .icon-svg {
  width: 1rem;
  height: 1rem;
}

.btn .icon-svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2.5;
}

.icon-svg--star {
  color: #FFD700;
  fill: #FFD700;
}

/* Animations */
.badge:hover .icon-svg--star {
  animation: starPulse 0.8s ease-in-out infinite alternate;
}
@keyframes starPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.25); }
}

.btn:hover .icon-svg--chat {
  animation: chatWobble 0.6s ease;
}
@keyframes chatWobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}

.btn:hover .icon-svg--phone {
  animation: phoneRing 0.5s ease infinite alternate;
}
@keyframes phoneRing {
  0% { transform: rotate(-10deg); }
  100% { transform: rotate(10deg); }
}

.contact-info__item:hover .icon-svg--pin {
  animation: pinBounce 0.6s ease-in-out infinite alternate;
}
@keyframes pinBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.contact-info__item:hover .icon-svg--clock {
  animation: clockSpin 2s linear infinite;
}
@keyframes clockSpin {
  100% { transform: rotate(360deg); }
}

.contact-info__item:hover .icon-svg--map {
  animation: mapWobble 0.8s ease infinite alternate;
}
@keyframes mapWobble {
  0% { transform: skewX(-5deg); }
  100% { transform: skewX(5deg); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  padding: 1.25rem 0;
  background: transparent;
  transition: all var(--transition-base);
}

.nav.menu-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.nav--scrolled {
  background: rgba(10,13,15,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
  padding: 0.75rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-main {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-warm-white);
  letter-spacing: 0.05em;
}

.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  font-weight: 600;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__links a {
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav__links a:hover { color: var(--color-warm-white); }
.nav__links a.active { color: var(--color-teal); }

.nav__cta {
  background: var(--color-teal);
  color: #0A0D0F;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.nav__cta:hover {
  background: var(--color-teal-dim);
  transform: translateY(-1px);
}

/* Burger Menu Button */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1100;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-warm-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 15, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 1.5rem;
  color: var(--color-warm-white);
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.10s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.30s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu a:hover { color: var(--color-teal); }
.mobile-menu .btn { width: 80%; max-width: 300px; margin-top: 1rem; }

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: flex; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  background: var(--color-base);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 800px at 85% 20%, rgba(26,191,191,0.08) 0%, transparent 80%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin: 1.25rem 0;
  letter-spacing: -0.02em;
}

.hero__headline span {
  display: block;
}

.hero__sub {
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-warm-white);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.badge::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-teal);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  height: 520px;
}

.hero__visual picture {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}

.hero__visual picture:nth-child(1) { grid-row: 1 / 3; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-muted);
  cursor: pointer;
  z-index: 2;
  transition: color var(--transition-base);
}

.scroll-indicator:hover { color: var(--color-teal); }
.scroll-indicator svg {
  width: 24px;
  height: 24px;
  animation: indicatorBounce 2s infinite ease-in-out;
}

@keyframes indicatorBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { height: 380px; }
  .scroll-indicator { display: none; }
}

@media (max-width: 576px) {
  .hero__visual {
    grid-template-columns: 1fr;
    height: 300px;
  }
  .hero__visual picture:nth-child(2),
  .hero__visual picture:nth-child(3) {
    display: none;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: rgba(17, 21, 24, 0.45);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--color-teal);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  border-color: rgba(26, 191, 191, 0.3);
  background: rgba(24, 29, 33, 0.65);
  transform: translateY(-4px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(26, 191, 191, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon-wrapper {
  color: var(--color-teal);
  margin-bottom: 1.5rem;
  width: 48px;
  height: 48px;
}

.service-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-warm-white);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* SVG Animations */
.service-svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.anim-sweep {
  transform-origin: 22px 46px;
  transition: transform 0.4s ease;
}
.service-card:hover .anim-sweep {
  animation: sweep 0.8s ease infinite;
}
@keyframes sweep {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-15deg); }
}

.anim-sparkle {
  transform-origin: 38px 16px;
  animation: sparkle 2.5s ease-in-out infinite;
}
.anim-sparkle-delay {
  transform-origin: 20px 13px;
  animation: sparkle 2.5s ease-in-out infinite;
  animation-delay: 1.25s;
}
@keyframes sparkle {
  0%, 100% { transform: scale(0.85); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
}

.anim-steam {
  stroke-dasharray: 8 8;
  animation: steam 1.5s linear infinite;
}
.anim-steam-delay {
  stroke-dasharray: 8 8;
  animation: steam 1.5s linear infinite;
  animation-delay: 0.75s;
}
@keyframes steam {
  from { stroke-dashoffset: 16; opacity: 0.4; }
  to { stroke-dashoffset: 0; opacity: 1; }
}

.anim-drop {
  animation: drop 1.5s ease-in-out infinite;
}
.anim-drop-delay {
  animation: drop 1.5s ease-in-out infinite;
  animation-delay: 0.75s;
}
@keyframes drop {
  0% { transform: translateY(-6px); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

.services-cta {
  text-align: center;
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.services-cta__lead {
  color: var(--color-muted);
  font-size: 1rem;
  margin: 0 0.5rem 0 0;
}

/* ============================================
   GALLERY & SHOWCASE SECTION
   ============================================ */
.gallery-grid {
  columns: 3;
  column-gap: 1.25rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--transition-base);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,13,15,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-overlay span {
  background: var(--color-teal);
  color: #0A0D0F;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transform: scale(0.8);
  transition: transform var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: scale(1);
}

.video-subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-warm-white);
  margin: 4rem 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.rating-banner {
  background: rgba(17, 21, 24, 0.45);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-bottom: 4rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.rating-stars {
  color: var(--color-teal);
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
}

.rating-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--color-warm-white);
  margin-bottom: 0.25rem;
}

.rating-source { color: var(--color-muted); font-size: 0.95rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(17, 21, 24, 0.45);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  border-color: rgba(26, 191, 191, 0.3);
  background: rgba(24, 29, 33, 0.65);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(26, 191, 191, 0.08);
  transform: translateY(-2px);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.review-card__stars { color: var(--color-teal); font-size: 0.95rem; letter-spacing: 0.1em; }
.review-card__date { color: var(--color-muted); font-size: 0.8rem; }

.review-card__text {
  color: var(--color-warm-white);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-card__text::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-teal);
  opacity: 0.15;
  position: absolute;
  top: -1.5rem; left: -1rem;
}

.review-card__author {
  font-weight: 600;
  color: var(--color-teal);
  font-size: 0.9rem;
}

.review-card__location {
  color: var(--color-muted);
  font-size: 0.8rem;
}

/* ============================================
   CONTACT & BOOKING SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 4rem;
}

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }

.contact-info__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-info__icon {
  font-size: 1.5rem;
  color: var(--color-teal);
  flex-shrink: 0;
  line-height: 1;
  width: 24px;
  text-align: center;
}

.contact-info__label {
  font-weight: 600;
  color: var(--color-warm-white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info__value {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info__value a:hover { color: var(--color-teal); }

.contact-map { margin-top: 1.5rem; border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; }
.contact-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  background: var(--color-surface);
}

.contact-cta {
  background: rgba(17, 21, 24, 0.45);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.contact-cta__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-warm-white);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-cta__sub {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.divider-or {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.85rem;
  margin: 2rem 0;
  position: relative;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.divider-or::before, .divider-or::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background: var(--color-border);
  vertical-align: middle;
  margin: 0 1rem;
}

.contact-form {
  background: rgba(17, 21, 24, 0.45);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.contact-form label.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-warm-white);
  padding: 0.85rem 1.2rem;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--color-muted); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-teal);
  outline: none;
  box-shadow: 0 0 0 3px var(--color-teal-glow);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%231ABFBF' stroke-width='2' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

.contact-form select option { background: var(--color-surface-alt); color: var(--color-warm-white); }
.contact-form textarea { resize: vertical; min-height: 100px; }

.form-submit {
  background: var(--color-teal);
  color: #0A0D0F;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  width: 100%;
  transition: all var(--transition-base);
}

.form-submit:hover { background: var(--color-teal-dim); transform: translateY(-1px); }

.form-success {
  color: var(--color-teal);
  font-weight: 600;
  text-align: center;
  padding: 2.5rem 0;
  animation: fadeIn 0.4s ease forwards;
}

/* Brand Copy Block */
.brand-quote-section {
  border-top: 1px solid var(--color-border);
  padding: var(--section-pad) 0;
  text-align: center;
}

.brand-quote {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--color-warm-white);
  line-height: 1.8;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
  background: rgba(10, 13, 15, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 0;
  color: var(--color-muted);
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .footer__cols { grid-template-columns: 1fr; gap: 2.5rem; }
}

.footer__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-warm-white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.footer__brand {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-warm-white);
  line-height: 1.2;
  font-size: 1.25rem;
}

.footer__brand-sub {
  color: var(--color-teal);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 1.25rem;
}

.footer__tagline { font-size: 0.95rem; line-height: 1.6; max-width: 320px; }

.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a {
  font-size: 0.95rem;
  color: var(--color-muted);
}
.footer__links a:hover { color: var(--color-teal); }

.footer__contact-list { display: flex; flex-direction: column; gap: 0.85rem; font-size: 0.95rem; }
.footer__contact-list a:hover { color: var(--color-teal); }
.footer__contact-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.footer__contact-list svg { width: 18px; height: 18px; fill: var(--color-teal); flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal button {
  color: var(--color-muted);
  font-size: 0.9rem;
  transition: color var(--transition-base);
}
.footer__legal button:hover { color: var(--color-teal); }

/* ============================================
   FLOATING & MODAL ELEMENTS
   ============================================ */
.float-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,0.55);
}

.float-whatsapp svg { width: 28px; height: 28px; fill: #ffffff; }

.float-whatsapp__tooltip {
  position: absolute;
  right: calc(100% + 0.85rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-warm-white);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: opacity 0.2s ease;
}

.float-whatsapp:hover .float-whatsapp__tooltip { opacity: 1; }

.scroll-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2.25rem;
  width: 40px;
  height: 40px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  color: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition-base);
}

.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--color-surface); color: var(--color-warm-white); }
.scroll-top svg { width: 16px; height: 16px; fill: currentColor; }

/* Lightbox Overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,7,8,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__wrapper {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open img {
  transform: scale(1);
  opacity: 1;
}

.lightbox button {
  position: absolute;
  background: rgba(255,255,255,0.06);
  color: var(--color-warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 10;
  cursor: pointer;
}

.lightbox button:hover {
  background: var(--color-teal);
  color: #0A0D0F;
  border-color: var(--color-teal);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(26, 191, 191, 0.4);
}

.lightbox button svg {
  width: 22px;
  height: 22px;
}

.lightbox__close {
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
}

.lightbox__prev { left: 2rem; top: 50%; margin-top: -24px; width: 48px; height: 48px; }
.lightbox__next { right: 2rem; top: 50%; margin-top: -24px; width: 48px; height: 48px; }

@media (max-width: 768px) {
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
  .lightbox__close { top: 1rem; right: 1rem; }
  .lightbox__wrapper { width: 100%; max-width: 100vw; }
  .lightbox img { border-radius: 0; border-left: none; border-right: none; }
}

/* Modal dialog */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,7,8,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  padding: 1.5rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.2rem;
  color: var(--color-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.modal-close:hover {
  color: var(--color-warm-white);
  background: var(--color-surface-alt);
}

.modal-content h2 {
  color: var(--color-warm-white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-content .modal-updated {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.modal-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-warm-white);
  font-size: 1.05rem;
  margin: 1.75rem 0 0.5rem;
}

.modal-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Scroll Animation Reveals */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

@media (max-width: 768px) {
  .reveal-left, .reveal-right {
    transform: translateY(25px);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* Floating background decorations */
.bg-decor {
  position: absolute;
  width: clamp(250px, 45vw, 600px);
  height: clamp(250px, 45vw, 600px);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.12;
  z-index: 0;
  mix-blend-mode: screen;
  animation: floatDecor 20s infinite ease-in-out alternate;
}

.bg-decor--1 {
  background: radial-gradient(circle, var(--color-teal) 0%, transparent 70%);
  top: 12%;
  left: -12%;
}

.bg-decor--2 {
  background: radial-gradient(circle, var(--color-teal-dim) 0%, transparent 70%);
  bottom: 25%;
  right: -12%;
  animation-delay: -7s;
}

@keyframes floatDecor {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -70px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}
