/* =====================================================
   EGOMAK DİJİTAL HUKUK BÜROSU - Ana Stil Dosyası
   ===================================================== */

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

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

:root {
  --dark-primary:   #0b1120;
  --dark-secondary: #111827;
  --dark-card:      #1a2340;
  --dark-border:    #243050;
  --gold:           #c9963a;
  --gold-light:     #e4b55a;
  --gold-pale:      #f5d98a;
  --text-primary:   #e8eaf0;
  --text-secondary: #a0aec0;
  --text-muted:     #64748b;
  --white:          #ffffff;
  --transition:     0.3s ease;
  --shadow:         0 4px 24px rgba(0,0,0,0.45);
  --shadow-gold:    0 4px 20px rgba(201,150,58,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 0.6rem;
  max-width: 580px;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem 0 1.6rem;
  border-radius: 2px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-pale));
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.9rem;
  border-radius: 4px;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.03em;
}

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

/* =====================================================
   HEADER / NAVBAR
   ===================================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.97);
  border-bottom: 1px solid var(--dark-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

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

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--dark-primary) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--dark-primary) !important;
  transform: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark-primary);
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark-primary) 45%, transparent 100%);
  z-index: 1;
}

.hero-placeholder {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.hero-placeholder-inner {
  width: 380px;
  height: 500px;
  border: 2px dashed var(--dark-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
}

.hero-placeholder-inner .ph-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.hero-placeholder-inner p {
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 4rem 5%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,150,58,0.12);
  border: 1px solid rgba(201,150,58,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--dark-border);
}

.hero-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-stat p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.04em;
}

/* =====================================================
   FEATURES BAR
   ===================================================== */
.features-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 1.8rem 5%;
}

.features-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.feature-item .fi-icon {
  font-size: 1.3rem;
  color: var(--gold);
}

.feature-item p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.feature-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* =====================================================
   PRACTICE AREAS (Ana sayfa özet)
   ===================================================== */
.section {
  padding: 6rem 5%;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .gold-line {
  margin-left: auto;
  margin-right: auto;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.practice-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  transition: height 0.4s ease;
}

.practice-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.practice-card:hover::before {
  height: 100%;
}

.practice-icon {
  width: 50px;
  height: 50px;
  background: rgba(201,150,58,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.practice-card:hover .practice-icon {
  background: rgba(201,150,58,0.2);
}

.practice-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.practice-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.practice-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1.2rem;
  transition: var(--transition);
}

.practice-card .card-link:hover {
  gap: 0.7rem;
}

/* =====================================================
   ABOUT SECTION (Ana sayfa)
   ===================================================== */
.about-section {
  background: var(--dark-secondary);
}

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

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

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--dark-card);
  border-radius: 8px;
  border: 2px dashed var(--dark-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 0.8rem;
}

.about-image-placeholder .ph-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.about-image-placeholder p {
  font-size: 0.85rem;
  opacity: 0.4;
}

.about-badge-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  text-align: center;
  min-width: 140px;
}

.about-badge-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
}

.about-badge-card p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.about-content .section-title { margin-bottom: 0.3rem; }

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about-qualifications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0;
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.qual-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* =====================================================
   WHY US SECTION
   ===================================================== */
.why-section {
  background: var(--dark-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
  background: var(--dark-card);
}

.why-card .why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* =====================================================
   CONTACT STRIP
   ===================================================== */
.contact-strip {
  background: linear-gradient(135deg, var(--dark-card), var(--dark-secondary));
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 4rem 5%;
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--white);
}

.contact-strip p {
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

.contact-info-items {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,150,58,0.12);
  border: 1px solid rgba(201,150,58,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-item .ci-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ci-item .ci-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #080e1b;
  border-top: 1px solid var(--dark-border);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand .logo-main { font-size: 1.4rem; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.87rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--dark-border);
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact-item .fci-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom p a {
  color: var(--gold);
}

/* =====================================================
   PAGE HERO (İç sayfalar için)
   ===================================================== */
.page-hero {
  min-height: 38vh;
  background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-card) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem 5% 3.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
  border-bottom: 1px solid var(--dark-border);
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,150,58,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,150,58,0.04) 0%, transparent 40%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--text-muted); }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
}

.page-hero p {
  color: var(--text-secondary);
  max-width: 560px;
  margin-top: 0.8rem;
}

/* =====================================================
   ÇALIŞMA ALANLARI SAYFASI
   ===================================================== */
.areas-intro {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.areas-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.areas-sticky {
  position: sticky;
  top: 100px;
}

.area-nav {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  overflow: hidden;
}

.area-nav h4 {
  background: rgba(201,150,58,0.1);
  border-bottom: 1px solid var(--dark-border);
  padding: 1rem 1.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}

.area-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition);
}

.area-nav ul li a:hover,
.area-nav ul li a.active {
  background: rgba(201,150,58,0.08);
  color: var(--gold);
  padding-left: 1.8rem;
}

.area-nav ul li:last-child a { border-bottom: none; }

.area-detail-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--dark-border);
}

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

.area-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.area-icon-lg {
  width: 64px;
  height: 64px;
  background: rgba(201,150,58,0.1);
  border: 1px solid rgba(201,150,58,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.area-header-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--white);
}

.area-header-text p {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.3rem;
  font-weight: 500;
}

.area-body p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.area-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.area-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* =====================================================
   HAKKIMIZDA SAYFASI
   ===================================================== */
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.lawyer-img-wrap {
  position: sticky;
  top: 100px;
}

.lawyer-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--dark-card);
  border-radius: 8px;
  border: 2px dashed var(--dark-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 1rem;
}

.lawyer-img-placeholder .ph-icon { font-size: 4rem; opacity: 0.25; }
.lawyer-img-placeholder p { font-size: 0.85rem; opacity: 0.4; }

.lawyer-info-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.lawyer-info-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--dark-border);
}

.lici {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.87rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.lici-icon { color: var(--gold); }

.about-full-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.about-full-content .role-tag {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
}

.about-full-content p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.3rem;
  font-size: 0.95rem;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.tag {
  background: rgba(201,150,58,0.1);
  border: 1px solid rgba(201,150,58,0.2);
  color: var(--gold);
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 3px;
  font-weight: 500;
}

.timeline {
  margin-top: 2rem;
}

.timeline h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.tl-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 36px;
  bottom: -0.5rem;
  width: 1px;
  background: var(--dark-border);
}

.tl-dot {
  width: 40px;
  height: 40px;
  background: rgba(201,150,58,0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.tl-content h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.tl-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* =====================================================
   İLETİŞİM SAYFASI
   ===================================================== */
.contact-page {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  transition: var(--transition);
}

.cip-item:hover {
  border-color: var(--gold);
}

.cip-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,150,58,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cip-text .label {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.cip-text .value {
  font-size: 0.93rem;
  color: var(--text-primary);
  margin-top: 0.2rem;
}

.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.contact-form-wrap > p {
  color: var(--text-muted);
  font-size: 0.87rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 1.5rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-secondary);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,150,58,0.04);
}

.form-group select option {
  background: var(--dark-card);
}

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

.form-submit-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 0.8rem;
  margin-top: 2rem;
}

.map-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.3; }
.map-placeholder p { font-size: 0.85rem; opacity: 0.5; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 420px; }
  .areas-intro-grid { grid-template-columns: 1fr; }
  .areas-sticky { position: static; }
  .about-full-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--dark-secondary);
    border-top: 1px solid var(--dark-border);
    padding: 1.5rem 5%;
    gap: 1.2rem;
    z-index: 999;
  }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 6rem 5% 4rem; }
  .hero-placeholder { display: none; }
  .hero-content { max-width: 100%; padding: 0; }
  .hero-stats { gap: 1.5rem; }
  .features-bar-inner { justify-content: flex-start; }
  .contact-strip-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .about-qualifications { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .section { padding: 4rem 5%; }
}
