/* Comfortia - Premium Ayak Sağlığı & Kişiye Özel Tabanlık Tasarım Sistemi */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Core Color Tokens */
  --brand-navy: #0A192F;
  --brand-navy-light: #1E293B;
  --brand-blue: #0284C7;
  --brand-blue-hover: #0369A1;
  --brand-light-blue: #E0F2FE;
  --brand-emerald: #10B981;
  --brand-emerald-hover: #059669;
  --brand-emerald-light: #D1FAE5;
  --brand-accent: #38BDF8;

  --bg-primary: #F8FAFC;
  --bg-secondary: #F1F5F9;
  --bg-card: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --border-light: #F1F5F9;

  /* Elevation & Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 16px 32px -6px rgba(2, 132, 199, 0.18);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--brand-navy);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Preloader Screen (Smooth Single Font Intro Opening) */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content-box {
  text-align: center;
  animation: preloaderFade 0.6s ease-out;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

@keyframes preloaderFade {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.preloader-logo-img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(10, 25, 47, 0.15);
  border: 3px solid #0284C7;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.preloader-title {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.85rem;
  letter-spacing: 2px;
  color: var(--brand-navy);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.preloader-tagline {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--brand-blue);
  letter-spacing: 1px;
  font-size: 0.85rem;
  font-weight: 700;
}

.preloader-progress-bar {
  margin: 2rem auto 0 auto;
  width: 160px;
  height: 3px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-fill {
  width: 50%;
  height: 100%;
  background: var(--brand-navy);
  border-radius: 3px;
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Top Bar Header */
.top-bar {
  background: #061121;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left, .top-bar-center, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-right a {
  color: white;
  margin-left: 1rem;
  font-weight: 600;
}

/* Header & Navbar Sticky & Shrink */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  z-index: 1000;
  background: var(--brand-navy);
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  height: 62px;
  box-shadow: 0 8px 30px rgba(10, 25, 47, 0.4);
  border-bottom-color: rgba(56, 189, 248, 0.25);
}

.header.scrolled .nav-container {
  height: 62px;
}

.header.scrolled .logo-img {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
}

.nav-divider {
  color: rgba(2, 132, 199, 0.35);
  font-weight: 300;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  user-select: none;
  padding: 0 0.15rem;
}

/* Nav Dropdowns */
.nav-menu .dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0A192F;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  display: none;
  list-style: none;
  z-index: 1010;
}

.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease;
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: rgba(2, 132, 199, 0.2);
  color: var(--brand-accent);
}

.mobile-cta-item {
  display: none;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-whatsapp-btn {
  display: none;
  color: #25D366;
  font-size: 1.4rem;
  padding: 0.4rem;
}

.header.scrolled {
  box-shadow: 0 8px 30px rgba(10, 25, 47, 0.4);
  border-bottom-color: rgba(56, 189, 248, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  height: 100%;
}

.logo-img {
  height: 46px;
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  max-width: 46px;
  max-height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  transition: var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.05);
  border-color: var(--brand-accent);
}

/* Animated Distinct Logo Header */
.logo-animated {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform 0.35s ease;
}

.logo-animated:hover {
  transform: scale(1.02);
}

.logo-badge-ring {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #0284C7 0%, #38BDF8 50%, #FBBF24 100%);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.4s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-animated:hover .logo-badge-ring {
  transform: rotate(360deg);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.75), 0 0 10px rgba(251, 191, 36, 0.6);
}

.logo-img-round {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  border: 2px solid white;
}

.logo-title-sparkle {
  font-weight: 900;
  font-size: 1.45rem;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-badge-pill {
  font-size: 0.62rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
  color: #FFFFFF;
  padding: 0.15rem 0.45rem;
  border-radius: 12px;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.4);
}

.logo-tagline-glowing {
  font-size: 0.68rem;
  font-weight: 700;
  color: #38BDF8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
  line-height: 1;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 2.25rem;
}

/* Distinct Glowing Header CTA Button ("Ücretsiz Ayak Analizi Randevusu") */
.header-cta-glowing {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.5), 0 4px 15px rgba(10, 25, 47, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.header-cta-glowing::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.header-cta-glowing:hover::before {
  left: 100%;
}

.header-cta-glowing:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.8), 0 8px 25px rgba(2, 132, 199, 0.5);
  border-color: #FFFFFF;
  background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
}

.pulse-icon {
  animation: pulseIconAnim 1.8s infinite alternate;
  color: #FBBF24;
}

@keyframes pulseIconAnim {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.25); opacity: 1; filter: drop-shadow(0 0 6px #FBBF24); }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: white;
  cursor: pointer;
  padding: 0.4rem;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.925rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-blue);
  color: white;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
}

.btn-secondary {
  background: var(--brand-navy);
  color: white;
  box-shadow: 0 4px 14px rgba(10, 25, 47, 0.2);
}

.btn-secondary:hover {
  background: var(--brand-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 25, 47, 0.3);
}

.btn-whatsapp {
  background: var(--brand-emerald);
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.btn-whatsapp:hover {
  background: var(--brand-emerald-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.btn-outline {
  border-color: var(--border-color);
  color: var(--text-primary);
  background: white;
}

.btn-outline:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: var(--brand-light-blue);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: var(--brand-light-blue);
  color: var(--brand-blue);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--brand-navy);
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Hero Section */
.hero {
  padding-top: 130px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #F1F5F9 0%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--brand-navy);
  margin-bottom: 1.25rem;
}

.text-gradient {
  color: var(--brand-blue);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

/* Ultra-Premium Animated Intro Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0F172A 0%, #0A192F 100%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s ease, transform 0.7s ease;
  color: white;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.05);
}

.preloader-content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.preloader-emblem {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring-outer {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3.5px solid rgba(56, 189, 248, 0.15);
  border-top-color: #38BDF8;
  border-right-color: #0284C7;
  animation: preloaderSpin 1.4s linear infinite;
  box-shadow: 0 0 30px rgba(2, 132, 199, 0.45);
}

.preloader-ring-inner {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 2px solid rgba(251, 191, 36, 0.2);
  border-bottom-color: #FBBF24;
  animation: preloaderSpinReverse 2.2s linear infinite;
}

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

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

.preloader-logo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.6);
  animation: pulsePreloaderLogo 2s ease-in-out infinite alternate;
}

@keyframes pulsePreloaderLogo {
  0% { transform: scale(0.96); box-shadow: 0 0 20px rgba(56, 189, 248, 0.4); }
  100% { transform: scale(1.04); box-shadow: 0 0 40px rgba(56, 189, 248, 0.8), 0 0 15px rgba(251, 191, 36, 0.5); }
}

.preloader-title {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.preloader-tagline {
  font-size: 0.95rem;
  color: #38BDF8;
  letter-spacing: 1.2px;
  font-weight: 700;
  margin-bottom: 2rem;
}

.preloader-progress-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #0284C7 0%, #38BDF8 50%, #FBBF24 100%);
  border-radius: 4px;
  animation: fillProgress 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fillProgress {
  to { width: 100%; }
}

/* Hero Floating Store Badges Showcase */
.hero-visual-card-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.hero-float-badge {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(2, 132, 199, 0.2);
  border-radius: 70px;
  padding: 0.9rem 1.6rem 0.9rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  box-shadow: 0 15px 40px rgba(10, 25, 47, 0.14);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.hero-float-badge:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 22px 50px rgba(2, 132, 199, 0.28), 0 0 20px rgba(56, 189, 248, 0.35);
  border-color: #0284C7;
  background: #FFFFFF;
}

.hero-badge-img-box {
  width: 110px;
  height: 110px;
  min-width: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #0284C7;
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.4);
  flex-shrink: 0;
}

.hero-badge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-float-badge:hover .hero-badge-img {
  transform: scale(1.14);
}

.hero-badge-text-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-badge-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge-text-box strong {
  font-size: 1.15rem;
  color: var(--brand-navy);
  font-weight: 800;
}

.hero-badge-text-box small {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-badge-text-box small {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Floating Bouncing Animations */
.floating-bounce-1 {
  animation: floatBounce1 4s ease-in-out infinite alternate;
  align-self: flex-start;
  margin-left: 0;
}

.floating-bounce-2 {
  animation: floatBounce2 4.5s ease-in-out infinite alternate;
  align-self: flex-end;
  margin-right: 0;
}

.floating-bounce-3 {
  animation: floatBounce3 3.8s ease-in-out infinite alternate;
  align-self: flex-start;
  margin-left: 1.5rem;
}

@keyframes floatBounce1 {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

@keyframes floatBounce2 {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

@keyframes floatBounce3 {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* Trust Strip Below Hero */
.trust-strip {
  background: white;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-navy);
}

.trust-item i {
  color: var(--brand-blue);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* 4-Step Process Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-light-blue);
}

.step-num-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-light-blue);
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Apple-Style Premium Interactive & Auto-Looping Insole Showcase */
.apple-insole-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  padding: 5.5rem 0;
  position: relative;
}

.apple-insole-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.apple-insole-stage {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 500px;
  margin: 0 auto;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Realistic Authentic SVG Shoe Insole Silhouette Contour */
.apple-insole-layer {
  position: absolute;
  width: 200px;
  height: 400px;
  transition: filter 0.4s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 1rem 1.5rem 1rem;
  color: white;
}

.apple-insole-layer svg.insole-svg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: drop-shadow(0 15px 25px rgba(10, 25, 47, 0.25));
}

.apple-insole-layer:hover {
  filter: brightness(1.1);
}

.apple-insole-layer.layer-top {
  z-index: 4;
  animation: autoSeparateTop 5.5s cubic-bezier(0.45, 0, 0.15, 1) infinite;
}

.apple-insole-layer.layer-mid-shock {
  z-index: 3;
  animation: autoSeparateShock 5.5s cubic-bezier(0.45, 0, 0.15, 1) infinite;
}

.apple-insole-layer.layer-mid-spine {
  z-index: 2;
  animation: autoSeparateSpine 5.5s cubic-bezier(0.45, 0, 0.15, 1) infinite;
}

.apple-insole-layer.layer-base {
  z-index: 1;
  animation: autoSeparateBase 5.5s cubic-bezier(0.45, 0, 0.15, 1) infinite;
}

/* Automatic Continuous Exploding & Merging Keyframes */
@keyframes autoSeparateTop {
  0%, 15% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(0) translateZ(0);
  }
  45%, 75% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(-155px) translateZ(110px);
  }
  95%, 100% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(0) translateZ(0);
  }
}

@keyframes autoSeparateShock {
  0%, 15% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(0) translateZ(0);
  }
  45%, 75% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(-50px) translateZ(45px);
  }
  95%, 100% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(0) translateZ(0);
  }
}

@keyframes autoSeparateSpine {
  0%, 15% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(0) translateZ(0);
  }
  45%, 75% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(55px) translateZ(-20px);
  }
  95%, 100% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(0) translateZ(0);
  }
}

@keyframes autoSeparateBase {
  0%, 15% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(0) translateZ(0);
  }
  45%, 75% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(155px) translateZ(-85px);
  }
  95%, 100% {
    transform: rotateX(54deg) rotateZ(-22deg) translateY(0) translateZ(0);
  }
}

.layer-arch-line {
  position: absolute;
  left: 0;
  top: 32%;
  width: 26px;
  height: 95px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 0 50px 50px 0;
}

.layer-heel-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 2px dashed rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 0.8rem;
}

.layer-badge-title {
  background: rgba(10, 25, 47, 0.85);
  color: white;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.apple-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.apple-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border-left: 4px solid var(--brand-blue);
}

.apple-info-card.active, .apple-info-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}

.apple-info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--brand-navy);
}

.apple-info-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Tabanlık Nelere Çözüm Olabilir Interactive Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-blue);
}

.solution-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--brand-light-blue);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.solution-card:hover .solution-icon-box {
  background: var(--brand-blue);
  color: white;
  box-shadow: 0 0 16px rgba(2, 132, 199, 0.4);
}

/* Animated Foot Analysis Process Visualizer Stage */
.analysis-visualizer-card {
  background: radial-gradient(circle at center, #0F172A 0%, #0A192F 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 2px solid rgba(56, 189, 248, 0.25);
  box-shadow: var(--shadow-lg);
  color: white;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.analysis-stage-view {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 380px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.85);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(56, 189, 248, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scanner-grid-line {
  position: absolute;
  inset: 0;
  background-size: 25px 25px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}

.scanner-laser-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #38BDF8 50%, transparent 100%);
  box-shadow: 0 0 15px #38BDF8, 0 0 30px #0284C7;
  animation: laserScanVertical 3s ease-in-out infinite alternate;
  z-index: 10;
}

@keyframes laserScanVertical {
  0% { top: 4%; opacity: 0.4; }
  50% { opacity: 1; }
  100% { top: 92%; opacity: 0.4; }
}

.analysis-step-tab {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1rem;
}

.analysis-step-tab.active, .analysis-step-tab:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.analysis-step-tab.active .step-num-badge {
  background: var(--brand-blue);
  color: white;
  box-shadow: 0 0 14px rgba(2, 132, 199, 0.4);
}

/* Keyframe Animations & Visualizer Effects */
.laser-scan-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  background: #0A192F;
}

.laser-scan-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

.laser-sweep-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #38BDF8 50%, transparent 100%);
  box-shadow: 0 0 15px #38BDF8, 0 0 25px #0284C7;
  animation: scanSweep 3.2s ease-in-out infinite alternate;
  z-index: 10;
}

@keyframes scanSweep {
  0% { top: 5%; opacity: 0.3; }
  50% { opacity: 1; }
  100% { top: 92%; opacity: 0.3; }
}

.pulse-point {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulsePoint 1.8s infinite;
  z-index: 11;
}

@keyframes pulsePoint {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.3); box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.animated-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawFootpath 2.5s ease-out forwards;
}

@keyframes drawFootpath {
  to { stroke-dashoffset: 0; }
}

.pulse-spot-circle {
  animation: pulseHeatSpot 1.6s ease-in-out infinite alternate;
}

@keyframes pulseHeatSpot {
  0% { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 1; }
}

/* 3-Step Live Production Flow Progress Bar */
.steps-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2.5rem;
}

.steps-progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border-color);
  z-index: 1;
  transform: translateY(-50%);
}

.steps-progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-emerald) 100%);
  z-index: 2;
  transform: translateY(-50%);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-node {
  position: relative;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  transition: var(--transition);
}

.step-node.active {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: white;
  box-shadow: 0 0 18px rgba(2, 132, 199, 0.4);
}

.step-node.completed {
  border-color: var(--brand-emerald);
  background: var(--brand-emerald);
  color: white;
}

/* Pressure Relief Heatmap Simulator Canvas */
.heatmap-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 380px;
  margin: 0 auto;
  background: radial-gradient(circle at center, #0F172A 0%, #0A192F 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.heatmap-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.85;
  transition: all 0.8s ease;
}

.heatmap-spot.red { background: radial-gradient(circle, #EF4444 0%, transparent 70%); }
.heatmap-spot.yellow { background: radial-gradient(circle, #F59E0B 0%, transparent 70%); }
.heatmap-spot.green { background: radial-gradient(circle, #10B981 0%, transparent 70%); }
.heatmap-spot.blue { background: radial-gradient(circle, #38BDF8 0%, transparent 70%); }

/* Feature Showcase Box */
.feature-showcase {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.benefit-list i {
  color: var(--brand-emerald);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Product Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-light-blue);
}

.category-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.category-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Who Is It For Grid (Kimler Tercih Edebilir) */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.audience-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}

.audience-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-light-blue);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.audience-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Authorized Brand Logos Bar */
/* Authorized Brand Badges Cards */
.brands-section {
  background: white;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.brands-flex {
  display: flex;
  align-items: center;
  justify-content: center;
.brands-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.brand-badge-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(2, 132, 199, 0.16);
  border-radius: var(--radius-lg);
  padding: 1rem 0.85rem 0.85rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(10, 25, 47, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  width: 170px;
  height: 125px;
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.brand-badge-card:nth-child(1) { animation: brandFloat 4s ease-in-out infinite alternate; animation-delay: 0s; }
.brand-badge-card:nth-child(2) { animation: brandFloat 4s ease-in-out infinite alternate; animation-delay: 0.3s; }
.brand-badge-card:nth-child(3) { animation: brandFloat 4s ease-in-out infinite alternate; animation-delay: 0.6s; }
.brand-badge-card:nth-child(4) { animation: brandFloat 4s ease-in-out infinite alternate; animation-delay: 0.9s; }
.brand-badge-card:nth-child(5) { animation: brandFloat 4s ease-in-out infinite alternate; animation-delay: 1.2s; }
.brand-badge-card:nth-child(6) { animation: brandFloat 4s ease-in-out infinite alternate; animation-delay: 1.5s; }

@keyframes brandFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.brand-badge-card:hover {
  transform: translateY(-8px) scale(1.04) !important;
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.25), 0 0 15px rgba(56, 189, 248, 0.3);
  border-color: #0284C7;
  background: #FFFFFF;
}

.brand-logo-container {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  max-width: 130px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%) drop-shadow(0 2px 6px rgba(10,25,47,0.08));
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease, opacity 0.4s ease;
}

/* When user hovers over the brands container, dim all logos to grayscale */
.brands-flex:hover .brand-badge-card .brand-logo-img {
  filter: grayscale(100%);
  opacity: 0.35;
  transform: scale(0.95);
}

.brands-flex:hover .brand-badge-card .brand-name-label {
  opacity: 0.5;
}

/* KEEP the active hovered brand 100% colorful, enlarged, and highlighted */
.brands-flex .brand-badge-card:hover .brand-logo-img {
  filter: grayscale(0%) drop-shadow(0 6px 18px rgba(2, 132, 199, 0.35));
  opacity: 1;
  transform: scale(1.12);
}

.brands-flex .brand-badge-card:hover .brand-name-label {
  opacity: 1;
  color: var(--brand-blue);
}

/* Store & Clinic Photos Grid */
.store-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.store-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 240px;
  position: relative;
}

.store-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* Store Gallery Horizontal Carousel Track */
.store-carousel-wrapper {
  position: relative;
  width: 100%;
}

.store-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.store-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid rgba(2, 132, 199, 0.25);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(10, 25, 47, 0.08);
  transition: all 0.3s ease;
}

.store-carousel-btn:hover {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
  transform: scale(1.1);
}

.store-carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.25rem 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: #38BDF8 transparent;
}

.store-carousel-track::-webkit-scrollbar {
  height: 6px;
}

.store-carousel-track::-webkit-scrollbar-thumb {
  background: #38BDF8;
  border-radius: 10px;
}

/* Insole Product Category Grid (Fullbalance Terlik Modelleri Tarzında Ürün Kartları) */
.insole-models-showcase {
  margin-bottom: 3.5rem;
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.75rem;
  box-shadow: 0 8px 30px rgba(10, 25, 47, 0.03);
}

.insole-model-badge-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #0284C7 !important;
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.15) !important;
}

.insole-model-badge-card:hover .insole-badge-img-box img {
  transform: scale(1.15) rotate(-3deg) !important;
}

.ecom-card:hover {
  transform: translateY(-6px);
  border-color: #0284C7 !important;
  box-shadow: 0 14px 32px rgba(2, 132, 199, 0.16) !important;
}

.ecom-card:hover .ecom-img {
  transform: scale(1.12) rotate(-4deg) !important;
}

.ecom-cat-card:hover {
  transform: translateY(-6px);
  border-color: #0284C7 !important;
  box-shadow: 0 14px 32px rgba(2, 132, 199, 0.16) !important;
}

.ecom-cat-card:hover .ecom-cat-img {
  transform: scale(1.08) !important;
}

@media (max-width: 1024px) {
  .ecommerce-product-row,
  .ecommerce-category-row {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .ecommerce-product-row,
  .ecommerce-category-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.insole-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.insole-product-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.04);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insole-product-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-blue);
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.16);
}

.insole-product-img-box {
  height: 210px;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.insole-product-img {
  max-width: 90%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(10, 25, 47, 0.16));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.insole-product-card:hover .insole-product-img {
  transform: scale(1.08) translateY(-4px);
}

.insole-product-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--brand-navy);
  background: #FFFFFF;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.08);
  border: 1px solid var(--border-color);
}

.insole-product-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.4rem;
}

.insole-product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.insole-product-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: var(--brand-navy);
  font-weight: 600;
}

.insole-product-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.insole-product-bullets i {
  color: #059669;
  font-size: 0.85rem;
}

.insole-slide-card-img-box {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.insole-slide-card img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(10, 25, 47, 0.12));
  transition: transform 0.35s ease;
}

.insole-slide-card:hover img {
  transform: scale(1.06);
}

.store-photo-card {
  width: 320px;
  min-width: 320px;
  height: 220px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(10, 25, 47, 0.1);
  border: 1.5px solid rgba(2, 132, 199, 0.15);
}

.store-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.store-photo-card:hover .store-photo-img {
  transform: scale(1.08);
}

/* Sık Sorulan Sorular Glassmorphism Floating Bubble Accordion */
/* Glassmorphism Floating Bubble Accordion (Sık Sorulan Sorular) */
.faq-glass-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #E2E8F0 100%);
  padding: 5.5rem 0;
  overflow: hidden;
}

.faq-glass-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 380px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(2, 132, 199, 0) 70%);
  pointer-events: none;
  filter: blur(50px);
}

.faq-bubble-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  position: relative;
  z-index: 2;
}

.faq-bubble-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  cursor: pointer;
}

.faq-bubble-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(56, 189, 248, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(2, 132, 199, 0.12);
}

.faq-bubble-card.active {
  background: #FFFFFF;
  border-color: #0284C7;
  box-shadow: 0 20px 48px rgba(2, 132, 199, 0.16);
  transform: translateY(-4px) scale(1.01);
}

.faq-bubble-header {
  padding: 1.35rem 1.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.faq-bubble-title-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.faq-bubble-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
  transition: all 0.35s ease;
}

.faq-bubble-card.active .faq-bubble-icon {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}

.faq-bubble-question {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0A192F;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-bubble-card.active .faq-bubble-question {
  color: #0284C7;
}

.faq-bubble-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-bubble-card:hover .faq-bubble-toggle {
  background: #E0F2FE;
  color: #0284C7;
}

.faq-bubble-card.active .faq-bubble-toggle {
  background: #0284C7;
  color: #FFFFFF;
  transform: rotate(180deg);
}

.faq-bubble-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  padding: 0 1.85rem;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, transform 0.35s ease, padding 0.35s ease;
}

.faq-bubble-card.active .faq-bubble-content {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  padding: 0 1.85rem 1.65rem 4.8rem;
}

.faq-answer-text {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.75;
  margin: 0;
  border-top: 1px dashed #E2E8F0;
  padding-top: 1rem;
}

/* Contact & Location Section (Podolog Merva Üçok Stilinde) */
#contact {
  background: var(--bg-primary);
  padding: 5rem 0;
}

.contact-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 3.5rem 3rem;
  box-shadow: 0 10px 35px rgba(10, 25, 47, 0.05);
  border: 1.5px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.map-wrapper-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 45px rgba(10, 25, 47, 0.16);
  border: 8px solid #FFFFFF;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.map-wrapper-circle:hover {
  transform: scale(1.03);
  box-shadow: 0 22px 55px rgba(2, 132, 199, 0.22);
}

@media (max-width: 991px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
  }
  .map-wrapper-circle {
    width: 290px;
    height: 290px;
  }
}

/* Footer */
.footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 4.5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.footer-col h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--brand-accent);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Appointment Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(15px);
  transition: var(--transition);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-secondary);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: var(--brand-navy);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.925rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Animated Viewport Floating Contact Buttons (Bottom-Right Viewport, Sleek 60px, Independent Logo Animations) */
.floating-contact-buttons {
  position: fixed !important;
  right: 24px !important;
  bottom: 32px !important;
  top: auto !important;
  transform: none !important;
  z-index: 2147483647 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-items: center !important;
  pointer-events: auto !important;
}

.floating-contact-btn {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.85rem !important;
  text-decoration: none !important;
  position: relative !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(0.6) translateY(20px) !important;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, visibility 0.5s ease !important;
  cursor: pointer !important;
  outline: none !important;
}

/* Sequential Staggered Entrance Animations after Intro Preloader */
.floating-contact-buttons.show .floating-contact-btn {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1) translateY(0) !important;
}

.floating-contact-buttons.show .floating-contact-instagram {
  transition-delay: 0.1s !important;
}

.floating-contact-buttons.show .floating-contact-whatsapp {
  transition-delay: 0.22s !important;
}

.floating-contact-buttons.show .floating-contact-phone {
  transition-delay: 0.34s !important;
}

/* Hover Floating Animation */
.floating-contact-btn:hover,
.floating-contact-btn:focus-visible {
  transform: scale(1.15) translateY(-4px) !important;
  color: #FFFFFF !important;
}

/* 1. Instagram Button (Top - Multi-Color Radial Gradient + 3D Sway Animation) */
@keyframes instaFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(4deg);
  }
}

.floating-contact-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  box-shadow: 0 10px 25px rgba(214, 36, 159, 0.45) !important;
  animation: instaFloat 3.6s ease-in-out infinite 0.8s !important;
}

.floating-contact-instagram:hover {
  box-shadow: 0 16px 36px rgba(214, 36, 159, 0.7) !important;
}

/* 2. WhatsApp Button (Middle - Solid Vibrant Green + Double Ring Pulse & Bounce Animation) */
@keyframes waBouncePulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65), 0 10px 25px rgba(37, 211, 102, 0.45);
  }
  50% {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 14px 28px rgba(37, 211, 102, 0.55);
  }
}

.floating-contact-whatsapp {
  background-color: #25D366 !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45) !important;
  animation: waBouncePulse 2.8s ease-in-out infinite 0.6s !important;
}

.floating-contact-whatsapp:hover {
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.7) !important;
}

/* 3. Telefon Button (Bottom - Dark Navy + Phone Ring Vibration Shake) */
@keyframes phoneRingShake {
  0%, 80%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  84% {
    transform: translateY(-4px) rotate(-12deg);
  }
  88% {
    transform: translateY(-4px) rotate(12deg);
  }
  92% {
    transform: translateY(-4px) rotate(-10deg);
  }
  96% {
    transform: translateY(-4px) rotate(10deg);
  }
}

.floating-contact-phone {
  background-color: #0A192F !important;
  border: 3.5px solid #FFFFFF !important;
  box-shadow: 0 10px 25px rgba(10, 25, 47, 0.45) !important;
  animation: phoneRingShake 4.2s ease-in-out infinite 1.2s !important;
}

.floating-contact-phone:hover {
  box-shadow: 0 16px 36px rgba(10, 25, 47, 0.7) !important;
}

/* Hide text tooltips completely */
.floating-contact-tooltip {
  display: none !important;
}

/* Mobile Responsive (Sağ Alt Köşe) */
@media (max-width: 768px) {
  .floating-contact-buttons {
    right: 14px !important;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px)) !important;
    gap: 10px !important;
  }
  .floating-contact-btn {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.5rem !important;
  }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid, .contact-card, .apple-insole-container {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--brand-navy);
    flex-direction: column;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-showcase, .contact-card {
    padding: 1.75rem;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 40px;
  }
}
