/* ========== ANA SAYFA ========== */
.home-hero {
  min-height: 75vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255,122,26,.15), transparent),
    linear-gradient(rgba(15,17,21,.9), rgba(15,17,21,.98)),
    url('https://images.unsplash.com/photo-1632823471565-1ecdf5c6da05?w=1600') center/cover;
  background-blend-mode: normal;
  position: relative;
}
.hero-inner { max-width: 800px; }
.home-hero h1 {
  font-size: 54px; line-height: 1.1; margin-bottom: 18px;
  font-weight: 800; letter-spacing: -1px;
}
.home-hero p {
  font-size: 19px; color: #b8bfce; margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 32px; background: var(--accent); color: #111;
  border-radius: 12px; font-weight: 700; font-size: 16px;
  transition: .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn-ghost {
  padding: 14px 32px; background: transparent; color: var(--text);
  border: 2px solid var(--border); border-radius: 12px;
  font-weight: 600; font-size: 16px; transition: .2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ========== BÖLÜMLER ========== */
.section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.section-alt {
  background: var(--panel); max-width: none;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.section-alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.sec-title {
  font-size: 36px; text-align: center; margin-bottom: 12px;
  font-weight: 800; letter-spacing: -0.5px;
}
.sec-sub { text-align: center; color: var(--muted); margin-bottom: 50px; font-size: 16px; }

/* ========== HİZMETLER ========== */
.services-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.service-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 22px; transition: .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0; transition: .25s;
}
.service-card:hover {
  transform: translateY(-4px); border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(255,122,26,.12);
}
.service-card:hover::before { opacity: 1; }
.service-ico {
  font-size: 40px; display: block; margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(255,122,26,.4));
}
.service-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--text); }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }

/* ========== GALERİ ========== */
.gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 14px;
  aspect-ratio: 4/3; background: #0b0d11;
  border: 1px solid var(--border); transition: .25s;
}
.gallery-item:hover { transform: translateY(-4px); border-color: var(--accent); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: .4s; display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
  display: flex; flex-direction: column; gap: 3px;
}
.gallery-info strong { font-size: 15px; color: #fff; }
.gallery-info span { font-size: 12px; color: #c8cdd8; }

/* ========== HAKKIMIZDA ========== */
.about-wrap { max-width: 800px; margin: 0 auto; text-align: center; }
.about-text h2 { font-size: 32px; margin-bottom: 20px; }
.about-text p { color: #b8bfce; font-size: 17px; line-height: 1.8; }

/* ========== İLETİŞİM ========== */
.contact-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1100px; margin: 0 auto;
}
.contact-card {
  background: var(--panel-2); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; display: flex;
  flex-direction: column; gap: 6px; transition: .2s;
  text-align: center; align-items: center;
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.contact-card .ico { font-size: 32px; margin-bottom: 4px; }
.contact-card strong { font-size: 13px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-card span:last-child { font-size: 15px; color: var(--text); }

/* ========== BOŞ DURUM ========== */
.empty-state {
  text-align: center; color: var(--muted); padding: 40px;
  background: rgba(255,255,255,.02); border: 1px dashed var(--border);
  border-radius: 12px; font-size: 14px;
}

@media (max-width: 640px) {
  .home-hero h1 { font-size: 36px; }
  .home-hero p { font-size: 16px; }
  .sec-title { font-size: 28px; }
}
/* ========== HARİTA / KONUM ========== */
.section-map { padding: 80px 24px; }
.map-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 0; background: var(--panel);
  border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

/* Sol: Bilgi kartı */
.map-info {
  padding: 40px 36px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 14px;
  background: linear-gradient(135deg, rgba(255,122,26,.06), transparent);
  border-right: 1px solid var(--border);
}
.map-icon {
  font-size: 48px; line-height: 1;
  filter: drop-shadow(0 6px 16px rgba(255,122,26,.5));
}
.map-info h3 {
  font-size: 24px; font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 4px;
}
.map-info p {
  color: #b8bfce; font-size: 15px; line-height: 1.7;
}
.map-actions {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px;
}
.map-actions .btn-primary,
.map-actions .btn-ghost {
  padding: 12px 22px; font-size: 14px; flex: 1; min-width: 140px;
  text-align: center;
}
.map-meta {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 14px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted);
}
.map-meta span { display: flex; align-items: center; gap: 6px; }
.map-meta span span { color: var(--text); }

/* Sağ: Harita */
.map-frame {
  position: relative;
  min-height: 480px;
  background: #0b0d11;
}
.map-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  filter: grayscale(0.15) contrast(1.05);
  transition: filter .3s;
}
.map-frame:hover iframe { filter: grayscale(0) contrast(1.05); }

/* Mobil */
@media (max-width: 900px) {
  .map-wrap {
    grid-template-columns: 1fr;
  }
  .map-info {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 32px 24px;
  }
  .map-frame { min-height: 350px; }
  .map-info h3 { font-size: 20px; }
}