/* ============================
   BIÇAKCI KOLTUK YIKAMA
   Tasarım Sistemi & Stiller
   ============================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand Colors - Teal palette matching logo */
  --primary-900: #044f4c;
  --primary-800: #0a6b63;
  --primary-700: #0f766e;
  --primary-600: #14919b;
  --primary-500: #2dd4bf;
  --primary-400: #5eead4;
  --primary-300: #99f6e4;
  --primary-200: #ccfbf1;
  --primary-100: #f0fdfa;

  /* Accent */
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --accent-light: #e0f2fe;

  /* Gold */
  --gold: #f59e0b;
  --gold-dark: #d97706;

  /* Neutrals */
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;

  /* Semantic */
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 30px rgba(45,212,191,0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Z-index */
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-whatsapp: 700;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --navbar-height: 80px;
}

/* ---- CSS Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul, ol { list-style: none; }

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- Layout ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-dark {
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent));
  border-radius: var(--radius-full);
}

.section-header p {
  max-width: 600px;
  margin: var(--space-lg) auto 0;
  font-size: 1.1rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(14,145,155,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14,145,155,0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-700);
  border-color: var(--primary-500);
}

.btn-secondary:hover {
  background: var(--primary-100);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,158,11,0.4);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: 1rem 0;
  transition: all var(--transition-slow);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: shimmer 3s infinite linear;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.5px;
  transition: color var(--transition-base);
}

.logo-sub {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.navbar.scrolled .logo-name { color: var(--gray-900); }
.navbar.scrolled .logo-sub { color: var(--gray-500); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-500);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after { width: 60%; }

.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--white); font-weight: 600; }

.navbar.scrolled .nav-link { color: var(--gray-600); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--primary-700); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, var(--primary-500), var(--accent));
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-base);
  box-shadow: 0 2px 10px rgba(45,212,191,0.3);
}

.nav-cta svg { width: 18px; height: 18px; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(45,212,191,0.4);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.navbar.scrolled .nav-toggle span { background: var(--gray-800); }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Minimalist Components (No-AI look) ---- */
.hero-minimal {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--gray-50);
  padding-top: var(--navbar-height);
}

.hero-minimal-content {
  max-width: 800px;
}

.badge-minimal {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--gray-900);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-xl);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: var(--space-lg);
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--gray-600);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-solid-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--gray-900);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: 1px solid var(--gray-900);
}

.btn-solid-dark:hover {
  background: transparent;
  color: var(--gray-900);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--gray-900);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--gray-900);
  transition: all 0.2s ease;
}

.btn-outline-dark:hover {
  background: var(--gray-900);
  color: var(--white);
}

.minimal-header {
  margin-bottom: var(--space-3xl);
}

.minimal-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

.minimal-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
}

.text-center {
  text-align: center;
}

/* Services Minimal List */
.services-minimal {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.service-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-200);
}

.service-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--gray-200);
  transition: padding-left 0.3s ease;
  color: var(--gray-900);
}

.service-list-item:hover {
  padding-left: var(--space-md);
  color: var(--primary-700);
}

.srv-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.srv-arrow {
  font-size: 2rem;
  font-weight: 300;
}

/* Instagram Section */
.instagram-section {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}

/* Hide Elfsight Free Badge */
.elfsight-app-3e7a17fb-f483-4013-aaf5-a38b4d9bbad1 a[href*="elfsight.com"],
.eapps-widget-toolbar,
.eapps-link {
  display: none !important;
}

.btn-link {
  display: inline-block;
  margin-top: var(--space-md);
  font-weight: 600;
  color: var(--primary-700);
  text-decoration: underline;
}

.ig-grid-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  position: relative;
}

.ig-placeholder-item {
  aspect-ratio: 1/1;
  background: var(--gray-200);
  overflow: hidden;
}

.ig-placeholder-item img {
  transition: filter 0.3s ease, transform 0.3s ease;
}

.ig-placeholder-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.ig-embed-instruction {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border: 1px dashed var(--gray-300);
  margin-top: var(--space-lg);
  color: var(--gray-600);
}

/* Stark CTA */
.cta-section-stark {
  padding: var(--space-4xl) 0;
  background: var(--gray-900);
  color: var(--white);
  text-align: center;
}

.cta-section-stark h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

.cta-section-stark p {
  color: var(--gray-400);
  font-size: 1.2rem;
  margin-bottom: var(--space-2xl);
}

.cta-section-stark .btn-solid-dark {
  background: var(--white);
  color: var(--gray-900);
  border-color: var(--white);
}

.cta-section-stark .btn-solid-dark:hover {
  background: transparent;
  color: var(--white);
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-900) 0%, #0a3d3d 30%, var(--primary-800) 60%, #0c5c5c 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(45,212,191,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(14,165,233,0.1) 0%, transparent 50%);
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bubble {
  position: absolute;
  border-radius: 50%;
  /* Realistic soap bubble: multiple radial gradients for iridescence + highlight */
  background:
    /* Top-left highlight spot (light reflection) */
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 35%),
    /* Bottom-right subtle secondary reflection */
    radial-gradient(circle at 75% 80%, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 25%),
    /* Rainbow iridescent film */
    radial-gradient(circle at 50% 50%,
      rgba(255, 100, 200, 0.08) 0%,
      rgba(100, 200, 255, 0.12) 25%,
      rgba(100, 255, 200, 0.10) 45%,
      rgba(255, 255, 100, 0.08) 65%,
      rgba(200, 100, 255, 0.10) 80%,
      rgba(100, 200, 255, 0.06) 100%
    );
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    inset 0 -4px 8px rgba(255, 255, 255, 0.1),
    inset 0 4px 12px rgba(255, 255, 255, 0.15),
    0 0 6px rgba(255, 255, 255, 0.08);
  animation: float-up linear infinite;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

/* Highlight dot — simulates light reflecting on top of the soap film */
.hero-bubble::after {
  content: '';
  position: absolute;
  top: var(--highlight-y, 22%);
  left: var(--highlight-x, 28%);
  width: 22%;
  height: 18%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  transform: rotate(-30deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--space-4xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: var(--primary-300);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  animation: fade-in-up 0.8s ease forwards;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-weight: 800;
  animation: fade-in-up 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero h1 .highlight {
  color: var(--primary-400);
  -webkit-text-fill-color: var(--primary-400);
  background: none;
  background-clip: initial;
}

.hero-description {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
  animation: fade-in-up 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fade-in-up 0.8s ease 0.8s forwards;
  opacity: 0;
}

.hero-stat { text-align: center; }

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-400);
  line-height: 1;
}

.hero-stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  z-index: 1;
}

.hero-image img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 2rem;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  transform: scale(1.1);
}

.service-card h3 { margin-bottom: var(--space-sm); }
.service-card p { font-size: 0.95rem; margin-bottom: var(--space-lg); }
.service-card .btn { width: 100%; }

/* ---- Why Us Editorial ---- */
.why-us-editorial {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-4xl);
  align-items: flex-start;
}

.why-us-guarantee {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-us-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  background: var(--primary-100);
  color: var(--primary-800);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.why-us-guarantee h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.founder-message {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
  position: relative;
  padding-left: var(--space-lg);
  border-left: 3px solid var(--primary-500);
  margin: var(--space-md) 0;
}

.founder-signature {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-3xl);
}

.founder-name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1.1rem;
}

.founder-title {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 2px;
}

/* Editorial Stats */
.editorial-stats {
  display: flex;
  gap: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--gray-200);
}

.editorial-stat {
  display: flex;
  flex-direction: column;
}

.editorial-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-700);
  line-height: 1;
}

.editorial-stat .stat-lbl {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Why Us List Right Column */
.why-us-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.why-us-list-item {
  display: flex;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--gray-100);
}

.why-us-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-us-list-item .item-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-200);
  line-height: 1;
  min-width: 50px;
}

.why-us-list-item .item-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
}

.why-us-list-item .item-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Editorial why-us */
@media (max-width: 1024px) {
  .why-us-editorial {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

/* ---- Before/After Slider ---- */
.before-after-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: var(--space-xl);
}

.before-after {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  aspect-ratio: 16/10;
}

.before-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after .after-img {
  clip-path: inset(0 50% 0 0);
}

.before-after .slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  z-index: 3;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.before-after .slider-handle::before {
  content: '⟨⟩';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-700);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  letter-spacing: 4px;
}

.before-after .label {
  position: absolute;
  bottom: 1rem;
  padding: 0.375rem 1rem;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 4;
}

.before-after .label-before { left: 1rem; }
.before-after .label-after { right: 1rem; }

/* ---- Testimonials ---- */
.testimonials-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: var(--space-xl);
  animation: scroll-left 30s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  min-width: 350px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-lg);
  color: var(--gray-700);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-500), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-name { font-weight: 600; color: var(--gray-800); }
.testimonial-location { font-size: 0.85rem; color: var(--gray-500); }

/* ---- Gallery ---- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-600);
  background: var(--gray-100);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.filter-btn:hover {
  color: var(--primary-700);
  background: var(--primary-100);
}

.filter-btn.active {
  background: var(--primary-700);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item:hover {
  box-shadow: var(--shadow-xl);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-title {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* ---- Page Header (Inner Pages) ---- */
.page-header {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
  padding: calc(var(--navbar-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(45,212,191,0.1) 0%, transparent 60%);
}

.page-header h1 {
  color: var(--white);
  position: relative;
  margin-bottom: var(--space-md);
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  position: relative;
}

.breadcrumb a { color: var(--primary-300); font-size: 0.9rem; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* Page header bubbles */
.page-header .hero-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ---- About Page ---- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text h2 { margin-bottom: var(--space-lg); }
.about-text p { margin-bottom: var(--space-md); }

.about-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.value-card {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-xl);
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.area-tag {
  padding: 0.375rem 1rem;
  background: var(--primary-100);
  color: var(--primary-800);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.area-tag:hover {
  background: var(--primary-700);
  color: var(--white);
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--primary-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-lg);
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-card h4 { margin-bottom: 0.25rem; }
.contact-card p { font-size: 0.95rem; }

.contact-card a {
  color: var(--primary-700);
  font-weight: 600;
}

.contact-card a:hover { color: var(--primary-500); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45,212,191,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error);
}

.form-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form-success.show { display: block; }

/* ---- Hizmetler Detail ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-detail:last-child { border-bottom: none; }

.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail-content h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.service-detail-content p { margin-bottom: var(--space-lg); }

.service-detail-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-700);
  font-size: 0.95rem;
}

.service-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--success);
  min-width: 20px;
}

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-xl);
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto var(--space-md);
}

.process-step h4 { margin-bottom: var(--space-sm); }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(45,212,191,0.15) 0%, transparent 50%);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  position: relative;
}

/* ---- Footer ---- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: var(--space-4xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: var(--space-lg); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary-600);
  transform: translateY(-3px);
}

.footer h4 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
}

.footer ul li { margin-bottom: var(--space-sm); }

.footer ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

.footer ul li a:hover {
  color: var(--primary-400);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  fill: var(--primary-400);
}

.footer-bottom {
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

/* ---- WhatsApp Chat Widget ---- */
.wa-chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-whatsapp);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-float {
  position: relative;
  width: 60px;
  height: 60px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: all var(--transition-base);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.wa-notification-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border: 2px solid white;
  border-radius: 50%;
  display: none;
}

.wa-notification-dot.active {
  display: block;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* Chat Bubble Popup */
.wa-chat-bubble {
  width: 340px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-chat-bubble.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-bubble-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  transition: color 0.2s;
}

.wa-bubble-close:hover {
  color: white;
}

.wa-bubble-header {
  background: #075e54;
  padding: 16px 40px 16px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-bubble-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-bubble-header strong {
  color: white;
  font-size: 0.95rem;
  display: block;
  line-height: 1.3;
}

.wa-status {
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  display: block;
}

.wa-bubble-body {
  padding: 16px;
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ccc' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-message {
  background: white;
  padding: 10px 14px;
  border-radius: 0 10px 10px 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  position: relative;
  max-width: 90%;
}

.wa-message p {
  margin: 0;
  font-size: 0.88rem;
  color: #333;
  line-height: 1.5;
}

.wa-time {
  display: block;
  text-align: right;
  font-size: 0.7rem;
  color: #999;
  margin-top: 4px;
}

.wa-bubble-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: #25d366;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}

.wa-bubble-cta:hover {
  background: #1da855;
}

.wa-bubble-cta svg {
  fill: white;
}

@media (max-width: 480px) {
  .wa-chat-widget {
    bottom: 1rem;
    right: 1rem;
  }
  .wa-chat-bubble {
    width: calc(100vw - 2rem);
  }
  .whatsapp-float {
    width: 54px;
    height: 54px;
  }
}


/* ---- Keyframe Animations ---- */
@keyframes float-up {
  0% {
    transform: translateY(120vh) translateX(0) scale(0.6) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  15% {
    opacity: 1;
    transform: translateY(90vh) translateX(15px) scale(0.85) rotate(5deg);
  }
  30% {
    transform: translateY(65vh) translateX(-20px) scale(0.95) rotate(-3deg);
  }
  50% {
    transform: translateY(45vh) translateX(25px) scale(1.05) rotate(4deg);
  }
  70% {
    transform: translateY(25vh) translateX(-15px) scale(1) rotate(-2deg);
  }
  85% {
    opacity: 0.9;
    transform: translateY(10vh) translateX(10px) scale(0.98) rotate(3deg);
  }
  95% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-15vh) translateX(-5px) scale(0.95) rotate(0deg);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ---- Responsive Design ---- */
@media (max-width: 1024px) {
  .hero-image { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --navbar-height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: calc(var(--navbar-height) + 2rem) 2rem 2rem;
    box-shadow: var(--shadow-2xl);
    transition: right var(--transition-slow);
    z-index: 5;
    gap: 0;
  }

  .nav-menu.active { right: 0; }

  .nav-link {
    color: var(--gray-700);
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }

  .nav-link::after { display: none; }

  .nav-link:hover,
  .nav-link.active { color: var(--primary-700); }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-stats { flex-direction: column; gap: var(--space-lg); }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .before-after-editorial { grid-template-columns: 1fr; }
  .editorial-testimonial { padding: var(--space-xl) var(--space-md); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .section { padding: var(--space-3xl) 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-description { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ---- Quick Reserve Form ---- */
.quick-reserve-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-4xl);
  align-items: center;
  background: var(--white);
  padding: var(--space-3xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.quick-reserve-info h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.quick-reserve-info p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.quick-reserve-features-minimal {
  display: flex;
  gap: var(--space-lg);
}

.qr-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-700);
}

.qr-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: 50%;
  font-size: 0.75rem;
}

.quick-reserve-form-container {
  width: 100%;
}

.quick-reserve-form .form-group {
  margin-bottom: var(--space-md);
}

.quick-reserve-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.quick-reserve-form input,
.quick-reserve-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  outline: none;
  font-size: 0.95rem;
  background: var(--gray-50);
  color: var(--gray-800);
  transition: all var(--transition-base);
}

.quick-reserve-form input:focus,
.quick-reserve-form select:focus {
  border-color: var(--primary-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.15);
}

.quick-reserve-form input.error,
.quick-reserve-form select.error {
  border-color: var(--error);
}

.form-error-msg {
  display: block;
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 992px) {
  .quick-reserve-wrapper {
    grid-template-columns: 1fr;
    padding: var(--space-xl);
    gap: var(--space-xl);
  }
  .quick-reserve-info h2 {
    font-size: 1.8rem;
  }
}

{
    font-size: 1.8rem;
  }
}

}

{
    font-size: 1.8rem;
  }
}

i m g   {   - w e b k i t - u s e r - d r a g :   n o n e ;   u s e r - d r a g :   n o n e ;   p o i n t e r - e v e n t s :   n o n e ;   } 
 
 i m g   {   - w e b k i t - u s e r - d r a g :   n o n e ;   u s e r - d r a g :   n o n e ;   } 
 
 
img { -webkit-user-drag: none; user-drag: none; }
