/* ============================================================
   ASMALI CAFE — Premium CSS
   Bahçeşehir, İstanbul
   ============================================================ */

/* ── GOOGLE FONTS (fallback import) ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ── CSS RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── CSS VARIABLES ── */
:root {
  --primary:   #2ec4b6;
  --secondary: #ff9f1c;
  --accent:    #cbf3f0;
  --dark:      #0d1f26;
  --text:      #3d5a5e;
  --light:     #f0fffe;
  --white:     #fff;
  --radius:    20px;
  --shadow:    0 8px 32px rgba(46,196,182,.18);
  --shadow-lg: 0 20px 60px rgba(13,31,38,.18);
  --glass:     rgba(255,255,255,.15);
  --glass-border: rgba(255,255,255,.25);
  --transition: .4s cubic-bezier(.25,.8,.25,1);
  --transition-fast: .2s cubic-bezier(.25,.8,.25,1);
  --transition-bounce: .5s cubic-bezier(.34,1.56,.64,1);
}

/* ── ANNOUNCEMENT BANNER ── */
.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff9f1c, #ff6b35);
  color: white;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.5s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.announcement-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}
.announcement-content i {
  font-size: 18px;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.announcement-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}
.announcement-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
/* Duyuru varsa navbar'ı aşağı kaydır */
body:has(.announcement-banner[style*="display: flex"]) .navbar {
  top: 60px;
}
body:has(.announcement-banner[style*="display: flex"]) .hero {
  padding-top: 140px;
}

/* Responsive announcement */
@media (max-width: 768px) {
  .announcement-banner {
    padding: 12px 16px;
  }
  .announcement-content {
    font-size: 13px;
    gap: 10px;
  }
  .announcement-content i {
    font-size: 16px;
  }
  .announcement-close {
    width: 28px;
    height: 28px;
  }
  body:has(.announcement-banner[style*="display: flex"]) .navbar {
    top: 55px;
  }
  body:has(.announcement-banner[style*="display: flex"]) .hero {
    padding-top: 130px;
  }
}
@media (max-width: 480px) {
  .announcement-banner {
    padding: 10px 12px;
  }
  .announcement-content {
    font-size: 12px;
    gap: 8px;
  }
  .announcement-content i {
    font-size: 14px;
  }
  .announcement-close {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  body:has(.announcement-banner[style*="display: flex"]) .navbar {
    top: 50px;
  }
  body:has(.announcement-banner[style*="display: flex"]) .hero {
    padding-top: 120px;
  }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9999;
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(46,196,182,.6);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width var(--transition-fast), height var(--transition-fast), background var(--transition-fast);
  box-shadow: 0 0 8px rgba(255,159,28,.8);
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .15s ease, height .15s ease, border-color .15s ease, transform .08s ease;
  opacity: .7;
}
.cursor-dot.hovered {
  width: 16px; height: 16px;
  background: var(--primary);
  box-shadow: 0 0 16px rgba(46,196,182,.9);
}
.cursor-ring.hovered {
  width: 56px; height: 56px;
  border-color: var(--secondary);
  opacity: .5;
}

/* ── Cursor Trail & Sparkle ── */
.cursor-trail {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  opacity: .6;
  animation: trailFade .6s ease forwards;
}
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 99996;
  font-size: 14px;
  animation: sparklePop .8s ease forwards;
  transform: translate(-50%, -50%);
}
@keyframes trailFade {
  0%   { opacity: .6; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0;  transform: translate(-50%,-50%) scale(0); }
}
@keyframes sparklePop {
  0%   { opacity: 1; transform: translate(-50%,-50%) scale(0) rotate(0deg); }
  50%  { opacity: 1; transform: translate(-50%,-80%) scale(1.2) rotate(180deg); }
  100% { opacity: 0; transform: translate(-50%,-120%) scale(0) rotate(360deg); }
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #062a33 0%, #0d4a56 40%, #2ec4b6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: transform .8s cubic-bezier(.76,0,.24,1), opacity .8s ease;
  overflow: hidden;
}
.loading-screen.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.loading-content {
  text-align: center;
  z-index: 2;
  position: relative;
}
.loading-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.loading-icon {
  font-size: 3.5rem;
  animation: logoPulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(46,196,182,.8));
}
.loading-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(46,196,182,.6);
}
.loading-bar-wrap {
  width: 280px;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  margin: 0 auto 20px;
  overflow: hidden;
}
.loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: width .05s linear;
  box-shadow: 0 0 12px rgba(255,159,28,.7);
}
.loading-sub {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  letter-spacing: 1px;
  animation: blink 1.8s ease-in-out infinite;
}
.loading-wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='rgba(255,255,255,0.08)' d='M0,60 C360,120 1080,0 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") repeat-x;
  animation: waveScroll 6s linear infinite;
}
@keyframes logoPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}
@keyframes blink {
  0%,100% { opacity: .7; }
  50%      { opacity: .3; }
}
@keyframes waveScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PARTICLE CANVAS
   ============================================================ */
#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 24px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), #1aa89c);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 9000;
  opacity: 0;
  transform: translateY(20px) scale(.8);
  transition: opacity var(--transition), transform var(--transition-bounce);
  box-shadow: 0 4px 20px rgba(46,196,182,.4);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 28px rgba(46,196,182,.6);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; left: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 9000;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform var(--transition-bounce), box-shadow var(--transition);
  overflow: visible;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.65);
  animation: none;
}
.wa-float-label {
  position: absolute;
  left: 68px;
  background: #25d366;
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}
.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  z-index: 8000;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 48px;
  box-shadow: 0 4px 30px rgba(13,31,38,.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px rgba(46,196,182,.6));
  animation: leafFloat 3s ease-in-out infinite;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: .5px;
}
.navbar.scrolled .logo-text { color: var(--dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  transition: background var(--transition), color var(--transition), transform var(--transition-fast);
  position: relative;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active-link::after { width: 60%; }
.nav-links a:hover {
  background: rgba(46,196,182,.15);
  color: var(--primary);
  transform: translateY(-2px);
}
.nav-links a.active-link {
  color: var(--primary);
  background: rgba(46,196,182,.12);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(46,196,182,.15), rgba(46,196,182,.08));
  color: var(--primary);
  border: 1px solid rgba(46,196,182,.3);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.3);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-desc {
  color: var(--text);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: .85;
}
.section-desc.light { color: rgba(255,255,255,.8); }
.highlight {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  border-radius: 2px;
  opacity: .6;
}
.highlight-light {
  color: #ffe066;
  text-shadow: 0 0 20px rgba(255,224,102,.5);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #062a33 0%, #0a3d4a 35%, #0f5a6b 65%, #2ec4b6 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
/* Animated gradient mesh overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(46,196,182,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(255,159,28,.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 10%, rgba(203,243,240,.1) 0%, transparent 50%);
  animation: meshShift 12s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0%   { opacity: .8; transform: scale(1) rotate(0deg); }
  100% { opacity: 1;  transform: scale(1.05) rotate(2deg); }
}

/* Waves */
.wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%;
  height: 160px;
  background-repeat: repeat-x;
  transform-origin: bottom;
}
.wave1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160'%3E%3Cpath fill='rgba(255,255,255,0.06)' d='M0,80 C360,160 1080,0 1440,80 L1440,160 L0,160 Z'/%3E%3C/svg%3E");
  animation: wave 8s linear infinite;
  z-index: 1;
}
.wave2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160'%3E%3Cpath fill='rgba(255,255,255,0.04)' d='M0,100 C480,20 960,140 1440,60 L1440,160 L0,160 Z'/%3E%3C/svg%3E");
  animation: wave 12s linear infinite reverse;
  z-index: 2;
}
.wave3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160'%3E%3Cpath fill='rgba(255,255,255,0.08)' d='M0,50 C240,130 720,10 1440,90 L1440,160 L0,160 Z'/%3E%3C/svg%3E");
  animation: wave 10s linear infinite;
  z-index: 3;
}
@keyframes wave {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Floating Leaves */
.floating-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.leaf {
  position: absolute;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  opacity: .6;
  animation: leafFloat calc(6s + var(--i) * 1.5s) ease-in-out infinite;
  animation-delay: calc(var(--i) * -1.2s);
  filter: drop-shadow(0 0 6px rgba(46,196,182,.4));
}
.leaf:nth-child(1)  { left: 8%;  top: 20%; }
.leaf:nth-child(2)  { left: 18%; top: 65%; }
.leaf:nth-child(3)  { left: 75%; top: 15%; }
.leaf:nth-child(4)  { left: 85%; top: 55%; }
.leaf:nth-child(5)  { left: 45%; top: 80%; }
.leaf:nth-child(6)  { left: 60%; top: 30%; }
@keyframes leafFloat {
  0%,100% { transform: translateY(0) rotate(0deg) scale(1); }
  33%      { transform: translateY(-22px) rotate(12deg) scale(1.05); }
  66%      { transform: translateY(-10px) rotate(-8deg) scale(.95); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 120px 24px 180px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  color: rgba(255,255,255,.95);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.2);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.hero-title .highlight {
  color: var(--secondary);
  text-shadow: 0 0 40px rgba(255,159,28,.7), 0 4px 30px rgba(0,0,0,.3);
}
.hero-title .highlight::after { display: none; }
.typed-text {
  border-right: 3px solid var(--secondary);
  padding-right: 4px;
  animation: caretBlink .8s step-end infinite;
}
@keyframes caretBlink {
  0%,100% { border-color: var(--secondary); }
  50%      { border-color: transparent; }
}
.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .5px;
  transition: transform var(--transition-bounce), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
  cursor: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: inherit;
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-4px) scale(1.03); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #e8890a);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(255,159,28,.45);
}
.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(255,159,28,.6);
}
.btn-outline {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border: 1.5px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-outline:hover {
  background: rgba(255,255,255,.25);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1da851);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
}
.btn-whatsapp:hover {
  box-shadow: 0 12px 36px rgba(37,211,102,.6);
}
.btn.full-width { width: 100%; justify-content: center; }

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: rippleAnim .6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* Hero Info */
.hero-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 400;
}
.info-item i {
  color: var(--primary);
  font-size: 1rem;
  filter: drop-shadow(0 0 6px rgba(46,196,182,.6));
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 5;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.6);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
.scroll-dot:nth-child(2) { animation-delay: .2s; opacity: .5; }
.scroll-dot:nth-child(3) { animation-delay: .4s; opacity: .3; }
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: .6; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  padding: 60px 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 -4px 40px rgba(13,31,38,.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(46,196,182,.12);
  transition: transform var(--transition-bounce), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.stat-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(46,196,182,.2);
  border-color: rgba(46,196,182,.35);
}
.stat-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(46,196,182,.15), rgba(46,196,182,.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition-bounce), background var(--transition);
}
.stat-item:hover .stat-icon {
  transform: rotate(10deg) scale(1.1);
  background: linear-gradient(135deg, rgba(46,196,182,.25), rgba(46,196,182,.1));
}
.stat-info { flex: 1; }
.stat-info > div {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.stat-plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}
.stat-info p {
  font-size: .82rem;
  color: var(--text);
  opacity: .75;
  margin-top: 4px;
  font-weight: 400;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,196,182,.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-img-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,31,38,.4) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition);
}
.about-img-container:hover::before { opacity: 1; }
.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.8,.25,1);
  display: block;
}
.about-img-container:hover .about-main-img {
  transform: scale(1.06);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--secondary), #e8890a);
  color: var(--white);
  padding: 16px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(255,159,28,.45);
  z-index: 2;
  animation: badgeBounce 3s ease-in-out infinite;
}
.about-badge i { font-size: 1.1rem; }
@keyframes badgeBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.about-text { padding: 20px 0; }
.about-text .section-tag { margin-bottom: 12px; }
.about-text .section-title { margin-bottom: 20px; }
.about-text p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .97rem;
}
.owner-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(46,196,182,.08), rgba(46,196,182,.03));
  border: 1px solid rgba(46,196,182,.2);
  border-radius: 16px;
  margin: 28px 0;
  transition: transform var(--transition-bounce), box-shadow var(--transition);
}
.owner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(46,196,182,.15);
}
.owner-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), #1aa89c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.owner-name {
  display: block;
  font-weight: 600;
  color: var(--dark);
  font-size: .95rem;
}
.owner-title {
  display: block;
  font-size: .8rem;
  color: var(--text);
  opacity: .75;
  margin-top: 2px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(46,196,182,.05);
  border: 1px solid rgba(46,196,182,.1);
  transition: background var(--transition), transform var(--transition-fast);
}
.feature:hover {
  background: rgba(46,196,182,.12);
  transform: translateX(4px);
}
.feature i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   POOL SECTION
   ============================================================ */
.pool {
  padding: 100px 0;
  background: linear-gradient(160deg, #062a33 0%, #0a3d4a 40%, #0f5a6b 80%, #1a8a80 100%);
  position: relative;
  overflow: hidden;
}
.pool-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.pool-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 40%, rgba(46,196,182,.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 60%, rgba(255,159,28,.1) 0%, transparent 55%);
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  animation: bubbleRise calc(8s + var(--i) * 2s) ease-in-out infinite;
  animation-delay: calc(var(--i) * -1.5s);
}
.bubble:nth-child(1) { width: 60px;  height: 60px;  left: 10%; bottom: -80px; }
.bubble:nth-child(2) { width: 40px;  height: 40px;  left: 25%; bottom: -60px; }
.bubble:nth-child(3) { width: 80px;  height: 80px;  left: 50%; bottom: -100px; }
.bubble:nth-child(4) { width: 30px;  height: 30px;  left: 70%; bottom: -50px; }
.bubble:nth-child(5) { width: 55px;  height: 55px;  left: 85%; bottom: -75px; }
.bubble:nth-child(6) { width: 45px;  height: 45px;  left: 40%; bottom: -65px; }
@keyframes bubbleRise {
  0%   { transform: translateY(0) scale(1); opacity: .6; }
  50%  { transform: translateY(-40vh) scale(1.1); opacity: .4; }
  100% { transform: translateY(-80vh) scale(.8); opacity: 0; }
}
.pool-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pool-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  color: var(--white);
  transition: transform var(--transition-bounce), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.pool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(46,196,182,.8), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.pool-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(46,196,182,.3);
  background: rgba(255,255,255,.2);
}
.pool-card:hover::before { opacity: 1; }
.pool-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(46,196,182,.3), rgba(46,196,182,.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  margin: 0 auto 20px;
  transition: transform var(--transition-bounce);
  border: 1px solid rgba(46,196,182,.3);
}
.pool-card:hover .pool-card-icon {
  transform: rotate(10deg) scale(1.15);
}
.pool-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.pool-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}
.pool-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 18px 24px;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  line-height: 1.6;
}
.pool-note i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pool-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  padding: 100px 0;
  background: var(--light);
  position: relative;
}
.menu-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(0deg, rgba(46,196,182,.04) 0%, transparent 100%);
  pointer-events: none;
}
.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid rgba(46,196,182,.2);
  transition: all var(--transition);
  cursor: none;
  white-space: nowrap;
}
.tab-btn:hover {
  background: rgba(46,196,182,.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(46,196,182,.2);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), #1aa89c);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(46,196,182,.4);
  transform: translateY(-2px);
}
.tab-panel {
  display: none;
  animation: fadeInPanel .4s ease;
}
.tab-panel.active { display: block; }
@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  border: 1px solid rgba(46,196,182,.1);
  transition: transform var(--transition-bounce), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.menu-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.menu-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(46,196,182,.18);
  border-color: rgba(46,196,182,.3);
}
.menu-item:hover::after { transform: scaleX(1); }
.menu-item-img {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(46,196,182,.15), rgba(46,196,182,.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform var(--transition-bounce), background var(--transition);
  flex-shrink: 0;
}
.menu-item:hover .menu-item-img {
  transform: rotate(-8deg) scale(1.15);
  background: linear-gradient(135deg, rgba(46,196,182,.25), rgba(46,196,182,.1));
}
.menu-item-info { flex: 1; }
.menu-item-info h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.menu-item-info p {
  font-size: .78rem;
  color: var(--text);
  opacity: .7;
  line-height: 1.5;
}
.menu-price {
  background: linear-gradient(135deg, var(--secondary), #e8890a);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(255,159,28,.35);
  white-space: nowrap;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
  padding: 100px 0 80px;
  background: var(--white);
  overflow: hidden;
}
.gallery-slider-wrap {
  position: relative;
  margin-top: 16px;
  padding: 0 60px;
}
.gallery-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 16px 4px 24px;
}
.gallery-slider::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 320px;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: none;
  box-shadow: 0 8px 32px rgba(13,31,38,.12);
  transition: transform var(--transition-bounce), box-shadow var(--transition);
}
.gallery-slide:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(13,31,38,.22);
}
.gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.8,.25,1);
  display: block;
}
.gallery-slide:hover img { transform: scale(1.08); }
.slide-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(0deg, rgba(13,31,38,.85) 0%, transparent 100%);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
  letter-spacing: .5px;
}
.gallery-slide:hover .slide-label { transform: translateY(0); }
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(13,31,38,.15);
  z-index: 10;
  transition: background var(--transition), color var(--transition), transform var(--transition-bounce), box-shadow var(--transition);
  cursor: none;
}
.slider-arrow:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 28px rgba(46,196,182,.4);
}
.slider-prev { left: 4px; }
.slider-next { right: 4px; }
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(46,196,182,.3);
  cursor: none;
  transition: background var(--transition), transform var(--transition-bounce), width var(--transition);
}
.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
  width: 24px;
  border-radius: 4px;
}
.slider-dot:hover { background: var(--primary); transform: scale(1.2); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,42,51,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: none;
}
.lightbox-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transform: scale(.9);
  transition: transform var(--transition-bounce);
}
.lightbox.open .lightbox-img-wrap { transform: scale(1); }
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}
.lightbox-caption {
  display: none;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  z-index: 3;
  cursor: none;
  transition: background var(--transition), transform var(--transition-bounce);
}
.lightbox-close:hover {
  background: rgba(255,255,255,.3);
  transform: rotate(90deg) scale(1.1);
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  z-index: 3;
  cursor: none;
  transition: background var(--transition), transform var(--transition-bounce);
}
.lightbox-nav:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--light);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 20px rgba(46,196,182,.08);
  transition: transform var(--transition-bounce), box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover {
  transform: translateX(6px) translateY(-2px);
  box-shadow: 0 8px 32px rgba(46,196,182,.18);
  border-color: var(--secondary);
}
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(46,196,182,.15), rgba(46,196,182,.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition-bounce), background var(--transition);
}
.contact-card:hover .contact-icon {
  transform: rotate(10deg) scale(1.1);
  background: linear-gradient(135deg, rgba(46,196,182,.25), rgba(46,196,182,.1));
}
.contact-card h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-card p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-card .note {
  font-size: .78rem;
  color: var(--primary);
  font-weight: 500;
}
.map-container {
  margin-top: 8px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,31,38,.1);
  position: relative;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary), #1aa89c);
  color: var(--white);
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  transition: transform var(--transition-bounce), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(46,196,182,.35);
}
.map-link:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(46,196,182,.5);
}
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(13,31,38,.08);
  border: 1px solid rgba(46,196,182,.1);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25d366;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(46,196,182,.2);
  border-radius: 12px;
  font-size: .9rem;
  color: var(--dark);
  background: var(--light);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(46,196,182,.12);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(61,90,94,.45);
}
.whatsapp-direct {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(37,211,102,.1), rgba(37,211,102,.05));
  border: 1.5px solid rgba(37,211,102,.25);
  border-radius: 14px;
  color: var(--dark);
  transition: transform var(--transition-bounce), box-shadow var(--transition), background var(--transition);
}
.whatsapp-direct:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.2);
  background: linear-gradient(135deg, rgba(37,211,102,.18), rgba(37,211,102,.08));
}
.whatsapp-direct i {
  font-size: 1.8rem;
  color: #25d366;
}
.whatsapp-direct span {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
}
.whatsapp-direct small {
  font-size: .8rem;
  color: var(--text);
  opacity: .75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}
.footer-waves {
  position: absolute;
  top: 0; left: 0;
  width: 200%; height: 80px;
  pointer-events: none;
  opacity: .06;
}
.footer-waves .wave1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%232ec4b6' d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E");
  height: 80px;
  animation: wave 10s linear infinite;
}
.footer-waves .wave2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ff9f1c' d='M0,50 C480,10 960,70 1440,30 L1440,80 L0,80 Z'/%3E%3C/svg%3E");
  height: 80px;
  animation: wave 14s linear infinite reverse;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-brand .logo-icon { font-size: 1.8rem; }
.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  padding: 6px 14px;
  border-radius: 20px;
  transition: color var(--transition), background var(--transition), transform var(--transition-fast);
}
.footer-links a:hover {
  color: var(--primary);
  background: rgba(46,196,182,.1);
  transform: translateY(-2px);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-btn {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition-bounce), box-shadow var(--transition);
}
.social-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(46,196,182,.4);
  border-color: transparent;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.25,.8,.25,1), transform .7s cubic-bezier(.25,.8,.25,1);
}
.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .7s cubic-bezier(.25,.8,.25,1), transform .7s cubic-bezier(.25,.8,.25,1);
}
.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .7s cubic-bezier(.25,.8,.25,1), transform .7s cubic-bezier(.25,.8,.25,1);
}
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.25,.8,.25,1), transform .6s cubic-bezier(.25,.8,.25,1);
}
.animate-fade-up.visible,
.animate-left.visible,
.animate-right.visible,
.animate-up.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }

/* Reveal section */
.reveal-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.25,.8,.25,1), transform .8s cubic-bezier(.25,.8,.25,1);
}
.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   KEYFRAME ANIMATIONS (global)
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  40%      { transform: translateY(-16px); }
  60%      { transform: translateY(-8px); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.06); opacity: .85; }
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(20px, -30px) rotate(90deg); }
  50%  { transform: translate(40px, 0) rotate(180deg); }
  75%  { transform: translate(20px, 30px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid  { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .pool-cards { grid-template-columns: repeat(2, 1fr); }
  .menu-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .navbar { padding: 18px 32px; }
  .navbar.scrolled { padding: 12px 32px; }
}

/* ============================================================
   RESPONSIVE — 900px (hamburger, 1-col about/contact)
   ============================================================ */
@media (max-width: 900px) {
  /* Hamburger */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: rgba(13,31,38,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 80px 32px 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 7999;
    box-shadow: -8px 0 40px rgba(0,0,0,.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    color: rgba(255,255,255,.85) !important;
    font-size: 1.05rem;
    padding: 12px 20px;
    width: 100%;
    border-radius: 12px;
  }
  .nav-links a:hover {
    background: rgba(46,196,182,.2);
    color: var(--primary) !important;
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-main-img { height: 340px; }
  .about-badge { bottom: -16px; right: 16px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pool */
  .pool-cards { grid-template-columns: repeat(2, 1fr); }

  /* Menu */
  .menu-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-slide { flex: 0 0 260px; height: 340px; }
}

/* ============================================================
   RESPONSIVE — 600px (1-col everything)
   ============================================================ */
@media (max-width: 600px) {
  .navbar { padding: 16px 20px; }
  .navbar.scrolled { padding: 10px 20px; }

  .hero-content { padding: 100px 20px 160px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .hero-info { flex-direction: column; gap: 12px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-item { padding: 20px 16px; gap: 12px; }
  .stat-num { font-size: 1.8rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-main-img { height: 260px; }
  .about-features { grid-template-columns: 1fr; }

  .pool-cards { grid-template-columns: 1fr; }

  .menu-tabs { gap: 8px; }
  .tab-btn { padding: 8px 16px; font-size: .8rem; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .menu-item { padding: 18px 14px; }

  .gallery-slider-wrap { padding: 0 44px; }
  .gallery-slide { flex: 0 0 220px; height: 300px; }
  .slider-arrow { width: 38px; height: 38px; font-size: .85rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }

  .footer-content { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-links { gap: 4px; }

  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }

  .wa-float { bottom: 20px; left: 16px; }
  .back-to-top { bottom: 88px; right: 16px; }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: .9rem; }
}

/* ============================================================
   RESPONSIVE — 400px (extra small)
   ============================================================ */
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
  .menu-grid  { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .loading-text { font-size: 2rem; }
}

/* ============================================================
   TOUCH DEVICES — disable custom cursor
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  button, a { cursor: pointer; }
}

/* ===== GALLERY SLIDE ENHANCED ===== */
.gallery-slide {
  position: relative;
}
.gallery-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,42,51,0.85) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius);
}
.gallery-slide:hover::before { opacity: 1; }

.slide-label {
  z-index: 2;
}

/* Slider sayaç */
.gallery-counter {
  text-align: center;
  margin-top: 16px;
  color: var(--text);
  font-size: 0.85rem;
  opacity: 0.6;
  letter-spacing: 2px;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,196,182,0.3), transparent);
  margin: 0;
}

/* ===== FEATURED FOOD STRIP ===== */
.food-strip {
  background: linear-gradient(135deg, #062a33, #0d4a56);
  padding: 60px 0;
  overflow: hidden;
}
.food-strip-track {
  display: flex;
  gap: 20px;
  animation: stripScroll 30s linear infinite;
  width: max-content;
}
.food-strip-track:hover { animation-play-state: paused; }
.food-strip-item {
  flex: 0 0 200px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.food-strip-item:hover { transform: scale(1.05) translateY(-4px); }
.food-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media print {
  .navbar, .loading-screen, .cursor-dot, .cursor-ring,
  .scroll-progress, .back-to-top, .wa-float,
  #particleCanvas { display: none !important; }
  body { color: #000; background: #fff; }
}

/* Hero içeriği her zaman görünür */
.hero .animate-fade-up {
  opacity: 0;
  animation: fadeUp .9s cubic-bezier(.25,.8,.25,1) forwards;
}
.hero .animate-fade-up.delay-1 { animation-delay: .15s; }
.hero .animate-fade-up.delay-2 { animation-delay: .3s; }
.hero .animate-fade-up.delay-3 { animation-delay: .45s; }
.hero .animate-fade-up.delay-4 { animation-delay: .6s; }
section[id] { scroll-margin-top: 80px; }

/* ============================================================
   SELECTION COLOR
   ============================================================ */
::selection {
  background: rgba(46,196,182,.3);
  color: var(--dark);
}
::-moz-selection {
  background: rgba(46,196,182,.3);
  color: var(--dark);
}

/* ============================================================
   SCROLLBAR (webkit)
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), #1aa89c);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================================================
   FOCUS VISIBLE (accessibility)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV CONTROLS (tema + dil butonları)
   ============================================================ */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-digital-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #ff9f1c, #ff6b35);
  color: white;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255,159,28,0.3);
}
.btn-digital-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,159,28,0.45);
}
.btn-digital-menu i { font-size: 0.8rem; }

.theme-toggle,
.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.theme-toggle { padding: 8px 12px; }
.theme-toggle i { font-size: 0.95rem; transition: transform 0.5s ease; }
.theme-toggle:hover i { transform: rotate(30deg) scale(1.2); }
.theme-toggle:hover,
.lang-toggle:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.navbar.scrolled .theme-toggle,
.navbar.scrolled .lang-toggle {
  border-color: rgba(46,196,182,0.3);
  background: rgba(46,196,182,0.08);
  color: var(--dark);
}
.navbar.scrolled .theme-toggle:hover,
.navbar.scrolled .lang-toggle:hover {
  background: rgba(46,196,182,0.18);
  border-color: var(--primary);
}
.lang-flag { font-size: 1rem; }
.lang-text { font-size: 0.78rem; letter-spacing: 0.5px; }

/* ============================================================
   DARK MODE — Tam Düzeltilmiş
   ============================================================ */

/* Renk değişkenleri */
[data-theme="dark"] {
  --dark:      #e2eff0;
  --text:      #9bbfc3;
  --light:     #0a1a22;
  --white:     #112230;
  --accent:    rgba(46,196,182,0.1);
  --shadow:    0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
}

[data-theme="dark"] body {
  background: #0a1a22;
  color: #9bbfc3;
}

/* Navbar */
[data-theme="dark"] .navbar.scrolled {
  background: rgba(10,26,34,0.96);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
[data-theme="dark"] .navbar.scrolled .logo-text { color: #e2eff0; }
[data-theme="dark"] .navbar.scrolled .nav-links a { color: #9bbfc3; }
[data-theme="dark"] .navbar.scrolled .nav-links a:hover { color: var(--primary); }
[data-theme="dark"] .navbar.scrolled .hamburger span { background: #e2eff0; }
[data-theme="dark"] .navbar.scrolled .theme-toggle,
[data-theme="dark"] .navbar.scrolled .lang-toggle {
  border-color: rgba(46,196,182,0.3);
  background: rgba(46,196,182,0.08);
  color: #e2eff0;
}

/* Stats */
[data-theme="dark"] .stats-bar {
  background: #112230;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.4);
}
[data-theme="dark"] .stat-item {
  background: #162d3d;
  border-color: rgba(46,196,182,0.15);
}
[data-theme="dark"] .stat-num { color: #e2eff0; }
[data-theme="dark"] .stat-plus { color: var(--secondary); }
[data-theme="dark"] .stat-info p { color: #9bbfc3; }

/* About */
[data-theme="dark"] .about {
  background: #112230;
}
[data-theme="dark"] .section-title { color: #e2eff0; }
[data-theme="dark"] .section-desc { color: #9bbfc3; }
[data-theme="dark"] .section-tag {
  background: rgba(46,196,182,0.1);
  color: var(--primary);
  border-color: rgba(46,196,182,0.25);
}
[data-theme="dark"] .about-text p { color: #9bbfc3; }
[data-theme="dark"] .owner-card {
  background: rgba(46,196,182,0.07);
  border-color: rgba(46,196,182,0.2);
}
[data-theme="dark"] .owner-name { color: #e2eff0; }
[data-theme="dark"] .owner-title { color: #9bbfc3; }
[data-theme="dark"] .feature {
  background: rgba(46,196,182,0.05);
  border-color: rgba(46,196,182,0.12);
  color: #9bbfc3;
}
[data-theme="dark"] .feature:hover { background: rgba(46,196,182,0.12); }

/* Menu */
[data-theme="dark"] .menu-section { background: #0a1a22; }
[data-theme="dark"] .tab-btn {
  background: #162d3d;
  border-color: rgba(46,196,182,0.2);
  color: #9bbfc3;
}
[data-theme="dark"] .tab-btn:hover { color: var(--primary); background: rgba(46,196,182,0.12); }
[data-theme="dark"] .tab-btn.active { background: linear-gradient(135deg, var(--primary), #1aa89c); color: #fff; }
[data-theme="dark"] .menu-item {
  background: #162d3d;
  border-color: rgba(46,196,182,0.1);
}
[data-theme="dark"] .menu-item-info h4 { color: #e2eff0; }
[data-theme="dark"] .menu-item-info p { color: #9bbfc3; }
[data-theme="dark"] .menu-item-img {
  background: rgba(46,196,182,0.1);
}

/* Gallery */
[data-theme="dark"] .gallery { background: #112230; }
[data-theme="dark"] .slider-arrow { background: #162d3d; color: #e2eff0; box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
[data-theme="dark"] .slider-dot { background: rgba(46,196,182,0.2); }
[data-theme="dark"] .slider-dot.active { background: var(--primary); }

/* Contact */
[data-theme="dark"] .contact { background: #0a1a22; }
[data-theme="dark"] .contact::before { background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary)); }
[data-theme="dark"] .contact-card {
  background: #162d3d;
  border-left-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
[data-theme="dark"] .contact-card h4 { color: #e2eff0; }
[data-theme="dark"] .contact-card p { color: #9bbfc3; }
[data-theme="dark"] .contact-icon {
  background: rgba(46,196,182,0.1);
  color: var(--primary);
}
[data-theme="dark"] .contact-form {
  background: #162d3d;
  border-color: rgba(46,196,182,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
[data-theme="dark"] .contact-form h3 { color: #e2eff0; }
[data-theme="dark"] .form-subtitle { color: #25d366; }
[data-theme="dark"] .form-group label { color: #e2eff0; }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
  background: #0a1a22;
  border-color: rgba(46,196,182,0.2);
  color: #e2eff0;
}
[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder { color: rgba(155,191,195,0.35); }
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
  background: #112230;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(46,196,182,0.1);
}
[data-theme="dark"] .whatsapp-direct {
  background: rgba(37,211,102,0.07);
  border-color: rgba(37,211,102,0.2);
}
[data-theme="dark"] .whatsapp-direct span { color: #e2eff0; }
[data-theme="dark"] .whatsapp-direct small { color: #9bbfc3; }
[data-theme="dark"] .whatsapp-direct:hover { background: rgba(37,211,102,0.15); }

/* Footer */
[data-theme="dark"] .footer {
  background: #060f14;
}
[data-theme="dark"] .footer-brand .logo-text { color: #e2eff0; }
[data-theme="dark"] .footer-brand p { color: rgba(155,191,195,0.5); }
[data-theme="dark"] .footer-links a { color: rgba(155,191,195,0.6); }
[data-theme="dark"] .footer-links a:hover { color: var(--primary); }
[data-theme="dark"] .social-btn {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(155,191,195,0.7);
}
[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .footer-bottom p { color: rgba(155,191,195,0.3); }

/* Food strip */
[data-theme="dark"] .food-strip { background: linear-gradient(135deg, #060f14, #0a1a22); }

/* Lightbox */
[data-theme="dark"] .lightbox-backdrop { background: rgba(4,12,18,0.95); }

/* Scrollbar */
[data-theme="dark"] ::-webkit-scrollbar-track { background: #0a1a22; }
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), #1aa89c); }

/* Back to top */
[data-theme="dark"] .back-to-top { box-shadow: 0 4px 20px rgba(0,0,0,0.6); }

/* Pool note */
[data-theme="dark"] .pool-note { background: rgba(255,255,255,0.05); }

/* Smooth transitions */
body, .stats-bar, .about, .menu-section, .gallery, .contact, .footer,
.stat-item, .menu-item, .contact-card, .contact-form, .tab-btn,
.feature, .owner-card, .slider-arrow, .form-group input,
.form-group textarea, .whatsapp-direct, .contact-icon, .menu-item-img {
  transition: background 0.35s ease, color 0.35s ease,
              border-color 0.35s ease, box-shadow 0.35s ease;
}

/* ============================================================
   TRANSLATIONS (data-lang attributes)
   ============================================================ */
[data-lang="en"] [data-tr],
[data-lang="tr"] [data-en] {
  display: none;
}

/* ============================================================
   POOL CARD ICON FIX — her temada görünür
   ============================================================ */
.pool-card-icon {
  background: linear-gradient(135deg, rgba(46,196,182,0.35), rgba(46,196,182,0.15)) !important;
  border: 1.5px solid rgba(46,196,182,0.5) !important;
  color: #cbf3f0 !important;
  box-shadow: 0 4px 20px rgba(46,196,182,0.25), inset 0 1px 0 rgba(255,255,255,0.15) !important;
}
.pool-card:hover .pool-card-icon {
  background: linear-gradient(135deg, rgba(46,196,182,0.55), rgba(46,196,182,0.3)) !important;
  box-shadow: 0 8px 32px rgba(46,196,182,0.45), inset 0 1px 0 rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
}
.pool-card-icon i {
  font-size: 1.7rem !important;
  filter: drop-shadow(0 2px 6px rgba(46,196,182,0.6));
}

/* ============================================================
   PREMIUM ENHANCEMENTS
   ============================================================ */

/* Hero — daha güçlü gradient orb'lar */
.hero::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,159,28,0.18) 0%, transparent 65%) !important;
  animation: orbFloat 9s ease-in-out infinite !important;
}
.hero::after {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,196,182,0.22) 0%, transparent 65%) !important;
  animation: orbFloat 12s ease-in-out infinite reverse !important;
}

/* Hero badge — daha parlak */
.hero-badge {
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(46,196,182,0.12)) !important;
  border-color: rgba(255,255,255,0.35) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.25) !important;
  letter-spacing: 1.5px;
}

/* Stats — gradient border */
.stat-item {
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 3px 3px 0 0;
}
.stat-item:hover::before { transform: scaleX(1); }

/* About image — daha güçlü glow */
.about-img-container {
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(46,196,182,0.1) !important;
}
.about-img-container:hover {
  box-shadow: 0 28px 80px rgba(0,0,0,0.28), 0 0 0 2px rgba(46,196,182,0.25) !important;
}

/* Pool section — daha derin gradient */
.pool {
  background: linear-gradient(160deg, #041e28 0%, #073040 35%, #0a4a5c 65%, #1a8a80 100%) !important;
}

/* Pool card — neon border on hover */
.pool-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(46,196,182,0.06)) !important;
  border: 1px solid rgba(46,196,182,0.2) !important;
}
.pool-card:hover {
  border-color: rgba(46,196,182,0.5) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(46,196,182,0.3), 0 0 30px rgba(46,196,182,0.1) !important;
}

/* Menu item — bottom glow line */
.menu-item::after {
  height: 2px !important;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary)) !important;
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite paused;
}
.menu-item:hover::after {
  animation-play-state: running !important;
}

/* Gallery slide — premium shadow */
.gallery-slide {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.04) !important;
}
.gallery-slide:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(46,196,182,0.2) !important;
}

/* Contact card — left border glow */
.contact-card {
  border-left: 3px solid var(--primary) !important;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1) !important;
}
.contact-card:hover {
  border-left-color: var(--secondary) !important;
  box-shadow: -4px 0 20px rgba(255,159,28,0.15), 0 8px 32px rgba(46,196,182,0.12) !important;
}

/* Form — focus glow */
.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(46,196,182,0.15), 0 4px 20px rgba(46,196,182,0.1) !important;
}

/* Footer — top shimmer line */
.footer::before {
  height: 2px !important;
  animation: shimmer 3s linear infinite !important;
}

/* Scroll progress — thicker + glow */
.scroll-progress {
  height: 3px !important;
  box-shadow: 0 0 12px rgba(46,196,182,0.7), 0 0 4px rgba(255,159,28,0.4) !important;
}

/* Back to top — pulse ring */
.back-to-top.visible {
  animation: backTopPulse 3s ease-in-out infinite;
}
@keyframes backTopPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(46,196,182,0.4); }
  50% { box-shadow: 0 4px 20px rgba(46,196,182,0.4), 0 0 0 8px rgba(46,196,182,0.08); }
}

/* Section headers — underline accent */
.section-header .section-title::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  margin: 12px auto 0;
  animation: dividerGlow 2.5s ease-in-out infinite;
}
@keyframes dividerGlow {
  0%,100% { box-shadow: 0 0 6px rgba(46,196,182,0.4); opacity: 0.8; }
  50% { box-shadow: 0 0 16px rgba(255,159,28,0.5); opacity: 1; width: 80px; }
}

/* Pool note — better styling */
.pool-note {
  background: linear-gradient(135deg, rgba(46,196,182,0.1), rgba(46,196,182,0.05)) !important;
  border: 1px solid rgba(46,196,182,0.25) !important;
  border-radius: 16px !important;
}
.pool-note i { color: var(--primary) !important; }

/* Tab btn — active glow */
.tab-btn.active {
  box-shadow: 0 6px 24px rgba(46,196,182,0.45), 0 0 0 1px rgba(46,196,182,0.3) !important;
}

/* Slider dots — bigger active */
.slider-dot.active {
  box-shadow: 0 0 8px rgba(46,196,182,0.6) !important;
}

/* WA float — bigger icon */
.wa-float i { font-size: 1.8rem; }

/* Dark mode pool card icon fix */
[data-theme="dark"] .pool-card-icon {
  background: linear-gradient(135deg, rgba(46,196,182,0.3), rgba(46,196,182,0.12)) !important;
  border-color: rgba(46,196,182,0.45) !important;
  color: #cbf3f0 !important;
  box-shadow: 0 4px 20px rgba(46,196,182,0.2), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}
[data-theme="dark"] .pool-card-icon i {
  filter: drop-shadow(0 0 8px rgba(46,196,182,0.8)) !important;
}

/* Dark mode stat icon */
[data-theme="dark"] .stat-icon {
  background: linear-gradient(135deg, rgba(46,196,182,0.2), rgba(46,196,182,0.08)) !important;
  box-shadow: 0 4px 16px rgba(46,196,182,0.15) !important;
}

/* Dark mode contact icon */
[data-theme="dark"] .contact-icon {
  background: linear-gradient(135deg, rgba(46,196,182,0.2), rgba(46,196,182,0.08)) !important;
  box-shadow: 0 4px 16px rgba(46,196,182,0.15) !important;
}

/* Dark mode menu item img */
[data-theme="dark"] .menu-item-img {
  background: linear-gradient(135deg, rgba(46,196,182,0.2), rgba(46,196,182,0.08)) !important;
  color: var(--primary) !important;
}

/* Dark mode section title underline */
[data-theme="dark"] .section-header .section-title::after {
  opacity: 0.7;
}
