﻿/* ═══════════════════════════════════════════════════════════
   Eğitimevi Organizasyon — Ana CSS
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --primary: #C41E2A;
  --secondary: #8B1218;
  --accent: #E8B84B;
  --primary-light: #D63040;
  --primary-dark: #9B1520;
  --secondary-light: #B01828;
  --secondary-dark: #6B0E14;
  --accent-light: #F0CA6A;
  --bg-soft: #fdf8f8;
  --bg-warm: #fefaf8;
  --bg-blue: #fdf0f0;
  --text-dark: #1a1010;
  --text-mid: #503030;
  --text-light: #9a7070;
  --border: #e8d8d8;
  --border-light: #f0e0e0;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 24px rgba(196,30,42,0.1), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(196,30,42,0.14), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-colored: 0 8px 28px rgba(139,18,24,0.22);
  --radius: 10px;
  --radius-sm: 5px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
h4, h5, h6 { font-family: 'Inter', sans-serif; line-height: 1.35; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Layout helpers ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad    { padding: 5.5rem 1.5rem; }
.section-pad-sm { padding: 3.75rem 1.5rem; }
.hidden { display: none !important; }

/* ── Typography ──────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.9rem;
  background: rgba(139,18,24,0.08);
  border-radius: 999px;
  border: 1px solid rgba(139,18,24,0.15);
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}
.section-divider {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  margin: 0.85rem 0 1.75rem;
  border-radius: 2px;
}

/* ── Page Hero (iç sayfalar) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 55%, var(--secondary-dark) 100%);
  padding: 5rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.07) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,18,24,0.22) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.page-hero-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.82rem; margin-bottom: 1.25rem;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.page-hero-back:hover { color: rgba(255,255,255,0.9); }
.page-hero-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: #fff; line-height: 1.17;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.page-hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem; line-height: 1.8; max-width: 600px;
}

/* ── Ana Sayfa Hero ─────────────────────────────────────── */
.hero-main {
  min-height: 660px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 55%, var(--secondary-dark) 100%);
}
.hero-main::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.055) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none; z-index: 1;
}
.hero-main-deco-1 {
  position: absolute; top: -25%; right: -8%;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,42,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.hero-main-deco-2 {
  position: absolute; bottom: -15%; left: -8%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,18,24,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-main-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 1.5rem; width: 100%;
  position: relative; z-index: 2;
}
.hero-main-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-bottom: 1.1rem;
}
.hero-eyebrow-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); opacity: 0.8;
}

/* ── Navigasyon ──────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-link {
  color: var(--text-mid); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  padding: 0.45rem 0.85rem; border-radius: var(--radius-sm);
  transition: color var(--transition); position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--secondary); border-radius: 1px;
  transition: left 0.22s ease, right 0.22s ease;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { left: 0.85rem; right: 0.85rem; }
.nav-link.active { color: var(--primary); font-weight: 600; }
.nav-link.active::after { left: 0.85rem; right: 0.85rem; }

/* dropdown */
.has-dropdown .dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); min-width: 230px;
  box-shadow: 0 12px 40px rgba(196,30,42,0.12), 0 2px 6px rgba(0,0,0,0.04);
  padding: 0.5rem 0; z-index: 200;
}
.has-dropdown .dropdown a {
  display: block; padding: 0.5rem 1.1rem;
  font-size: 0.85rem; color: var(--text-mid);
  text-decoration: none; transition: background var(--transition), color var(--transition);
}
.has-dropdown .dropdown a:hover { background: var(--bg-soft); color: var(--primary); }

/* ── Butonlar ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--primary); color: #fff;
  padding: 0.72rem 1.8rem; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.01em; text-decoration: none;
  border: 2px solid var(--primary);
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition), transform 0.15s;
  cursor: pointer; white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-light); border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,30,42,0.28);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: transparent; color: var(--primary);
  padding: 0.7rem 1.75rem; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.01em; text-decoration: none;
  border: 2px solid var(--primary);
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform 0.15s;
  cursor: pointer; white-space: nowrap;
}
.btn-secondary:hover {
  background: var(--primary); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,30,42,0.22);
}
.btn-secondary:active { transform: translateY(0); box-shadow: none; }

.btn-accent {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--accent); color: #fff;
  padding: 0.72rem 1.8rem; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.01em; text-decoration: none;
  border: 2px solid var(--accent);
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition), transform 0.15s;
  cursor: pointer; white-space: nowrap;
}
.btn-accent:hover {
  background: var(--accent-light); border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,149,42,0.3);
}
.btn-accent:active { transform: translateY(0); box-shadow: none; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: transparent; color: var(--secondary);
  padding: 0.5rem 1.15rem; border-radius: 6px;
  font-weight: 600; font-size: 0.85rem; text-decoration: none;
  border: 1.5px solid rgba(139,18,24,0.35);
  transition: all var(--transition); cursor: pointer;
}
.btn-ghost:hover {
  background: var(--secondary); color: #fff;
  border-color: var(--secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139,18,24,0.25);
}

.btn-sm  { padding: 0.42rem 1.05rem; font-size: 0.83rem; }
.btn-lg  { padding: 0.9rem 2.3rem; font-size: 0.96rem; }

/* ── Kartlar ─────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.card-flat { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); }
.card-soft { background: var(--bg-soft); border-radius: var(--radius-lg); }

/* ── Hizmet kartı ────────────────────────────────────────── */
.service-card {
  border-left: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}
.service-card:hover {
  border-left-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(139,18,24,0.12) 0%, rgba(196,30,42,0.07) 100%);
  border: 1px solid rgba(139,18,24,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(139,18,24,0.2) 0%, rgba(196,30,42,0.12) 100%);
  border-color: rgba(139,18,24,0.22);
  transform: rotate(-4deg) scale(1.06);
}

/* ── Galeri ──────────────────────────────────────────────── */
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(140,10,18,0.55), rgba(100,8,14,0.5));
  opacity: 0; transition: opacity 0.28s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary-dark) 100%);
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

/* ── Stat card ───────────────────────────────────────────── */
.stat-card {
  text-align: center; padding: 2.25rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--transition), transform var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: #fff; line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label { color: rgba(255,255,255,0.68); font-size: 0.84rem; margin-top: 0.5rem; font-weight: 500; letter-spacing: 0.01em; }

/* ── Process steps ───────────────────────────────────────── */
.step-number {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(139,18,24,0.28);
}

/* ── Referans ────────────────────────────────────────────── */
.ref-pill {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-mid); background: #fff;
  transition: all var(--transition); white-space: nowrap;
  box-shadow: var(--shadow-xs);
}
.ref-pill:hover { border-color: var(--primary); color: var(--primary); background: rgba(196,30,42,0.04); transform: translateY(-1px); }
.ref-logo { height: 50px; object-fit: contain; filter: grayscale(60%) opacity(0.7); transition: filter 0.3s, transform 0.25s; }
.ref-logo:hover { filter: grayscale(0%) opacity(1); transform: scale(1.06); }

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 0.2rem 0.65rem;
  border-radius: 999px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.01em;
}
.badge-green  { background: #d1fae5; color: #065f46; }
.badge-red    { background: #fee2e2; color: #991b1b; }
.badge-blue   { background: #dbeafe; color: #1d4ed8; }
.badge-yellow { background: #fef3c7; color: #92400e; }

/* ── Alert ───────────────────────────────────────────────── */
.alert { padding: 0.95rem 1.15rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: 0.9rem; }
.alert-success { background: #ecfdf5; color: #065f46; border-left: 3px solid #059669; }
.alert-error   { background: #fef2f2; color: #991b1b; border-left: 3px solid #dc2626; }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 45%, var(--secondary-dark) 100%);
  color: #fff; padding: 5.5rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.055) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute;
  top: -50%; right: -5%; width: 55%; height: 200%;
  background: radial-gradient(ellipse, rgba(200,149,42,0.14) 0%, transparent 60%);
  pointer-events: none;
}

/* ── WhatsApp butonu ─────────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  background: #25d366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #0b1825;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.footer a { color: rgba(255,255,255,0.52); text-decoration: none; transition: color var(--transition); }
.footer a:hover { color: #fff; }
.footer-title {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 1.05rem; margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}
.footer-link {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.5); font-size: 0.84rem;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-link:hover { color: rgba(255,255,255,0.92); padding-left: 0.35rem; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform 0.2s;
}
.social-icon:hover {
  background: var(--secondary); border-color: var(--secondary);
  transform: translateY(-3px);
}

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center; justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius-sm); box-shadow: 0 24px 80px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.75rem;
  color: rgba(255,255,255,0.6); font-size: 2rem; cursor: pointer;
  line-height: 1; transition: color var(--transition);
}
.lightbox-close:hover { color: #fff; }

/* ── Form ────────────────────────────────────────────────── */
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.7rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff; color: var(--text-dark);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196,30,42,0.09);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.42rem; }
.form-textarea { min-height: 120px; resize: vertical; }

/* ── Admin Panel ─────────────────────────────────────────── */
.admin-sidebar {
  width: 240px; min-height: 100vh;
  background: #0f1c2e; color: rgba(255,255,255,0.8); flex-shrink: 0;
}
.admin-sidebar a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.88rem; border-radius: var(--radius-sm);
  margin: 1px 0.5rem; transition: background 0.15s, color 0.15s;
}
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,0.1); color: #fff; }
.admin-content { flex: 1; padding: 1.75rem; background: #f5f5f7; min-height: 100vh; }
.admin-card { background: #fff; border-radius: var(--radius-sm); border: 1px solid #e5e7eb; padding: 1.5rem; }
.admin-table th {
  background: #f9fafb; font-size: 0.78rem; font-weight: 700; color: #6b7280;
  text-transform: uppercase; letter-spacing: 0.05em; padding: 0.6rem 1rem;
}
.admin-table td { padding: 0.75rem 1rem; border-bottom: 1px solid #f3f4f6; }
.admin-table tr:last-child td { border-bottom: none; }

/* ── Galeri filtre buton ──────────────────────────────────── */
.filter-btn {
  padding: 0.44rem 1.05rem; border: 1.5px solid var(--border);
  border-radius: 999px; cursor: pointer; font-size: 0.82rem; font-weight: 500;
  background: #fff; color: var(--text-mid);
  transition: all 0.18s; outline: none;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active-filter { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Blog & Medya kartı ──────────────────────────────────── */
.blog-card img,
.media-card img { transition: transform 0.45s ease; }
.blog-card:hover img,
.media-card:hover img { transform: scale(1.06); }

/* ── İletişim grid ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── Color picker ────────────────────────────────────────── */
input[type="color"] { width: 48px; height: 38px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 2px; cursor: pointer; }

/* ── Responsive grid utilities ───────────────────────────── */
.grid-sidebar    { display: grid; grid-template-columns: 2fr 1fr;    gap: 4rem;   align-items: start; }
.grid-sidebar-lg { display: grid; grid-template-columns: 3fr 2fr;    gap: 4.5rem; align-items: start; }
.grid-footer     { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.grid-3col       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.grid-2col       { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sticky-sidebar  { position: sticky; top: 98px; }

/* ── Responsive ──────────────────────────────────────────── */
.show-mobile-only { display: none; }

@media (max-width: 900px) {
  .grid-footer { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hide-mobile      { display: none !important; }
  .show-mobile-only { display: block !important; }
  .admin-sidebar    { display: none; }

  .page-hero        { padding: 3.25rem 1.25rem; }
  .section-pad      { padding: 3.75rem 1.25rem; }
  .section-pad-sm   { padding: 2.5rem 1.25rem; }

  .grid-sidebar     { grid-template-columns: 1fr; gap: 2rem; }
  .grid-sidebar-lg  { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-sidebar   { position: relative; top: auto; }
  .grid-3col        { grid-template-columns: repeat(2, 1fr); }
  .grid-footer      { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .page-hero-title  { font-size: clamp(1.55rem, 5vw, 2.2rem) !important; }
  .hero-main        { min-height: 520px; }

  .cta-section .btn-accent,
  .cta-section .btn-secondary { width: 100%; text-align: center; display: block; box-sizing: border-box; }

  .contact-info-first { order: -1; }
  .whatsapp-btn     { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
  .has-dropdown .dropdown { min-width: 160px; }
  .container        { padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (max-width: 480px) {
  .grid-footer      { grid-template-columns: 1fr; gap: 1.25rem; }
  .grid-3col        { grid-template-columns: 1fr; }
  .grid-2col        { grid-template-columns: 1fr; }
  .stat-card        { padding: 1.6rem 1rem; }
  .section-title    { font-size: clamp(1.3rem, 5vw, 1.75rem) !important; }
  .form-input, .form-select, .form-textarea { font-size: 16px; }
  .hero-main-deco-1, .hero-main-deco-2 { display: none; }
}

/* ── Hero Slider ─────────────────────────────────────────── */
.hero-slider {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(140,10,18,0.92) 0%, rgba(100,5,12,0.82) 50%, rgba(80,8,14,0.78) 100%);
  z-index: 1;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s;
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev { left: 1.25rem; }
.hero-arrow-next { right: 1.25rem; }

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  width: 24px;
  background: #fff;
}

/* ── Tipografi Utility Class'ları ────────────────────────── */
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.cta-desc {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 2rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin-bottom: 0.65rem;
}

.sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
  line-height: 1.3;
}

.text-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.text-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.text-sm {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-slider { min-height: 520px; }
  .hero-arrow  { width: 38px; height: 38px; }
  .hero-arrow svg { width: 16px; height: 16px; }
}
