/* ============================================================
   PALANCIOĞULLARI YAPI — ANA STİL DOSYASI
   Modern Kurumsal Web Sitesi / ONE UI Tarzı
   ============================================================ */

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

/* ============================================================
   1. CSS DEĞİŞKENLERİ (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Ana Yeşil Tonları */
  --primary-50: #f0fdf4;
  --primary-100: #dcfce7;
  --primary-200: #bbf7d0;
  --primary-300: #86efac;
  --primary-400: #4ade80;
  --primary-500: #22c55e;
  --primary-600: #16a34a;
  --primary-700: #15803d;
  --primary-800: #166534;
  --primary-900: #14532d;

  /* Nötr Tonlar */
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;

  /* Aksan Renkler */
  --accent-gold: #d4a012;
  --accent-earth: #92400e;
  --white: #ffffff;
  --black: #000000;

  /* Gradient'ler */
  --gradient-primary: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 100%);
  --gradient-dark: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 100%);
  --gradient-light: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(21, 128, 61, 0.92) 0%, rgba(22, 101, 52, 0.88) 100%);

  /* Tipografi */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  /* Font Boyutları */
  --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;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 28px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container */
  --container-max: 1280px;
  --container-padding: 1.5rem;

  /* Header */
  --topbar-height: 40px;
  --header-height: 100px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--neutral-700);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--neutral-900);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

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

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

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

p {
  margin-bottom: var(--space-md);
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.section-sm {
  padding: var(--space-3xl) 0;
}

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

.section-header h2 {
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--neutral-500);
  max-width: 640px;
  margin: var(--space-lg) auto 0;
}

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

.section-green {
  background: var(--gradient-primary);
  color: var(--white);
}

.text-center {
  text-align: center;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.8rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary-600);
}

.btn-primary:hover {
  background: var(--primary-800);
  border-color: var(--primary-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--primary-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-white:hover {
  background: var(--primary-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: var(--text-base);
}

.btn i {
  font-size: 0.9em;
}

/* Visibility Utilities */
.social-disabled {
  display: none !important;
}

/* ============================================================
   4. TOPBAR
   ============================================================ */
.topbar {
  background: var(--neutral-900);
  color: var(--neutral-300);
  font-size: var(--text-xs);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

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

.topbar-left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.topbar-left a,
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--neutral-300);
  transition: color var(--transition-fast);
}

.topbar-left a:hover {
  color: var(--primary-400);
}

.topbar-left i {
  color: var(--primary-400);
  font-size: 0.85rem;
}

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

.topbar-social {
  display: flex;
  gap: var(--space-sm);
}

.topbar-social a {
  color: var(--neutral-400);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-social a:hover {
  color: var(--primary-400);
}

/* ============================================================
   5. HEADER / NAVİGASYON
   ============================================================ */
.header {
  background: var(--white);
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.header.scrolled {
  height: 65px;
  box-shadow: var(--shadow-md);
}

.header.scrolled .logo-img {
  height: 50px;
}

.header .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo-img {
  height: 80px;
  max-height: calc(var(--header-height) - 16px);
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition-fast);
}

.logo:hover .logo-img {
  opacity: 0.85;
}

.logo-img-footer {
  height: 72px;
  filter: brightness(0) invert(1);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--neutral-900);
  letter-spacing: -0.02em;
}

.logo-text .tagline {
  font-size: var(--text-xs);
  color: var(--primary-600);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu>li {
  position: relative;
}

.nav-menu>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--neutral-700);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-menu>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary-500);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
  color: var(--primary-600);
}

.nav-menu>li>a:hover::after,
.nav-menu>li>a.active::after {
  transform: scaleX(1);
}

.nav-menu>li>a .dropdown-icon {
  font-size: 0.6rem;
  transition: transform var(--transition-fast);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-normal);
  border: 1px solid var(--neutral-200);
  z-index: 100;
}

.nav-menu>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.6rem 1.2rem;
  font-size: var(--text-sm);
  color: var(--neutral-600);
  transition: all var(--transition-fast);
}

.dropdown li a i {
  color: var(--primary-500);
  font-size: 0.85rem;
  width: 20px;
}

.dropdown li a:hover {
  background: var(--primary-50);
  color: var(--primary-700);
  padding-left: 1.5rem;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--primary-700);
}

.header-phone i {
  width: 36px;
  height: 36px;
  background: var(--primary-50);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  font-size: var(--text-sm);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1002;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  overflow-y: auto;
  transition: right var(--transition-normal);
  box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--neutral-200);
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--neutral-100);
  cursor: pointer;
  font-size: var(--text-lg);
  color: var(--neutral-600);
  transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
  background: var(--neutral-200);
}

.mobile-nav-menu {
  padding: var(--space-md);
}

.mobile-nav-menu>li {
  border-bottom: 1px solid var(--neutral-100);
}

.mobile-nav-menu>li>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem var(--space-md);
  font-weight: 500;
  color: var(--neutral-700);
  font-size: var(--text-base);
}

.mobile-nav-menu>li>a.active {
  color: var(--primary-600);
}

.mobile-nav-menu>li>a .mobile-dropdown-icon {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
  color: var(--neutral-400);
}

.mobile-nav-menu>li>a .mobile-dropdown-icon.rotated {
  transform: rotate(180deg);
}

.mobile-sub-menu {
  display: none;
  padding: 0 var(--space-md) var(--space-sm);
}

.mobile-sub-menu.active {
  display: block;
}

.mobile-sub-menu li a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem var(--space-md);
  font-size: var(--text-sm);
  color: var(--neutral-500);
  border-left: 2px solid var(--primary-200);
  margin-left: var(--space-sm);
  transition: all var(--transition-fast);
}

.mobile-sub-menu li a:hover,
.mobile-sub-menu li a.active {
  color: var(--primary-600);
  border-left-color: var(--primary-500);
  background: var(--primary-50);
}

.mobile-nav-contact {
  padding: var(--space-lg);
  border-top: 1px solid var(--neutral-200);
  margin-top: var(--space-md);
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 0;
  color: var(--neutral-600);
  font-size: var(--text-sm);
}

.mobile-nav-contact a i {
  color: var(--primary-500);
  width: 20px;
}

.mobile-nav-contact .btn {
  width: 100%;
  margin-top: var(--space-md);
}

/* ============================================================
   6. HERO SLİDER
   ============================================================ */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y pinch-zoom;
}

.hero-slider .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.85) 0%, rgba(21, 128, 61, 0.7) 50%, rgba(22, 163, 74, 0.5) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
}

.slide-content .subtitle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-300);
  margin-bottom: var(--space-md);
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.slide-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.slide-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.slide-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-lg);
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-normal);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 4px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.slider-dot.active {
  width: 32px;
  background: var(--white);
}

/* ============================================================
   7. PAGE HERO (İç Sayfalar)
   ============================================================ */
.page-hero {
  background: var(--gradient-dark);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/genel/iletisim-hero.webp') center/cover no-repeat;
  opacity: 0.1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: var(--primary-200);
  font-size: var(--text-lg);
}

/* ============================================================
   8. BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: var(--space-md) 0;
  background: var(--neutral-50);
  border-bottom: 1px solid var(--neutral-200);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: var(--text-sm);
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.breadcrumb-list li a {
  color: var(--neutral-500);
  transition: color var(--transition-fast);
}

.breadcrumb-list li a:hover {
  color: var(--primary-600);
}

.breadcrumb-list li .separator {
  color: var(--neutral-300);
  font-size: 0.65rem;
}

.breadcrumb-list li.active {
  color: var(--primary-700);
  font-weight: 500;
}

/* ============================================================
   9. ANASAYFA — FİRMA TANITIM
   ============================================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-preview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-preview-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-preview-img .experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.experience-badge .number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1;
}

.experience-badge .label {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.about-preview-content h2 {
  margin-bottom: var(--space-lg);
}

.about-preview-content .lead {
  font-size: var(--text-lg);
  color: var(--primary-700);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.about-preview-content p {
  color: var(--neutral-600);
}

/* Counters / Stats */
.stats-row {
  display: flex;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ============================================================
   10. SEKTÖR & HİZMET KARTLARI
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

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

/* Sektör Kartı (Görselli) */
.sector-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-200);
}

.sector-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.sector-card-img .sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.sector-card-body {
  padding: var(--space-lg);
}

.sector-card-body .sector-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--primary-600);
  margin-bottom: var(--space-sm);
  transition: all var(--transition-normal);
}

.sector-card:hover .sector-card-body .sector-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.sector-card-body h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.sector-card-body p {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  margin-bottom: var(--space-sm);
}

.sector-card-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary-600);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: gap var(--transition-fast);
}

.sector-card:hover .sector-card-link {
  gap: var(--space-sm);
}

/* Hizmet Kartı */
.service-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
}

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

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

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

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

.service-card-img .overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 128, 61, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover .service-card-img .overlay {
  opacity: 1;
}

.overlay .btn {
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.service-card:hover .overlay .btn {
  transform: translateY(0);
}

.service-card-body {
  padding: var(--space-lg);
}

.service-card-body h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.service-card-body p {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  margin-bottom: 0;
}

/* Section CTA Button */
.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================================
   11. NEDEN BİZ
   ============================================================ */
.why-us {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/genel/neden-biz-bg.webp') center/cover no-repeat;
  opacity: 0.12;
}

.why-us .section-header h2,
.why-us .section-header p {
  color: var(--white);
}

.why-us .section-header h2::after {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.why-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  transition: all var(--transition-normal);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  color: var(--primary-300);
}

.why-card h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
}

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

/* ============================================================
   12. BLOG KARTLARI
   ============================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
}

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

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: var(--space-lg);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: var(--text-xs);
}

.blog-card-meta .category {
  background: var(--primary-50);
  color: var(--primary-700);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.blog-card-meta .date {
  color: var(--neutral-400);
}

.blog-card-body h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-body p {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.blog-card-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary-600);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-top: var(--space-md);
  transition: gap var(--transition-fast);
}

.blog-card:hover .blog-card-link {
  gap: var(--space-sm);
}

/* ============================================================
   13. CTA BÖLÜMÜ
   ============================================================ */
.cta-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/genel/cta-bg.webp') center/cover no-repeat;
  background-attachment: fixed;
  opacity: 0.15;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.cta-content p {
  font-size: var(--text-lg);
  color: var(--primary-100);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

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

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  font-size: var(--text-2xl);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
}

.cta-phone i {
  font-size: var(--text-xl);
  animation: phone-ring 1.5s ease-in-out infinite;
}

@keyframes phone-ring {

  0%,
  100% {
    transform: rotate(0);
  }

  10% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-15deg);
  }

  30% {
    transform: rotate(10deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(0);
  }
}

/* ============================================================
   14. FOOTER
   ============================================================ */
.footer-cta-bar {
  background: var(--primary-800);
  padding: var(--space-2xl) 0;
}

.footer-cta-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-cta-bar h3 {
  color: var(--white);
  font-size: var(--text-2xl);
}

.footer-cta-bar p {
  color: var(--primary-200);
  margin-bottom: 0;
}

.footer {
  background: var(--neutral-900);
  padding: var(--space-3xl) 0 0;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: var(--text-base);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-500);
}

.footer-about p {
  color: var(--neutral-400);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--neutral-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  transition: all var(--transition-fast);
  font-size: var(--text-sm);
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links li a {
  color: var(--neutral-400);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-fast);
}

.footer-links li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--primary-500);
}

.footer-links li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--neutral-400);
  font-size: var(--text-sm);
}

.footer-contact li i {
  color: var(--primary-500);
  font-size: var(--text-sm);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding: var(--space-lg) 0;
  margin-top: var(--space-2xl);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: var(--neutral-500);
  font-size: var(--text-sm);
  margin: 0;
}

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

/* ============================================================
   15. DETAIL LAYOUT (Sidebar + Content)
   ============================================================ */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-2xl);
}

.detail-content h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.detail-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--primary-800);
}

.detail-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--neutral-800);
}

.detail-content p {
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

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

.detail-content ul li,
.detail-content ol li {
  margin-bottom: var(--space-sm);
  color: var(--neutral-600);
  line-height: 1.7;
  position: relative;
  padding-left: var(--space-md);
}

.detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary-500);
  border-radius: var(--radius-full);
}

.detail-content ol {
  counter-reset: item;
  list-style: none;
}

.detail-content ol li {
  counter-increment: item;
}

.detail-content ol li::before {
  content: counter(item) '.';
  position: absolute;
  left: -4px;
  font-weight: 700;
  color: var(--primary-600);
}

.detail-content .featured-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.detail-content blockquote {
  border-left: 4px solid var(--primary-500);
  padding: var(--space-lg);
  background: var(--primary-50);
  margin: var(--space-xl) 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
  color: var(--primary-800);
}

/* Sidebar */
.sidebar {
  position: relative;
}

.sidebar-inner {
  position: sticky;
  top: 73px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.sidebar-widget h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--primary-500);
}

.sidebar-menu li {
  margin-bottom: 2px;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem var(--space-md);
  font-size: var(--text-sm);
  color: var(--neutral-600);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
  background: var(--primary-50);
  color: var(--primary-700);
  padding-left: 1.1rem;
}

.sidebar-menu li a.active {
  background: var(--primary-600);
  color: var(--white);
  font-weight: 600;
}

.sidebar-menu li a i {
  font-size: 0.65rem;
  opacity: 0.5;
}

/* Sidebar İletişim Kutusu */
.sidebar-contact {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  text-align: center;
}

.sidebar-contact h4 {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-contact p {
  color: var(--primary-100);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.sidebar-contact .phone {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.sidebar-contact .btn {
  width: 100%;
}

/* Sidebar Blog */
.sidebar-recent li {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--neutral-100);
}

.sidebar-recent li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-recent li a {
  display: flex;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--neutral-600);
  transition: color var(--transition-fast);
}

.sidebar-recent li a:hover {
  color: var(--primary-600);
}

.sidebar-recent li a img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.sidebar-recent li .post-meta {
  font-size: var(--text-xs);
  color: var(--neutral-400);
  margin-top: 4px;
}

.sidebar-categories li a,
.sidebar-tags a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4rem var(--space-md);
  font-size: var(--text-sm);
  color: var(--neutral-600);
  transition: color var(--transition-fast);
}

.sidebar-categories li a:hover {
  color: var(--primary-600);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tag-cloud a {
  padding: 4px 12px;
  font-size: var(--text-xs);
  background: var(--neutral-100);
  color: var(--neutral-600);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.tag-cloud a:hover {
  background: var(--primary-500);
  color: var(--white);
}

/* ============================================================
   16. BLOG DETAY
   ============================================================ */
.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--neutral-200);
  flex-wrap: wrap;
  font-size: var(--text-sm);
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--neutral-500);
}

.blog-detail-meta span i {
  color: var(--primary-500);
}

.blog-detail-meta .category-badge {
  background: var(--primary-50);
  color: var(--primary-700);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.blog-detail-tags {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--neutral-200);
}

.blog-detail-tags .label {
  font-weight: 600;
  color: var(--neutral-700);
  font-size: var(--text-sm);
}

.blog-detail-share {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.blog-detail-share .label {
  font-weight: 600;
  color: var(--neutral-700);
  font-size: var(--text-sm);
  margin-right: var(--space-sm);
}

.share-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.share-btn.facebook {
  background: #1877f2;
  color: #fff;
}

.share-btn.twitter {
  background: #1da1f2;
  color: #fff;
}

.share-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.share-btn.linkedin {
  background: #0077b5;
  color: #fff;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   17. HAKKIMIZDA
   ============================================================ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

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

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.mv-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
}

.mv-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.mv-card-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: var(--primary-600);
  margin-bottom: var(--space-md);
}

.mv-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

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

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.value-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.value-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: var(--primary-50);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: var(--primary-600);
}

.value-card h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

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

/* Stats Full */
.stats-section {
  background: var(--gradient-primary);
}

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

.stats-grid .stat-number {
  font-size: var(--text-5xl);
  color: var(--white);
}

.stats-grid .stat-label {
  color: var(--primary-200);
  font-size: var(--text-sm);
}

/* Service Areas */
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.service-areas span {
  padding: 0.5rem 1.2rem;
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--primary-700);
  font-weight: 500;
}

/* ============================================================
   18. SSS (FAQ)
   ============================================================ */
.faq-list {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--neutral-800);
  transition: all var(--transition-fast);
  gap: var(--space-md);
}

.faq-question:hover {
  color: var(--primary-600);
}

.faq-item.active .faq-question {
  color: var(--primary-700);
  background: var(--primary-50);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--neutral-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--neutral-500);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.faq-item.active .faq-icon {
  background: var(--primary-600);
  color: var(--white);
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--neutral-600);
  line-height: 1.8;
  font-size: var(--text-sm);
}

/* ============================================================
   19. İLETİŞİM
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.contact-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  background: var(--primary-50);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: var(--primary-600);
}

.contact-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

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

.contact-card a {
  color: var(--primary-600);
  font-weight: 500;
}

/* Map */
.contact-map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-3xl);
  box-shadow: var(--shadow-md);
}

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

/* Form */
.contact-form-section {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--neutral-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--neutral-800);
  transition: all var(--transition-fast);
  font-size: var(--text-sm);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: var(--space-md);
}

/* ============================================================
   20. BLOG FİLTRE
   ============================================================ */
.blog-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  font-size: var(--text-sm);
  font-weight: 500;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--neutral-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
}

/* ============================================================
   21. WHATsAPP & SCROLL TO TOP
   ============================================================ */
/* Floating Butonlar — Sol Alt Stack */
.float-buttons {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.float-btn.whatsapp {
  background: #25d366;
  animation: pulse-whatsapp 2s infinite;
}

.float-btn.phone {
  background: var(--primary-600);
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary-600);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-md);
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
}

/* ============================================================
   22. SCROLL REVEAL ANİMASYONLARI
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   23. HİZMET LİSTESİ SAYFA
   ============================================================ */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.service-list-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.service-list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-200);
}

.service-list-card-img {
  height: 100%;
  min-height: 240px;
}

.service-list-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list-card-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-list-card-body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.service-list-card-body p {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  margin-bottom: var(--space-md);
}

.service-list-card-body .btn {
  align-self: flex-start;
}

/* ============================================================
   24. RESPONSIVE
   ============================================================ */

/* Tablet & Below */
@media (max-width: 1024px) {
  :root {
    --container-padding: 1.25rem;
  }

  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

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

  .mobile-toggle {
    display: flex;
  }

  .mobile-nav,
  .mobile-overlay {
    display: block;
  }

  .hero-slider {
    height: 500px;
  }

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

  .about-preview {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .sidebar-inner {
    position: static;
  }

  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .service-list-card {
    grid-template-columns: 220px 1fr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: var(--text-base);
  }

  .slider-prev {
    left: 16px;
  }

  .slider-next {
    right: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
  }

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

  h2 {
    font-size: var(--text-2xl);
  }

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

  .topbar {
    display: none;
  }

  .header {
    height: 65px;
  }

  .hero-slider {
    height: 480px;
  }

  .slide-content {
    max-width: 100%;
  }

  .slide-content .subtitle {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: var(--space-sm);
  }

  .slide-content h1 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
  }

  .slide-content p {
    font-size: var(--text-base);
    margin-bottom: var(--space-lg);
    max-width: 100%;
  }

  .slide-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .slide-buttons .btn,
  .slide-buttons .btn-lg {
    width: auto;
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }

  .cards-grid,
  .cards-grid-5 {
    grid-template-columns: 1fr;
  }

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

  .stats-row {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-cta-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .contact-map {
    height: 300px;
    border-radius: 0;
    margin-left: calc(var(--container-padding) * -1);
    margin-right: calc(var(--container-padding) * -1);
    width: calc(100% + var(--container-padding) * 2);
  }

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

  .detail-content h1 {
    font-size: var(--text-2xl);
  }

  .blog-detail-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .cta-content h2 {
    font-size: var(--text-2xl);
  }

  .cta-phone {
    font-size: var(--text-xl);
  }

  .service-list-card {
    grid-template-columns: 1fr;
  }

  .service-list-card-img {
    min-height: 200px;
  }

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

  .float-buttons {
    bottom: 16px;
    left: 16px;
    gap: 8px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: var(--text-lg);
  }

  .scroll-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .slider-arrow {
    display: none;
  }
}

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

  h2 {
    font-size: var(--text-xl);
  }

  .hero-slider {
    height: 420px;
  }

  .slide-content h1 {
    font-size: var(--text-xl);
  }

  .slide-content .subtitle {
    font-size: 0.7rem;
  }

  .slide-content p {
    font-size: var(--text-sm);
  }

  .slide-buttons .btn,
  .slide-buttons .btn-lg {
    padding: 0.55rem 1rem;
    font-size: 0.7rem;
  }

  .btn {
    padding: 0.7rem 1.4rem;
    font-size: var(--text-xs);
  }

  .btn-lg {
    padding: 0.8rem 1.8rem;
    font-size: var(--text-sm);
  }

  .logo-img {
    height: 60px;
  }

  .logo-img-footer {
    height: 52px;
  }

  .logo-text .brand {
    font-size: var(--text-base);
  }

  .logo-text .tagline {
    display: none;
  }
}

/* ============================================================
   25. PRINT STYLES
   ============================================================ */
@media print {

  .topbar,
  .header,
  .footer,
  .footer-cta-bar,
  .whatsapp-float,
  .scroll-top,
  .sidebar,
  .hero-slider,
  .cta-section {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .container {
    max-width: 100%;
  }

  a {
    color: #000;
  }
}

/* ============================================================
   26. LAZY LOADING PLACEHOLDER
   ============================================================ */
img[loading="lazy"] {
  background: var(--neutral-100);
  min-height: 100px;
}

/* ============================================================
   27. COOKIE BİLDİRİMİ
   ============================================================ */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: var(--space-lg) var(--space-xl);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  font-size: var(--text-sm);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-notice.show {
  display: flex;
}

.cookie-notice p {
  margin: 0;
  flex: 1;
}

.cookie-notice .btn {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-notice {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
  }
}

/* ============================================================
   LEGAL / GİZLİLİK POLİTİKASI
   ============================================================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--primary-100);
  color: var(--neutral-900);
}

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

.legal-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--neutral-800);
}

.legal-content p {
  margin-bottom: var(--space-md);
  color: var(--neutral-600);
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: var(--space-sm);
  color: var(--neutral-600);
  line-height: 1.7;
}

.legal-content li strong {
  color: var(--neutral-800);
}