/* ═══════════════════════════════════════════════════════════════════════════
   ULTIMATE GARAGE TURKEY - Premium Design System v2.0
   Modern • Animated • Luxurious • Mobile-First
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS Variables & Design Tokens
   ───────────────────────────────────────────────────────────────────────────── */
:root {
  /* Colors - Luxury Dark Theme */
  --color-bg-primary: #030508;
  --color-bg-secondary: #0a0d12;
  --color-bg-tertiary: #111419;
  
  /* Glass & Surfaces */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  
  /* Accent Colors */
  --accent-primary: #3b82f6;
  --accent-secondary: #8b5cf6;
  --accent-tertiary: #06b6d4;
  --accent-gold: #f59e0b;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  --gradient-glow: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(139, 92, 246, 0.4) 100%);
  
  /* Text Colors */
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(59, 130, 246, 0.3);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font-sans);
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container */
  --container-max: 1400px;
  --container-padding: 24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(59, 130, 246, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(139, 92, 246, 0.12), transparent),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(6, 182, 212, 0.1), transparent);
  pointer-events: none;
  z-index: -1;
}

::selection {
  background: rgba(59, 130, 246, 0.3);
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe,
video {
  max-width: 100%;
}

table {
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Container & Layout
   ───────────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--hero { padding: 0; }

/* Accessibility - Screen Reader Only */
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px 16px;
  background: var(--accent-primary);
  color: white;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Typography
   ───────────────────────────────────────────────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
}

.kicker::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.title-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.title-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.title-sm {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.text-md {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

.btn svg {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 80px rgba(59, 130, 246, 0.5);
}

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

.btn--secondary:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
}

.btn--outline:hover {
  background: var(--accent-primary);
  color: white;
}

.btn--large {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn--block { width: 100%; }

/* ─────────────────────────────────────────────────────────────────────────────
   Glass Cards
   ───────────────────────────────────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Header & Navigation
   ───────────────────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-base);
  margin: 0;
  padding: 0;
}

.header__top {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--space-sm) 0;
}

.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.header__contact {
  display: flex;
  gap: var(--space-xl);
}

.header__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
}

.header__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
}

.header__social {
  display: flex;
  gap: var(--space-md);
}

.header__social a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.header__social a:hover { color: var(--accent-primary); }

/* Header Right Section */
.header__right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid var(--glass-border);
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-switcher__btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.lang-switcher__btn.is-active {
  background: var(--accent-primary);
  color: white;
}

.lang-switcher__flag {
  font-size: 14px;
  line-height: 1;
}

.lang-switcher__code {
  font-family: var(--font-base);
  letter-spacing: 0.03em;
}

/* Mobile Language Switcher */
.mobile-nav__lang {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--glass-border);
}

.lang-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-primary);
}

.lang-btn.is-active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: white;
}

/* Mobile Compact Language Switcher (in header) */
.mobile-lang-compact {
  display: none;
  gap: 2px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid var(--glass-border);
  order: 3;
}

.mobile-lang-btn {
  padding: 6px 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.mobile-lang-btn.is-active {
  background: var(--accent-primary);
  color: white;
}

@media (max-width: 1024px) {
  .mobile-lang-compact {
    display: flex;
  }
}

.header__main {
  background: rgba(10, 13, 18, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
}

.header.is-scrolled .header__main {
  background: rgba(3, 5, 8, 0.95);
  box-shadow: var(--shadow-lg);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
  position: relative;
}

.logo__image {
  width: 56px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
  /* Şık Glass/Parlama Efekti - PNG sınırları içinde */
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

/* Glass shine overlay - PNG şekline uyar */
.logo__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.08) 25%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 2;
}

.logo:hover .logo__image {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.4)) 
          drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
}

/* Logo wrapper için glass shine animasyonu */
.logo::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
  mix-blend-mode: soft-light;
  animation: logoGlassShine 4s ease-in-out infinite;
}

@keyframes logoGlassShine {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 0.7; transform: scale(1); }
}

.logo__text {
  display: flex;
  flex-direction: column;
  position: relative;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: filter var(--transition-base);
}

.logo:hover .logo__name {
  filter: brightness(1.15);
}

.logo__tagline {
  font-size: 0.7rem;
  color: var(--accent-tertiary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--text-primary);
  background: var(--glass-bg);
}

.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Desktop/Mobile button visibility */
.header__btn-desktop { display: inline-flex; }
.header__btn-mobile { display: none; }

/* Mobile Menu Toggle - Desktop'ta gizli */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(3, 5, 8, 0.99) 0%, rgba(10, 13, 18, 0.99) 100%);
  backdrop-filter: blur(20px);
  z-index: 9999;
  padding: 0;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.is-open { display: flex; }

/* Mobile Nav Header */
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-lg);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.3);
}

.mobile-nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-nav__logo-img {
  width: 48px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.5));
  animation: logoPulse 3s ease-in-out infinite;
}

.mobile-nav__logo span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-nav__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-nav__close:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

/* Mobile Nav Links */
.mobile-nav__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  gap: var(--space-xs);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 1.1rem;
  font-weight: 600;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.mobile-nav__link svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link.is-active {
  background: var(--glass-bg);
  color: var(--text-primary);
}

.mobile-nav__link:hover svg,
.mobile-nav__link.is-active svg {
  color: var(--accent-primary);
}

.mobile-nav__link.is-active {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Mobile Nav CTA */
.mobile-nav__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
}

.btn--whatsapp {
  background: #25D366;
  color: white;
}

.btn--whatsapp:hover {
  background: #20bd5a;
}

/* Mobile Nav Footer */
.mobile-nav__footer {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.mobile-nav__footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Hero Slider - Sade ve Yumuşak
   ───────────────────────────────────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide__video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 5, 8, 0.85) 0%, rgba(3, 5, 8, 0.4) 50%, rgba(3, 5, 8, 0.7) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
}

.hero-slide__inner {
  max-width: 700px;
}

.hero-slide__text {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.hero-slide.is-active .hero-slide__text {
  opacity: 1;
}

.hero-slide__title { 
  margin-bottom: var(--space-lg);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero-slide__desc {
  max-width: 550px;
  margin-bottom: var(--space-2xl);
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-slide__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Slider Navigation */
.hero-slider__nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-slider__dots {
  display: flex;
  gap: 12px;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-slider__dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-slider__dot.is-active {
  width: 32px;
  border-radius: 5px;
  background: var(--accent-primary);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 10;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Phone Mockup - Hero Video Showcase
   ───────────────────────────────────────────────────────────────────────────── */

@keyframes phoneEntrance {
  0% {
    opacity: 0;
    transform: translateY(-45%) translateX(80px) scale(0.85) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1) rotate(0deg);
  }
}

/* Floating particles */

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 1; }
  50% { transform: translateY(-30px) scale(1.3); opacity: 0.7; }
  80% { opacity: 0.3; }
}

/* Outer glow - premium ambient */

@keyframes glowPulse {
  0% { opacity: 0.4; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1.08); }
}

/* Orbiting ring */

@keyframes ringOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Phone frame */

/* Side buttons */

/* Notch */

/* Screen */

/* Play button */

/* Screen glare */

/* Bottom label */

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

/* ─────────────────────────────────────────────────────────────────────────────
   Before/After Comparison - PPF Reveal Effect
   ───────────────────────────────────────────────────────────────────────────── */
.before-after-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.before-after-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(59, 130, 246, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 80% 80%, rgba(139, 92, 246, 0.06), transparent);
  pointer-events: none;
}

.before-after-section .section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.before-after {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.before-after__container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: ew-resize;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--glass-border),
    inset 0 0 60px rgba(59, 130, 246, 0.05);
  user-select: none;
  -webkit-user-select: none;
}

.before-after__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.before-after__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before-after__image--before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.before-after__image--after {
  z-index: 0;
}

.before-after__label {
  position: absolute;
  bottom: 20px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  z-index: 5;
  transition: all 0.3s ease;
}

.before-after__label--before {
  left: 20px;
  border: 1px solid rgba(255, 100, 100, 0.5);
}

.before-after__label--after {
  right: 20px;
  border: 1px solid rgba(59, 130, 246, 0.5);
}

/* Slider Handle */
.before-after__slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  z-index: 10;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.before-after__handle-line {
  flex: 1;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.9) 20%,
    rgba(255, 255, 255, 0.9) 80%,
    transparent
  );
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.before-after__handle-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 20px rgba(59, 130, 246, 0.5),
    0 0 40px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.before-after__container:hover .before-after__handle-circle,
.before-after__container.is-dragging .before-after__handle-circle {
  transform: scale(1.1);
  box-shadow: 
    0 8px 30px rgba(59, 130, 246, 0.6),
    0 0 60px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.before-after__handle-circle svg {
  width: 28px;
  height: 28px;
  color: white;
}

/* PPF Film Effect - Şeffaf film sökülme efekti */
.before-after__film-effect {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 120px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 10%,
    rgba(200, 220, 255, 0.08) 25%,
    rgba(255, 255, 255, 0.2) 45%,
    rgba(200, 230, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.2) 55%,
    rgba(200, 220, 255, 0.08) 75%,
    rgba(255, 255, 255, 0.02) 90%,
    transparent 100%
  );
  opacity: 1;
}

/* PPF Sökülme Kenar Efekti */
.before-after__peel-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 8px;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 30%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.5) 70%,
    transparent 100%
  );
  box-shadow: 
    0 0 15px rgba(255, 255, 255, 0.4),
    0 0 30px rgba(59, 130, 246, 0.3),
    0 0 45px rgba(139, 92, 246, 0.2);
  animation: peelGlow 2s ease-in-out infinite;
}

@keyframes peelGlow {
  0%, 100% { 
    opacity: 0.7;
    box-shadow: 
      0 0 15px rgba(255, 255, 255, 0.4),
      0 0 30px rgba(59, 130, 246, 0.3),
      0 0 45px rgba(139, 92, 246, 0.2);
  }
  50% { 
    opacity: 1;
    box-shadow: 
      0 0 20px rgba(255, 255, 255, 0.6),
      0 0 40px rgba(59, 130, 246, 0.5),
      0 0 60px rgba(139, 92, 246, 0.3);
  }
}

/* Responsive Before/After */
@media (max-width: 768px) {
  .before-after-section {
    padding: var(--space-2xl) 0;
  }
  
  .before-after__container {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
  }
  
  .before-after__label {
    padding: 6px 10px;
    font-size: 0.6rem;
    bottom: 10px;
  }
  
  .before-after__label--before {
    left: 10px;
  }
  
  .before-after__label--after {
    right: 10px;
  }
  
  .before-after__handle-circle {
    width: 44px;
    height: 44px;
  }
  
  .before-after__handle-circle svg {
    width: 22px;
    height: 22px;
  }
  
  .before-after__film-effect {
    width: 60px;
  }
  
  .before-after__peel-edge {
    width: 5px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Stats Banner - Kurumsal & Şık
   ───────────────────────────────────────────────────────────────────────────── */
.stats-banner {
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 50%, rgba(59, 130, 246, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(139, 92, 246, 0.04), transparent);
  pointer-events: none;
}

.stats-banner__grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: var(--space-xl) var(--space-2xl);
  position: relative;
  transition: all 0.3s ease;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

.stat-item:last-child::after {
  display: none;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-item__icon {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.stat-item__value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-item__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Stats Banner Responsive */
@media (max-width: 992px) {
  .stats-banner__grid {
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: var(--space-lg);
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(3)::after {
    display: block;
  }
  
  .stat-item:nth-child(3)::after,
  .stat-item:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .stats-banner {
    padding: var(--space-xl) 0;
  }
  
  .stats-banner__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .stat-item {
    flex: none;
    max-width: none;
    padding: var(--space-md);
  }
  
  .stat-item::after {
    display: none;
  }
  
  .stat-item__icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: var(--space-sm);
  }
  
  .stat-item__value {
    font-size: 1.5rem;
  }
  
  .stat-item__label {
    font-size: 0.75rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Section Headers
   ───────────────────────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header__title { margin-bottom: var(--space-md); }

/* ─────────────────────────────────────────────────────────────────────────────
   Services Section
   ───────────────────────────────────────────────────────────────────────────── */
.services { position: relative; }

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.service-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.1);
}

.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-bg-secondary), transparent 50%);
}

.service-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 6px 12px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.service-card__content { padding: var(--space-xl); }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-card__link { gap: var(--space-md); }

/* ─────────────────────────────────────────────────────────────────────────────
   Video Section
   ───────────────────────────────────────────────────────────────────────────── */
.video-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-bg-primary), var(--color-bg-secondary));
}

.video-section__inner {
  position: relative;
  z-index: 1;
}

.video-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.video-placeholder__play {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-base);
  cursor: pointer;
}

.video-placeholder__play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 100px rgba(59, 130, 246, 0.5);
}

.video-placeholder__play::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.3);
  animation: playPulse 2s ease infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Color Studio
   ───────────────────────────────────────────────────────────────────────────── */
.color-studio {
  position: relative;
  padding: var(--space-4xl) 0;
}

.color-studio__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
  align-items: center;
}

.color-studio__info { padding-right: var(--space-xl); }

.color-studio__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.color-swatch {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  border: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.color-swatch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--swatch-color);
}

.color-swatch:hover { transform: scale(1.1); }

.color-swatch.is-active {
  border-color: white;
  box-shadow: var(--shadow-glow);
}

.color-studio__preview { position: relative; }

.car-preview {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.car-preview__image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  transition: filter 0.5s ease;
  filter: hue-rotate(var(--car-hue, 0deg)) saturate(1.2);
}

.car-preview__floor {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  filter: blur(20px);
}

.selected-color {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.selected-color__preview {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--selected-swatch);
}

.selected-color__name { font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────────────
   Gallery
   ───────────────────────────────────────────────────────────────────────────── */
.gallery { position: relative; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: var(--space-md);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.gallery__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img { transform: scale(1.1); }

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery__item:hover::after { opacity: 1; }

.gallery__item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 1;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
}

.gallery__item:hover .gallery__item-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Testimonials
   ───────────────────────────────────────────────────────────────────────────── */
.testimonials { position: relative; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-size: 3rem;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-card__name { font-weight: 600; }

.testimonial-card__source {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Features / Why Choose Us
   ───────────────────────────────────────────────────────────────────────────── */
.features { position: relative; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.feature-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--accent-primary);
  transform: translateX(8px);
}

.feature-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA Section
   ───────────────────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.cta-card {
  position: relative;
  z-index: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 1px;
  background: var(--gradient-primary);
}

.cta-card__title { margin-bottom: var(--space-md); }

.cta-card__desc {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta-card__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer__logo img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 10px;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.footer__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer__social a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateY(-2px);
}

.footer__column h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer__link:hover { color: var(--accent-primary); }

.footer__hours {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__hour {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-bottom: var(--space-sm);
  border-bottom: 1px dashed var(--glass-border);
}

.footer__cta {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   WhatsApp FAB
   ───────────────────────────────────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 16px 24px;
  background: #25D366;
  border-radius: var(--radius-full);
  color: white;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
}

.whatsapp-fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab__icon { font-size: 1.5rem; }

.whatsapp-fab__pulse {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  animation: fabPulse 2s ease infinite;
}

@keyframes fabPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Contact
   ───────────────────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--accent-primary);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-card__title {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact-card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 100%;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Animations
   ───────────────────────────────────────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transition: all 0.8s ease;
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].is-visible {
  opacity: 1;
  transform: none;
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive Design
   ───────────────────────────────────────────────────────────────────────────── */

.video-showcase__card.is-playing .video-showcase__progress,

@media (max-width: 992px) {

}

@media (max-width: 576px) {

}

/* ═══════════════════════════════════════════════════════════
   VIDEO SHOWCASE - 3-Card Carousel with Depth
   ═══════════════════════════════════════════════════════════ */

.video-showcase {
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

/* Ambient background glow */
.video-showcase__bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Subtle grid pattern */
.video-showcase__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
    pointer-events: none;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(59, 130, 246, 0.25) 30%, rgba(139, 92, 246, 0.25) 70%, transparent 90%);
}

.video-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(59, 130, 246, 0.15) 30%, rgba(139, 92, 246, 0.15) 70%, transparent 90%);
}

.video-showcase__header {
    text-align: center;
    margin-bottom: 56px;
}

.video-showcase__title {
    margin: 12px 0 16px;
}

.video-showcase__desc {
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══ CAROUSEL ═══ */

.video-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.video-carousel__stage {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* ═══ CARD ═══ */

.video-carousel__card {
    position: absolute;
    width: 280px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7) translateX(0);
    z-index: 1;
}

.video-carousel__card.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateX(0);
    z-index: 3;
}

.video-carousel__card.is-prev {
    opacity: 0.5;
    pointer-events: auto;
    transform: scale(0.75) translateX(-320px) rotateY(8deg);
    z-index: 2;
    filter: brightness(0.6);
}

.video-carousel__card.is-next {
    opacity: 0.5;
    pointer-events: auto;
    transform: scale(0.75) translateX(320px) rotateY(-8deg);
    z-index: 2;
    filter: brightness(0.6);
}

.video-carousel__card-inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-primary);
    aspect-ratio: 9 / 16;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 24px 64px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.5s ease;
}

.video-carousel__card.is-active .video-carousel__card-inner {
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.15),
        0 32px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(59, 130, 246, 0.1),
        0 0 120px rgba(139, 92, 246, 0.05);
}

.video-carousel__card-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ═══ OVERLAY (play button) ═══ */

.video-carousel__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: opacity 0.4s ease, visibility 0.4s ease, background 0.4s ease;
    z-index: 2;
}

.video-carousel__card.is-playing .video-carousel__overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-carousel__card.is-active.is-playing:hover .video-carousel__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.12);
}

.video-carousel__play-btn {
    width: 64px;
    height: 64px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.video-carousel__card.is-active .video-carousel__play-btn:hover {
    transform: scale(1.12);
}

.video-carousel__play-btn svg {
    width: 100%;
    height: 100%;
}

/* ═══ PROGRESS BAR ═══ */

.video-carousel__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 3;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-carousel__card.is-playing .video-carousel__progress,
.video-carousel__card.is-active:hover .video-carousel__progress {
    opacity: 1;
}

.video-carousel__progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    transition: width 0.15s linear;
}

/* ═══ LABEL ═══ */

.video-carousel__label {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    transition: color 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.video-carousel__card.is-active .video-carousel__label {
    color: var(--text-secondary);
    opacity: 1;
}

/* ═══ NAV ARROWS ═══ */

.video-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-carousel__nav:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    color: white;
}

.video-carousel__nav svg {
    width: 20px;
    height: 20px;
}

.video-carousel__nav--prev { left: 0; }
.video-carousel__nav--next { right: 0; }

/* ═══ DOTS ═══ */

.video-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.video-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.video-carousel__dot.is-active {
    background: var(--accent-primary);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

/* ═══ VIDEO SHOWCASE RESPONSIVE ═══ */

@media (max-width: 992px) {
    .video-showcase {
        padding: 64px 0 56px;
    }

    .video-showcase__header {
        margin-bottom: 40px;
    }

    .video-carousel {
        padding: 0 48px;
    }

    .video-carousel__stage {
        height: 440px;
    }

    .video-carousel__card {
        width: 230px;
    }

    .video-carousel__card.is-prev {
        transform: scale(0.7) translateX(-250px) rotateY(8deg);
    }

    .video-carousel__card.is-next {
        transform: scale(0.7) translateX(250px) rotateY(-8deg);
    }
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 56px 0 48px;
    }

    .video-carousel {
        padding: 0 40px;
    }

    .video-carousel__stage {
        height: 400px;
    }

    .video-carousel__card {
        width: 200px;
    }

    .video-carousel__card.is-prev {
        transform: scale(0.65) translateX(-200px) rotateY(6deg);
        opacity: 0.35;
    }

    .video-carousel__card.is-next {
        transform: scale(0.65) translateX(200px) rotateY(-6deg);
        opacity: 0.35;
    }

    .video-carousel__nav {
        width: 36px;
        height: 36px;
    }

    .video-carousel__nav svg {
        width: 16px;
        height: 16px;
    }

    .video-carousel__play-btn {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .video-showcase {
        padding: 48px 0 40px;
    }

    .video-carousel {
        padding: 0 36px;
    }

    .video-carousel__stage {
        height: 360px;
    }

    .video-carousel__card {
        width: 180px;
    }

    .video-carousel__card.is-prev {
        transform: scale(0.6) translateX(-160px) rotateY(5deg);
        opacity: 0.3;
    }

    .video-carousel__card.is-next {
        transform: scale(0.6) translateX(160px) rotateY(-5deg);
        opacity: 0.3;
    }

    .video-carousel__nav--prev { left: -4px; }
    .video-carousel__nav--next { right: -4px; }
}

@media (max-width: 1200px) {
  .hero-slide__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .hero-slide__visual {
    max-width: 600px;
    margin: 0 auto;
  }

  

  

  

  

  

  

  
  
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
  
  .gallery__item:nth-child(1) { 
    grid-column: span 2; 
    grid-row: span 2;
  }
}

@media (max-width: 992px) {
  .header__top { display: none; }
  .nav { display: none; }
  .mobile-toggle { display: flex; }
  
  

  

  

  

  

  

  

  

  

  

  

  
  
  .stats-banner__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  
  .color-studio__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --container-padding: 16px; }
  
  .section { padding: var(--space-2xl) 0; }
  
  /* === MOBILE HEADER === */
  .header {
    top: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .header__top { display: none; }
  
  .header__main {
    padding: 10px 0;
    background: rgba(10, 13, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  
  .header__main .container {
    padding: 0 12px;
  }
  
  .logo {
    gap: 8px;
  }
  
  .logo__image {
    width: 40px;
    height: 40px;
  }
  
  .logo__name {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 45vw;
  }
  
  .logo__tagline { display: none; }
  
  .nav { display: none; }
  
  .header__actions {
    gap: 8px;
    align-items: center;
  }

  /* Desktop butonları gizle */
  .header__btn-desktop { display: none !important; }
  
  /* Mobil randevu butonu - şık ve kompakt */
  .header__btn-mobile {
    display: inline-flex !important;
    padding: 8px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
  }

  /* Hamburger menü butonu - modern */
  .mobile-toggle {
    display: flex !important;
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .mobile-toggle:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.1);
  }
  
  .mobile-toggle span {
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.2s ease;
  }
  
  /* === MOBILE HERO SLIDER === */
  .hero-slider { min-height: 85vh; }

  
  
  .hero-slide__content {
    padding: 80px 0 60px;
    min-height: 85vh;
  }
  
  .hero-slide__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .hero-slide__text {
    text-align: center;
    order: 1;
  }
  
  .hero-slide__title {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    line-height: 1.15;
    margin-bottom: var(--space-sm);
  }
  
  .hero-slide__desc {
    font-size: 0.9rem;
    margin: 0 auto var(--space-md);
    max-width: 100%;
    line-height: 1.6;
  }
  
  .hero-slide__chips {
    justify-content: center;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
  }
  
  .chip {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  
  .hero-slide__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
  }
  
  .hero-slide__actions .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  /* Hero visual - küçük ama görünür */
  .hero-slide__visual {
    order: 2;
    max-width: 100%;
    display: block;
  }
  
  .hero-visual-card {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .hero-visual-card img { height: 160px; }
  
  .hero-visual-card__overlay { 
    padding: var(--space-sm);
  }
  
  .hero-visual-card__overlay h3 {
    font-size: 0.85rem;
  }
  
  .hero-visual-card__overlay p {
    font-size: 0.7rem;
  }
  
  .hero-slider__nav {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: var(--space-md);
  }
  
  .hero-slider__dot {
    width: 10px;
    height: 10px;
  }
  
  .hero-slider__dot.is-active {
    width: 30px;
  }
  
  .hero-slider__arrows { display: none; }
  
  .scroll-indicator { display: none; }
  
  .kicker {
    font-size: 0.75rem;
    margin-bottom: var(--space-sm);
  }
  
  /* === MOBILE STATS === */
  .stats-banner { padding: var(--space-xl) 0; }
  
  .stats-banner__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .stat-item {
    padding: var(--space-sm);
  }
  
  .stat-item__icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
  }
  
  .stat-item__value {
    font-size: 1.8rem;
  }
  
  .stat-item__label {
    font-size: 0.75rem;
  }
  
  /* === MOBILE SERVICES === */
  .services__grid { 
    grid-template-columns: 1fr; 
    gap: var(--space-lg);
  }
  
  .service-card__image { height: 200px; }
  
  .service-card__content { padding: var(--space-md); }
  
  .service-card__title { font-size: 1.05rem; }
  
  .service-card__desc { font-size: 0.85rem; }
  
  /* === MOBILE GALLERY === */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: var(--space-sm);
  }
  
  .gallery__item:nth-child(1) { 
    grid-column: span 2; 
    grid-row: span 1;
    height: 220px;
  }
  
  .gallery__item { 
    height: auto;
  }
  
  /* === MOBILE COLOR STUDIO === */
  .color-studio__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .color-studio__preview {
    order: 1;
  }
  
  .color-studio__controls {
    order: 2;
  }
  
  .color-swatches {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-xs);
  }
  
  .color-swatch {
    width: 44px;
    height: 44px;
  }
  
  /* === MOBILE VIDEO SECTION === */
  .video-section {
    padding: var(--space-2xl) 0;
  }
  
  .video-placeholder__play {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  /* === MOBILE FOOTER === */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  .footer__brand {
    grid-column: span 2;
    text-align: center;
  }
  
  .footer__brand .logo {
    justify-content: center;
  }
  
  .footer__col {
    text-align: left;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  /* === MOBILE CTA === */
  .cta-card { padding: var(--space-xl) var(--space-lg); }
  
  .cta-card__title { font-size: 1.5rem; }
  
  .cta-card__actions {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .cta-card__actions .btn { width: 100%; }
  
  /* === MOBILE BUTTONS === */
  .btn { padding: 12px 20px; font-size: 0.85rem; }
  .btn--large { padding: 14px 24px; font-size: 0.9rem; }
  
  /* === MOBILE WHATSAPP FAB === */
  .whatsapp-fab {
    padding: 14px 18px;
    right: 16px;
    bottom: 16px;
    z-index: 1500;
  }
  
  .whatsapp-fab__text { display: none; }
  
  /* === MOBILE SECTION HEADERS === */
  .section-header { margin-bottom: var(--space-xl); }
  
  .section-header__title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    line-height: 1.2;
  }
  
  .section-header p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .kicker { font-size: 0.7rem; }
  
  /* === MOBILE BEFORE/AFTER === */
  .before-after-section {
    padding: var(--space-xl) 0;
  }
  
  .before-after__container {
    border-radius: var(--radius-lg);
  }
  
  .before-after__label {
    font-size: 0.6rem;
    padding: 6px 12px;
    bottom: 12px;
  }
  
  .before-after__label--before { left: 8px; }
  .before-after__label--after { right: 8px; }
  
  .before-after__handle-circle {
    width: 44px;
    height: 44px;
  }
  
  .before-after__handle-circle svg {
    width: 22px;
    height: 22px;
  }
  
  /* === MOBILE TESTIMONIALS === */
  .testimonials {
    padding: var(--space-2xl) 0;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .testimonial-card {
    padding: var(--space-lg);
  }
  
  .testimonial-card__quote {
    font-size: 2.5rem;
    top: var(--space-sm);
    left: var(--space-sm);
  }
  
  .testimonial-card__text {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .testimonial-card__author {
    gap: var(--space-sm);
  }
  
  .testimonial-card__avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .testimonial-card__name {
    font-size: 0.9rem;
  }
  
  .testimonial-card__source {
    font-size: 0.75rem;
  }
  
  /* === MOBILE FEATURES === */
  .features {
    padding: var(--space-2xl) 0;
  }
  
  .features__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .feature-card {
    flex-direction: row;
    text-align: left;
    padding: var(--space-lg);
    gap: var(--space-md);
  }
  
  .feature-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin: 0;
    flex-shrink: 0;
  }
  
  .feature-card__title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
  }
  
  .feature-card__desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  /* === MOBILE VIDEO SECTION === */
  .video-section {
    padding: var(--space-2xl) 0;
  }
  
  .video-container {
    border-radius: var(--radius-lg);
  }
  
  .video-placeholder__play {
    width: 60px;
    height: 60px;
  }
  
  .video-placeholder__play svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  :root { --container-padding: 16px; }
  
  /* Ultra small screens */
  .logo__image {
    width: 36px;
    height: auto;
  }
  
  .logo__name { font-size: 0.85rem; }
  .logo__tagline { display: none; }
  
  .hero-slide__title {
    font-size: 1.4rem !important;
  }
  
  .hero-slide__desc {
    font-size: 0.8rem;
  }
  
  .hero-slide__actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
  }
  
  .hero-slide__actions .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.85rem;
  }
  
  .hero-visual-card {
    max-width: 220px;
  }
  
  .hero-visual-card img { height: 130px; }
  
  /* === 480px STATS === */
  .stats-banner {
    padding: var(--space-lg) 0;
  }
  
  .stats-banner__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
  }
  
  .stat-item {
    padding: var(--space-sm);
  }
  
  .stat-item__icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  
  .stat-item__value { 
    font-size: 1.4rem;
    line-height: 1.2;
  }
  
  .stat-item__label { 
    font-size: 0.65rem;
    line-height: 1.3;
  }
  
  /* === 480px SERVICES === */
  .services {
    padding: var(--space-xl) 0;
  }
  
  .services__grid {
    gap: var(--space-md);
  }
  
  .service-card {
    border-radius: var(--radius-md);
  }
  
  .service-card__image { 
    height: 180px;
  }
  
  .service-card__badge {
    font-size: 0.6rem;
    padding: 4px 10px;
  }
  
  .service-card__content {
    padding: var(--space-md);
  }
  
  .service-card__title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
  }
  
  .service-card__desc {
    font-size: 0.8rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  
  .service-card__link {
    font-size: 0.8rem;
    margin-top: var(--space-sm);
  }
  
  /* === 480px GALLERY === */
  .gallery {
    padding: var(--space-xl) 0;
  }
  
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: var(--space-xs);
  }
  
  .gallery__item {
    border-radius: var(--radius-sm);
  }
  
  .gallery__item:nth-child(1) {
    grid-column: span 2;
    height: 180px;
  }
  
  .gallery__item-overlay .chip {
    font-size: 0.6rem;
    padding: 4px 8px;
  }
  
  /* === 480px CTA === */
  .cta-section {
    padding: var(--space-xl) 0;
  }
  
  .cta-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
  }
  
  .cta-card__title {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  
  .cta-card__desc {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
  }
  
  .cta-card__actions {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .cta-card__actions .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.85rem;
  }
  
  /* === 480px FOOTER === */
  .footer {
    padding: var(--space-xl) 0 var(--space-md);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer__brand {
    grid-column: span 1;
    text-align: center;
  }
  
  .footer__logo img {
    width: 44px;
    height: 44px;
  }
  
  .footer__logo-text {
    font-size: 0.95rem;
  }
  
  .footer__desc {
    font-size: 0.75rem;
    max-width: 100%;
    line-height: 1.6;
  }
  
  .footer__social {
    justify-content: center;
    gap: var(--space-sm);
  }
  
  .footer__social a {
    width: 38px;
    height: 38px;
  }
  
  .footer__col {
    text-align: center;
  }
  
  .footer__col h4 {
    font-size: 0.75rem;
    margin-bottom: var(--space-sm);
  }
  
  .footer__link {
    font-size: 0.75rem;
    padding: var(--space-xs) 0;
  }
  
  .footer__hour {
    font-size: 0.75rem;
  }
  
  .footer__bottom {
    font-size: 0.7rem;
    padding-top: var(--space-md);
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  /* === 480px TESTIMONIALS === */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: var(--space-md);
  }
  
  .testimonial-card__quote {
    font-size: 2rem;
  }
  
  .testimonial-card__text {
    font-size: 0.9rem;
  }
  
  /* === 480px FEATURES === */
  .features__grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
  }
  
  .feature-card__icon {
    margin: 0 auto var(--space-md);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Utility Classes
   ───────────────────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO - Internal Pages
   ═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero--compact {
  min-height: 35vh;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 5, 8, 0.6) 0%, rgba(3, 5, 8, 0.85) 100%);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 100px var(--container-padding) 50px;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 35vh;
  }
  
  .page-hero--compact {
    min-height: 28vh;
  }
  
  .page-hero__content {
    padding: 80px var(--container-padding) 40px;
  }
  
  .page-hero__badge {
    padding: 6px 14px;
    font-size: 0.7rem;
  }
  
  .page-hero__subtitle {
    font-size: 0.9rem;
  }
  
  /* Contact Section Mobile */
  .contact-section {
    padding: var(--space-2xl) 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .contact-info__header h2 {
    font-size: 1.3rem;
  }
  
  .contact-cards {
    gap: var(--space-sm);
  }
  
  .contact-card {
    padding: var(--space-md);
    gap: var(--space-sm);
  }
  
  .contact-card__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  
  .contact-card__icon svg {
    width: 18px;
    height: 18px;
  }
  
  .contact-card__label {
    font-size: 0.7rem;
  }
  
  .contact-card__value {
    font-size: 0.85rem;
  }
  
  .working-hours {
    padding: var(--space-md);
  }
  
  .working-hours h3 {
    font-size: 0.9rem;
  }
  
  .working-hours__day,
  .working-hours__time {
    font-size: 0.85rem;
  }
  
  /* Contact Form Mobile */
  .contact-form-card {
    padding: var(--space-lg);
  }
  
  .contact-form-card__header h2 {
    font-size: 1.2rem;
  }
  
  .contact-form-card__header p {
    font-size: 0.85rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .form-group label {
    font-size: 0.85rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: var(--space-sm) var(--space-md);
    font-size: 16px; /* iOS zoom fix */
  }
  
  /* Map Mobile */
  .map-section {
    padding: 0;
  }
  
  .map-container {
    height: 300px;
  }
  
  .map-overlay {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-md);
  }
  
  .map-overlay__card {
    max-width: 100%;
  }
  
  .map-overlay__card h3 {
    font-size: 1rem;
  }
  
  .map-overlay__card p {
    font-size: 0.85rem;
  }
  
  /* FAQ Mobile */
  .faq-section {
    padding: var(--space-2xl) 0;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .faq-item {
    padding: var(--space-md);
  }
  
  .faq-item__question {
    font-size: 0.95rem;
  }
  
  .faq-item__answer {
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES DETAIL PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.services-detail {
  padding: var(--space-4xl) 0;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block--reverse {
  direction: rtl;
}

.service-block--reverse > * {
  direction: ltr;
}

.service-block__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-block__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-block__image:hover img {
  transform: scale(1.05);
}

.service-block__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--accent-primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.service-block__badge--gradient {
  background: var(--gradient-primary);
}

.service-block__content {
  padding: var(--space-lg) 0;
}

/* GEO Optimized: Tanımlama Bloğu */
.service-block__definition {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.05));
  border-left: 4px solid var(--accent-primary);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-xl);
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

.service-block__definition strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.service-block__definition em {
  color: var(--accent-primary);
  font-style: normal;
  font-weight: 500;
}

/* GEO Optimized: İstatistik Rozetleri */
.service-block__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--glass-border);
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: var(--transition-base);
}

.stat-badge:hover {
  background: var(--glass-bg-hover);
  border-color: var(--accent-primary);
}

.stat-badge .stat-value {
  font-weight: 700;
  color: var(--accent-primary);
  font-size: 1rem;
}

/* GEO Optimized: Liste Yapısı */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-list .feature-item strong {
  color: var(--text-primary);
}

/* GEO Optimized: Hizmet Özeti Listesi */
.services-summary {
  margin-bottom: var(--space-3xl);
}

.services-quick-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  list-style: none;
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.03));
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.services-quick-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-quick-list li::before {
  content: '✓';
  color: var(--accent-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.services-quick-list li strong {
  color: var(--text-primary);
}

/* GEO: Section header em vurgusu */
.section-header em {
  color: var(--accent-primary);
  font-style: normal;
  font-weight: 500;
}

.section-header strong {
  color: var(--text-primary);
}

.service-block__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.service-block__icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.service-block__emoji {
  font-size: 28px;
  line-height: 1;
}

.service-block__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.service-block__description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.service-block__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.feature-item span {
  color: var(--text-secondary);
}

.service-block__cta {
  display: flex;
  gap: var(--space-md);
}

/* Process Section */
.process-section {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-secondary);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
}

.process-step:last-child::after {
  display: none;
}

.process-step__number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: var(--gradient-primary);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.process-step__content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
.about-story {
  padding: var(--space-4xl) 0;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-story__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin: var(--space-md) 0 var(--space-xl);
}

.about-story__text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-story__signature {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--glass-border);
}

.signature-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-full);
}

.about-story__signature span {
  font-style: italic;
  color: var(--text-muted);
}

.about-story__images {
  position: relative;
  height: 500px;
}

.about-story__image {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story__image--main {
  top: 0;
  right: 0;
  width: 75%;
  height: 350px;
}

.about-story__image--secondary {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 200px;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__badge {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  text-align: center;
}

.about-story__badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.about-story__badge-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Values Section */
.values-section {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.value-card {
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.value-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-8px);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
}

.value-card__icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.value-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

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

/* About Stats */
.about-stats {
  padding: var(--space-4xl) 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.about-stat {
  text-align: center;
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.about-stat__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
}

.about-stat__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
}

.about-stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

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

/* Brands Section */
.brands-section {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-secondary);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.brand-item:hover {
  background: var(--glass-bg-hover);
  border-color: var(--accent-primary);
}

.brand-item span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.brand-item:hover span {
  color: var(--accent-primary);
}

/* Team Section */
.team-section {
  padding: var(--space-4xl) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.team-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-8px);
}

.team-card__image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-card__image img {
  transform: scale(1.1);
}

.team-card__content {
  padding: var(--space-lg);
  text-align: center;
}

.team-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.team-card__role {
  font-size: 0.9rem;
  color: var(--accent-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-section {
  padding: var(--space-4xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}

.contact-info__header {
  margin-bottom: var(--space-xl);
}

.contact-info__header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.contact-info__header p {
  color: var(--text-muted);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

.contact-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--accent-primary);
}

.contact-card--whatsapp:hover {
  border-color: #25D366;
}

.contact-card--whatsapp .contact-card__icon {
  background: #25D366;
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.contact-card__content {
  flex: 1;
}

.contact-card__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-card__value {
  font-weight: 500;
  color: var(--text-primary);
}

.contact-card__arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-base);
}

.contact-card:hover .contact-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.contact-card__arrow svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
}

/* Working Hours */
.working-hours {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.working-hours h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.working-hours__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.working-hours__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--glass-border);
}

.working-hours__item:last-child {
  border-bottom: none;
}

.working-hours__day {
  color: var(--text-secondary);
}

.working-hours__time {
  font-weight: 500;
  color: var(--accent-primary);
}

.working-hours__time--closed {
  color: #ef4444;
}

/* Contact Form */
/* .contact-form-wrapper { } */

.contact-form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.contact-form-card__header {
  margin-bottom: var(--space-xl);
}

.contact-form-card__header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-md);
  background: var(--color-bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Select dropdown option stilleri */
.form-group select option {
  background-color: #1a1d24;
  color: #ffffff;
  padding: 8px;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
  background-color: #2563eb;
  color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn--full {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-container {
  position: relative;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) invert(0.95) contrast(0.9);
}

.map-overlay {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  z-index: 10;
}

.map-overlay__card {
  background: var(--color-bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 300px;
}

.map-overlay__card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.map-overlay__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* FAQ Section */
.faq-section {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-secondary);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.faq-item {
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.faq-item__question {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE - Internal Pages
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .service-block--reverse {
    direction: ltr;
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step::after {
    display: none;
  }
  
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .about-story__images {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  
  .about-story__image {
    position: relative;
  }
  
  .about-story__image--main,
  .about-story__image--secondary {
    width: 100%;
    height: 250px;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
  }
  
  .about-story__badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 40vh;
  }
  
  .page-hero--compact {
    min-height: 30vh;
  }
  
  .page-hero__content {
    padding: 90px var(--container-padding) 30px;
  }
  
  .page-hero__badge {
    font-size: 0.65rem;
    padding: 5px 12px;
    margin-bottom: var(--space-sm);
  }
  
  .page-hero__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: var(--space-sm);
  }
  
  .page-hero__subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  /* === SERVICES DETAIL PAGE MOBILE === */
  .services-detail {
    padding: var(--space-xl) 0;
  }
  
  .service-block {
    margin-bottom: var(--space-xl);
    gap: var(--space-md);
  }
  
  .service-block__image {
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  
  .service-block__image img {
    height: 200px;
    border-radius: var(--radius-md);
    object-fit: cover;
  }
  
  .service-block__badge {
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 5px 10px;
    font-size: 0.65rem;
  }
  
  .service-block__content {
    padding: 0;
  }
  
  .service-block__icon {
    width: 42px;
    height: 42px;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-sm);
  }
  
  .service-block__icon svg {
    width: 20px;
    height: 20px;
  }
  
  .service-block__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    line-height: 1.2;
  }
  
  .service-block__description {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
  }
  
  .service-block__features {
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  
  .feature-item {
    gap: var(--space-sm);
  }
  
  .feature-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  
  .feature-item span {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .service-block__cta {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .service-block__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  /* === PROCESS TIMELINE MOBILE === */
  .process-section {
    padding: var(--space-xl) 0;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    text-align: left;
    padding: var(--space-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
  }
  
  .process-step__number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin: 0;
    font-size: 1rem;
  }
  
  .process-step__content {
    flex: 1;
  }
  
  .process-step__content h3 {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
  }
  
  .process-step__content p {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  /* === ABOUT PAGE MOBILE === */
  .about-story {
    padding: var(--space-xl) 0;
  }
  
  .section-tag {
    font-size: 0.7rem;
  }
  
  .about-story__title {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: var(--space-md);
  }
  
  .about-story__text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
  }
  
  .about-story__signature {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
  }
  
  .about-story__signature span {
    font-size: 0.85rem;
  }
  
  .about-story__images {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }
  
  .about-story__image--main,
  .about-story__image--secondary {
    height: 180px;
    border-radius: var(--radius-md);
  }
  
  .about-story__badge {
    display: none;
  }
  
  /* === VALUES SECTION MOBILE === */
  .values-section {
    padding: var(--space-xl) 0;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }
  
  .value-card {
    padding: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    text-align: left;
  }
  
  .value-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .value-card__icon svg {
    width: 22px;
    height: 22px;
  }
  
  .value-card__title {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
  }
  
  .value-card__text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  /* === ABOUT STATS MOBILE === */
  .about-stats {
    padding: var(--space-xl) 0;
  }
  
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .about-stat {
    padding: var(--space-md);
    text-align: center;
  }
  
  .about-stat__number {
    font-size: 1.6rem;
    line-height: 1.1;
  }
  
  .about-stat__label {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  
  /* === BRANDS GRID MOBILE === */
  .brands-section {
    padding: var(--space-xl) 0;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .brand-item {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
  }
  
  .brand-item span {
    font-size: 0.8rem;
  }
  
  /* === TEAM GRID MOBILE === */
  .team-section {
    padding: var(--space-xl) 0;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .team-card {
    border-radius: var(--radius-md);
  }
  
  .team-card__image {
    height: 160px;
  }
  
  .team-card__content {
    padding: var(--space-sm);
  }
  
  .team-card__name {
    font-size: 0.9rem;
  }
  
  .team-card__role {
    font-size: 0.75rem;
  }
  
  /* === CONTACT PAGE MOBILE === */
  .contact-section {
    padding: var(--space-xl) 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .contact-info__header {
    margin-bottom: var(--space-md);
  }
  
  .contact-info__header h2 {
    font-size: 1.2rem;
  }
  
  .contact-info__header p {
    font-size: 0.8rem;
  }
  
  .contact-cards {
    gap: var(--space-sm);
  }
  
  .contact-card {
    padding: var(--space-md);
    gap: var(--space-sm);
    border-radius: var(--radius-md);
  }
  
  .contact-card__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
  }
  
  .contact-card__icon svg {
    width: 18px;
    height: 18px;
  }
  
  .contact-card__label {
    font-size: 0.65rem;
  }
  
  .contact-card__value {
    font-size: 0.85rem;
  }
  
  .contact-card__arrow {
    display: none;
  }
  
  /* === WORKING HOURS MOBILE === */
  .working-hours {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .working-hours h3 {
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
  }
  
  .working-hours__item {
    padding: var(--space-xs) 0;
  }
  
  .working-hours__day,
  .working-hours__time {
    font-size: 0.8rem;
  }
  
  /* === CONTACT FORM MOBILE === */
  .contact-form-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .contact-form-card__header {
    margin-bottom: var(--space-md);
  }
  
  .contact-form-card__header h2 {
    font-size: 1.1rem;
  }
  
  .contact-form-card__header p {
    font-size: 0.8rem;
  }
  
  .contact-form {
    gap: var(--space-md);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .form-group label {
    font-size: 0.8rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px var(--space-md);
    font-size: 16px; /* iOS zoom prevention */
    border-radius: var(--radius-sm);
  }
  
  .form-group textarea {
    min-height: 100px;
  }
  
  /* === MAP MOBILE === */
  .map-section {
    padding: 0;
  }
  
  .map-container {
    height: 250px;
  }
  
  .map-overlay {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-md);
    background: var(--color-bg-secondary);
  }
  
  .map-overlay__card {
    max-width: 100%;
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .map-overlay__card h3 {
    font-size: 0.95rem;
  }
  
  .map-overlay__card p {
    font-size: 0.8rem;
    margin-bottom: var(--space-sm);
  }
  
  .map-overlay__card .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
  }
  
  /* === FAQ MOBILE === */
  .faq-section {
    padding: var(--space-xl) 0;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }
  
  .faq-item {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .faq-item__question {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
  }
  
  .faq-item__answer {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Appointment Modal
   ═══════════════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all var(--transition-base);
}

.modal-overlay.is-open .modal {
  transform: scale(1) translateY(0);
}

.modal__header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal__close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal__close:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.modal__body {
  padding: var(--space-xl);
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .modal {
    margin: var(--space-md);
    max-height: calc(100vh - var(--space-lg));
    border-radius: var(--radius-lg);
  }
  
  .modal__header {
    padding: var(--space-md);
  }
  
  .modal__title {
    font-size: 1.2rem;
  }
  
  .modal__body {
    padding: var(--space-md);
  }
  
  .modal__footer {
    padding: var(--space-md);
    flex-direction: column;
  }
  
  .modal__footer .btn {
    width: 100%;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Modal select dropdown option stilleri */
.modal .form-group select option {
  background-color: #1a1d24;
  color: #ffffff;
  padding: 8px;
}

.modal .form-group select option:hover,
.modal .form-group select option:focus,
.modal .form-group select option:checked {
  background-color: #2563eb;
  color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.modal__footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: var(--space-md);
}

.modal__footer .btn {
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Blog Styles - Redesigned
   ═══════════════════════════════════════════════════════════════════════════ */

/* Blog Section */
.blog-section {
  padding-top: var(--space-3xl);
}

/* Blog Featured Card */
.blog-featured {
  margin-bottom: var(--space-3xl);
}

.blog-featured__link {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
}

.blog-featured__link:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.blog-featured__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-featured__link:hover .blog-featured__image img {
  transform: scale(1.05);
}

.blog-featured__category {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  padding: 8px 16px;
  background: var(--accent-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.blog-featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-xl);
  gap: var(--space-md);
}

.blog-featured__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.blog-featured__date,
.blog-featured__author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-featured__date svg,
.blog-featured__author svg {
  opacity: 0.7;
}

.blog-featured__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-featured__excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.blog-featured__link:hover .blog-featured__cta {
  gap: 14px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.blog-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Blog Card */
.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.12);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.blog-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.08);
}

.blog-card__category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 6px 12px;
  background: var(--accent-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.blog-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-lg);
  gap: var(--space-sm);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-card__meta span:nth-child(2) {
  opacity: 0.5;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card__cta {
  display: inline-flex;
  align-items: center;
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: auto;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card__cta {
  color: var(--accent-secondary);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

.empty-state svg {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  opacity: 0.5;
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.empty-state p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog-featured__link {
    grid-template-columns: 1fr;
  }
  
  .blog-featured__image {
    aspect-ratio: 16/9;
  }
  
  .blog-featured__content {
    padding: var(--space-xl);
  }
  
  .blog-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding-top: var(--space-xl);
  }
  
  .blog-featured {
    margin-bottom: var(--space-lg);
  }
  
  .blog-featured__link {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }
  
  .blog-featured__image {
    aspect-ratio: 16/9;
  }
  
  .blog-featured__category {
    top: var(--space-sm);
    left: var(--space-sm);
    font-size: 0.6rem;
    padding: 5px 10px;
  }
  
  .blog-featured__content {
    padding: var(--space-md);
    gap: var(--space-sm);
  }
  
  .blog-featured__meta {
    gap: var(--space-md);
    font-size: 0.75rem;
  }
  
  .blog-featured__date svg,
  .blog-featured__author svg {
    width: 14px;
    height: 14px;
  }
  
  .blog-featured__title {
    font-size: 1.1rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .blog-featured__excerpt {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .blog-featured__cta {
    font-size: 0.85rem;
    margin-top: var(--space-sm);
  }
  
  .blog-grid,
  .blog-grid--3 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .blog-card {
    border-radius: var(--radius-md);
  }
  
  .blog-card__image {
    height: 180px;
  }
  
  .blog-card__category {
    font-size: 0.55rem;
    padding: 4px 8px;
  }
  
  .blog-card__content {
    padding: var(--space-md);
  }
  
  .blog-card__title {
    font-size: 0.95rem;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .blog-card__excerpt {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .blog-card__meta {
    font-size: 0.7rem;
    gap: var(--space-sm);
  }
  
  .blog-card__cta {
    font-size: 0.8rem;
  }
  
  /* Empty State Mobile */
  .empty-state {
    padding: var(--space-xl) var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .empty-state svg {
    width: 48px;
    height: 48px;
  }
  
  .empty-state h3 {
    font-size: 1.1rem;
  }
  
  .empty-state p {
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Blog Detail Page - Redesigned
   ═══════════════════════════════════════════════════════════════════════════ */
.blog-detail-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-2xl) 0;
  margin-top: calc(var(--header-height, 80px) * -1);
  padding-top: calc(var(--header-height, 80px) + var(--space-2xl));
}

.blog-detail-hero__bg {
  position: absolute;
  inset: 0;
}

.blog-detail-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top, 
    var(--color-bg-primary) 0%, 
    rgba(3, 5, 8, 0.8) 40%,
    rgba(3, 5, 8, 0.6) 100%
  );
}

.blog-detail-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.blog-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.blog-detail__back:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  background: rgba(59, 130, 246, 0.1);
}

.blog-detail-hero .blog-detail__category {
  display: inline-block;
  padding: 8px 18px;
  background: var(--accent-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.blog-detail-hero .blog-detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: var(--space-lg);
}

.blog-detail-hero .blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.blog-detail__author,
.blog-detail__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-detail__author svg,
.blog-detail__date svg {
  opacity: 0.7;
}

/* Blog Detail Section */
.blog-detail-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.blog-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-2xl);
  align-items: start;
}

/* Blog Content */
.blog-detail-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.blog-detail-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--space-xl) 0 var(--space-md);
  line-height: 1.3;
}

.blog-detail-content h2:first-child {
  margin-top: 0;
}

.blog-detail-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: var(--space-lg) 0 var(--space-sm);
  line-height: 1.3;
}

.blog-detail-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.blog-detail-content ul,
.blog-detail-content ol {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.blog-detail-content li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.blog-detail-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.blog-detail-content a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-detail-content a:hover {
  color: var(--accent-secondary);
}

.blog-detail-content img {
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.blog-detail-content blockquote {
  border-left: 3px solid var(--accent-primary);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* Blog Tags */
.blog-detail__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

.blog-detail__tags-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.blog-detail__tag {
  padding: 6px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.blog-detail__tag:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* Blog Share */
.blog-detail__share {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

.blog-detail__share-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.blog-detail__share-buttons {
  display: flex;
  gap: var(--space-sm);
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn--whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: white;
}

.share-btn--twitter:hover {
  background: #000;
  border-color: #000;
  color: white;
}

.share-btn--facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
}

/* Sidebar */
.blog-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: sticky;
  top: calc(var(--header-height, 80px) + var(--space-lg));
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.sidebar-cta h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.sidebar-cta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.sidebar-cta .btn {
  background: white;
  color: var(--accent-primary);
  font-weight: 600;
  width: 100%;
}

.sidebar-cta .btn:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-2px);
}

.sidebar-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.sidebar-box h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--glass-border);
}

.sidebar-categories {
  list-style: none;
}

.sidebar-categories li {
  border-bottom: 1px solid var(--glass-border);
}

.sidebar-categories li:last-child {
  border-bottom: none;
}

.sidebar-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.sidebar-categories a:hover {
  color: var(--accent-primary);
  padding-left: 8px;
}

.sidebar-categories a::after {
  content: '→';
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.sidebar-categories a:hover::after {
  opacity: 1;
}

/* Related Posts */
.related-posts {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--glass-border);
}

.related-posts__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}

/* Responsive Blog Detail */
@media (max-width: 1024px) {
  .blog-detail-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .blog-detail-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .sidebar-cta,
  .sidebar-box {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .blog-detail-hero {
    min-height: 35vh;
    padding: var(--space-lg) 0;
    padding-top: calc(var(--header-height, 80px) + var(--space-lg));
  }
  
  .blog-detail-hero .blog-detail__title {
    font-size: 1.35rem;
  }
  
  .blog-detail-hero .blog-detail__meta {
    gap: var(--space-md);
    font-size: 0.8rem;
  }
  
  .blog-detail-content {
    padding: var(--space-lg);
  }
  
  .blog-detail-content h2 {
    font-size: 1.25rem;
  }
  
  .blog-detail-content h3 {
    font-size: 1.1rem;
  }
  
  .blog-detail-content p {
    font-size: 0.95rem;
  }
  
  .blog-detail-sidebar {
    flex-direction: column;
  }
  
  .sidebar-cta,
  .sidebar-box {
    min-width: 100%;
  }
  
  .blog-detail__share {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .related-posts {
    margin-top: var(--space-2xl);
  }
  
  .related-posts__title {
    font-size: 1.15rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   AI KAPLAMA SİMÜLATÖRÜ
   ═══════════════════════════════════════════════════════════════════════════ */
.ai-simulator {
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.ai-simulator::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 35%),
              radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 35%),
              radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  pointer-events: none;
  animation: aiGlow 15s ease-in-out infinite;
}

@keyframes aiGlow {
  0%, 100% { opacity: 0.8; transform: translate(0, 0) scale(1); }
  50% { opacity: 1; transform: translate(-2%, -2%) scale(1.02); }
}

.ai-simulator__wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-2xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5),
              inset 0 1px 1px rgba(255,255,255,0.1);
}

/* Kontrol Paneli */
.ai-simulator__controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Görsel Yükleme Alanı */
.ai-simulator__upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-2xl);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ai-simulator__upload-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(139,92,246,0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-simulator__upload-area:hover::before,
.ai-simulator__upload-area.dragover::before {
  opacity: 1;
}

.ai-simulator__upload-area:hover,
.ai-simulator__upload-area.dragover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.ai-simulator__upload-area.has-image {
  border-color: var(--accent-tertiary);
  border-style: solid;
}

.ai-simulator__upload-area.has-image::before {
  background: linear-gradient(135deg, rgba(6,182,212,0.1) 0%, rgba(16,185,129,0.1) 100%);
  opacity: 1;
}

.ai-simulator__upload-icon {
  color: var(--text-muted);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.ai-simulator__upload-area:hover .ai-simulator__upload-icon {
  color: var(--accent-primary);
  transform: scale(1.1);
}

.ai-simulator__upload-text {
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.ai-simulator__upload-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* Section */
.ai-simulator__section {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.ai-simulator__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hizmet Butonları */
.ai-simulator__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ai-simulator__service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ai-simulator__service-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-simulator__service-btn:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ai-simulator__service-btn.active::before {
  opacity: 0.15;
}

.ai-simulator__service-btn.active {
  border-color: var(--accent-primary);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.ai-simulator__service-btn .service-icon {
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.ai-simulator__service-btn span {
  position: relative;
  z-index: 1;
}

/* Finish Butonları */
.ai-simulator__finishes {
  display: flex;
  gap: 8px;
}

.ai-simulator__finish-btn {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ai-simulator__finish-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}

.ai-simulator__finish-btn.active {
  background: linear-gradient(135deg, rgba(139,92,246,0.2) 0%, rgba(168,85,247,0.2) 100%);
  border-color: var(--accent-secondary);
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

/* Renk Butonları */
.ai-simulator__colors {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}

.ai-simulator__color-btn {
  aspect-ratio: 1;
  width: 100%;
  background: var(--btn-color);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.ai-simulator__color-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.ai-simulator__color-btn.active {
  border-color: #fff;
  box-shadow: 0 0 0 3px var(--accent-primary), 0 4px 16px rgba(0,0,0,0.3);
}

.ai-simulator__selected-color {
  text-align: center;
  padding: var(--space-sm);
  background: var(--glass-bg);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Apply Butonu */
.ai-simulator__apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  border: none;
  border-radius: var(--radius-lg);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.ai-simulator__apply-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.ai-simulator__apply-btn:hover:not(:disabled)::before {
  transform: translateX(100%);
}

.ai-simulator__apply-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5),
              0 0 60px rgba(139, 92, 246, 0.3);
}

.ai-simulator__apply-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(0.7);
  animation: none;
}

/* Rate Limit */
.ai-simulator__rate-limit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-sm);
  color: var(--accent-gold);
  font-size: 0.85rem;
}

/* Önizleme Paneli */
.ai-simulator__preview {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.ai-simulator__comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  flex: 1;
}

.ai-simulator__image-box {
  position: relative;
  background: linear-gradient(145deg, rgba(17,20,25,0.9) 0%, rgba(10,13,18,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.ai-simulator__watermark {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
  z-index: 10;
  display: none;
}

.ai-simulator__image-box:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.ai-simulator__image-box--result {
  background: linear-gradient(145deg, rgba(59,130,246,0.05) 0%, rgba(139,92,246,0.05) 100%);
}

.ai-simulator__image-label {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 6px 14px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.1);
}

.ai-simulator__image-label--ai {
  background: linear-gradient(135deg, rgba(59,130,246,0.8) 0%, rgba(139,92,246,0.8) 100%);
  border-color: rgba(255,255,255,0.2);
}

.ai-simulator__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
  position: relative;
}

.ai-simulator__placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl);
  text-align: center;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
}

.ai-simulator__placeholder-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.ai-simulator__placeholder-icon--ai {
  background: linear-gradient(135deg, rgba(59,130,246,0.2) 0%, rgba(139,92,246,0.2) 100%);
  color: var(--accent-primary);
}

.ai-simulator__placeholder-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ai-simulator__placeholder-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Referans Görsel */
.ai-simulator__reference {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ai-simulator__reference img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: blur(1px);
  transition: all 0.4s ease;
}

.ai-simulator__image-box:hover .ai-simulator__reference img {
  opacity: 0.5;
  filter: blur(0);
}

.ai-simulator__reference-badge {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  padding: 4px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
}

.ai-simulator__reference-badge--ai {
  background: linear-gradient(135deg, rgba(59,130,246,0.6) 0%, rgba(139,92,246,0.6) 100%);
  color: white;
}

.ai-simulator__image {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Ensure full image is visible */
  display: block;
  max-height: 80vh; /* Prevent extremely tall images */
}

/* Loading */
.ai-simulator__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-xl);
}

.ai-simulator__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.ai-simulator__loading span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.ai-simulator__loading-hint {
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
}

/* Download Button */
.ai-simulator__download-btn {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--accent-primary);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
}

.ai-simulator__download-btn:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
}

/* Error */
.ai-simulator__error {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  color: #ef4444;
  font-size: 0.9rem;
}

/* CTA */
.ai-simulator__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.ai-simulator__cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .ai-simulator__wrapper {
    grid-template-columns: 1fr;
  }
  
  .ai-simulator__comparison {
    grid-template-columns: 1fr 1fr;
  }
  
  .ai-simulator__image-box {
    min-height: 200px;
  }
  
  .ai-simulator__controls {
    order: 2;
  }
  
  .ai-simulator__preview {
    order: 1;
  }
}

@media (max-width: 768px) {
  .ai-simulator {
    padding: var(--space-xl) 0;
  }
  
  .ai-simulator .section-header {
    margin-bottom: var(--space-lg);
  }
  
  .ai-simulator .section-header__title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    line-height: 1.2;
  }
  
  .ai-simulator .section-header p {
    font-size: 0.85rem;
  }
  
  .ai-simulator__wrapper {
    padding: var(--space-md);
    gap: var(--space-md);
    border-radius: var(--radius-lg);
  }
  
  .ai-simulator__comparison {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
  
  .ai-simulator__image-box {
    min-height: 140px;
    border-radius: var(--radius-md);
  }
  
  .ai-simulator__placeholder {
    min-height: 140px;
  }
  
  .ai-simulator__placeholder-inner {
    padding: var(--space-sm);
    transform: translate(-50%, -50%) scale(0.85);
  }
  
  .ai-simulator__placeholder-icon {
    width: 40px;
    height: 40px;
  }
  
  .ai-simulator__placeholder-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .ai-simulator__placeholder-title {
    font-size: 0.75rem;
  }
  
  .ai-simulator__placeholder-hint {
    font-size: 0.65rem;
    display: none;
  }
  
  .ai-simulator__image-label {
    font-size: 0.55rem;
    padding: 4px 8px;
    top: var(--space-xs);
    left: var(--space-xs);
  }
  
  .ai-simulator__reference-badge {
    font-size: 0.55rem;
    padding: 3px 6px;
    bottom: var(--space-xs);
    right: var(--space-xs);
  }
  
  .ai-simulator__upload-area {
    padding: var(--space-md);
  }
  
  .ai-simulator__upload-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .ai-simulator__upload-text {
    font-size: 0.85rem;
  }
  
  .ai-simulator__upload-hint {
    font-size: 0.7rem;
  }
  
  .ai-simulator__services {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .ai-simulator__service-btn {
    padding: 12px 8px;
    font-size: 0.7rem;
    gap: 6px;
  }
  
  .ai-simulator__service-btn .service-icon {
    font-size: 1.2rem;
  }
  
  .ai-simulator__label {
    font-size: 0.75rem;
  }
  
  .ai-simulator__finishes {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .ai-simulator__finish-btn {
    flex: 1 1 calc(50% - 3px);
    padding: 8px 12px;
    font-size: 0.7rem;
  }
  
  .ai-simulator__colors {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
  }
  
  .ai-simulator__color-btn {
    border-radius: var(--radius-xs, 4px);
  }
  
  .ai-simulator__selected-color {
    font-size: 0.75rem;
    padding: var(--space-xs);
  }
  
  .ai-simulator__apply-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  .ai-simulator__rate-limit {
    font-size: 0.75rem;
    padding: var(--space-sm);
  }
  
  .ai-simulator__cta {
    padding: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .ai-simulator__cta p {
    font-size: 0.9rem;
  }
  
  .ai-simulator__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ai-simulator__wrapper {
    padding: var(--space-sm);
    gap: var(--space-sm);
  }
  
  .ai-simulator__comparison {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  
  .ai-simulator__image-box {
    min-height: 120px;
  }
  
  .ai-simulator__placeholder {
    min-height: 120px;
  }
  
  .ai-simulator__services {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  
  .ai-simulator__service-btn {
    padding: 10px 6px;
    font-size: 0.65rem;
  }
  
  .ai-simulator__colors {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .ai-simulator__finishes {
    gap: 4px;
  }
  
  .ai-simulator__finish-btn {
    padding: 6px 8px;
    font-size: 0.65rem;
  }
}

/* -----------------------------------------------------------------------------
   INSTAGRAM REELS
   ----------------------------------------------------------------------------- */
.instagram-reels {
  background-color: var(--bg-surface-2);
  padding: var(--space-3xl) 0;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.reel-item {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9/19.5;
  background: #000;
  border-radius: 36px;
  padding: 10px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 2px solid #333;
  transition: transform 0.3s ease;
}

.phone-frame:hover {
  transform: translateY(-10px);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 24px;
  background: #000;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.reel-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.phone-frame:hover .reel-cover {
  transform: scale(1.05);
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
  border: none;
  cursor: pointer;
}

.reel-item.is-playing .reel-cover,
.reel-item.is-playing .reel-overlay {
  opacity: 0;
  pointer-events: none;
}

.reel-item.is-playing .reel-play-btn {
  opacity: 0.75;
}

.reel-item.is-playing .reel-video {
  z-index: 2;
}

/* Reel Embed (YouTube/Instagram telefon içinde) */
.reel-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 10;
  background: #000;
  border-radius: 30px;
}

.reel-item.is-playing .reel-embed {
  display: block;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.is-active {
  display: flex;
}

.video-modal__content {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  z-index: 10;
}

.video-modal__close:hover {
  color: var(--clr-accent);
}

.video-modal__body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal__body iframe {
  max-width: 100%;
  max-height: 80vh;
}

.reel-play-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%) scale(1.1);
}

.reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
  z-index: 4;
}

.reel-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.reel-profile img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
}

.reel-profile span {
  font-size: 0.85rem;
  font-weight: 600;
}

.reel-caption {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  /* === MOBILE REELS - Premium Instagram Style === */
  .instagram-reels {
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
  }
  
  .instagram-reels .section-header {
    margin-bottom: var(--space-lg);
    padding: 0 var(--container-padding);
  }
  
  .instagram-reels .section-header__title {
    font-size: 1.4rem;
  }
  
  .instagram-reels .section-header p {
    font-size: 0.85rem;
    display: none;
  }
  
  .reels-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px var(--container-padding) 30px;
    margin: 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .reels-grid::-webkit-scrollbar {
    display: none;
  }
  
  /* İlk öğe için sol padding */
  .reels-grid::before {
    content: '';
    flex: 0 0 calc(var(--container-padding) - 16px);
  }
  
  /* Son öğe için sağ padding */
  .reels-grid::after {
    content: '';
    flex: 0 0 calc(var(--container-padding) - 16px);
  }

  .reel-item {
    flex: 0 0 160px;
    scroll-snap-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
  }
  
  .phone-frame {
    max-width: 100%;
    margin: 0;
    border-radius: 24px;
    padding: 6px;
    border-width: 3px;
    border-color: #2a2a2a;
    box-shadow: 
      0 10px 30px rgba(0,0,0,0.5),
      0 0 0 1px rgba(255,255,255,0.05),
      inset 0 1px 0 rgba(255,255,255,0.1);
    transform: perspective(800px) rotateY(0deg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  }
  
  .phone-frame:hover {
    transform: perspective(800px) rotateY(0deg) translateY(-8px) scale(1.02);
    box-shadow: 
      0 20px 50px rgba(0,0,0,0.6),
      0 0 0 1px rgba(59, 130, 246, 0.3),
      0 0 30px rgba(59, 130, 246, 0.15);
  }
  
  .phone-notch {
    width: 35%;
    height: 16px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  
  .phone-screen {
    border-radius: 18px;
  }
  
  .reel-play-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.3);
  }
  
  .reel-play-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .reel-overlay {
    padding: 12px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
  }
  
  .reel-profile {
    gap: 6px;
    margin-bottom: 4px;
  }
  
  .reel-profile img {
    width: 18px;
    height: 18px;
  }
  
  .reel-profile span {
    font-size: 0.7rem;
  }
  
  .reel-caption {
    font-size: 0.65rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    line-height: 1.3;
  }
  
  /* Reels "Tümünü Gör" butonu mobilde */
  .instagram-reels .text-center {
    margin-top: var(--space-lg);
  }
  
  .instagram-reels .btn--secondary {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ULTIMATE MOBILE OPTIMIZATION - 576px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 576px) {
  /* Root spacing adjustments */
  :root {
    --container-padding: 16px;
  }
  
  /* === TYPOGRAPHY MOBILE === */
  .h1, h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.2;
  }
  
  .h2, h2 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.25;
  }
  
  .h3, h3 {
    font-size: clamp(1.1rem, 4vw, 1.25rem);
  }
  
  /* === GLOBAL SECTIONS === */
  section {
    padding: var(--space-2xl) 0;
  }
  
  /* === BUTTONS TOUCH FRIENDLY === */
  .btn {
    min-height: 48px;
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  
  .btn--sm {
    min-height: 40px;
    padding: 10px 16px;
  }
  
  .btn--lg {
    min-height: 56px;
    padding: 16px 28px;
  }
  
  /* === HEADER MOBILE === */
  .header {
    padding: var(--space-sm) 0;
  }
  
  .logo {
    max-width: 100px;
  }
  
  /* === HERO ULTRA COMPACT === */
  .hero {
    min-height: auto;
    padding: 100px 0 var(--space-2xl);
  }
  
  .hero__badge {
    padding: 8px 12px;
    font-size: 0.7rem;
    gap: 6px;
  }
  
  .hero__title {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    margin-bottom: var(--space-md);
  }
  
  .hero__subtitle {
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-sm);
  }
  
  .hero__cta {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }
  
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* === SERVICES GRID === */
  .services__grid {
    gap: var(--space-md);
  }
  
  .service-card {
    border-radius: var(--radius-lg);
  }
  
  .service-card__image {
    height: 140px;
  }
  
  .service-card__content {
    padding: var(--space-md);
  }
  
  .service-card__title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
  }
  
  .service-card__description {
    font-size: 0.8rem;
    margin-bottom: var(--space-md);
  }
  
  /* === FEATURES MOBILE === */
  .features-grid {
    gap: var(--space-sm);
  }
  
  .feature-item {
    padding: var(--space-md);
    gap: var(--space-sm);
  }
  
  .feature-item__icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .feature-item__title {
    font-size: 0.85rem;
  }
  
  .feature-item__text {
    font-size: 0.75rem;
  }
  
  /* === GALLERY MOBILE === */
  .gallery-grid {
    gap: var(--space-xs);
  }
  
  .gallery-item {
    border-radius: var(--radius-md);
  }
  
  .gallery-item__overlay {
    padding: var(--space-sm);
  }
  
  .gallery-item__badge {
    font-size: 0.6rem;
    padding: 4px 8px;
  }
  
  .gallery-item__title {
    font-size: 0.7rem;
  }
  
  .gallery-item__subtitle {
    font-size: 0.6rem;
  }
  
  /* === CTA SECTION === */
  .cta {
    padding: var(--space-2xl) 0;
  }
  
  .cta__content {
    padding: 0 var(--space-sm);
  }
  
  .cta__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }
  
  .cta__subtitle {
    font-size: 0.85rem;
    margin-bottom: var(--space-lg);
  }
  
  /* === AI SIMULATOR === */
  .ai-section {
    padding: var(--space-2xl) 0;
  }
  
  .ai-simulator {
    border-radius: var(--radius-lg);
    padding: var(--space-md);
  }
  
  .ai-simulator__header {
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
  }
  
  .ai-header__title {
    font-size: 0.9rem;
  }
  
  .ai-messages {
    min-height: 200px;
    padding-right: var(--space-xs);
    gap: var(--space-sm);
  }
  
  .ai-message {
    max-width: 90%;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8rem;
    border-radius: var(--radius-md);
  }
  
  .ai-input-container {
    padding: var(--space-sm);
    gap: var(--space-xs);
  }
  
  .ai-input {
    padding: var(--space-sm) var(--space-md);
    font-size: 16px;
  }
  
  .ai-submit {
    min-width: 44px;
    height: 44px;
  }
  
  /* === TESTIMONIALS === */
  .testimonial-card {
    padding: var(--space-md);
  }
  
  .testimonial-card__text {
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
  }
  
  .testimonial-author__image {
    width: 36px;
    height: 36px;
  }
  
  .testimonial-author__name {
    font-size: 0.85rem;
  }
  
  .testimonial-author__title {
    font-size: 0.7rem;
  }
  
  .testimonial-card__rating svg {
    width: 14px;
    height: 14px;
  }
  
  /* === FOOTER MOBILE === */
  .footer {
    padding: var(--space-2xl) 0 var(--space-md);
  }
  
  .footer__grid {
    gap: var(--space-lg);
  }
  
  .footer__brand-logo {
    max-width: 90px;
  }
  
  .footer__brand-desc {
    font-size: 0.8rem;
  }
  
  .footer__col h4 {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
  }
  
  .footer__links li a,
  .footer__contact li {
    font-size: 0.8rem;
    padding: var(--space-xs) 0;
  }
  
  .footer__social a {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .footer__bottom {
    padding-top: var(--space-md);
    font-size: 0.7rem;
  }
  
  /* === WHATSAPP FAB === */
  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    padding: 0;
    gap: 0;
    justify-content: center;
  }
  
  /* === INTERNAL PAGE HERO === */
  .page-hero {
    padding: 120px 0 var(--space-xl);
    min-height: auto;
  }
  
  .page-hero__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .page-hero__subtitle {
    font-size: 0.9rem;
  }
  
  /* === SERVICES DETAIL PAGE === */
  .services-detail__grid {
    gap: var(--space-md);
  }
  
  .service-detail-card {
    padding: var(--space-md);
  }
  
  .service-detail-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
  }
  
  .service-detail-card__title {
    font-size: 1rem;
  }
  
  .service-detail-card__text {
    font-size: 0.8rem;
  }
  
  /* Benefits */
  .benefit-item {
    padding: var(--space-sm);
    gap: var(--space-sm);
  }
  
  .benefit-item__icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .benefit-item span {
    font-size: 0.75rem;
  }
  
  /* === ABOUT PAGE === */
  .about-story__content {
    gap: var(--space-lg);
  }
  
  .about-story__text h2 {
    font-size: 1.25rem;
  }
  
  .about-story__text p {
    font-size: 0.85rem;
  }
  
  /* Values */
  .values-grid {
    gap: var(--space-sm);
  }
  
  .value-card {
    padding: var(--space-md);
  }
  
  .value-card__icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .value-card__title {
    font-size: 0.9rem;
  }
  
  .value-card__text {
    font-size: 0.75rem;
  }
  
  /* Team */
  .team-grid {
    gap: var(--space-sm);
  }
  
  .team-card__image {
    height: 140px;
  }
  
  .team-card__name {
    font-size: 0.9rem;
  }
  
  .team-card__role {
    font-size: 0.7rem;
  }
  
  /* Brands */
  .brands-grid {
    gap: var(--space-sm);
  }
  
  .brand-item {
    padding: var(--space-sm);
    min-height: 60px;
  }
  
  .brand-item span {
    font-size: 0.65rem;
  }
  
  /* === CONTACT PAGE === */
  .contact-info-card {
    padding: var(--space-md);
  }
  
  .contact-method {
    padding: var(--space-sm);
  }
  
  .contact-method__icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .contact-method__title {
    font-size: 0.8rem;
  }
  
  .contact-method__text {
    font-size: 0.75rem;
  }
  
  /* Working Hours */
  .working-hours li {
    padding: var(--space-xs) 0;
    font-size: 0.8rem;
  }
  
  /* Map */
  .map-container {
    height: 200px;
  }
  
  .map-overlay__card {
    padding: var(--space-sm) var(--space-md);
  }
  
  .map-overlay__card h3 {
    font-size: 0.85rem;
  }
  
  .map-overlay__card p {
    font-size: 0.75rem;
  }
  
  /* === FAQ === */
  .faq-item {
    padding: var(--space-sm) var(--space-md);
  }
  
  .faq-item__question {
    font-size: 0.85rem;
  }
  
  .faq-item__answer {
    font-size: 0.75rem;
  }
  
  /* === BLOG PAGE === */
  .blog-grid {
    gap: var(--space-md);
  }
  
  .blog-card {
    border-radius: var(--radius-md);
  }
  
  .blog-card__image {
    aspect-ratio: 16/10;
  }
  
  .blog-card__content {
    padding: var(--space-md);
  }
  
  .blog-card__date {
    font-size: 0.65rem;
  }
  
  .blog-card__title {
    font-size: 0.95rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .blog-card__excerpt {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  /* Blog Detail */
  .blog-detail__content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .blog-detail__content h1 {
    font-size: 1.25rem;
  }
  
  .blog-detail__content p,
  .blog-detail__content li {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  /* === MODAL 576px OPTIMIZATIONS === */
  .modal-overlay {
    padding: var(--space-sm);
  }
  
  .modal {
    margin: 0;
    border-radius: var(--radius-lg);
    max-height: calc(100vh - var(--space-md));
  }
  
  .modal__header,
  .modal__body {
    padding: var(--space-md);
  }
  
  .modal__title {
    font-size: 1.1rem;
  }
  
  .modal__close {
    width: 36px;
    height: 36px;
  }
  
  .modal__form .form-group input,
  .modal__form .form-group select,
  .modal__form .form-group textarea {
    font-size: 16px; /* iOS zoom prevention */
    padding: 14px var(--space-md);
  }
  
  .modal__footer {
    padding: var(--space-md);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ULTIMATE MOBILE OPTIMIZATION - 480px (Very Small Screens)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --container-padding: 12px;
  }
  
  /* === HERO ULTRA SMALL === */
  .hero {
    padding: 90px 0 var(--space-xl);
  }
  
  .hero__title {
    font-size: clamp(1.3rem, 8vw, 1.8rem);
  }
  
  .hero__subtitle {
    font-size: 0.85rem;
  }
  
  /* === STATS EXTRA COMPACT === */
  .stat-item {
    padding: var(--space-sm);
  }
  
  .stat-item__icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  
  .stat-item__value {
    font-size: 1.25rem;
  }
  
  .stat-item__label {
    font-size: 0.65rem;
  }
  
  /* === SERVICES ULTRA COMPACT === */
  .service-card__image {
    height: 120px;
  }
  
  .service-card__content {
    padding: var(--space-sm) var(--space-md);
  }
  
  .service-card__title {
    font-size: 0.95rem;
  }
  
  .service-card__description {
    font-size: 0.75rem;
  }
  
  /* === GALLERY ULTRA COMPACT === */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  
  .gallery-item__badge {
    font-size: 0.55rem;
    padding: 3px 6px;
  }
  
  .gallery-item__title {
    font-size: 0.65rem;
  }
  
  /* === REELS ULTRA COMPACT === */
  .reel-item {
    flex: 0 0 140px;
  }
  
  .phone-frame {
    border-radius: 20px;
    padding: 4px;
    border-width: 2px;
  }
  
  .phone-notch {
    height: 12px;
  }
  
  .phone-screen {
    border-radius: 16px;
  }
  
  .reel-play-btn {
    width: 36px;
    height: 36px;
  }
  
  .reel-play-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .reel-overlay {
    padding: 10px 8px;
  }
  
  .reel-profile img {
    width: 16px;
    height: 16px;
  }
  
  .reel-profile span {
    font-size: 0.6rem;
  }
  
  .reel-caption {
    font-size: 0.6rem;
  }
  
  /* === FOOTER ULTRA COMPACT === */
  .footer__grid {
    gap: var(--space-md);
  }
  
  .footer__brand-desc {
    font-size: 0.75rem;
  }
  
  .footer__col h4 {
    font-size: 0.85rem;
  }
  
  .footer__links li a,
  .footer__contact li {
    font-size: 0.75rem;
  }
  
  .footer__social a {
    width: 32px;
    height: 32px;
  }
  
  /* === INTERNAL PAGES ULTRA COMPACT === */
  .page-hero {
    padding: 100px 0 var(--space-lg);
  }
  
  .page-hero__title {
    font-size: 1.3rem;
  }
  
  .page-hero__subtitle {
    font-size: 0.8rem;
  }
  
  /* === CONTACT ULTRA COMPACT === */
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }
  
  /* === MODAL ULTRA COMPACT === */
  .modal {
    border-radius: var(--radius-md);
  }
  
  .modal__header,
  .modal__body {
    padding: var(--space-sm) var(--space-md);
  }
  
  .modal__title {
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE SMOOTH SCROLL & TOUCH ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Smooth scrolling for all scrollable elements */
  * {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Prevent text selection on interactive elements */
  .btn, 
  .nav-link,
  .service-card,
  .gallery-item,
  .reel-item,
  .testimonial-card,
  .faq-item {
    -webkit-user-select: none;
    user-select: none;
  }
  
  /* Tap highlight color */
  a, button, .btn {
    -webkit-tap-highlight-color: rgba(59, 130, 246, 0.2);
  }
  
  /* Better touch targets */
  .nav-link,
  .footer__links a,
  .mobile-nav__link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  /* Disable hover effects on touch devices */
  @media (hover: none) {
    .service-card:hover,
    .gallery-item:hover,
    .blog-card:hover,
    .team-card:hover {
      transform: none;
    }
    
    .phone-frame:hover {
      transform: perspective(800px) rotateY(0deg) translateY(0) scale(1);
    }
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDSCAPE MOBILE OPTIMIZATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 var(--space-xl);
  }
  
  .hero__title {
    font-size: 1.5rem;
  }
  
  .page-hero {
    padding: 80px 0 var(--space-md);
    min-height: auto;
  }
  
  .modal {
    max-height: 90vh;
  }
  
  .ai-messages {
    min-height: 150px;
  }
}

@media (max-width: 420px) {
  .mobile-lang-compact { display: none; }
  .logo__name { max-width: 62vw; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA Section Full (About Page Variant)
   ───────────────────────────────────────────────────────────────────────────── */
.cta-section--full {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.cta-section--full .cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section--full .cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section--full .cta-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--color-bg-primary) 0%, rgba(3, 5, 8, 0.85) 50%, rgba(3, 5, 8, 0.7) 100%);
  pointer-events: none;
}

.cta-section--full .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cta-section--full .cta-section__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section--full h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  background: linear-gradient(to bottom right, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.cta-section--full p {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Mobile Adjustments for CTA Full */
@media (max-width: 768px) {
  .cta-section--full {
    min-height: 50vh;
    padding: var(--space-3xl) 0;
  }
  
  .cta-section--full .cta-section__bg img {
    object-position: center center !important;
  }
}