/* ═══════════════════════════════════════════════════════════════════════════
   KEMER WATERSPORTS — MAIN STYLESHEET
   Ocean Dark Theme | Bebas Neue + Outfit
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────────────────────────────── */
:root {
  --bg:        #020B18;
  --bg2:       #04152B;
  --bg3:       #061A35;
  --cyan:      #00D4FF;
  --cyan-dim:  rgba(0,212,255,.15);
  --orange:    #FF6B35;
  --orange-dim:rgba(255,107,53,.12);
  --text:      #E8F4F8;
  --text-muted:#7A9AB5;
  --border:    rgba(0,212,255,.12);
  --glass:     rgba(255,255,255,.04);
  --glass-h:   rgba(255,255,255,.08);
  --nav-h:     70px;
  --r:         12px;
  --r-lg:      20px;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── NOISE OVERLAY ─────────────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
}

/* ── PRELOADER ─────────────────────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s, visibility .5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.wave-loader { text-align: center; }
.wave-loader svg { width: 200px; animation: wave-anim 2s ease-in-out infinite; }
.wave-path { stroke-dasharray: 500; stroke-dashoffset: 500; animation: dash 2s ease-in-out infinite; }
@keyframes dash { 0% { stroke-dashoffset: 500; } 100% { stroke-dashoffset: 0; } }
@keyframes wave-anim { 0%,100% { transform: scaleX(1); } 50% { transform: scaleX(1.05); } }
.loader-text {
  display: block; margin-top: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: .3em;
  color: var(--cyan); opacity: .7;
}

/* ── NAVIGATION ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(2,11,24,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-logo { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-kemer {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: .15em;
  color: var(--cyan);
}
.logo-ws {
  font-family: 'Outfit', sans-serif; font-weight: 300;
  font-size: .55rem; letter-spacing: .4em;
  color: var(--text-muted); text-transform: uppercase;
}
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500; letter-spacing: .02em;
  color: var(--text-muted); transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--cyan); border-radius: 2px;
  transition: width .3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.nav-right { display: flex; align-items: center; gap: 12px; margin-left: 16px; }

/* Lang Dropdown */
.lang-dropdown { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 8px;
  background: var(--glass); border: 1px solid var(--border);
  color: var(--text); font-size: .85rem; font-weight: 500;
  transition: var(--transition);
}
.lang-btn:hover { background: var(--glass-h); border-color: var(--cyan); }
.flag-ico { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.lang-btn .flag-ico { width: 22px; height: 16px; }
.lang-menu a { display: flex; align-items: center; gap: 8px; }
.mobile-langs a { display: inline-flex; align-items: center; gap: 8px; }
.chevron { font-size: .7em; transition: transform .3s; }
.lang-dropdown:hover .chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 6px; min-width: 130px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); z-index: 100;
}
.lang-dropdown:hover .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: .85rem; color: var(--text-muted); transition: var(--transition);
}
.lang-menu a:hover, .lang-menu a.active { background: var(--cyan-dim); color: var(--cyan); }

.btn-nav-cta {
  padding: 8px 20px; border-radius: 25px;
  background: var(--orange); color: #fff; font-size: .85rem; font-weight: 600;
  letter-spacing: .03em; white-space: nowrap;
  transition: var(--transition); box-shadow: 0 0 20px rgba(255,107,53,.3);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255,107,53,.5); }

/* CTA (Rezervasyon) dropdown */
.cta-dropdown { position: relative; }
.cta-dropdown .btn-nav-cta { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; border: none; }
.cta-dropdown .chevron { font-size: .7em; transition: transform .3s; }
.cta-dropdown.open .chevron, .cta-dropdown:hover .chevron { transform: rotate(180deg); }
.cta-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 6px; min-width: 180px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); z-index: 200; box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.cta-dropdown.open .cta-menu, .cta-dropdown:hover .cta-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.cta-ch {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: .85rem; font-weight: 500; color: var(--text); transition: var(--transition);
}
.cta-ch.wa:hover { background: rgba(37,211,102,.15); color: #25D366; }
.cta-ch.tg:hover { background: rgba(44,165,224,.15); color: #2CA5E0; }
.cta-ch.vb:hover { background: rgba(115,96,242,.15); color: #7360F2; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 30px; }
.hamburger span { height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(2,11,24,.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0; opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-close { position: absolute; top: 20px; right: 24px; font-size: 1.5rem; color: var(--text-muted); }
.mobile-links { text-align: center; }
.mobile-links li { margin: 8px 0; }
.mobile-links a { font-size: 1.6rem; font-family: 'Bebas Neue', sans-serif; letter-spacing: .1em; color: var(--text); transition: color .3s; }
.mobile-links a:hover { color: var(--cyan); }
.mobile-langs { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
.mobile-langs a { font-size: 1rem; font-family: 'Outfit', sans-serif; color: var(--text-muted); }
.mobile-langs a.active { color: var(--cyan); }
.btn-mobile-cta {
  margin-top: 32px; padding: 14px 40px; border-radius: 30px;
  background: var(--orange); color: #fff; font-size: 1rem; font-weight: 600;
}

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  /* reserve space so centered content never overlaps the absolute stats bar / scroll indicator */
  padding-top: var(--nav-h); padding-bottom: 180px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #020B18 0%, #04152B 40%, #061A35 70%, #020B18 100%);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .25;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(0,212,255,.08) 0%, transparent 70%);
}

/* Animated water particles */
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-particles span {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: var(--cyan); opacity: 0;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: .6; }
  90%  { opacity: .2; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1.5); }
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 0 24px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 25px;
  background: var(--cyan-dim); border: 1px solid rgba(0,212,255,.3);
  font-size: .8rem; font-weight: 500; letter-spacing: .12em;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 24px;
  animation: fade-up .8s .2s both;
}
.hero-tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: .95; letter-spacing: .04em;
  color: #fff; margin-bottom: 24px;
  animation: fade-up .8s .35s both;
}
.hero-title .highlight {
  background: linear-gradient(90deg, var(--cyan), #0099CC);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 300;
  color: var(--text-muted); max-width: 600px; margin: 0 auto 40px;
  animation: fade-up .8s .5s both;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fade-up .8s .65s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 30px;
  background: var(--cyan); color: var(--bg); font-weight: 700;
  font-size: .95rem; letter-spacing: .03em;
  transition: var(--transition); box-shadow: 0 0 30px rgba(0,212,255,.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(0,212,255,.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 30px;
  border: 1px solid var(--border); color: var(--text); font-size: .95rem;
  transition: var(--transition); backdrop-filter: blur(8px);
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }

/* Hero Stats */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  display: flex; justify-content: center;
  animation: fade-up .8s .8s both;
}
.hero-stats-inner {
  display: flex; gap: 0;
  background: rgba(4,21,43,.8); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden;
}
.stat-item {
  padding: 20px 36px; text-align: center; border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; color: var(--cyan); display: block; line-height: 1;
}
.stat-lbl { font-size: .75rem; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }

/* Hero Wave Bottom */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 1; line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ── SCROLL INDICATOR ──────────────────────────────────────────────────────── */
.scroll-indicator {
  position: absolute; bottom: 110px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .7rem; letter-spacing: .15em; color: var(--text-muted); text-transform: uppercase;
  animation: fade-up 1s 1s both;
}
.scroll-mouse {
  width: 22px; height: 34px; border: 2px solid var(--text-muted); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 4px;
}
.scroll-mouse::after {
  content: ''; width: 3px; height: 8px; background: var(--cyan); border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(6px); opacity: .3; } }

/* ── SECTION COMMONS ───────────────────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 4px 16px; border-radius: 25px;
  background: var(--cyan-dim); border: 1px solid rgba(0,212,255,.25);
  font-size: .75rem; letter-spacing: .15em; color: var(--cyan); text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: .04em;
  color: #fff; line-height: 1;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-muted); margin-top: 16px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ── ACTIVITIES GRID ───────────────────────────────────────────────────────── */
.activities-section { background: var(--bg2); }
.activities-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 20% 50%, rgba(0,212,255,.04) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 50%, rgba(255,107,53,.04) 0%, transparent 60%);
}

.acts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.act-card {
  position: relative; border-radius: var(--r-lg);
  background: var(--glass); border: 1px solid var(--border);
  padding: 0; cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.act-card-media {
  position: relative; width: 100%; aspect-ratio: 4 / 3;
  overflow: hidden; background: var(--bg3);
}
.act-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.act-card:hover .act-card-media img { transform: scale(1.08); }
.act-card-media-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  background: radial-gradient(circle at 50% 40%, var(--cyan-dim) 0%, transparent 70%);
}
.act-card-media-ph svg { width: 76px; height: 76px; }
.act-card-body { padding: 22px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.act-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.act-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.act-card:hover { transform: translateY(-8px); border-color: rgba(0,212,255,.3); box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 30px rgba(0,212,255,.08); }
.act-card:hover::before { opacity: 1; }
.act-card:hover::after { transform: scaleX(1); }

.act-card-glow {
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 70%);
  border-radius: 50%; transform: translate(30%, -30%);
}
.act-icon {
  width: 56px; height: 56px; color: var(--cyan); margin-bottom: 20px;
  transition: transform .4s;
}
.act-card:hover .act-icon { transform: scale(1.15) rotate(5deg); }
.act-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: .04em; color: #fff; margin-bottom: 10px;
}
.act-card-desc {
  font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px;
}
.act-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: var(--cyan);
  transition: gap .3s; margin-top: auto; align-self: flex-start;
}
.act-card:hover .act-card-link { gap: 12px; }
.act-card-link .arr { transition: transform .3s; }
.act-card:hover .act-card-link .arr { transform: translateX(4px); }

/* ── WHY US ────────────────────────────────────────────────────────────────── */
.why-section { background: var(--bg); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  padding: 36px 28px; border-radius: var(--r-lg);
  background: var(--glass); border: 1px solid var(--border);
  transition: var(--transition); text-align: center;
}
.why-card:hover { border-color: rgba(0,212,255,.3); transform: translateY(-5px); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--cyan-dim); border: 1px solid rgba(0,212,255,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--cyan); font-size: 1.6rem;
}
.why-card h3 { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ── GALLERY SECTION ───────────────────────────────────────────────────────── */
.gallery-section { background: var(--bg2); }
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 25px;
  background: var(--glass); border: 1px solid var(--border);
  color: var(--text-muted); font-size: .85rem; font-weight: 500;
  transition: var(--transition); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--cyan-dim); border-color: rgba(0,212,255,.4); color: var(--cyan);
}
.gallery-masonry {
  columns: 4; column-gap: 16px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px; border-radius: var(--r);
  overflow: hidden; cursor: pointer; position: relative;
  transition: var(--transition);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { width: 100%; height: auto; display: block; }
.gallery-placeholder {
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  min-height: 200px; color: var(--text-muted); font-size: .85rem;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.93); backdrop-filter: blur(20px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--r); }
.lb-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: #fff; cursor: pointer; line-height: 1;
  background: rgba(255,255,255,.1); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.lb-close:hover { background: rgba(255,255,255,.2); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; cursor: pointer; transition: background .3s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(0,212,255,.2); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ── ABOUT SECTION ─────────────────────────────────────────────────────────── */
.about-section { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg3); min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.about-img-wrap img { width: 100%; height: auto; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--orange); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 0 40px rgba(255,107,53,.4);
}
.about-badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: #fff; line-height: 1; }
.about-badge-txt { font-size: .6rem; font-weight: 600; color: rgba(255,255,255,.8); letter-spacing: .1em; text-transform: uppercase; }
.about-text { }
.about-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem,4vw,3.5rem); letter-spacing: .04em; color: #fff; margin-bottom: 20px; line-height: 1.1; }
.about-text h2 span { color: var(--cyan); }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-size: .95rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: var(--r);
  background: var(--glass); border: 1px solid var(--border);
}
.about-feature-icon { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.about-feature h4 { font-size: .9rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.about-feature p { font-size: .8rem; color: var(--text-muted); }

/* ── CONTACT CTA BANNER ────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(0,212,255,.05) 50%, var(--bg3) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; padding: 80px 24px;
}
.cta-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 4rem); letter-spacing: .04em; color: #fff; margin-bottom: 16px; }
.cta-section p { color: var(--text-muted); margin-bottom: 40px; font-size: 1rem; }
.cta-channels { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-channel {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 30px;
  font-size: .95rem; font-weight: 600; transition: var(--transition);
}
.btn-channel.wa { background: #25D366; color: #fff; box-shadow: 0 0 25px rgba(37,211,102,.3); }
.btn-channel.wa:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(37,211,102,.5); }
.btn-channel.tg { background: #2CA5E0; color: #fff; box-shadow: 0 0 25px rgba(44,165,224,.3); }
.btn-channel.tg:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(44,165,224,.5); }
.btn-channel.vb { background: #7360F2; color: #fff; box-shadow: 0 0 25px rgba(115,96,242,.3); }
.btn-channel.vb:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(115,96,242,.5); }

/* ── CONTACT PAGE ──────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-wrap { padding: 40px; border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--border); }
.contact-form-wrap h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: .04em; color: var(--cyan); margin-bottom: 8px; }
.contact-form-wrap .sub { color: var(--text-muted); font-size: .875rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .8rem; font-weight: 500; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 12px 16px; border-radius: var(--r);
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  color: var(--text); font-family: inherit; font-size: .95rem;
  transition: border-color .3s, box-shadow .3s;
  resize: none;
}
.form-control:focus { outline: none; border-color: rgba(0,212,255,.5); box-shadow: 0 0 0 3px rgba(0,212,255,.08); }
.form-control::placeholder { color: var(--text-muted); }
.btn-wa-submit {
  width: 100%; padding: 14px; border-radius: 30px;
  background: #25D366; color: #fff; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition); box-shadow: 0 0 25px rgba(37,211,102,.3);
}
.btn-wa-submit:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(37,211,102,.5); }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  padding: 28px; border-radius: var(--r-lg);
  background: var(--glass); border: 1px solid var(--border);
}
.contact-info-card h4 { font-size: 1rem; font-weight: 600; color: var(--cyan); margin-bottom: 16px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--text-muted); font-size: .9rem; }
.contact-detail svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 280px; }

/* ── ACTIVITY DETAIL PAGE ──────────────────────────────────────────────────── */
.act-hero {
  min-height: 50vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  padding: calc(var(--nav-h) + 60px) 24px 60px;
}
.act-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .15;
}
.act-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg2) 0%, transparent 60%);
}
.act-hero-content { position: relative; z-index: 1; max-width: 700px; }
.act-breadcrumb { font-size: .8rem; color: var(--text-muted); margin-bottom: 16px; }
.act-breadcrumb a { color: var(--cyan); }
.act-hero-titlewrap { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.act-hero-icon { width: 60px; height: 60px; color: var(--cyan); flex-shrink: 0; }
.act-hero-icon svg { width: 100%; height: 100%; }
.act-hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: .04em; color: #fff; line-height: 1; margin: 0; }
.act-hero-short { font-size: 1.1rem; color: var(--text-muted); max-width: 500px; }
.act-hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

@media (max-width: 600px) {
  .act-hero { min-height: auto; padding: calc(var(--nav-h) + 28px) 20px 36px; }
  .act-hero-titlewrap { gap: 12px; margin-bottom: 12px; }
  .act-hero-icon { width: 42px; height: 42px; }
  .act-hero-title { font-size: 2rem; }
  .act-hero-short { font-size: .95rem; }
  .act-hero-actions { margin-top: 22px; }
  .act-hero-actions .btn-primary, .act-hero-actions .btn-secondary { padding: 12px 24px; font-size: .9rem; }
}

.act-body { display: grid; grid-template-columns: 1fr 340px; gap: 48px; padding: 80px 0; }
.act-description { color: var(--text-muted); line-height: 1.9; font-size: .95rem; }
.act-description p { margin-bottom: 16px; }
.act-sidebar { }
.act-prices-card {
  border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--border);
  overflow: hidden; margin-bottom: 20px;
}
.act-prices-head {
  padding: 18px 24px; background: var(--cyan-dim); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--cyan); font-size: .9rem;
}
.prices-table { width: 100%; border-collapse: collapse; }
.prices-table tr { border-bottom: 1px solid var(--border); }
.prices-table tr:last-child { border-bottom: none; }
.prices-table td { padding: 12px 16px; font-size: .875rem; color: var(--text-muted); }
.prices-table td:last-child { text-align: right; font-weight: 700; color: var(--orange); white-space: nowrap; }
.act-cta-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.act-cta-card .cta-head {
  padding: 20px 24px; text-align: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: .04em; color: #fff;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border-bottom: 1px solid var(--border);
}
.act-cta-card .cta-btns { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.act-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px; border-radius: 25px; font-weight: 600; font-size: .9rem;
  transition: var(--transition);
}
.act-cta-btn.wa { background: #25D366; color: #fff; }
.act-cta-btn.tg { background: #2CA5E0; color: #fff; }
.act-cta-btn.vb { background: #7360F2; color: #fff; }
.act-cta-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }

.related-acts { padding: 80px 0; border-top: 1px solid var(--border); }
.related-acts h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: .04em; margin-bottom: 32px; }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--bg2); position: relative; padding-top: 0; margin-top: 0; }
.footer-wave { line-height: 0; margin-bottom: -1px; }
.footer-wave svg { display: block; width: 100%; }
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 60px 24px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; margin-bottom: 16px; }
.footer-tagline { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); transition: var(--transition);
}
.social-link.social-wa:hover { background: rgba(37,211,102,.15); border-color: rgba(37,211,102,.4); color: #25D366; }
.social-link.social-tg:hover { background: rgba(44,165,224,.15); border-color: rgba(44,165,224,.4); color: #2CA5E0; }
.footer-heading { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .875rem; color: var(--text-muted); transition: color .3s; }
.footer-links a:hover { color: var(--cyan); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .875rem; color: var(--text-muted); }
.footer-contact-list svg { color: var(--cyan); flex-shrink: 0; }
.footer-contact-list a:hover { color: var(--cyan); }
.footer-channels { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.channel-btn {
  padding: 6px 14px; border-radius: 15px;
  font-size: .75rem; font-weight: 600; transition: var(--transition);
}
.channel-btn.wa { background: rgba(37,211,102,.1); color: #25D366; border: 1px solid rgba(37,211,102,.2); }
.channel-btn.tg { background: rgba(44,165,224,.1); color: #2CA5E0; border: 1px solid rgba(44,165,224,.2); }
.channel-btn.vb { background: rgba(115,96,242,.1); color: #7360F2; border: 1px solid rgba(115,96,242,.2); }
.channel-btn:hover { filter: brightness(1.3); transform: translateY(-1px); }
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }
.footer-credit { color: var(--text-muted); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; font-size: .8rem; }
.footer-legal a { color: var(--text-muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--cyan); }
.footer-dev-link { color: var(--cyan); font-weight: 600; transition: var(--transition); }
.footer-dev-link:hover { color: var(--orange); }
.mobile-credit { margin-top: 24px; font-size: .8rem; color: var(--text-muted); text-align: center; }
.mobile-credit a { color: var(--cyan); font-weight: 600; }

/* ── FLOATING CONTACT BUTTONS ──────────────────────────────────────────────── */
.floating-contacts {
  position: fixed; right: 20px; bottom: 90px; z-index: 500;
  display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.float-btn svg { width: 22px; height: 22px; }
.float-wa { background: #25D366; color: #fff; }
.float-wa:hover { transform: scale(1.15); box-shadow: 0 6px 30px rgba(37,211,102,.5); }
.float-tg { background: #2CA5E0; color: #fff; }
.float-tg:hover { transform: scale(1.15); box-shadow: 0 6px 30px rgba(44,165,224,.5); }
.float-vb { background: #7360F2; color: #fff; }
.float-vb:hover { transform: scale(1.15); box-shadow: 0 6px 30px rgba(115,96,242,.5); }

/* ── FLOATING LANGUAGE SWITCHER (bottom-left, desktop + mobile) ─────────────── */
.lang-float { position: fixed; left: 20px; bottom: 24px; z-index: 600; }
.lang-float-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: 30px;
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--text); font-size: .85rem; font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,.4); cursor: pointer;
  transition: var(--transition);
}
.lang-float-btn:hover { border-color: var(--cyan); }
.lang-float-btn .chevron { font-size: .7em; transition: transform .3s; }
.lang-float.open .lang-float-btn .chevron { transform: rotate(180deg); }
.lang-float-menu {
  position: absolute; left: 0; bottom: calc(100% + 10px);
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 6px; min-width: 165px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.lang-float.open .lang-float-menu,
.lang-float:hover .lang-float-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-float-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-size: .85rem; color: var(--text-muted); transition: var(--transition);
}
.lang-float-menu a:hover, .lang-float-menu a.active { background: var(--cyan-dim); color: var(--cyan); }
@media (max-width: 600px) {
  .lang-float { left: 14px; bottom: 18px; }
  .lang-float-btn { padding: 8px 13px; }
}

/* ── PAGE HERO (inner pages) ───────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 24px 80px;
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg3) 100%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0,212,255,.06) 0%, transparent 70%);
}
.page-hero h1 { position: relative; z-index: 1; font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 7vw, 6rem); letter-spacing: .04em; color: #fff; }
.page-hero p { position: relative; z-index: 1; color: var(--text-muted); margin-top: 16px; font-size: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── ANIMATIONS ────────────────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .act-body { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  /* push controls to the far right; hamburger sits flush against the right edge */
  .nav-right { margin-left: auto; gap: 14px; }
  .hamburger { margin-left: 2px; }
  .gallery-masonry { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Hero: take stats out of absolute flow so nothing overlaps on small screens */
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 0; }
  .hero-content { padding-top: 20px; padding-bottom: 40px; }
  .hero-stats { position: static; margin-top: 8px; }
  .hero-stats-inner { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; border-radius: 0; border-left: none; border-right: none; }
  .stat-item { padding: 18px 12px; }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .scroll-indicator { display: none; }
  .hero-wave { display: none; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .gallery-masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .acts-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .floating-contacts { right: 14px; bottom: 70px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
