/* ── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange:   #E8420A;
  --orange-lt:#FF5722;
  --yellow:   #F5C518;
  --black:    #080808;
  --dark:     #111111;
  --card:     #181818;
  --border:   #2a2a2a;
  --gray:     #888;
  --light:    #f0f0f0;
  --white:    #ffffff;
  --r:        6px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── NAV ──────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,66,10,0.2);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo-img {
  width: 46px; height: 46px;
  object-fit: contain;
  border-radius: 50%;
}
.nav-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.nav-name span { color: var(--orange); }
.nav-name small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
}
.nav-links { display: flex; gap: 1.8rem; align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color .2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-tel {
  background: var(--orange);
  color: #fff !important;
  padding: 0.4rem 1.1rem;
  border-radius: var(--r);
  font-weight: 700 !important;
  white-space: nowrap;
  transition: background .2s;
}
.nav-tel:hover { background: var(--orange-lt) !important; color: #fff !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
#mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  border-bottom: 2px solid var(--orange);
  z-index: 998;
  padding: 1.5rem 5vw 2rem;
  flex-direction: column;
  gap: 1.2rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
#mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────────── */
#hero {
  min-height: min(92vh, 720px);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 5vw 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.hero-gear-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
  pointer-events: none;
  overflow: hidden;
}
.gear-svg {
  width: min(70vw, 600px);
  opacity: 0.04;
  animation: gear-spin 40s linear infinite;
  transform-origin: center;
  flex-shrink: 0;
}
.gear-svg-2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: min(40vw, 320px);
  opacity: 0.03;
  animation: gear-spin 28s linear infinite reverse;
  transform-origin: center;
}
@keyframes gear-spin { to { transform: rotate(360deg); } }
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.72) 42%, rgba(8,8,8,0.25) 72%, rgba(8,8,8,0.1) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
@media (max-width: 768px) {
  #hero { min-height: min(88vh, 520px); padding-top: 88px; }
  .hero-bg img { object-position: 65% center; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.55) 55%, rgba(8,8,8,0.35) 100%);
  }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,66,10,0.15);
  border: 1px solid rgba(232,66,10,0.4);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-lt);
  margin-bottom: 1.6rem;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.4); }
}
h1.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
h1.hero-h1 .accent { color: var(--orange); }
h1.hero-h1 .accent2 { color: var(--yellow); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, transform .15s;
}
.btn-call:hover { background: var(--orange-lt); transform: translateY(-2px); color:#fff; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, transform .15s;
}
.btn-wa:hover { background: #1ebe5c; transform: translateY(-2px); color:#fff; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hstat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hstat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 0.2rem;
}

/* ── DETAIL PAGE ──────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 5vw 4rem;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.page-hero .hero-gear-bg { opacity: 1; }
.page-hero .gear-svg { opacity: 0.03; width: min(50vw, 400px); }
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.page-icon { font-size: 2.5rem; margin-bottom: 1rem; }
h1.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
h1.page-title .accent { color: var(--orange); }
.page-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 640px;
}
.detail-body { max-width: 760px; }
.detail-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin: 2.5rem 0 1rem;
}
.detail-body p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.feature-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.2rem 1.3rem;
}
.feature-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}
.feature-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}
.cta-box {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(232,66,10,0.15), rgba(245,197,24,0.08));
  border: 1px solid rgba(232,66,10,0.35);
  border-radius: var(--r);
}
.cta-box h2 { margin-top: 0 !important; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.2rem; }
.hiz-card-link {
  display: block;
  background: var(--card);
  padding: 2.2rem;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}
.hiz-card-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.hiz-card-link:hover { background: #1e1e1e; }
.hiz-card-link:hover::after { transform: scaleX(1); }
.hiz-more {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-lt);
}

/* ── SECTION COMMONS ──────────────────────── */
.sec { padding: 6rem 5vw; }
.sec-dark { background: var(--dark); }
.sec-black { background: var(--black); }
.eyebrow {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.7rem;
}
h2.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}
.sec-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.sec-head { margin-bottom: 3rem; }

/* ── HİZMETLER ────────────────────────────── */
.hiz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.hiz-card {
  background: var(--card);
  padding: 2.2rem;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}
.hiz-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.hiz-card:hover { background: #1e1e1e; }
.hiz-card:hover::after { transform: scaleX(1); }
.hiz-icon { font-size: 2rem; margin-bottom: 1rem; }
.hiz-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.hiz-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── FAQ ──────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 760px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem 1.6rem;
}
.faq-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.faq-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── MÜŞTERİ YORUMLARI ────────────────────── */
#yorumlar { background: var(--dark); }
.yorum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.yorum-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.8rem;
  transition: border-color .2s, transform .2s;
}
.yorum-card:hover { border-color: rgba(232,66,10,0.4); transform: translateY(-4px); }
.stars {
  color: var(--yellow);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}
.yorum-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.yorum-name { font-weight: 700; font-size: 0.9rem; }
.yorum-loc { font-size: 0.78rem; color: var(--gray); margin-top: 0.15rem; }

/* ── HİZMET BÖLGELERİ ─────────────────────── */
#bolgeler { background: var(--black); }
.bolge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.bolge-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  transition: border-color .2s, transform .2s;
}
.bolge-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.bolge-icon { font-size: 1.6rem; }
.bolge-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}
.bolge-kw { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }
.seo-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 800px;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--r);
  border-left: 3px solid var(--orange);
}
.seo-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

/* ── WHATSAPP FLOAT ───────────────────────── */
.float-btns {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 9999;
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 0.75rem 1.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 28px rgba(0,0,0,0.5); }
.float-wa { background: #25D366; color: #fff; }
.float-tel { background: var(--orange); color: #fff; }
.float-icon { font-size: 1.2rem; line-height: 1; }

/* ── FOOTER ───────────────────────────────── */
#footer {
  background: #050505;
  border-top: 2px solid var(--orange);
  padding: 3rem 5vw 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo-img {
  width: 80px; height: 80px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.footer-brand-name span { color: var(--orange); }
.footer-brand-name small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 0.6rem;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-col ul li a { color: inherit; transition: color .2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.7rem;
}
.footer-contact-item strong { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-kw {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.18);
  max-width: 600px;
  text-align: right;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-kw { text-align: left; }
}
@media (max-width: 480px) {
  .float-btn span.float-label { display: none; }
  .float-btn { padding: 0.9rem; }
  .float-icon { font-size: 1.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
