/* Generated by Nakliyat Multi-Site Builder */

/* === reset.css === */
/* ===================================
   CSS Reset — Modern Normalize
   =================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul, ol {
  list-style: none;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}


/* === variables.css === */
/* ===================================
   CSS Custom Properties
   Tema tarafından override edilebilir
   =================================== */

:root {
  /* === Colors === */
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-primary-rgb: 37, 99, 235;
  --color-secondary: #1e40af;
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  --color-accent-rgb: 245, 158, 11;

  /* Backgrounds */
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-dark: #0f172a;
  --color-bg-dark-rgb: 15, 23, 42;
  --color-bg-card: #ffffff;
  --color-bg-overlay: rgba(15, 23, 42, 0.6);

  /* Text */
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-text-lighter: #9ca3af;
  --color-text-white: #f8fafc;
  --color-text-heading: #111827;

  /* Borders */
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;

  /* Status */
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #f59e0b;

  /* === Typography === */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* === Spacing === */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* === Layout === */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-2xl: 1400px;
  --container-padding: 1.5rem;

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

  /* === Shadows === */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --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 20px rgba(var(--color-primary-rgb), 0.3);
  --shadow-glow-accent: 0 0 20px rgba(var(--color-accent-rgb), 0.3);

  /* === Transitions === */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === Z-index === */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-toast: 800;
  --z-whatsapp: 900;
}


/* === typography.css === */
/* ===================================
   Typography — Google Fonts + Text Styles
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  color: var(--color-text);
  line-height: var(--leading-normal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
}

h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
}

h5 {
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
}

h6 {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-balance {
  text-wrap: balance;
}

/* === Responsive Typography === */
@media (max-width: 768px) {
  h1 {
    font-size: var(--text-3xl);
  }
  h2 {
    font-size: var(--text-2xl);
  }
  h3 {
    font-size: var(--text-xl);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: var(--text-2xl);
  }
  h2 {
    font-size: var(--text-xl);
  }
}


/* === base.css === */
/* ===================================
   Base Styles — Core element styling
   =================================== */

body {
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

.container-sm {
  max-width: var(--container-md);
}

.container-lg {
  max-width: var(--container-2xl);
}

/* === Sections === */
.section {
  padding: var(--space-20) 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-text-white);
}

.section-dark p {
  color: rgba(248, 250, 252, 0.8);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-12);
}

.section-header .section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.1);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  color: var(--color-text-light);
  font-size: var(--text-lg);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(var(--color-primary-rgb), 0.4);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(var(--color-primary-rgb), 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-accent);
}

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

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* === Cards === */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(var(--color-primary-rgb), 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  font-size: 1.5rem;
}

.card h3, .card h4 {
  margin-bottom: var(--space-2);
}

.card p {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* === Inputs === */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  background: var(--color-bg);
  transition: all var(--transition-fast);
}

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

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

/* === Divider === */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-full);
  margin: var(--space-4) auto;
}

/* === Links === */
.link {
  color: var(--color-primary);
  font-weight: var(--font-medium);
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* === Grid === */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

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

@media (max-width: 640px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* === Flex === */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }


/* === components.css === */
/* ===================================
   Component Styles — Header, Footer, Hero, etc.
   =================================== */

/* === HEADER === */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: transparent;
  border-bottom: 1px solid transparent;
}
/* Non-index pages — static, solid background */
body:not([data-page="index"]) .site-header {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xl);
  font-weight: var(--font-extrabold);
  color: white;
  transition: color var(--transition-base);
}
body:not([data-page="index"]) .logo {
  color: var(--color-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: background var(--transition-base);
}
body:not([data-page="index"]) .logo-icon {
  background: var(--color-primary);
}

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

.nav-links a {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition-fast);
}
body:not([data-page="index"]) .nav-links a {
  color: var(--color-text);
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}
body:not([data-page="index"]) .nav-links a:hover,
body:not([data-page="index"]) .nav-links a.active {
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--font-bold);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  transition: color var(--transition-base);
}
body:not([data-page="index"]) .header-phone {
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-fast);
}
body:not([data-page="index"]) .mobile-menu-btn span {
  background: var(--color-text);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  padding: var(--space-6);
  z-index: var(--z-fixed);
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  animation: fadeInDown 0.3s ease;
}

.mobile-nav a {
  padding: var(--space-4);
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  border-radius: var(--radius-lg);
  transition: background var(--transition-fast);
}

.mobile-nav a:hover {
  background: var(--color-bg-alt);
}

@media (max-width: 768px) {

  .nav-links,
  .header-cta .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 0;
  overflow: hidden;
}

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

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--color-bg-dark-rgb), 0.55) 0%, rgba(var(--color-primary-rgb), 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  color: white;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-10);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.hero-feature svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero {
    min-height: 80vh;
  }

  .hero-features {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

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

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

/* === STATS === */
.stats-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  padding: var(--space-16) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat-number {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--font-medium);
}

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

  .stat-number {
    font-size: var(--text-3xl);
  }
}

/* === TESTIMONIALS === */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border-light);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-size: 4rem;
  color: rgba(var(--color-primary-rgb), 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
}

.testimonial-name {
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
}

.testimonial-location {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

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

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

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-banner h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-buttons .btn {
  background: white;
  color: var(--color-primary);
}

.cta-buttons .btn:hover {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.open {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
  background: transparent;
  border: none;
}

.faq-question:hover {
  background: var(--color-bg-alt);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--color-primary);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

/* === CONTACT FORM === */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

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

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(var(--color-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-1);
}

.contact-info-value {
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
}

.form-success.show {
  display: block;
}

.form-success svg {
  color: var(--color-success);
  margin: 0 auto var(--space-4);
}

@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-whatsapp);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-base);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* === FOOTER === */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding-top: var(--space-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: rgba(248, 250, 252, 0.7);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
  max-width: 300px;
}

.footer-heading {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
  color: var(--color-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: rgba(248, 250, 252, 0.7);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding: var(--space-6) 0;
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(248, 250, 252, 0.5);
}

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

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

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--color-bg-dark), rgba(var(--color-primary-rgb), 0.9));
  padding: calc(72px + var(--space-16)) 0 var(--space-16);
  text-align: center;
  color: white;
}

.page-hero h1 {
  color: white;
  margin-bottom: var(--space-4);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb .sep {
  opacity: 0.4;
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  position: relative;
  cursor: pointer;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: white;
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

/* === ABOUT PAGE === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.value-card {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--color-bg-alt);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(var(--color-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
}

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

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

/* === SERVICE DETAIL === */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even)>* {
  direction: ltr;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.service-feature-item svg {
  color: var(--color-success);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }
}

/* === HIZMET BOLGELERI === */
.bolge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.bolge-tag {
  padding: var(--space-2) var(--space-5);
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  transition: all var(--transition-fast);
}

.bolge-tag:hover {
  background: var(--color-primary);
  color: white;
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0 0 var(--radius-md) 0;
}

.blog-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

.blog-card-meta svg {
  opacity: 0.6;
}

.blog-card-title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.blog-card-title a {
  color: var(--color-text-heading);
  transition: color var(--transition-fast);
}

.blog-card-title a:hover {
  color: var(--color-primary);
}

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  flex: 1;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.blog-tag {
  padding: var(--space-1) var(--space-3);
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: var(--font-medium);
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  transition: gap var(--transition-fast);
}

.blog-read-more:hover {
  gap: var(--space-3);
}

/* Blog Post Detail */
.blog-post-hero {
  text-align: left;
}

.blog-post-hero h1 {
  font-size: var(--text-4xl);
  max-width: 800px;
}

.blog-post-subtitle {
  max-width: 700px;
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
}

.blog-post-meta-top {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

.blog-category-badge {
  padding: var(--space-1) var(--space-4);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-weight: var(--font-semibold);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-12);
  align-items: start;
}

.blog-post-content {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text);
}

.blog-post-content h3 {
  font-size: var(--text-2xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--color-text-heading);
}

.blog-post-content p {
  margin-bottom: var(--space-6);
}

.blog-post-content ul {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

.blog-post-content li {
  margin-bottom: var(--space-3);
  line-height: 1.7;
  position: relative;
}

.blog-post-content li::marker {
  color: var(--color-primary);
}

.blog-inline-cta {
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.06), rgba(var(--color-accent-rgb, 0), 0.04));
  border: 1px solid rgba(var(--color-primary-rgb), 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin: var(--space-10) 0;
  text-align: center;
}

.blog-inline-cta h3 {
  margin-top: 0;
}

.blog-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.blog-post-tags {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  border-radius: var(--radius-xl);
}

.sidebar-widget h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  color: var(--color-text-heading);
}

.sidebar-post-list {
  list-style: none;
  padding: 0;
}

.sidebar-post-list li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-light);
}

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

.sidebar-post-list a {
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: color var(--transition-fast);
  line-height: var(--leading-snug);
}

.sidebar-post-list a:hover {
  color: var(--color-primary);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
}

.sidebar-cta h4 {
  color: white;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

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

/* === utilities.css === */
/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.font-bold { font-weight: var(--font-bold); }
.font-semibold { font-weight: var(--font-semibold); }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mx-auto { margin-left: auto; margin-right: auto; }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.color-primary { color: var(--color-primary); }
.color-accent { color: var(--color-accent); }
.bg-primary { background-color: var(--color-primary); }
.bg-accent { background-color: var(--color-accent); }


/* === Theme: theme-4 === */
/* =============================================
   Theme 4 — Warm & Friendly
   Warm tones, rounded shapes, family-friendly
   ============================================= */
:root {
  --color-primary: #ea580c;
  --color-primary-dark: #c2410c;
  --color-primary-light: #f97316;
  --color-primary-rgb: 234, 88, 12;
  --color-secondary: #9a3412;
  --color-accent: #0d9488;
  --color-accent-dark: #0f766e;
  --color-accent-rgb: 13, 148, 136;
  --color-bg: #fffbf5;
  --color-bg-alt: #fef7ed;
  --color-bg-card: #ffffff;
  --font-heading: 'Inter', sans-serif;
}

/* ========== HEADER ========== */
/* Index page: transparent header */
[data-page="index"] .site-header {
  background: transparent;
}

/* Rounded white background covering entire header including logo */
.header-inner {
  position: relative;
}

.header-inner::before {
  content: '';
  position: absolute;
  left: -16px;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  height: 56px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  z-index: 0;
  pointer-events: none;
}

.nav-links,
.header-cta,
.header-cta a,
.logo {
  position: relative;
  z-index: 1;
}

/* Nav links — dark text on white bg bar */
.nav-links a {
  color: #1a1a2e;
  font-weight: 600;
}

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

/* Logo text — dark */
.logo-text {
  color: #1a1a2e;
}

/* Inner pages: cream bg with subtle border */
body:not([data-page="index"]) .site-header {
  background: rgba(255, 251, 245, 0.95);
  border-bottom: 1px solid rgba(234, 88, 12, 0.1);
}

body:not([data-page="index"]) .header-inner::before {
  background: rgba(255, 255, 255, 0.6);
}

body:not([data-page="index"]) .logo {
  color: var(--color-primary);
}

body:not([data-page="index"]) .logo-icon {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
}

body:not([data-page="index"]) .nav-links a {
  color: var(--color-text);
}

/* Logo icon — rounded orange square */
.logo-icon {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
}

/* Active nav — orange color */
.nav-links a.active {
  color: var(--color-primary) !important;
}

/* Phone CTA — green/teal pill button */
.header-phone {
  background: var(--color-accent);
  color: white !important;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  white-space: nowrap;
}

.header-phone svg {
  stroke: white;
}

/* ========== HERO ========== */
.hero-bg-gradient {
  background: linear-gradient(160deg,
      rgba(67, 20, 7, 0.55) 0%,
      rgba(154, 52, 18, 0.45) 40%,
      rgba(234, 88, 12, 0.4) 80%,
      rgba(249, 115, 22, 0.45) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 40%, rgba(13, 148, 136, 0.1) 0%, transparent 60%);
  z-index: 1;
}

/* Hero bottom wave */
.hero {
  padding-bottom: 0;
  min-height: 60vh;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 100px;
  display: block;
}

/* Hero content */
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: white;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
}

/* Hero buttons */
.hero .btn-accent {
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
}

.hero .btn-accent:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.45);
}

.hero .btn-secondary {
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-full);
  font-weight: 600;
}

.hero .btn-secondary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: white;
}

/* Hero features pills */
.hero-friendly-grid {
  max-width: 700px;
}

.hero .hero-feature {
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.95);
}

/* Section badge */
.section-badge {
  background: rgba(234, 88, 12, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(234, 88, 12, 0.15);
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* Section badge in hero — visible over image */
.hero .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding-left: var(--space-2);
}

/* ========== SECTIONS ========== */
.section-alt {
  background: var(--color-bg-alt);
}

/* ========== SERVICE CARDS ========== */
.card {
  border: 1px solid rgba(234, 88, 12, 0.08);
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.04);
  text-align: center;
}

.card:hover {
  border-color: rgba(234, 88, 12, 0.2);
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.1);
  transform: translateY(-6px);
}

.card-icon {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.08), rgba(13, 148, 136, 0.08));
  border-radius: var(--radius-xl);
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-4);
}

.card-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-primary);
}

.card h4 {
  font-weight: 800;
  font-size: var(--text-base);
  color: var(--color-text);
}

/* ========== STATS ========== */
.stats-section {
  background: linear-gradient(135deg, #ea580c, #f97316);
}

.stat-number {
  font-size: var(--text-6xl);
  font-weight: 900;
  color: white;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, #9a3412 0%, #ea580c 50%, #0d9488 150%);
  border-radius: var(--radius-2xl);
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--color-primary);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.4);
}

.btn-accent {
  background: var(--color-accent);
  color: white;
  border-radius: var(--radius-full);
}

.btn-pill {
  border-radius: var(--radius-full);
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  border-radius: var(--radius-2xl);
  border: 2px solid rgba(234, 88, 12, 0.12);
  background: white;
}

.testimonial-card:hover {
  border-color: rgba(234, 88, 12, 0.25);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.08);
}

.testimonial-avatar {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

/* ========== VALUES ========== */
.value-card {
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(234, 88, 12, 0.08);
}

.value-icon {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.08), rgba(13, 148, 136, 0.08));
}

/* ========== FAQ ========== */
.faq-item {
  border-radius: var(--radius-xl) !important;
  border: 1px solid rgba(234, 88, 12, 0.1);
}

.faq-item.open {
  border-color: var(--color-primary);
}

/* ========== FOOTER ========== */
.site-footer {
  background: #431407;
}

.footer-heading {
  color: var(--color-accent);
}

/* ========== CONTACT ========== */
.contact-form-card {
  border: 1px solid rgba(234, 88, 12, 0.1);
  border-radius: var(--radius-2xl);
}

/* ========== BOLGE TAGS ========== */
.bolge-tag {
  background: rgba(234, 88, 12, 0.06);
  border: 1px solid rgba(234, 88, 12, 0.15);
  border-radius: var(--radius-full);
}

.bolge-tag:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* ========== WAVE DIVIDERS ========== */
.section-divider-wave {
  margin-top: -2px;
  line-height: 0;
}

.section-divider-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.section-divider-wave-flip {
  margin-top: 0;
  margin-bottom: -2px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {

  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }

  /* Hide the white rounded bar on mobile — burger menu used instead */
  .header-inner::before {
    display: none;
  }

  /* Logo text stays dark */
  .logo-text {
    color: white;
  }

  .hero h1 {
    font-size: var(--text-3xl);
  }

  .hero {
    min-height: 50vh;
    padding-top: 80px;
  }

  .hero-wave svg {
    height: 50px;
  }

  .header-phone {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-3);
  }

  /* Stats — prevent overflow */
  .stat-number {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.03em;
  }

  /* Hero features wrap better */
  .hero-features {
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  /* Hero buttons stack */
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
