/* ===========================
   eFoil Kołobrzeg – style.css
   Theme: Deep ocean / electric
   =========================== */

:root {
  --ocean: #031d2e;
  --deep: #020f1a;
  --surface: #0a2d42;
  --electric: #00d4ff;
  --electric-dim: rgba(0,212,255,0.15);
  --electric-glow: rgba(0,212,255,0.4);
  --white: #f4f8fa;
  --muted: rgba(244,248,250,0.55);
  --card-bg: rgba(10,45,66,0.7);
  --border: rgba(0,212,255,0.15);
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--electric); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; line-height: 1; }
em { font-style: italic; color: var(--electric); font-family: 'DM Sans', sans-serif; font-weight: 300; }

/* ── CONTAINERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500; cursor: pointer;
  text-decoration: none; border: none; transition: var(--transition);
}
.btn-primary {
  background: var(--electric); color: var(--deep); font-weight: 600;
  box-shadow: 0 0 24px var(--electric-glow);
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 0 40px var(--electric-glow); }
.btn-ghost {
  background: transparent; color: var(--white); border: 1.5px solid rgba(244,248,250,0.3);
}
.btn-ghost:hover { border-color: var(--electric); color: var(--electric); }
.btn-white { background: var(--white); color: var(--deep); font-weight: 600; }
.btn-white:hover { background: var(--electric); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(2,15,26,0.92);
  backdrop-filter: blur(20px);
  padding: 0.9rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  letter-spacing: 0.05em; color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--electric); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  font-weight: 400; transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--electric); color: var(--deep) !important; font-weight: 600 !important;
  padding: 0.5rem 1.25rem; border-radius: 50px;
}
.nav-cta:hover { background: var(--white) !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-water {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1601869959642-58e1ff8d81a3?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wxMTc3M3wwfDF8c2VhcmNofDF8fGVmb2lsfGVufDB8fHx8MTc3MDMxNTQzMnww&ixlib=rb-4.1.0&q=80&w=2000');
  background-size: cover;
  background-position: center 40%;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { background-size: 100%; background-position: center 40%; }
  100% { background-size: 110%; background-position: center 45%; }
}
.hero-water::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,212,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(0,100,200,0.12) 0%, transparent 60%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(2,9,18,0.75) 0%,
    rgba(2,15,26,0.55) 50%,
    rgba(2,9,18,0.65) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 3rem; padding-top: 8rem;
  max-width: 800px;
}
.hero-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--electric); margin-bottom: 1.5rem;
  border: 1px solid var(--electric-dim); padding: 0.4rem 1rem; border-radius: 50px;
}
.hero-title {
  display: flex; flex-direction: column; gap: 0;
}
.hero-line1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem); letter-spacing: 0.05em; line-height: 1;
  color: var(--electric); display: block;
}
.hero-line2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 11rem); letter-spacing: 0.02em; line-height: 0.9;
  color: var(--white); display: block;
}
.hero-sub {
  margin-top: 2rem; font-size: 1.05rem; color: var(--muted); max-width: 520px;
  font-weight: 300; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: var(--muted); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--electric), transparent);
}
@keyframes float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── STATS BAND ── */
.stats-band {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
  padding: 2rem 0;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 1rem 3rem; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--electric); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }
.stat-divider { width: 1px; height: 50px; background: var(--border); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header--light { }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--electric); margin-bottom: 1rem;
}
.section-tag--light { color: var(--electric); }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; }
.section-title--light { color: var(--white); }
.section-sub { margin-top: 1rem; color: var(--muted); max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── OFFER ── */
.offer { background: var(--deep); }
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem;
}
.offer-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; position: relative; overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.offer-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--electric-dim) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.offer-card:hover { border-color: var(--electric); transform: translateY(-4px); }
.offer-card:hover::before { opacity: 1; }
.offer-card--main { border-color: rgba(0,212,255,0.3); }
.offer-card-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: var(--electric-dim);
  position: absolute; top: -0.5rem; right: 1rem; line-height: 1; user-select: none;
  transition: var(--transition);
}
.offer-card:hover .offer-card-num { color: rgba(0,212,255,0.3); }
.offer-icon { font-size: 2rem; margin-bottom: 1rem; }
.offer-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--white); }
.offer-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.offer-card--cta { background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,100,200,0.15)); }

/* PRICING */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem 2rem; text-align: center; position: relative; transition: var(--transition);
}
.pricing-card:hover { border-color: var(--electric); transform: translateY(-4px); }
.pricing-card--featured {
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,100,200,0.2));
  border-color: var(--electric);
  box-shadow: 0 0 40px var(--electric-dim);
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--electric); margin-bottom: 1rem;
}
.pricing-duration { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; margin-bottom: 0.5rem; }
.pricing-price { font-size: 1rem; color: var(--muted); margin-bottom: 1.5rem; }
.pricing-price strong { font-size: 2rem; color: var(--white); font-family: 'Bebas Neue', sans-serif; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { font-size: 0.9rem; color: var(--muted); padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }

/* ── HOW ── */
.how {
  background: var(--surface);
  position: relative; overflow: hidden;
}
.how::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixlib=rb-4.1.0&q=80&w=1600');
  background-size: cover; background-position: center 60%;
  opacity: 0.12;
}
.steps {
  display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; justify-content: center;
}
.step {
  flex: 1; min-width: 160px; max-width: 200px; text-align: center; padding: 1rem;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), #0080ff);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 0 20px var(--electric-glow);
  color: var(--deep);
}
.step h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; margin-bottom: 0.5rem; line-height: 1.2; }
.step p { font-size: 0.82rem; color: var(--muted); }
.step-arrow {
  align-self: center; font-size: 1.5rem; color: var(--electric); padding: 0 0.5rem; margin-top: -1rem;
}

/* ── LOCATIONS ── */
.locations { background: var(--deep); }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.location-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition);
}
.location-card:hover { border-color: var(--electric); transform: translateY(-4px); }
.location-img {
  height: 280px; position: relative;
  background-size: cover; background-position: center;
}
.location-img--baltic {
  background-image: url('https://images.unsplash.com/photo-1601869959642-58e1ff8d81a3?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixlib=rb-4.1.0&q=80&w=900');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.location-img--baltic::after {
  content: ''; display: block;
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(2,15,26,0.1) 30%, rgba(2,15,26,0.85) 100%);
}
.location-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--electric); color: var(--deep); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 50px;
}
.location-img--lake {
  background-image: url('lake.jpeg');
  background-size: cover; background-position: center 30%;
  position: relative; overflow: hidden;
}
.location-img--lake::after {
  content: ''; display: block;
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(2,15,26,0.1) 30%, rgba(2,15,26,0.85) 100%);
}
.location-body { padding: 2rem; background: var(--card-bg); }
.location-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; margin-bottom: 0.75rem; }
.location-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.location-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.location-tags span {
  font-size: 0.75rem; border: 1px solid var(--border); border-radius: 50px;
  padding: 0.25rem 0.75rem; color: var(--muted);
}

/* ── FLITEBOARD ── */
.fliteboard { background: var(--surface); }
.fliteboard-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.flite-benefits { list-style: none; margin: 1.5rem 0 2rem; }
.flite-benefits li { padding: 0.6rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
.flite-benefits li:last-child { border-bottom: none; }

.flite-card {
  border: 1px solid var(--electric); border-radius: var(--radius);
  overflow: hidden; background: var(--card-bg);
  box-shadow: 0 0 60px rgba(0,212,255,0.1);
}
.flite-card-top {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.1em;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--electric), #0080ff);
  color: var(--deep);
}
.flite-models { padding: 1.5rem 2rem; }
.flite-model {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.flite-model:last-child { border-bottom: none; }
.flite-model-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--white); letter-spacing: 0.05em; }
.flite-model-desc { font-size: 0.8rem; color: var(--muted); }
.flite-card-footer {
  padding: 1rem 2rem; background: var(--deep);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; color: var(--muted);
}
.flite-dot { color: var(--electric); font-size: 0.5rem; }

/* ── FAQ ── */
.faq { background: var(--deep); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 500; cursor: pointer;
  padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; color: var(--electric); font-size: 1.4rem; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0 0;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.5rem; }

/* ── CONTACT ── */
.contact { background: linear-gradient(160deg, var(--surface) 0%, var(--deep) 100%); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem; text-decoration: none;
  color: var(--white); font-size: 1rem; transition: var(--transition);
}
.contact-link:hover { color: var(--electric); }
.contact-icon { font-size: 1.5rem; }

.contact-form-wrap {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2.5rem; backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.75rem 1rem; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: var(--transition); outline: none; resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--electric); box-shadow: 0 0 0 3px var(--electric-dim); }
.form-group select option { background: var(--ocean); }
.form-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; }

/* ── FOOTER ── */
.footer { background: var(--deep); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.05em; }
.footer-logo em { font-style: normal; color: var(--electric); }
.footer-brand p { font-size: 0.85rem; color: var(--muted); margin-top: 0.75rem; max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.15em; color: var(--electric); }
.footer-col a { text-decoration: none; color: var(--muted); font-size: 0.85rem; transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); }
.footer-bottom a { color: var(--electric); text-decoration: none; }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex; gap: 4px; align-items: center; margin-left: 1rem;
}
.lang-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem; border-radius: 6px; cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover { border-color: var(--electric); color: var(--white); }
.lang-btn.active {
  background: var(--electric); border-color: var(--electric);
  color: var(--deep);
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SUCCESS MESSAGE ── */
.form-success {
  display: none; text-align: center; padding: 2rem;
  color: var(--electric); font-size: 1.1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card--featured { transform: scale(1); }
  .fliteboard-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .steps { gap: 0.5rem; }
  .step-arrow { display: none; }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed; inset: 0; top: 60px;
    background: rgba(2,9,18,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .lang-switcher { margin-left: 0; }
  .hero-content { padding: 0 1.5rem; padding-top: 7rem; }
  .hero-line2 { font-size: clamp(3.5rem, 15vw, 7rem); }
  .offer-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .stats-band { gap: 0; }
  .stat { padding: 1rem 1.5rem; }
  .stat-divider { height: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 5rem 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .step { min-width: 130px; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-bubble {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
}
.wa-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.7);
}
.wa-btn svg { width: 32px; height: 32px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.12); }
}
.wa-tooltip {
  background: #fff; color: #111; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  padding: 0.5rem 1rem; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.wa-bubble:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@media (max-width: 768px) {
  .wa-bubble { bottom: 1.25rem; right: 1.25rem; }
  .wa-btn { width: 54px; height: 54px; }
}

/* ── LAKE VIDEO CARD ── */
.location-card--video { cursor: pointer; }
.location-card--video:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); background: rgba(0,212,255,0.95); }
.location-card--video:hover .location-img--lake { filter: brightness(0.75); }
.location-img--lake { transition: filter 0.3s ease; }

.location-card--video { position: relative; }

.play-btn {
  position: absolute;
  top: calc(280px / 2);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(0,212,255,0.85);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease;
  box-shadow: 0 4px 24px rgba(0,212,255,0.5);
  pointer-events: none;
}
.play-btn svg {
  width: 28px; height: 28px; fill: #fff;
  margin-left: 4px;
}

/* ── VIDEO MODAL ── */
.video-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.open { opacity: 1; pointer-events: all; }
.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
}
.video-modal-box {
  position: relative; z-index: 1;
  width: min(90vw, 960px);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,212,255,0.2);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.video-modal.open .video-modal-box { transform: scale(1); }
.video-modal-box video {
  width: 100%; display: block;
  background: #000;
}
.video-modal-close {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.video-modal-close:hover { background: var(--electric); color: var(--deep); }
