/* ==========================================
   Designer: Yusuf - Otosmart Bilgi Teknolojileri A.Ş.
   Contact: info@otosmart.com.tr
   ========================================== */

/* ==========================================
   1. CSS VARIABLES
   ========================================== */
:root {
  --bg-main: #05070a;
  --bg-alt: #0b1118;
  --bg-hero: #020617;
  --card-bg: #101621;
  --card-soft: #121826;
  --accent: #8DD5F5;  /* Updated to match logo - light blue */
  --accent-soft: rgba(141, 213, 245, 0.16);  /* Updated rgba values */
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-soft: #1f2933;
}

/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 35%, #05070a 70%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ==========================================
   3. LAYOUT & CONTAINERS
   ========================================== */
.container { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; background: transparent; }
.section-alt { padding: 5rem 0; background: var(--bg-alt); }
.section h2 { font-size: 2.1rem; margin: 0 0 1rem; }
.section-intro { max-width: 560px; color: var(--text-muted); margin-bottom: 2rem; }
.section-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr); gap: 3.5rem; align-items: flex-start; }
.section-layout-reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

/* ==========================================
   4. HEADER & NAVIGATION
   ========================================== */
.site-header { position: sticky; top: 0; z-index: 40; background: linear-gradient(to bottom, rgba(50, 50, 50, 0.96), rgba(42, 42, 42, 0.92)); border-bottom: 1px solid rgba(58, 58, 58, 0.5); backdrop-filter: blur(12px); }
.site-header.scrolled { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.5rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-mark { display: block; height: 42px; width: auto; background: transparent; }
.logo-text { display: flex; align-items: baseline; font-family: "Russo One", system-ui; text-transform: uppercase; font-style: italic; font-weight: 700; letter-spacing: 0.09em; font-size: 1.3rem; }
.logo-text-main { color: #f9fafb; }
.logo-text-accent { color: var(--accent); margin-left: 0.18rem; }
.nav { display: flex; align-items: center; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; margin: 0; padding: 0; align-items: center; }
.nav-links a { font-size: 0.85rem; text-decoration: none; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--accent); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 4px 0; background: var(--text-main); transition: transform 0.2s, opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.skip-link { position: absolute; left: -9999px; top: 0; padding: 0.75rem 1rem; background: var(--accent); color: #02111f; font-weight: 600; border-radius: 999px; z-index: 1000; text-decoration: none; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* Mobile Nav Item (Hidden on Desktop) */
.mobile-nav-item { display: none; }

/* ==========================================
   5. HERO SECTION
   ========================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-video-mobile { display: none; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.55)); z-index: -1; }
.hero-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1200px; margin: 0 auto; padding: 4.5rem 1.5rem; }
.hero-content { max-width: 700px; } 

/* Typography */
.hero-seo-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin: 0 0 0.5rem 0; font-weight: 600; line-height: 1.4; opacity: 0.9; display: block; }
.hero-visual-slogan { margin: 0 0 1rem; font-size: clamp(2.15rem, 3.4vw, 3.25rem); letter-spacing: 0.12em; line-height: 1.1; font-weight: 700; color: #fff; }
.hero-title-main { display: inline-block; white-space: nowrap; }

/* Dynamic Title Animation */
.hero-title-dynamic {
  display: inline-block;
  color: #8DD5F5 !important;
  white-space: nowrap !important;
  transition: opacity 0.9s ease !important;
}
.hero-title-dynamic.hidden { opacity: 0 !important; }

.hero-subtitle { display: none; margin: 0 0 2rem; font-size: 0.98rem; color: var(--text-muted); }
.hero-subtitle-secondary { display: none; margin-top: 0.75rem; font-size: 1.1rem; max-width: 32rem; color: var(--text-muted); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; /* Reduced bottom margin to fit mini links */ }

/* Hero Mini Links (Discreet) */
.hero-mini-links {
  margin-top: 0.8rem;
  margin-bottom: 1.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-mini-links a {
  text-decoration: none;
  border-bottom: 1px dotted rgba(141, 213, 245, 0.4);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
}
.hero-mini-links a:hover {
  color: var(--accent);
  border-bottom-style: solid;
  border-bottom-color: var(--accent);
}

.hero-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.4rem; font-size: 0.85rem; color: var(--text-muted); }
.meta-label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; color: var(--accent); display: block; margin-bottom: 0.35rem; }
.hero-meta a { color: var(--accent); }
.hero-side { display: flex; justify-content: flex-end; }

/* Hero Card */
.hero-card { background: rgba(16, 20, 28, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 4px solid var(--accent); padding: 2.5rem; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); transition: transform 0.3s ease; max-width: 320px; }
.hero-card:hover { transform: translateY(-5px); border-color: rgba(141, 213, 245, 0.3); }
.hero-card h2 { margin: 0 0 1.5rem; font-size: 1.8rem; color: #fff; font-family: 'Russo One', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.hero-features-list { list-style: none; padding: 0; margin: 0 0 2rem 0; }
.hero-features-list li { display: flex; align-items: center; color: #cbd5e1; margin-bottom: 1rem; font-size: 1rem; line-height: 1.4; font-weight: 500; }
.check-icon { width: 18px; height: 18px; color: var(--accent); margin-right: 12px; flex-shrink: 0; }
.hero-card-link { display: inline-flex; align-items: center; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; transition: color 0.3s ease; text-decoration: none; }
.hero-card-link .arrow { margin-left: 8px; transition: transform 0.3s ease; font-size: 1.2rem; }
.hero-card-link:hover { color: #fff; }
.hero-card-link:hover .arrow { transform: translateX(5px); }

/* ==========================================
   6. BUTTONS
   ========================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.78rem 1.5rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: 0.14em; border: 1px solid transparent; cursor: pointer; transition: all 0.2s ease; }
.btn.primary { background: var(--accent); color: #020617; }
.btn.primary:hover { filter: brightness(1.06); }
.btn.ghost { background: rgba(15, 23, 42, 0.7); border-color: var(--accent-soft); color: var(--text-main); }
.btn.ghost:hover { border-color: var(--accent); }
.btn-full { width: 100%; }

/* ==========================================
   7. CONTENT
   ========================================== */
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; }
.highlight-item { background: var(--card-bg); border-radius: 1rem; padding: 1.1rem 1.2rem; border: 1px solid var(--border-soft); }
.highlight-title { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.4rem; }
.highlight-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; width: 100%; margin-top: 2rem; justify-content: center; }

.card { background: radial-gradient(circle at top, rgba(53, 240, 232, 0.08), transparent 60%), var(--card-bg); border-radius: 1.2rem; border: 1px solid var(--border-soft); overflow: hidden; min-height: 100%; display: flex; flex-direction: column; transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s; }
.card img { width: 100%; height: 260px; object-fit: cover; }
.card-content { padding: 1.2rem 1.4rem 1.4rem; }
.card-content h3 { margin: 0 0 0.6rem; font-size: 1.1rem; }
.card-content p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6); }

.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin: 1.5rem 0 0.9rem; }
.hours-card { background: var(--card-bg); border-radius: 0.9rem; padding: 1rem 1.1rem; border: 1px solid var(--border-soft); }
.hours-card.closed { border-style: dashed; border-color: rgba(248, 113, 113, 0.7); }
.hours-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); display: block; margin-bottom: 0.35rem; }
.hours-time { font-size: 0.98rem; }
.hours-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }

#hours .section-layout-reverse > div { align-self: start; }
#hours h2 { margin-top: 0; margin-bottom: 1rem; }
#hours .section-intro { margin-bottom: 1rem; margin-top: 0; }
.benefits-list { list-style: none; padding: 0; margin: 1.5rem 0 0; font-size: 0.92rem; }
.benefits-list li { margin-bottom: 0.7rem; }

.video-tagline { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; color: var(--accent); margin: 0 0 0.75rem; text-align: center; }
.video-wrapper { max-width: 420px; margin: 1.5rem auto 0; border-radius: 1.3rem; overflow: hidden; border: 1px solid var(--border-soft); box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7); background: #020617; }
.gallery-video { display: block; width: 100%; height: auto; }

/* ==========================================
   8. FACILITIES CAROUSEL
   ========================================== */
.facilities-slider { position: relative; margin-top: 2rem; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.4s ease-out; }
.facility-slide { flex: 0 0 100%; display: flex; justify-content: center; padding: 0 0.5rem; box-sizing: border-box; }
.facility-slide .card { width: 100%; max-width: 840px; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(148, 163, 184, 0.7); background: rgba(15, 23, 42, 0.9); color: #e5e7eb; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.3rem; z-index: 2; transition: all 0.2s ease; }
.slider-btn.prev { left: 0.5rem; }
.slider-btn.next { right: 0.5rem; }
.slider-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================
   9. REVIEWS SECTION
   ========================================== */
.google-badge { display: flex; justify-content: flex-start; padding: 0; }
.google-review-link { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1.2rem 1.5rem; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-soft); border-radius: 1rem; text-decoration: none; transition: all 0.3s ease; color: var(--text-main); }
.google-review-link:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4); }
.google-badge-inner { display: flex; align-items: center; gap: 0.75rem; }
.rating-info { text-align: left; }
.stars { color: #FDB241; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.25rem; }
.rating-number { font-size: 0.875rem; color: var(--text-muted); }
.review-count { text-align: left; padding-left: 0.75rem; border-left: 1px solid var(--border-soft); text-align: center; }
.count-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.count-number { font-size: 0.85rem; color: var(--text-muted); }
.reviews-cta { text-align: left; margin-top: 0; }

/* ==========================================
   10. PRICING SECTION
   ========================================== */
#pricing .pricing-header { max-width: 780px; margin: 0 auto 3rem; text-align: center; }
#pricing .pricing-header h2 { margin-bottom: 1rem; }
#pricing .section-intro { max-width: 100%; line-height: 1.7; color: var(--text-muted); }
#pricing .pricing-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.4rem; margin-bottom: 3rem; }
#pricing .pricing-card { background: rgba(15, 23, 42, 0.96); border-radius: 1.6rem; padding: 2.2rem 2.4rem; box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45); border: 1px solid rgba(148, 163, 184, 0.18); }
#pricing .pricing-card h3 { font-size: 1.15rem; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 0.5rem; }
#pricing .pricing-tagline { margin: 0 0 1.4rem; font-weight: 500; color: var(--accent); }
#pricing .pricing-features { list-style: disc; padding-left: 1.1rem; margin: 0 0 1.6rem; line-height: 1.6; color: var(--text-muted); }
#pricing .pricing-features li + li { margin-top: 0.4rem; }
#pricing .pricing-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; text-decoration: none; color: var(--accent); }
#pricing .pricing-link::after { content: "→"; font-size: 0.9rem; }
#pricing .pricing-cta { text-align: center; max-width: 720px; margin: 0 auto; }
#pricing .pricing-cta p { margin-bottom: 1rem; line-height: 1.6; }
#pricing .pricing-cta .btn { padding-inline: 2.6rem; margin-bottom: 0.6rem; }
#pricing .pricing-cta-note { font-size: 0.9rem; color: var(--text-muted); }
#pricing .pricing-cta-note a { color: var(--accent); text-decoration: none; }

/* ==========================================
   11. CONTACT & FOOTER
   ========================================== */
.contact-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.5rem; margin-top: 1.3rem; }
.contact-list h3 { margin-top: 0; }
.contact-panel { background: var(--card-bg); border-radius: 1.1rem; border: 1px solid var(--border-soft); padding: 1.6rem 1.5rem; }
.contact-small { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.8rem; }
.contact-small a { color: var(--accent); }
.site-footer { border-top: 1px solid var(--border-soft); background: #020617; padding: 1rem 0; font-size: 0.8rem; }
.footer-content { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-links a { text-decoration: none; color: var(--text-muted); margin-left: 1rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }

/* ==========================================
   12. UI COMPONENTS
   ========================================== */
.lightbox { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.9); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s ease-out; z-index: 60; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-content { position: relative; max-width: min(1000px, 90vw); max-height: 85vh; margin: 0 1rem; }
.lightbox-content img { width: 100%; max-height: 85vh; object-fit: contain; border-radius: 1rem; border: 1px solid rgba(148, 163, 184, 0.6); }
.lightbox-caption { margin-top: 0.75rem; font-size: 0.9rem; color: #e5e7eb; text-align: center; }
.lightbox-close { position: absolute; top: -2.2rem; right: 0; border: none; background: transparent; color: #e5e7eb; font-size: 1.9rem; cursor: pointer; }

.whatsapp-floating { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 50; display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.55rem 0.95rem; border-radius: 999px; background: linear-gradient(135deg, #22c55e, #16a34a); color: #f9fafb; text-decoration: none; font-size: 0.8rem; box-shadow: 0 18px 50px rgba(22, 163, 74, 0.7); transition: transform 0.2s ease; }
.whatsapp-floating:hover { transform: translateY(-2px); }
.wa-icon { display: flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem; border-radius: 999px; background: rgba(0, 0, 0, 0.15); margin-right: 0.7rem; }
.wa-icon img { display: block; width: 1.5rem; height: 1.5rem; }
.wa-text { font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.wa-number { opacity: 0.9; }

/* UPDATED: Chronometer Floating Icon Button (No Text) */
.chrono-floating { 
  position: fixed; 
  left: 1.4rem; 
  bottom: 1.4rem; 
  z-index: 50; 
  display: flex; /* Centering content */
  align-items: center; 
  justify-content: center;
  width: 56px; /* Fixed square/circle size */
  height: 56px;
  border-radius: 50%; /* Circle */
  background: linear-gradient(135deg, #0ea5e9, #8DD5F5); 
  color: #020617; 
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4); 
  transition: transform 0.2s ease, box-shadow 0.2s ease; 
  border: 1px solid rgba(255,255,255,0.2);
}
.chrono-floating:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(14, 165, 233, 0.6); }
.chrono-icon { width: 24px; height: 24px; display: block; }
.chrono-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 2.2; }
.chrono-text { display: none; } /* Hide text just in case */

/* ==========================================
   13. ANIMATIONS
   ========================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================
   14. RESPONSIVE DESIGN
   ========================================== */
@media (min-width: 1200px) { .logo-mark { height: 52px; } .logo-text { font-size: 1.55rem; } }
@media (min-width: 900px) { #pricing .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 960px) {
  .section-layout, .section-layout-reverse { grid-template-columns: 1fr; }
  .hero-inner { padding: 5rem 1.5rem 3rem; }
  .hero-side { justify-content: flex-start; }
  .hero-card { margin-top: 1.5rem; padding: 1.5rem !important; }
  .google-badge { justify-content: center; }
  .reviews-cta { text-align: left; }
}

/* ==========================================
   MOBILE FIXES - NAVIGATION & LAYOUT
   ========================================== */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  
  .nav { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: #020617; 
    border-bottom: 1px solid var(--border-soft); 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease-out; 
    padding: 0 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  
  .nav.open { 
    max-height: 400px; 
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .nav-links { 
    flex-direction: column; 
    gap: 0.5rem; 
    padding: 0;
  }

  .nav-links li { 
    width: 100%;
    text-align: left;
  }
  
  .mobile-nav-item { display: block; } 

  .hero { min-height: 100vh; }
  .hero-inner { flex-direction: column; align-items: flex-start; justify-content: space-between; padding-top: 25vh; padding-bottom: 2rem; min-height: 100vh; }
  .hero-title { font-size: 2.2rem; line-height: 1.1; margin-top: 0; }
  .hero-content { flex: 0 0 auto; }
  .hero-actions { margin-top: auto; width: 100%; display: flex; flex-direction: column; gap: 0.75rem; }
  
  .hero-subtitle-secondary {
    display: block;
    font-size: 0.8rem; /* Adjusted for mobile 2-line */
    line-height: 1.4;
    max-width: 32rem;
    margin-bottom: 1.6rem;
  }
  
  .hero-actions .btn { width: 100%; margin-bottom: 0; }
  .hero-meta { display: none; }
  .hero-side { display: none; }
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
  .google-review-link { flex-direction: column; padding: 1rem; text-align: center; }
  .review-count { padding-left: 0; padding-top: 0.75rem; border-left: none; border-top: 1px solid var(--border-soft); text-align: center; }
  .google-badge-inner { flex-direction: column; text-align: center; }
  .rating-info { text-align: center; }
  .whatsapp-floating { right: 1rem; bottom: 1rem; }
  .chrono-floating { left: 1rem; bottom: 1rem; }
  .contact-list { grid-template-columns: 1fr; gap: 1rem; }
  .contact-list > div { background: var(--card-bg); border-radius: 1.1rem; border: 1px solid var(--border-soft); padding: 1.5rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); }
  .contact-list h3 { color: var(--accent); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
  .contact-list p { margin: 0.5rem 0; line-height: 1.6; }
  .footer-content { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: 0.1em; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-meta { grid-template-columns: 1fr; }
  .whatsapp-floating .wa-number { display: none; }
}

/* ==========================================
   15. ACCESSIBILITY
   ========================================== */
a:focus-visible, button:focus-visible, .btn:focus-visible, .slider-btn:focus-visible, .whatsapp-floating:focus-visible, .chrono-floating:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 768px) {
  .hero-subtitle-secondary { margin-bottom: 4rem; }
}

/* ==========================================
   17. BOOKING PAGE STYLES (RESTORED)
   ========================================== */
.booking-section { min-height: auto; display: block; padding: 6rem 1.5rem 4rem; background: radial-gradient(circle at center, #1a2230 0%, #05070a 100%); }
.booking-wrapper { display: flex; flex-direction: row; gap: 2rem; width: 100%; max-width: 1100px; margin: 0 auto; align-items: stretch; }
.booking-container { flex: 1; background: #101621; padding: 2.5rem; border-radius: 1.5rem; border: 1px solid var(--border-soft); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7); }
.map-container { flex: 1; border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--border-soft); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7); background: #101621; position: relative; min-height: 400px; }
.map-frame { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; display: block; }
.booking-header { text-align: center; margin-bottom: 2rem; }
.booking-header h1 { font-family: 'Russo One', sans-serif; font-size: 1.8rem; color: #fff; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.booking-header p { color: var(--text-muted); font-size: 0.95rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; margin-bottom: 0.5rem; color: var(--accent); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.form-input { width: 100%; padding: 0 1rem; height: 3.5rem; line-height: 3.5rem; background: #05070a; border: 1px solid var(--border-soft); border-radius: 0.75rem; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 1rem; transition: all 0.2s ease; box-sizing: border-box; display: block; }
.form-input::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-input::placeholder { color: #4b5563; line-height: normal; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-row .form-group { margin-bottom: 0; }
.phone-wrap { display: flex; gap: 0.6rem; align-items: center; }
.phone-prefix { display: inline-flex; align-items: center; justify-content: center; padding: 0 0.9rem; border-radius: 0.75rem; border: 1px solid var(--border-soft); background: #05070a; color: #e5e7eb; font-weight: 600; height: 3.5rem; }
.phone-wrap .form-input { flex: 1; }
.submit-btn { width: 100%; padding: 1.2rem; margin-top: 1rem; background: linear-gradient(135deg, var(--accent), #38bdf8); color: #020617; border: none; border-radius: 999px; font-family: 'Russo One', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(141, 213, 245, 0.3); }
.disclaimer { margin-top: 1.5rem; font-size: 0.8rem; color: #64748b; text-align: center; line-height: 1.5; }
.form-error { margin-top: 0.75rem; color: #fecaca; background: rgba(255, 0, 0, 0.08); border: 1px solid rgba(255, 0, 0, 0.18); padding: 0.75rem 1rem; border-radius: 12px; display: none; font-size: 0.9rem; }
.seo-content { margin: 40vh auto 0; max-width: 900px; padding: 2rem; background: rgba(255,255,255,0.02); border-radius: 1rem; border: 1px solid var(--border-soft); text-align: center; }
.seo-block { max-width: 900px; margin: 4rem auto 0; padding: 2.5rem; background: rgba(255,255,255,0.02); border-radius: 1rem; border: 1px solid var(--border-soft); text-align: left; }
.seo-block h2, .seo-content h2 { color: var(--accent); margin-bottom: 1rem; font-size: 1.5rem; }
.seo-block p, .seo-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.seo-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: start; }
.seo-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.75rem; }
.seo-list li { background: rgba(255,255,255,0.02); border: 1px solid var(--border-soft); border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.95rem; }
.faq-block { text-align: left; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-soft); }
.faq-block details { background: rgba(0,0,0,0.2); border: 1px solid var(--border-soft); padding: 1rem; margin-bottom: 0.5rem; border-radius: 0.5rem; }
.faq-block summary { cursor: pointer; font-weight: 600; color: #fff; }
.faq-block p { margin: 0.5rem 0 0; font-size: 0.95rem; }
.success-box { background: rgba(34, 197, 94, 0.10); border: 1px solid rgba(34, 197, 94, 0.30); padding: 1.5rem; border-radius: 1rem; margin-bottom: 1.5rem; text-align: center; }
.success-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.success-title { color: #22c55e; margin: 0 0 0.5rem; font-size: 1.3rem; }
.success-text { color: var(--text-muted); margin: 0; font-size: 0.95rem; }
.consent { display:flex; gap:.6rem; align-items:flex-start; color:#cbd5e1; font-size:.95rem; cursor:pointer; }
.consent input { margin-top:.2rem; cursor:pointer; }
@media (max-width: 900px) { .booking-section { padding: 1rem 1rem 3rem; } .booking-wrapper { flex-direction: column; gap: 1.5rem; } .map-container { height: 350px; min-height: 350px; order: 2; } .booking-container { padding: 1.5rem; order: 1; } .form-row { grid-template-columns: 1fr; } input[type="date"].form-input { -webkit-appearance: none; appearance: none; text-align: left; min-height: 3.5rem; } .seo-grid { grid-template-columns: 1fr; } .seo-block { padding: 2rem; } }

/* ==========================================
   18. BLOG PAGE (CORE)
   ========================================== */
.btn.btn-sm{ padding: 0.5rem 1rem; font-size: 0.82rem; }
.blog-header{ padding: 6.5rem 0 3.75rem; background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(5, 7, 10, 0.98)), url("img/hero-gym.jpg") no-repeat center center / cover; text-align: center; }
.blog-meta{ font-size: 0.9rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 1rem; display: inline-block; }
.blog-title{ font-family: "Russo One", sans-serif; font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.15; margin: 0 0 1rem; color: #fff; }
.blog-lede{ color: var(--text-muted); max-width: 720px; margin: 0.25rem auto 0; line-height: 1.75; }
.blog-meta-row{ margin-top: 1.25rem; display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; font-size: 0.9rem; color: var(--text-muted); }
.blog-meta-chip{ display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0.9rem; border-radius: 999px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-soft); }
.blog-meta-chip strong{ color: #fff; font-weight: 800; }
.blog-container{ max-width: 900px; margin: 0 auto; padding: 2.25rem 1.5rem 5rem; }
.toc-box{ background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-soft); border-radius: 1rem; padding: 1.6rem 1.6rem; margin-bottom: 2.25rem; }
.toc-title{ font-weight: 800; color: #fff; margin-bottom: 0.9rem; display: block; font-size: 1.05rem; }
.toc-list{ list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.toc-list a{ display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--accent); padding: 0.65rem 0.85rem; border-radius: 0.8rem; border: 1px solid rgba(255,255,255,0.04); background: rgba(255,255,255,0.01); transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease; }
.toc-list a::after{ content: "→"; opacity: 0.8; }
.toc-list a:hover{ transform: translateY(-1px); border-color: var(--accent); background: rgba(255,255,255,0.03); color: #fff; }
.blog-content{ color: #cbd5e1; font-size: 1.05rem; line-height: 1.85; }
.blog-content p{ margin: 0 0 1.35rem; }
.blog-content ul, .blog-content ol{ margin: 0 0 1.35rem; padding-left: 1.35rem; }
.blog-content li{ margin-bottom: 0.5rem; }
.blog-content strong{ color: #fff; }
.blog-content h2{ color: #fff; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.75rem; margin: 2.5rem 0 0.9rem; border-left: 4px solid var(--accent); padding-left: 1rem; }
.blog-content h3{ color: #e2e8f0; font-size: 1.35rem; margin: 1.7rem 0 0.65rem; }
.highlight-box{ background: linear-gradient(135deg, rgba(141, 213, 245, 0.10), rgba(141, 213, 245, 0.02)); border-left: 4px solid var(--accent); padding: 1.25rem 1.25rem; margin: 1.75rem 0; border-radius: 0 1rem 1rem 0; color: #e5e7eb; }
.cta-banner{ background: var(--card-bg); border: 1px solid var(--border-soft); padding: 2.6rem 2rem; text-align: center; border-radius: 1.5rem; margin-top: 3rem; }
.cta-banner h3{ font-family: "Russo One", sans-serif; font-size: 1.8rem; color: #fff; margin: 0 0 0.9rem; }
.cta-banner p{ color: var(--text-muted); margin: 0 0 1.6rem; line-height: 1.75; }
.blog-faq{ max-width: 900px; margin: 3.25rem auto 0; padding: 0 1.5rem; }
.blog-faq h2{ color: #fff; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.7rem; margin: 0 0 1rem; border-left: 4px solid var(--accent); padding-left: 1rem; }
.blog-faq details{ background: rgba(255,255,255,0.02); border: 1px solid var(--border-soft); border-radius: 1rem; padding: 1rem 1.1rem; margin: 0.75rem 0; }
.blog-faq summary{ cursor: pointer; font-weight: 800; color: #fff; list-style: none; }
.blog-faq summary::-webkit-details-marker{ display: none; }
.blog-faq summary::after{ content: "＋"; float: right; color: var(--accent); font-weight: 900; }
.blog-faq details[open] summary::after{ content: "－"; }
.blog-faq p{ margin: 0.75rem 0 0; color: var(--text-muted); line-height: 1.7; }
.blog-related{ max-width: 900px; margin: 3.25rem auto 0; padding: 0 1.5rem; }
.blog-related h2{ color: #fff; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.7rem; margin: 0 0 1rem; border-left: 4px solid var(--accent); padding-left: 1rem; }
.blog-related ul{ list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.blog-related a{ display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.1rem; border-radius: 1rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border-soft); color: #e5e7eb; transition: transform 0.2s ease, border-color 0.2s ease; }
.blog-related a:hover{ transform: translateY(-2px); border-color: var(--accent); }
.blog-related a span{ color: var(--accent); font-weight: 900; }
.blog-author-box{ max-width: 900px; margin: 2.5rem auto 0; padding: 1.35rem 1.5rem; border-radius: 1.2rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border-soft); color: var(--text-muted); }
.blog-author-box strong{ color: #fff; }

@media (max-width: 768px){
  .blog-header{ padding: 5.75rem 0 3.25rem; }
  .blog-container{ padding-top: 1.75rem; }
  .toc-list a{ padding: 0.65rem 0.75rem; }
}

.blog-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 2.6rem; align-items: start; }
.blog-article { max-width: 760px; }
@media (max-width: 960px){
  .blog-layout{ grid-template-columns: 1fr; }
  .toc-box{ position: relative; top: auto; }
}

.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ==========================================
   LANGUAGE UTILITIES & NEW ADDITIONS
   ========================================== */
html[lang="en"] .tr-only { display: none !important; }
html[lang="tr"] .en-only { display: none !important; }

.lang-switch-btn, .lang-switch-link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-soft);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.lang-switch-btn:hover, .lang-switch-link:hover {
  background: var(--accent);
  color: #020617;
  border-color: var(--accent);
}
@media (max-width: 768px) {
    .lang-switch-btn, .lang-switch-link { margin: 0 auto 1rem; }
}

@media (scripting: none) {
  .reveal { opacity: 1; transform: translateY(0); }
}

/* Hero Typography Updates */
.hero-title-dynamic {
  display: inline-block;
  color: #8DD5F5 !important;
  white-space: nowrap !important;
  transition: opacity 0.9s ease !important;
}
.hero-title-dynamic.hidden { opacity: 0 !important; }

.hero-seo-title {
  font-size: 0.95rem; 
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent); 
  margin: 0 0 0.8rem 0;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0.9;
  display: block;
}

.hero-visual-slogan {
  margin: 0 0 1rem; 
  font-size: clamp(2.15rem, 3.4vw, 3.25rem);
  letter-spacing: 0.12em; 
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-top: 2rem;
  justify-content: center;
}

/* ==========================================
   VIDEO PLAY BUTTON FALLBACK
   ========================================== */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  padding: 0;
  opacity: 1;
}

.video-play-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn:focus {
  outline: 2px solid #8DD5F5;
  outline-offset: 2px;
}

.video-play-btn svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
