/* ========================================
   PIRIL TEMIZLIK - ANA STIL DOSYASI
   Kendi CSS'i - Harici framework yok
======================================== */

/* === CSS Değişkenleri === */
:root {
  /* Renkler */
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;

  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;

  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --orange-600: #ea580c;

  --purple-100: #f3e8ff;
  --purple-500: #a855f7;
  --purple-600: #9333ea;

  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;

  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --amber-400: #fbbf24;

  --white: #ffffff;
  --black: #000000;

  /* Tipografi */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --header-height: 80px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --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);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.2s ease;
  --transition-slow: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  background-color: var(--slate-50);
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

ul,
ol {
  list-style: none;
}

/* === Container === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* === Utilities === */
.text-primary {
  color: var(--primary-600);
}
.text-muted {
  color: var(--slate-500);
  font-size: 0.875rem;
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary-50);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-white {
  background: var(--white);
  color: var(--slate-900);
}

.btn-white:hover {
  background: var(--slate-100);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #128c7e;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition-slow);
  padding: 1rem 0;
}

.header-transparent {
  background: transparent;
}

.header-solid {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--slate-100);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 101;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-600);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
}

.logo-accent {
  color: var(--primary-600);
}

.header-transparent .logo-text {
  color: var(--white);
}

.header-transparent .logo-accent {
  color: var(--primary-400);
}

/* Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-600);
}

.header-transparent .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.header-transparent .nav-link:hover,
.header-transparent .nav-link.active {
  color: var(--white);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 101;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--slate-900);
  transition: var(--transition);
}

.header-transparent .mobile-menu-btn span {
  background: var(--white);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 100;
  padding: 6rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition-slow);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  padding: 1rem 0;
  border-bottom: 1px solid var(--slate-100);
}

.mobile-nav-link.active {
  color: var(--primary-600);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-link {
  color: var(--slate-400);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--primary-600);
}

.social-link svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--slate-900) 0%, rgba(15, 23, 42, 0.6) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 400px;
    gap: 5rem;
  }
}

.hero-text {
  color: var(--white);
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--green-500);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--slate-300);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-left: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.stat-avatars {
  display: flex;
}

.stat-avatars img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 3px solid var(--slate-900);
  margin-left: -0.75rem;
  object-fit: cover;
}

.stat-avatars img:first-child {
  margin-left: 0;
}

.stat-info {
  text-align: left;
}

.stat-stars {
  display: flex;
  color: var(--amber-400);
}

.stat-stars svg {
  width: 1rem;
  height: 1rem;
}

.stat-info p {
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 500;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
}

.form-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.form-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-success {
  background: var(--green-100);
  color: var(--green-600);
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--slate-50);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-900);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 1rem;
}

.form-note svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* === Trust Section === */
.trust-section {
  padding: 3rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.trust-item:hover {
  background: var(--slate-50);
}

.trust-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.trust-icon-green {
  background: var(--green-100);
  color: var(--green-600);
}

.trust-icon-blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.trust-icon-purple {
  background: var(--purple-100);
  color: var(--purple-600);
}

.trust-icon-orange {
  background: var(--orange-100);
  color: var(--orange-600);
}

.trust-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-800);
}

.trust-text span {
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* === Section Styles === */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

/* === Services Section === */
.services-section {
  padding: 5rem 0;
  background: var(--slate-50);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--slate-100);
  transition: var(--transition-slow);
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: var(--yellow-400);
  color: var(--slate-900);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-image {
  height: 14rem;
  overflow: hidden;
  position: relative;
}

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

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

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
}

.service-price-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  background: var(--primary-600);
  color: var(--white);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.service-content p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* === Before/After Section === */
.before-after-section {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .before-after-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.before-after-content {
  order: 2;
}

@media (min-width: 1024px) {
  .before-after-content {
    order: 1;
  }
}

.before-after-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .before-after-content h2 {
    font-size: 3rem;
  }
}

.before-after-content > p {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9375rem;
  color: var(--slate-500);
}

/* Before/After Slider */
.before-after-slider {
  order: 1;
  position: relative;
}

@media (min-width: 1024px) {
  .before-after-slider {
    order: 2;
  }
}

.slider-wrapper {
  position: relative;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: col-resize;
  user-select: none;
}

.slider-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  border-right: 4px solid var(--white);
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
}

.before-wrapper img {
  width: auto;
  min-width: 100%;
}

.image-label {
  position: absolute;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
}

.label-before {
  top: 1rem;
  left: 1rem;
  background: rgba(30, 41, 59, 0.9);
  color: var(--white);
}

.label-after {
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-700);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  z-index: 20;
  pointer-events: none;
}

.slider-handle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.slider-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-top: 1.5rem;
}

.slider-hint svg {
  width: 1rem;
  height: 1rem;
}

/* === Comparison Section === */
.comparison-section {
  padding: 6rem 0;
  background: var(--slate-50);
}

.comparison-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

@media (min-width: 768px) {
  .comparison-card {
    padding: 2rem;
  }
}

.comparison-card.full-width {
  margin-top: 5rem;
}

.comparison-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 2rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--slate-100);
}

.comparison-table th {
  border-bottom: 2px solid var(--slate-100);
  vertical-align: bottom;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  min-width: 200px;
}

.comparison-table th.popular {
  background: rgba(14, 165, 233, 0.05);
  border-bottom-color: var(--primary-100);
  position: relative;
}

.comparison-table td.popular {
  background: rgba(14, 165, 233, 0.03);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-600);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.package-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
}

.popular .package-name {
  color: var(--primary-700);
}

.package-desc {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 400;
}

.popular .package-desc {
  color: var(--primary-600);
}

.feature-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}

.comparison-table tbody tr:hover {
  background: var(--slate-50);
}

.comparison-table tbody tr:hover td.popular {
  background: rgba(14, 165, 233, 0.08);
}

.comparison-table svg {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 auto;
}

.comparison-table svg.check {
  color: var(--green-500);
}

.comparison-table svg.cross {
  color: var(--slate-300);
  opacity: 0.5;
}

/* === Testimonials Section === */
.testimonials-section {
  padding: 6rem 0;
  background: var(--white);
}

.section-header-flex {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-header-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.section-header-flex h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.section-header-flex p {
  font-size: 1.125rem;
  color: var(--slate-600);
}

.slider-nav {
  display: flex;
  gap: 0.5rem;
}

.nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  transition: var(--transition);
}

.nav-btn:hover {
  background: var(--slate-100);
}

.nav-btn.active {
  background: var(--slate-900);
  color: var(--white);
  border-color: var(--slate-900);
}

.nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--slate-100);
}

.quote-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.rating {
  display: flex;
  gap: 0.125rem;
  color: var(--amber-400);
  margin-bottom: 1.5rem;
}

.rating svg {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-50);
}

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 4px solid var(--slate-50);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-900);
}

.testimonial-author span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === CTA Section === */
.cta-section {
  background: var(--primary-600);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .cta-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-text p {
  font-size: 1.125rem;
  color: var(--primary-100);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-decoration {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3rem;
  opacity: 0.1;
}

.cta-decoration svg {
  width: 16rem;
  height: 16rem;
  transform: rotate(12deg);
}

/* === Footer === */
.footer {
  background: var(--slate-900);
  color: var(--slate-300);
  padding: 4rem 0 6rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  width: 2rem;
  height: 2rem;
}

.footer-logo .logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--slate-400);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary-600);
  color: var(--white);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--slate-400);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-400);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-500);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours li:last-child {
  border-bottom: none;
}

.footer-hours span {
  color: var(--slate-400);
}

.footer-hours strong {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: var(--slate-500);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.admin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  opacity: 0.5;
  transition: var(--transition);
}

.admin-link:hover {
  opacity: 1;
  color: var(--white);
}

/* === Live Support === */
.live-support {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.support-menu {
  display: none;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--slate-100);
  overflow: hidden;
  width: 300px;
  margin-bottom: 1rem;
  animation: slideUp 0.3s ease;
}

.support-menu.active {
  display: block;
}

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

.support-header {
  background: var(--slate-900);
  color: var(--white);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.support-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.support-close {
  color: var(--slate-400);
  transition: var(--transition);
}

.support-close:hover {
  color: var(--white);
}

.support-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.support-desc {
  padding: 1rem;
  font-size: 0.75rem;
  color: var(--slate-500);
  border-bottom: 1px solid var(--slate-100);
}

.support-options {
  padding: 0.5rem;
}

.support-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.support-option.whatsapp:hover {
  background: var(--green-100);
}

.support-option.phone:hover {
  background: var(--blue-100);
}

.option-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-option.whatsapp .option-icon {
  background: var(--green-100);
  color: var(--green-600);
}

.support-option.phone .option-icon {
  background: var(--blue-100);
  color: var(--blue-600);
}

.support-option:hover .option-icon {
  color: var(--white);
}

.support-option.whatsapp:hover .option-icon {
  background: var(--green-600);
}

.support-option.phone:hover .option-icon {
  background: var(--blue-600);
}

.option-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.option-text {
  display: flex;
  flex-direction: column;
}

.option-text strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-800);
}

.option-text span {
  font-size: 0.75rem;
  color: var(--slate-500);
}

.support-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  position: relative;
}

.support-btn:hover {
  transform: scale(1.1);
}

.support-btn.active {
  background: var(--slate-800);
  transform: rotate(90deg);
}

.support-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

.support-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--red-500);
  border-radius: var(--radius-full);
  border: 2px solid #25d366;
  animation: pulse 2s infinite;
}

.support-btn.active .support-badge {
  display: none;
}

/* === Page Headers === */
.page-header {
  background: var(--slate-900);
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
}

.page-header-sm {
  padding: 8rem 0 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 3rem;
  }
}

.page-header p {
  font-size: 1.125rem;
  color: var(--slate-300);
  max-width: 600px;
  margin: 0 auto;
}

/* === Services Detail Page === */
.services-detail-section {
  padding: 4rem 0;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
}

@media (min-width: 1024px) {
  .service-detail-card {
    flex-direction: row;
  }
}

.service-detail-card:hover {
  box-shadow: var(--shadow-2xl);
}

.service-detail-image {
  height: 16rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .service-detail-image {
    width: 40%;
    height: auto;
  }
}

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

.service-detail-card:hover .service-detail-image img {
  transform: scale(1.05);
}

.popular-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--yellow-400);
  color: var(--slate-900);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-detail-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-50);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-detail-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
}

.service-detail-desc {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  background: var(--slate-50);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  padding: 0.5rem 0;
}

.service-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green-600);
}

.service-detail-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
}

@media (min-width: 640px) {
  .service-detail-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.service-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 500;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
}

/* === About Page === */
.about-story-section {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image-glow {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: var(--primary-100);
  border-radius: var(--radius-full);
  filter: blur(60px);
}

.about-image {
  position: relative;
  z-index: 10;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

.about-quote-box {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 280px;
  z-index: 20;
}

@media (min-width: 768px) {
  .about-quote-box {
    display: block;
  }
}

.about-quote-box p {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--slate-600);
  margin-bottom: 0.5rem;
}

.about-quote-box span {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-900);
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-100);
}

.about-stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-600);
  margin-bottom: 0.25rem;
}

.about-stat span {
  font-size: 0.9375rem;
  color: var(--slate-500);
  font-weight: 500;
}

.join-section {
  padding: 0 0 4rem;
}

.join-card {
  background: var(--slate-900);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .join-card {
    padding: 5rem;
  }
}

.join-content {
  position: relative;
  z-index: 10;
  max-width: 500px;
  margin: 0 auto;
}

.join-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.join-content p {
  font-size: 1.125rem;
  color: var(--slate-300);
  margin-bottom: 2.5rem;
}

.join-decoration {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3rem;
  opacity: 0.05;
}

.join-decoration svg {
  width: 24rem;
  height: 24rem;
}

/* === Contact Page === */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.contact-text p {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 0.5rem;
}

.contact-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--primary-600);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--slate-100);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 3rem;
  }
}

.contact-form-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  text-transform: none;
  letter-spacing: 0;
}

/* === Booking Page === */
.booking-section {
  padding: 6rem 0 4rem;
  background: var(--slate-50);
  min-height: 100vh;
}

.booking-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.booking-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.booking-header p {
  font-size: 1rem;
  color: var(--slate-600);
}

.booking-wizard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
  min-height: 600px;
}

@media (min-width: 768px) {
  .booking-wizard {
    flex-direction: row;
  }
}

.wizard-sidebar {
  background: var(--slate-900);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  overflow-x: auto;
}

@media (min-width: 768px) {
  .wizard-sidebar {
    width: 280px;
    flex-direction: column;
    padding: 2.5rem;
    overflow-x: visible;
  }
}

.wizard-logo {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .wizard-logo {
    display: flex;
  }
}

.wizard-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-600);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.wizard-logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.wizard-logo span {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.wizard-steps {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .wizard-steps {
    flex-direction: column;
    gap: 2rem;
  }
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.5;
  transition: var(--transition);
}

.wizard-step.active {
  opacity: 1;
}

.wizard-step.completed {
  opacity: 1;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--slate-600);
  flex-shrink: 0;
  transition: var(--transition);
}

.wizard-step.active .step-number {
  border-color: var(--primary-500);
  color: var(--primary-400);
  background: rgba(14, 165, 233, 0.1);
}

.wizard-step.completed .step-number {
  border-color: var(--primary-600);
  background: var(--primary-600);
  color: var(--white);
}

.step-label {
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .step-label {
    display: block;
  }
}

.wizard-step.active .step-label {
  color: var(--white);
}

.wizard-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .wizard-content {
    padding: 2.5rem;
  }
}

.wizard-panel {
  display: none;
  flex: 1;
  animation: fadeIn 0.3s ease;
}

.wizard-panel.active {
  display: flex;
  flex-direction: column;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wizard-panel h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-select-card {
  position: relative;
  padding: 1rem;
  border: 2px solid var(--slate-100);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-select-card:hover {
  border-color: var(--primary-200);
}

.service-select-card.selected {
  border-color: var(--primary-600);
  background: var(--primary-50);
}

.service-select-card input {
  position: absolute;
  opacity: 0;
}

.service-select-card img {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.service-select-info {
  display: flex;
  flex-direction: column;
}

.service-select-info strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-900);
}

.service-select-card.selected .service-select-info strong {
  color: var(--primary-900);
}

.service-select-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
  background: var(--slate-100);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  margin-top: 0.25rem;
  display: inline-block;
}

.service-select-check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary-600);
  border-radius: var(--radius-full);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
}

.service-select-card.selected .service-select-check {
  display: flex;
}

.service-select-check svg {
  width: 0.75rem;
  height: 0.75rem;
}

#roomSelector {
  display: none;
  background: var(--slate-50);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-100);
}

#roomSelector.visible {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.room-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.room-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
}

.counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 0.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.counter-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  transition: var(--transition);
}

.counter-btn.minus {
  background: var(--slate-100);
  color: var(--slate-600);
}

.counter-btn.minus:hover {
  background: var(--slate-200);
}

.counter-btn.plus {
  background: var(--primary-100);
  color: var(--primary-700);
}

.counter-btn.plus:hover {
  background: var(--primary-200);
}

.counter input {
  width: 3rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  border: none;
  background: none;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.extra-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
}

.extra-card:hover {
  border-color: var(--primary-300);
}

.extra-card.selected {
  border-color: var(--primary-500);
  background: var(--primary-50);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.extra-card input {
  position: absolute;
  opacity: 0;
}

.extra-check {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--slate-300);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.extra-card.selected .extra-check {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: var(--white);
}

.extra-check svg {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0;
}

.extra-card.selected .extra-check svg {
  opacity: 1;
}

.extra-label {
  flex: 1;
  margin-left: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}

.extra-card.selected .extra-label {
  color: var(--primary-900);
}

.extra-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-600);
  background: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--blue-100);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  color: var(--blue-600);
  font-size: 0.875rem;
}

.info-box svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.form-divider {
  height: 1px;
  background: var(--slate-100);
  margin: 1.5rem 0;
}

.wizard-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-100);
  margin-top: auto;
}

@media (min-width: 640px) {
  .wizard-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.wizard-price {
  display: flex;
  flex-direction: column;
}

.wizard-price span {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 500;
}

.wizard-price strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
}

.wizard-nav {
  display: flex;
  gap: 1rem;
}

.success-panel {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.success-icon {
  width: 6rem;
  height: 6rem;
  background: var(--green-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
}

.success-icon svg {
  width: 3rem;
  height: 3rem;
}

.success-panel h2 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.success-panel p {
  font-size: 1rem;
  color: var(--slate-600);
  max-width: 400px;
  margin: 0 auto 2rem;
}

.error-message {
  font-size: 0.75rem;
  color: var(--red-500);
  font-weight: 500;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* === Alerts === */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.alert-success {
  background: var(--green-100);
  color: var(--green-600);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-error {
  background: var(--red-100);
  color: var(--red-600);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* === Responsive Adjustments === */
@media (max-width: 640px) {
  .service-select-grid {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   MEKAN SEÇİMİ (TABLI YAPI)
======================================== */
.property-selection-wrapper {
    background: var(--slate-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    margin-bottom: 1.5rem;
}

.section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-700);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.property-type-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.type-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

/* Radio butonunu gizle */
.type-tab input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.type-tab:hover {
    border-color: var(--primary-300);
    background: var(--primary-50);
}

/* Seçili Tab Stili */
.type-tab:has(input:checked) {
    background: var(--primary-50);
    border-color: var(--primary-600);
    color: var(--primary-700);
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.1);
}

.tab-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.tab-text {
    font-weight: 600;
    font-size: 1rem;
}

.property-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    font-size: 1rem;
    color: var(--slate-900);
    cursor: pointer;
    transition: var(--transition);
}

.property-select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

@media (max-width: 640px) {
    .property-type-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
}