/* ═══════════════════════════════════════════
   PŪČKORIŲ ŽIRGYNAS – Design System
   ═══════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* greens */
  --green-900: #1a3a2a;
  --green-800: #1e4d33;
  --green-700: #2d6a4f;
  --green-600: #40916c;
  --green-500: #52b788;
  --green-400: #74c69d;
  --green-300: #95d5b2;
  --green-200: #b7e4c7;
  --green-100: #d8f3dc;
  --green-50:  #eef8f0;

  /* earthy / sand / brown */
  --sand-900: #3d2c1e;
  --sand-800: #5c3d1e;
  --sand-700: #7a5a3a;
  --sand-600: #a37c52;
  --sand-500: #c9a96e;
  --sand-400: #dbc092;
  --sand-300: #e8d5b5;
  --sand-200: #f0e4d0;
  --sand-100: #f7f0e4;
  --sand-50:  #fdf9f3;

  /* sunset / warm accents */
  --sunset-500: #e07b4c;
  --sunset-400: #f09c6e;
  --sunset-300: #f5b895;
  --sunset-200: #fad4bc;

  /* neutrals */
  --white: #ffffff;
  --off-white: #faf9f7;
  --text-dark: #1a1a1a;
  --text-body: #3d3d3d;
  --text-muted: #6b6b6b;

  /* glass */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

  /* gradients */
  --gradient-hero: linear-gradient(135deg, #1a3a2a 0%, #2d6a4f 35%, #40916c 60%, #c9a96e 100%);
  --gradient-warm: linear-gradient(135deg, #f7f0e4 0%, #eef8f0 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.35) 100%);
  --gradient-accent: linear-gradient(135deg, var(--green-600) 0%, var(--green-400) 100%);
  --gradient-sunset: linear-gradient(135deg, var(--sunset-500) 0%, var(--sand-500) 100%);

  /* typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;

  /* radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.3s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════
   FLOATING ORGANIC SHAPES
   ═══════════════════════════════════════════ */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: floatShape 20s infinite ease-in-out;
}

.shape--1 {
  width: 500px; height: 500px;
  background: var(--green-400);
  top: -120px; left: -100px;
  animation-duration: 22s;
}
.shape--2 {
  width: 350px; height: 350px;
  background: var(--sand-400);
  top: 30%; right: -80px;
  animation-duration: 18s;
  animation-delay: -4s;
}
.shape--3 {
  width: 400px; height: 400px;
  background: var(--sunset-300);
  bottom: 20%; left: 10%;
  animation-duration: 25s;
  animation-delay: -8s;
}
.shape--4 {
  width: 300px; height: 300px;
  background: var(--green-300);
  top: 60%; right: 15%;
  animation-duration: 20s;
  animation-delay: -12s;
}
.shape--5 {
  width: 250px; height: 250px;
  background: var(--sand-300);
  top: 10%; left: 40%;
  animation-duration: 24s;
  animation-delay: -6s;
}
.shape--6 {
  width: 200px; height: 200px;
  background: var(--green-200);
  bottom: 5%; right: 30%;
  animation-duration: 19s;
  animation-delay: -10s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(40px, -30px) scale(1.05); }
  50%      { transform: translate(-20px, 50px) scale(0.95); }
  75%      { transform: translate(30px, 20px) scale(1.02); }
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              padding var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 0.5rem 0;
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-base);
}

.header.scrolled .header__logo {
  color: var(--green-800);
}

.header__logo-icon {
  width: 28px;
  height: 28px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  transition: background var(--transition-base), color var(--transition-base);
}

.nav-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.header__link:hover .nav-icon,
.header__link.active .nav-icon {
  opacity: 1;
  transform: translateY(-1px);
}

.header.scrolled .header__link {
  color: var(--text-body);
}

.header__link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.header.scrolled .header__link:hover {
  background: var(--green-50);
  color: var(--green-700);
}

.header__link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .header__link.active {
  color: var(--green-700);
  background: var(--green-50);
}

.header__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.header__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.header__cta-btn .btn-icon {
  width: 16px;
  height: 16px;
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.header.scrolled .header__burger span {
  background: var(--text-dark);
}

.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              background var(--transition-base);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(45, 106, 79, 0.35);
}

.btn--secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid var(--glass-border);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-800);
  transform: translateY(-3px);
}

.btn--phone {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  color: var(--green-800);
  border: 2px solid var(--green-400);
  font-size: 1.1rem;
}

.btn--phone:hover {
  background: var(--green-100);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 106, 79, 0.2);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.1);
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 10s linear;
}

.hero__slide.zoom-in {
  transform: scale(1.1);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.7;
  z-index: 0;
  animation: heroGradientShift 12s ease-in-out infinite alternate;
}

@keyframes heroGradientShift {
  0%   { filter: hue-rotate(0deg) brightness(1); opacity: 0.7; }
  50%  { filter: hue-rotate(8deg) brightness(1.05); opacity: 0.75; }
  100% { filter: hue-rotate(-5deg) brightness(0.98); opacity: 0.65; }
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  animation: particleFloat linear infinite;
}

.hero__particles span:nth-child(1)  { width: 6px;  height: 6px;  left: 10%; animation-duration: 18s; animation-delay: 0s; }
.hero__particles span:nth-child(2)  { width: 10px; height: 10px; left: 25%; animation-duration: 22s; animation-delay: -3s; }
.hero__particles span:nth-child(3)  { width: 4px;  height: 4px;  left: 40%; animation-duration: 16s; animation-delay: -6s; }
.hero__particles span:nth-child(4)  { width: 8px;  height: 8px;  left: 55%; animation-duration: 20s; animation-delay: -2s; }
.hero__particles span:nth-child(5)  { width: 5px;  height: 5px;  left: 70%; animation-duration: 24s; animation-delay: -5s; }
.hero__particles span:nth-child(6)  { width: 12px; height: 12px; left: 15%; animation-duration: 19s; animation-delay: -8s; }
.hero__particles span:nth-child(7)  { width: 7px;  height: 7px;  left: 50%; animation-duration: 21s; animation-delay: -4s; }
.hero__particles span:nth-child(8)  { width: 9px;  height: 9px;  left: 80%; animation-duration: 17s; animation-delay: -7s; }
.hero__particles span:nth-child(9)  { width: 3px;  height: 3px;  left: 35%; animation-duration: 23s; animation-delay: -1s; }
.hero__particles span:nth-child(10) { width: 11px; height: 11px; left: 90%; animation-duration: 15s; animation-delay: -9s; }

@keyframes particleFloat {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* Hero content – staggered entrance */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Badge ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  animation: heroBadgeIn 0.8s var(--ease-out) 0.2s both;
}

.hero__badge-icon {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}

@keyframes heroBadgeIn {
  from { opacity: 0; transform: translateY(-18px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Title ── */
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
}

.hero__title-line {
  display: block;
}

.hero__title-line--1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  letter-spacing: -0.01em;
  animation: heroTitleIn 0.9s var(--ease-out) 0.35s both;
}

.hero__title-line--2 {
  font-size: clamp(2.8rem, 9vw, 6rem);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--sand-300) 50%, var(--green-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleIn 0.9s var(--ease-out) 0.5s both;
}

@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ── Ornamental divider ── */
.hero__ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 0.8s var(--ease-out) 0.7s both;
}

.hero__ornament-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.hero__ornament-icon {
  width: 22px;
  height: 22px;
  color: var(--sand-400);
  opacity: 0.8;
}

/* ── Tagline ── */
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--sand-300);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  animation: heroFadeIn 0.8s var(--ease-out) 0.8s both;
}

/* ── Subtitle ── */
.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0.85;
  line-height: 1.7;
  animation: heroFadeIn 0.8s var(--ease-out) 0.9s both;
}

/* ── Stats row ── */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  margin-bottom: 2.5rem;
  animation: heroFadeIn 0.8s var(--ease-out) 1s both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.15rem;
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* ── Actions ── */
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 0.8s var(--ease-out) 1.1s both;
}

/* ── Scroll hint ── */
.hero__scroll-hint {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: heroFadeIn 0.8s var(--ease-out) 1.3s both, scrollBounce 2.5s ease-in-out 2.1s infinite;
  opacity: 0;
}

.hero__scroll-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero__scroll-hint i {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.4);
}

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

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

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
  fill: var(--off-white);
}

/* ═══════════════════════════════════════════
   SECTIONS – Shared
   ═══════════════════════════════════════════ */
.section {
  position: relative;
  padding: var(--section-py) 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Specific Section Backgrounds */
.activities, .advantages {
  background-image: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url('webp/bg4.webp');
}

.events {
  background-image: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url('webp/bg2.webp');
}

.faq {
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('webp/bg3.webp');
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section__tag i {
  width: 16px;
  height: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  align-items: center;
  gap: 2.5rem;
}

.about__column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about__center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about__logo-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  animation: logoFloat 6s ease-in-out infinite;
}

.about__logo-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 2;
}

.about__logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--green-200) 0%, transparent 70%);
  opacity: 0.4;
  filter: blur(40px);
  z-index: 1;
}

.about__highlight {
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: none;
}

.about__highlight-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about__highlight-inner i {
  color: var(--green-600);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.about__highlight-inner span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive About */
@media (max-width: 1100px) {
  .about__layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .about__center {
    grid-column: 1 / -1;
    order: -1;
    margin-bottom: 1rem;
  }
  .about__logo-wrap {
    max-width: 280px;
  }
}

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

.about__card {
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: none;
  transition: transform var(--transition-base);
}

.about__card:hover {
  transform: translateY(-6px);
}

.about__icon-wrap {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: transparent;
  border-radius: 0;
}

.about__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.about__card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   ACTIVITIES
   ═══════════════════════════════════════════ */


.activities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.activity-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.activity-card:hover::before { transform: scaleX(1); }

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.activity-card__icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform var(--transition-base);
}

.activity-card:hover .activity-card__icon {
  transform: scale(1.1);
}

.activity-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.activity-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

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

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

.experience-item {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.experience-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.experience-item__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--gradient-sunset);
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(224, 123, 76, 0.25);
  transition: transform var(--transition-base);
}

.experience-item:hover .experience-item__icon {
  transform: translateY(-4px) rotate(3deg);
}

.experience-item__icon i { width: 32px; height: 32px; }

.experience-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.experience-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════ */


.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.event-block {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.event-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 0;
  border-radius: var(--radius-lg);
}

.event-block:hover::after { opacity: 0.04; }

.event-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.event-block > * { position: relative; z-index: 1; }

.event-block__icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: transparent;
  transition: transform var(--transition-base);
}

.event-block__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-block:hover .event-block__icon {
  transform: scale(1.1);
}

.event-block__icon i { width: 24px; height: 24px; }

.event-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

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

/* ═══════════════════════════════════════════
   PHOTOSHOOTS
   ═══════════════════════════════════════════ */
.photoshoots__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.photoshoots__card {
  background: var(--gradient-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.photoshoots__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.photoshoots__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--sunset-400) 0%, var(--sunset-500) 100%);
  border-radius: var(--radius-md);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(224, 123, 76, 0.2);
  transition: transform var(--transition-base);
}

.photoshoots__card:hover .photoshoots__icon {
  transform: rotate(-5deg) scale(1.1);
}

.photoshoots__icon i { width: 28px; height: 28px; }

.photoshoots__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

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

/* ═══════════════════════════════════════════
   ADVANTAGES
   ═══════════════════════════════════════════ */


.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.advantage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-align: center;
}

.advantage:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.advantage__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 50%;
  color: var(--white);
  transition: transform var(--transition-base);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.2);
}

.advantage:hover .advantage__icon {
  transform: scale(1.15) rotate(-8deg);
}

.advantage__icon i { width: 26px; height: 26px; }

.advantage span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta-section {
  padding: var(--section-py) 0;
}

.cta-box {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  animation: floatShape 15s infinite ease-in-out;
}

.cta-box::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -150px;
  left: -50px;
  animation: floatShape 18s infinite ease-in-out reverse;
}

.cta-box > * { position: relative; z-index: 1; }

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-box h2 .accent {
  -webkit-text-fill-color: var(--sand-300);
}

.cta-box p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.cta-box__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* Pulse phone */
.pulse-phone {
  animation: phonePulse 3s ease-in-out infinite;
}

@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(82, 183, 136, 0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(82, 183, 136, 0); }
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition-base);
}

.faq-item__question:hover { color: var(--green-700); }

.faq-item__chevron {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--text-muted);
}

.faq-item.active .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--green-600);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact {
  background: var(--gradient-warm);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-form__group {
  margin-bottom: 1.5rem;
}

.contact-form__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form__group input,
.contact-form__group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  background: var(--off-white);
  color: var(--text-dark);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.1);
}

.contact-form__group textarea { resize: vertical; min-height: 100px; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-base);
}

.contact__info-item:hover { transform: translateX(6px); }

.contact__info-item i {
  width: 24px;
  height: 24px;
  color: var(--green-600);
  flex-shrink: 0;
}

.contact__info-item strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.15rem;
}

.contact__info-item span,
.contact__info-item a {
  font-size: 0.95rem;
  color: var(--text-body);
}

.contact__info-item a:hover { color: var(--green-700); }
 
 .contact__map {
   margin-top: 4rem;
   border-radius: var(--radius-lg);
   overflow: hidden;
   box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
   border: 1px solid var(--glass-border);
   height: 450px;
   transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
 }
 
 .contact__map:hover {
   transform: translateY(-5px);
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
 }
 
 .contact__map iframe {
   width: 100%;
   height: 100%;
   filter: grayscale(0.2) contrast(1.1);
   transition: filter 0.5s var(--ease-out);
 }
 
 .contact__map:hover iframe {
   filter: grayscale(0) contrast(1);
 }
 
 @media (max-width: 768px) {
   .contact__map {
     height: 350px;
     margin-top: 3rem;
   }
 }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__logo i { width: 24px; height: 24px; }

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer__links h4,
.footer__social h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer__links a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  transition: color var(--transition-base), transform var(--transition-base);
}

.footer__links a:hover {
  color: var(--green-300);
  transform: translateX(4px);
}

.footer__social-icons {
  display: flex;
  gap: 0.75rem;
}
 
 .social-btn {
   width: 42px;
   height: 42px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.08);
   transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
   color: rgba(255, 255, 255, 0.8);
 }
 
 .social-btn i,
 .social-btn svg,
 .social-btn img {
   width: 32px;
   height: 32px;
   display: block;
   object-fit: contain;
   transition: transform 0.3s ease;
 }
 
 .social-btn:hover {
   transform: translateY(-4px);
   background: var(--green-600);
 }
 
 .social-btn.facebook:hover { background: #1877F2; box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4); }
 .social-btn.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4); }
 .social-btn.tiktok:hover { background: #010101; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); }

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal--left {
  transform: translateX(-40px) translateY(0);
}

.reveal--right {
  transform: translateX(40px) translateY(0);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .header__nav.open { right: 0; }

  .header__nav .header__link {
    color: var(--text-dark);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .header__nav .header__link:hover {
    background: var(--green-50);
    color: var(--green-700);
  }

  .header__cta-btn { display: none; }
  .header__burger { display: flex; }

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

  .footer__brand p { margin: 0 auto; }
  .footer__links a { display: inline-block; padding: 0.3rem 0.75rem; }
  .footer__social-icons { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-box__actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-box { padding: 3rem 1.5rem; }
  .contact-form { padding: 1.5rem; }
}

/* ═══════════════════════════════════════════
   FORM SUCCESS STATE
   ═══════════════════════════════════════════ */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--green-100);
  border-radius: 50%;
  color: var(--green-600);
  animation: scaleIn 0.5s var(--ease-out);
}

.form-success__icon i { width: 32px; height: 32px; }

@keyframes scaleIn {
  0%   { transform: scale(0); }
  100% { transform: scale(1); }
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   CALCULATOR SECTION
   ═══════════════════════════════════════════ */
.calculator {
  background: var(--gradient-warm);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.calc {
  max-width: 900px;
  margin: 0 auto;
}

.calc__group-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calc__group-title i {
  width: 20px;
  height: 20px;
  color: var(--green-600);
}

/* ─── Service Cards Grid ─── */
.calc__services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.calc__service-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base),
              background var(--transition-base);
  overflow: visible;
}

.calc__service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--green-200);
}

.calc__service-card.selected {
  border-color: var(--green-500);
  background: var(--green-50);
  box-shadow: 0 8px 30px rgba(82, 183, 136, 0.15);
}

/* Icon */
.calc__service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: var(--radius-md);
  color: var(--green-700);
  flex-shrink: 0;
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.calc__service-card.selected .calc__service-icon {
  background: var(--gradient-accent);
  color: var(--white);
  transform: scale(1.05);
}

.calc__service-icon i { width: 22px; height: 22px; }

/* Info */
.calc__service-info {
  flex: 1;
  min-width: 0;
}

.calc__service-info strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.3;
}

.calc__service-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  display: block;
}

/* Price */
.calc__service-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-700);
  white-space: nowrap;
  flex-shrink: 0;
}

.calc__price-per {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Check bubble */
.calc__service-check {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 50%;
  color: var(--white);
  transform: scale(0);
  transition: transform 0.35s var(--ease-out);
  box-shadow: 0 3px 10px rgba(45, 106, 79, 0.3);
}

.calc__service-card.selected .calc__service-check {
  transform: scale(1);
}

.calc__service-check i { width: 14px; height: 14px; }

/* Tooltip */
.calc__tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: max-content;
  max-width: 280px;
  padding: 0.75rem 1rem;
  background: var(--green-900);
  color: var(--white);
  font-size: 0.8rem;
  line-height: 1.5;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease-out);
  z-index: 20;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.calc__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--green-900);
}

.calc__service-card:hover .calc__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Options Row ─── */
.calc__options {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.calc__option-group {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  flex: 1;
  min-width: 240px;
}

/* Duration buttons */
.calc__duration-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.calc__dur-btn {
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  background: var(--off-white);
  color: var(--text-body);
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.calc__dur-btn:hover {
  border-color: var(--green-300);
  background: var(--green-50);
}

.calc__dur-btn.active {
  background: var(--gradient-accent);
  color: var(--white);
  border-color: var(--green-500);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.2);
}

/* Stepper */
.calc__stepper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.calc__stepper-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  color: var(--text-body);
  font-family: var(--font-body);
  transition: all var(--transition-base);
}

.calc__stepper-btn:hover {
  background: var(--green-100);
  border-color: var(--green-300);
  color: var(--green-700);
  transform: scale(1.08);
}

.calc__stepper-btn:active {
  transform: scale(0.95);
}

.calc__stepper-btn i { width: 20px; height: 20px; }

.calc__stepper-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  min-width: 48px;
  text-align: center;
  transition: transform 0.2s var(--ease-out);
}

.calc__stepper-value.bump {
  transform: scale(1.25);
}

/* ─── Total Box ─── */
.calc__total-wrap {
  margin-top: 2rem;
  text-align: center;
}

.calc__total-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  background: var(--gradient-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  margin-bottom: 1rem;
}

.calc__total-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.calc__total-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.calc__total-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
  transition: color 0.3s;
}

.calc__total-number.zero {
  color: var(--text-muted);
}

.calc__total-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-600);
}

.calc__disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.calc__disclaimer i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.calc__cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.calc__cta-pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25); }
  50%      { box-shadow: 0 4px 25px rgba(45, 106, 79, 0.45), 0 0 0 8px rgba(45, 106, 79, 0.08); }
}

/* Show duration with slide */
.calc__duration {
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s, padding 0.3s;
}

.calc__duration.hidden {
  max-height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  border: none;
}

/* ─── Calculator Responsive ─── */
@media (max-width: 600px) {
  .calc__services-grid {
    grid-template-columns: 1fr;
  }
  .calc__options {
    flex-direction: column;
    gap: 1rem;
  }
  .calc__total-box {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
  }
  .calc__cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .calc__tooltip {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   MOBILE NAV OVERLAY
   ═══════════════════════════════════════════ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════
   RESERVATION DRAWER
   ═══════════════════════════════════════════ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 58, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--off-white);
  z-index: 2001;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.drawer.active {
  transform: translateX(0);
}

.drawer__header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--green-100);
  background: var(--white);
}

.drawer__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-900);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.drawer__header h3 i {
  color: var(--green-600);
}

.drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--green-800);
  transition: background 0.3s, transform 0.3s;
}

.drawer__close:hover {
  background: var(--green-100);
  transform: rotate(90deg);
}

.drawer__content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.drawer__intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Reservation Form */
.res-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.res-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.res-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.res-form__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-900);
}

.res-form__group input,
.res-form__group select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.res-form__group input:focus,
.res-form__group select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.1);
}

.res-form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a3a2a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* Success message in drawer */
.drawer-success {
  text-align: center;
  padding: 3rem 1rem;
}

.drawer-success__icon {
  width: 80px;
  height: 80px;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.drawer-success__icon i {
  width: 40px;
  height: 40px;
}

.drawer-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--green-900);
}

.drawer-success p {
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .drawer {
    max-width: 100%;
  }
}
