/* ============================================================
   KURUMSAL EVDEN EVE NAKLİYAT — style.css
   Renkler: Lacivert #0d2c54 | Turuncu #f5820b | Açık #f4f7fb
   ============================================================ */

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

:root {
  --navy: #0d2c54;
  --navy-dark: #081d3a;
  --orange: #f5820b;
  --orange-dark: #d96f04;
  --green: #25d366;
  --green-dark: #1eb857;
  --bg: #f4f7fb;
  --text: #29323c;
  --muted: #5c6b7a;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(13, 44, 84, .1);
  --shadow-lg: 0 14px 40px rgba(13, 44, 84, .16);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.25; font-weight: 800; }
h1 { font-size: clamp(1.7rem, 4.5vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 3.4vw, 2.15rem); }
h3 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }

section { padding: 64px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.section-head .kicker {
  display: inline-block; background: rgba(245,130,11,.12); color: var(--orange-dark);
  font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 14px;
}
.section-head p { color: var(--muted); margin-top: 10px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; border-radius: 100px; padding: 13px 26px; font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer; border: none; text-align: center;
}
.btn:active { transform: scale(.97); }
.btn-lg { padding: 16px 32px; font-size: 1.08rem; }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(245,130,11,.4); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-wa { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.35); }
.btn-wa:hover { background: var(--green-dark); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy-dark); color: #cfe0f5; font-size: .85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 7px; padding-bottom: 7px; }
.topbar-phone { color: #fff; font-weight: 700; }
.topbar-phone:hover { color: var(--orange); }

/* ---------- Header ---------- */
.site-header {
  background: #fff; position: sticky; top: 0; z-index: 900;
  box-shadow: 0 2px 14px rgba(13,44,84,.09);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-size: 1.18rem; font-weight: 500; color: var(--navy); letter-spacing: -.02em; white-space: nowrap; }
.logo-text strong { color: var(--orange); font-weight: 800; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a, .nav-drop-btn {
  padding: 10px 14px; font-weight: 600; color: var(--navy); font-size: .95rem;
  border-radius: 8px; background: none; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 5px;
}
.main-nav > a:hover, .nav-drop-btn:hover, .main-nav > a.active, .nav-dropdown.active .nav-drop-btn { color: var(--orange); }
.caret { font-size: .7rem; transition: transform .2s; }

.nav-dropdown { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0; background: #fff; min-width: 250px;
  border-radius: 12px; box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease;
}
.nav-dropdown:hover .nav-drop-menu, .nav-dropdown.open .nav-drop-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown:hover .caret, .nav-dropdown.open .caret { transform: rotate(180deg); }
.nav-drop-menu a {
  display: block; padding: 10px 14px; border-radius: 8px; font-weight: 600;
  font-size: .93rem; color: var(--text);
}
.nav-drop-menu a:hover { background: var(--bg); color: var(--orange); }

.main-nav > a.nav-cta {
  background: var(--orange); color: #fff !important; border-radius: 100px;
  padding: 10px 20px !important; margin-left: 8px; font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(245,130,11,.35);
}
.main-nav > a.nav-cta:hover { background: var(--orange-dark); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 3px; transition: all .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #14417a 100%);
  color: #e8f0fa; padding: 70px 0 90px; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(245,130,11,.16), transparent 45%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .hl { color: var(--orange); }
.hero .lead { font-size: 1.13rem; color: #c6d6ea; margin-bottom: 28px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .92rem; font-weight: 600; color: #d8e5f5; }
.hero-badges span { display: inline-flex; align-items: center; gap: 7px; }
.hero-badges b { color: var(--orange); }
.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; filter: drop-shadow(0 18px 36px rgba(0,0,0,.3)); }

/* ---------- Güven şeridi ---------- */
.trust-strip { background: #fff; margin-top: -44px; position: relative; z-index: 5; padding: 0; }
.trust-grid {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.trust-item { padding: 26px 20px; text-align: center; border-right: 1px solid #eef2f7; }
.trust-item:last-child { border-right: none; }
.trust-item .num { font-size: 1.7rem; font-weight: 800; color: var(--navy); display: block; }
.trust-item .num em { color: var(--orange); font-style: normal; }
.trust-item .lbl { color: var(--muted); font-size: .9rem; font-weight: 600; }

/* ---------- Hizmet kartları ---------- */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column; border-top: 4px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--orange); }
.service-icon {
  width: 62px; height: 62px; border-radius: 16px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; background: rgba(245,130,11,.1);
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .93rem; flex: 1; }
.service-card .more { color: var(--orange); font-weight: 700; font-size: .92rem; }
.service-card .more:hover { color: var(--orange-dark); }

/* ---------- Neden Biz ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  flex: 0 0 52px; width: 52px; height: 52px; border-radius: 14px; background: rgba(13,44,84,.07);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.why-item h3 { font-size: 1.05rem; margin-bottom: 5px; }
.why-item p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Süreç ---------- */
.process { background: var(--navy); color: #d7e4f4; }
.process .section-head h2 { color: #fff; }
.process .section-head p { color: #a9bdd6; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; padding: 0 8px; position: relative; }
.step-no {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(245,130,11,.18);
}
.step h3 { color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .9rem; color: #a9bdd6; margin: 0; }

/* ---------- Bölgeler ---------- */
.regions { background: var(--bg); }
.regions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.region-card {
  background: #fff; border-radius: var(--radius); padding: 20px 22px; display: flex;
  align-items: center; gap: 14px; box-shadow: var(--shadow); font-weight: 700; color: var(--navy);
  transition: transform .18s, box-shadow .18s;
}
.region-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--orange); }
.region-card .pin {
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px; background: rgba(245,130,11,.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.region-card small { display: block; color: var(--muted); font-weight: 500; font-size: .82rem; }

/* ---------- Yorumlar ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.stars { color: #f7b500; letter-spacing: 3px; margin-bottom: 12px; font-size: 1.05rem; }
.review-card p { color: var(--text); font-size: .95rem; font-style: italic; }
.review-who { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.review-who b { color: var(--navy); display: block; line-height: 1.2; }
.review-who small { color: var(--muted); }

/* ---------- SSS ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid #e6ecf4; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 52px 18px 20px; font-size: 1.02rem; font-weight: 700; color: var(--navy);
  font-family: inherit; position: relative;
}
.faq-q::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--orange); font-weight: 400; transition: transform .2s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 20px 18px; color: var(--muted); }

/* ---------- CTA bandı ---------- */
.cta-band { background: linear-gradient(120deg, var(--orange) 0%, #ff9c2e 100%); color: #fff; padding: 48px 0; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { margin: 0; opacity: .95; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-orange { background: var(--navy); box-shadow: 0 6px 18px rgba(8,29,58,.35); }
.cta-band .btn-orange:hover { background: var(--navy-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #a9bdd6; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr .8fr; gap: 36px; padding-bottom: 44px; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; padding: 4px 0; font-size: .92rem; color: #a9bdd6; }
.footer-col a:hover { color: var(--orange); }
.footer-col p { font-size: .92rem; }
.footer-logo { margin-bottom: 14px; }
.footer-contact a { display: inline !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* ---------- Mobil arama çubuğu ---------- */
.mobile-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  display: none; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 18px rgba(0,0,0,.18);
}
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 10px; font-weight: 800; font-size: 1.05rem; color: #fff;
}
.mcb-call { background: var(--orange); }
.mcb-call:active { background: var(--orange-dark); }
.mcb-wa { background: var(--green); }
.mcb-wa:active { background: var(--green-dark); }

/* ---------- WhatsApp float (masaüstü) ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 940;
  width: 58px; height: 58px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.45);
  transition: transform .18s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- İç sayfa hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy) 60%, #14417a);
  color: #d9e6f6; padding: 54px 0; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 88% 15%, rgba(245,130,11,.15), transparent 42%);
}
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #c6d6ea; max-width: 640px; }
.breadcrumb { font-size: .85rem; margin-bottom: 14px; color: #8fa8c7; }
.breadcrumb a { color: #c6d6ea; }
.breadcrumb a:hover { color: var(--orange); }
.page-hero .hero-actions { margin-top: 22px; margin-bottom: 0; }
.page-hero-visual svg { width: 100%; max-width: 380px; margin-left: auto; filter: drop-shadow(0 14px 28px rgba(0,0,0,.3)); }

/* ---------- İçerik blokları ---------- */
.content-section .container { max-width: 980px; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.content-grid.rev { direction: rtl; }
.content-grid.rev > * { direction: ltr; }
.check-list { list-style: none; margin: 18px 0; }
.check-list li { padding: 7px 0 7px 34px; position: relative; font-size: .98rem; }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 6px; width: 24px; height: 24px;
  background: rgba(37,183,87,.13); color: #1a9c4b; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem;
}
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.info-card { background: var(--bg); border-radius: var(--radius); padding: 24px; }
.info-card h3 { margin-bottom: 8px; font-size: 1.02rem; }
.info-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-card { background: var(--bg); border-radius: var(--radius); padding: 30px; }
.contact-card h3 { margin-bottom: 14px; }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid #e5ebf3; }
.contact-line:last-child { border-bottom: none; }
.contact-line .ci {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 12px; background: rgba(245,130,11,.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-line b { color: var(--navy); display: block; }
.contact-line a { color: var(--muted); font-size: .95rem; }
.contact-line a:hover { color: var(--orange); }

/* ---------- Animasyon ---------- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid .review-card:last-child { display: none; }
}

@media (max-width: 860px) {
  section { padding: 48px 0; }
  .topbar-item { display: none; }
  .topbar-inner { justify-content: center; }

  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 84px 18px 120px;
    box-shadow: -8px 0 30px rgba(0,0,0,.15); transition: right .3s ease; z-index: 990;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav > a, .nav-drop-btn { width: 100%; padding: 14px 12px; font-size: 1.02rem; justify-content: space-between; }
  .nav-dropdown { width: 100%; }
  .nav-drop-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 0 0 10px;
  }
  .nav-dropdown.open .nav-drop-menu { max-height: 500px; }
  .main-nav > a.nav-cta { margin: 14px 0 0; justify-content: center; }

  .hero { padding: 48px 0 76px; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .page-hero-visual { display: none; }
  .hero-actions .btn { flex: 1 1 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid #eef2f7; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }

  .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .content-grid.rev { direction: ltr; }
  .info-cards { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:last-child { display: block; }
  .cta-band-inner { flex-direction: column; text-align: center; }

  /* Mobil arama çubuğu görünür */
  .mobile-call-bar { display: grid; }
  .wa-float { display: none; }
  body { padding-bottom: 58px; }
  .site-footer { padding-bottom: 10px; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .logo-text { font-size: 1.05rem; }
}
