/* ==================== VARIABLES ==================== */
:root {
  /* Vibrant tropical sunset palette */
  --coral-1: #FF6B6B;
  --coral-2: #E85D75;
  --sunset-1: #FF8C42;
  --sunset-2: #F2A74B;
  --peach-1: #FFD93D;
  --peach-2: #F2C97D;
  --turquoise-1: #2EC4B6;
  --turquoise-2: #1A936F;
  --cream: #FFF8F0;
  --terracotta: #D97342;

  --primary: var(--coral-1);
  --primary-dark: var(--coral-2);
  --primary-light: var(--sunset-1);
  --secondary: var(--turquoise-1);
  --accent: var(--peach-1);

  --bg-light: var(--cream);
  --bg-white: #ffffff;
  --bg-dark: #0f1720;

  --text-dark: #062028;
  --text-body: #16323a;
  --text-muted: #56787f;
  --text-light: #ffffff;

  --container-max: 1200px;
  --section-padding: 80px;
  --section-padding-mobile: 40px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.22);
  --radius: 12px;
  --radius-lg: 20px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ==================== CONTAINER ==================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}

.brand {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==================== NAV ==================== */
.nav {
  display: flex;
  gap: 4px;
  margin: 0 auto;
}

.nav-link {
  padding: 9px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--text-dark);
  background: rgba(217,116,63,0.08);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-toggle:hover { background: rgba(0,0,0,0.05); }

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 44px;
  min-width: 44px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-large {
  padding: 16px 32px;
  min-height: 52px;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.85);
  color: white;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  transform: translateY(-2px);
}

.btn-header-cta {
  flex-shrink: 0;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 1000px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Ken Burns zoom animation */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

.hero-slide.active img {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 20, 28, 0.82) 0%,
    rgba(6, 20, 28, 0.35) 50%,
    rgba(6, 20, 28, 0.12) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 90px;
  color: white;
  z-index: 2;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  margin-bottom: 16px;
  width: fit-content;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.2s;
}

.hero-title {
  font-family: 'Libre Baskerville', 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  line-height: 1.15;
  margin-bottom: 12px;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.35s;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  font-weight: 300;
  margin-bottom: 8px;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.5s;
}

.hero-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.6s;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.75s;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero navigation arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.88);
  color: var(--text-dark);
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition);
  opacity: 0.75;
  box-shadow: var(--shadow-md);
}

.hero-nav:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: white;
  width: 26px;
  border-radius: 5px;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 32px;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: var(--section-padding) 0;
}

.section-light {
  background: var(--bg-white);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-contact {
  background: linear-gradient(135deg, #1a6b78 0%, #0d4a55 100%);
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-dark .section-label {
  color: var(--primary-light);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-dark .section-title {
  color: white;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== CONTENT TWO-COL ==================== */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-text .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}

.content-text p {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.75;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-list svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.content-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.rounded-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: transform 0.6s ease;
}

.content-image:hover .rounded-img {
  transform: scale(1.03);
}

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

.service-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--card-accent, var(--primary));
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-accent, var(--primary));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==================== GALLERY TABS ==================== */
.gallery-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gallery-tab {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.gallery-tab:hover {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.4);
}

.gallery-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255,107,107,0.4);
}

/* ==================== GALLERY ==================== */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gallery-section {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: var(--transition);
}

.gallery-section.hidden {
  display: none;
}

.gallery-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.gallery-section-header:hover {
  background: rgba(255,255,255,0.05);
}

.gallery-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 0;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-toggle {
  font-size: 1.4rem;
  color: var(--coral-1);
  transition: transform 0.3s ease;
  min-width: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-section.collapsed .section-toggle {
  transform: rotate(-90deg);
}

.gallery-content {
  padding: 0 24px 24px 24px;
  max-height: 3000px;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.4s ease;
}

.gallery-section.collapsed .gallery-content {
  max-height: 0;
  padding: 0 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(16px);
}

.gallery-item.loaded {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* ==================== MAP ==================== */
.map-wrapper {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  min-height: 120px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.contact-card.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.contact-card.email {
  background: linear-gradient(135deg, var(--coral-1), var(--coral-2));
  color: white;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(255,255,255,0.15);
}

.contact-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.8rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.contact-card strong {
  font-size: 1.05rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .contact-card {
    flex-direction: row;
    text-align: left;
    padding: 20px 24px;
  }
  .contact-icon { margin-right: 4px; flex-shrink: 0; }
}

/* ==================== WAVE & FOOTER ==================== */
.page-wave {
  line-height: 0;
  overflow: hidden;
}

.wave-svg {
  width: 100%;
  height: 80px;
}

.site-footer {
  background: var(--text-dark);
  color: white;
  padding: 56px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-brand p {
  opacity: 0.75;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-tagline {
  margin-top: 6px;
  font-style: italic;
  opacity: 0.6 !important;
  font-size: 0.85rem !important;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  opacity: 0.8;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-copy {
  opacity: 0.65;
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-seo-note {
  margin-top: 6px;
  font-size: 0.78rem;
  opacity: 0.5;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 1.4rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.lb-close:hover { background: rgba(255,255,255,0.25); }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.lb-nav:hover { background: rgba(255,255,255,0.22); }

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ==================== FLOATING WHATSAPP ==================== */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}

/* Pulse ring animation */
.fw-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.fw-icon { font-size: 1.15rem; }
.fw-text { font-weight: 600; font-size: 0.92rem; }

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* Skeleton loading */
@keyframes skeleton-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .content-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    height: 75vh;
    min-height: 520px;
  }

  .section {
    padding: var(--section-padding-mobile) 0;
  }

  .stat-item { padding: 10px 18px; }
  .stat-number { font-size: 1.6rem; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 65px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 99;
    gap: 4px;
  }

  .nav.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle { display: flex; }

  .header-inner .btn-header-cta { display: none; }

  .hero-nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .hero-content { padding-bottom: 50px; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  .stat-divider { display: none; }
  .stats-grid { gap: 0; }
  .stat-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 22px 16px; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }

  .floating-whatsapp .fw-text { display: none; }
  .floating-whatsapp { padding: 0; width: 54px; height: 54px; justify-content: center; }

  .gallery-tab { padding: 8px 16px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero { height: 85vh; }
}
