/* ============================================
   MRÇ Nakliye — Ana Stil Dosyası
   Renk Sistemi:
   --navy-950: #0a1628  (en koyu)
   --navy-900: #0f1f3d  (header bg)
   --navy-800: #142444  
   --navy-700: #1a2f56
   --navy-600: #1e3a6e
   --accent:   #3a8fd4  (açık mavi vurgu)
   --accent-light: #5aaee8
   --white:    #f8fafc
============================================ */

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

:root {
  --navy-950: #0a1628;
  --navy-900: #0f1f3d;
  --navy-800: #142444;
  --navy-700: #1a2f56;
  --navy-600: #1e3a6e;
  --accent: #3a8fd4;
  --accent-light: #5aaee8;
  --accent-dark: #2070b0;
  --white: #f8fafc;
  --text-light: #cbd5e1;
  --text-muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --font: 'Poppins', sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: #1e293b;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.55);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-light:hover { background: var(--accent); color: #fff; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-ghost:hover { gap: 12px; }

/* ---- SECTION COMMON ---- */
.section { padding: 96px 0; }
.section-dark { background: #f1f5f9; }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
}

/* ============================================
   HEADER
============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-900);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#header.scrolled {
  background: var(--navy-950);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

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

.logo img {
  height: 44px;
  width: auto;
}

#main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
#main-nav ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
#main-nav ul li a:hover,
#main-nav ul li a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
#main-nav ul li a.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 9px 20px;
}
#main-nav ul li a.nav-cta:hover { background: var(--accent-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  #main-nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy-950);
    border-top: 1px solid var(--border);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
  }
  #main-nav.open { transform: scaleY(1); }
  #main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
  }
  #main-nav ul li a { display: block; padding: 12px 8px; }
  #main-nav ul li a.nav-cta { margin-top: 8px; text-align: center; }
}

/* ============================================
   HERO SLIDER
============================================ */
#hero { margin-top: 72px; }

.slider {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 560px;
  overflow: hidden;
  background: var(--navy-950);
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,0.82) 40%, rgba(10,22,40,0.4) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-text {
  max-width: 620px;
}

.slide-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.slide.active .slide-label { opacity: 1; transform: translateY(0); }

.slide-text h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}
.slide.active .slide-text h1 { opacity: 1; transform: translateY(0); }
.slide-text h1 strong { color: var(--accent-light); font-weight: 800; }

.slide-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}
.slide.active .slide-text p { opacity: 1; transform: translateY(0); }

.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.65s, transform 0.5s ease 0.65s;
}
.slide.active .slide-btns { opacity: 1; transform: translateY(0); }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
  background: var(--navy-800);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 40px;
  text-align: center;
}
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stat-item { padding: 12px 24px; }
}

/* ============================================
   HİZMETLER
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(58,143,212,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); }
.service-icon i {
  font-size: 22px;
  color: var(--accent);
  transition: var(--transition);
}
.service-card:hover .service-icon i { color: #fff; }

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ============================================
   CTA BAND
============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58,143,212,0.15) 0%, transparent 70%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ============================================
   HAKKIMIZDA ÖZET
============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
}

.about-image {
  position: relative;
}
.about-image img {
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  padding: 18px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  opacity: 0.9;
}

.about-content .section-tag { margin-bottom: 8px; }
.about-content h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 24px 0 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}
.feature-item i { color: var(--accent); font-size: 16px; flex-shrink: 0; }

/* ============================================
   REFERANSLAR
============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.testimonial-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 36px 30px 28px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.quote-icon {
  margin-bottom: 16px;
}
.quote-icon i { font-size: 28px; color: var(--accent); opacity: 0.5; }

.testimonial-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}
.author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
}
.author-info span {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* ============================================
   PARTNERS
============================================ */
.partners-bar {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 40px 0;
}
.partners-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-bottom: 24px;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.partner-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(58,143,212,0.12);
  transform: translateY(-2px);
}
.partner-item img {
  width: 140px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  /* logo dosyası yoksa placeholder göster */
}
.partner-item img[src=""], 
.partner-item img:not([src]) {
  visibility: hidden;
}

/* ============================================
   FOOTER
============================================ */
#footer {
  background: var(--navy-950);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px;
}
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--accent-light); padding-left: 4px; }

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-line i { color: var(--accent); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.contact-line span,
.contact-line a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  transition: var(--transition);
}
.contact-line a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   WHATSAPP BUTTON
============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-btn i { font-size: 28px; color: #fff; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }

/* ============================================
   HAKKIMIZDA — ARAÇ FİLOSU
============================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .fleet-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px)  { .fleet-grid { grid-template-columns: 1fr; } }

.fleet-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: var(--transition);
}
.fleet-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }

.fleet-icon {
  width: 52px;
  height: 52px;
  background: rgba(58,143,212,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.fleet-icon i { font-size: 22px; color: var(--accent); }

.fleet-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}
.fleet-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f8fafc;
  font-size: 13px;
}
.fleet-spec span { color: #94a3b8; }
.fleet-spec strong { color: var(--navy-700); font-weight: 600; text-align: right; }

/* ============================================
   HAKKIMIZDA — SÜREÇ
============================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: 0 16px;
}
.step-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.process-step p { font-size: 13px; color: #64748b; line-height: 1.6; }
.process-connector {
  padding-top: 20px;
  color: var(--accent);
  opacity: 0.4;
  font-size: 18px;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .process-connector { display: none; }
  .process-steps { gap: 32px; }
  .process-step { max-width: 100%; }
}

/* ============================================
   HAKKIMIZDA — BÖLGELER
============================================ */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .regions-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px)  { .regions-grid { grid-template-columns: 1fr; } }

.region-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}
.region-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.region-card.featured {
  background: var(--navy-900);
  border-color: var(--navy-900);
}
.region-featured-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--accent-light);
  font-size: 14px;
}
.region-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--navy-900);
}
.region-card.featured h3 { color: #fff; border-color: rgba(255,255,255,0.15); }
.region-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 13px;
  color: #64748b;
}
.region-detail i { color: var(--accent); width: 14px; text-align: center; flex-shrink: 0; }
.region-card.featured .region-detail { color: rgba(255,255,255,0.75); }
.region-card.featured .region-detail i { color: var(--accent-light); }

/* ============================================
   İLETİŞİM SAYFASI
============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }

.contact-info-col .section-tag { margin-bottom: 8px; }
.contact-info-col h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.contact-info-col > p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 32px;
}

.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  transition: var(--transition);
}
.info-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: var(--accent); }
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(58,143,212,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon i { font-size: 18px; color: var(--accent); }
.info-text h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.info-text a,
.info-text span {
  display: block;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  transition: var(--transition);
}
.info-text a:hover { color: var(--accent); }

/* FORM CARD */
.contact-form-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.contact-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.contact-form-card > p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(58,143,212,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.btn-submit:hover { background: var(--accent-light); transform: translateY(-1px); }

.form-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}
.form-alert.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.form-alert.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* HARİTA */
.map-section {
  border-top: 3px solid var(--accent);
}

/* ============================================
   PAGE HEADING (alt sayfalar için)
============================================ */
.page-heading {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-700) 100%);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.page-heading-inner { position: relative; z-index: 1; }
.page-heading h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.page-heading p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 560px; }
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.breadcrumb-nav a { color: var(--accent-light); transition: var(--transition); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav i { font-size: 10px; }
