/*
Theme Name: Nakliye Hızlı
Author: ChatGPT
Description: Basit, hızlı ve responsive evden eve nakliye WordPress teması.
Version: 1.0
Text Domain: nakliye-hizli
*/

:root{
  --primary:#0d6efd;
  --primary-dark:#0a58ca;
  --dark:#0f172a;
  --text:#334155;
  --muted:#64748b;
  --bg:#f8fafc;
  --white:#ffffff;
  --border:#e2e8f0;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
}
a{text-decoration:none;color:var(--primary)}
img{max-width:100%;height:auto;display:block}

.container{
  width:min(1140px,92%);
  margin:0 auto;
}

.topbar{
  background:var(--dark);
  color:#cbd5e1;
  font-size:14px;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar a{color:#fff}

.site-header{
  background:var(--white);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:100;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 0;
  flex-wrap:wrap;
}
.site-branding{
  display:flex;
  align-items:center;
  gap:14px;
}
.custom-logo-link{display:block}
.custom-logo{max-height:60px;width:auto}
.logo-text a{
  font-size:26px;
  font-weight:800;
  color:var(--dark);
}
.logo-text span{
  display:block;
  font-size:13px;
  color:var(--muted);
}

.main-nav .menu{
  display:flex;
  list-style:none;
  padding:0;
  margin:0;
  gap:22px;
  flex-wrap:wrap;
}
.main-nav .menu a{
  color:var(--dark);
  font-weight:600;
}
.main-nav .menu a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a{
  color:var(--primary);
}

.btn{
  display:inline-block;
  background:var(--primary);
  color:var(--white);
  padding:14px 22px;
  border-radius:12px;
  font-weight:700;
  transition:.2s;
}
.btn:hover{
  background:var(--primary-dark);
  color:var(--white);
}
.btn-outline{
  background:transparent;
  border:2px solid rgba(255,255,255,.35);
  color:var(--white);
}
.btn-light{
  background:var(--white);
  color:var(--primary);
}
.btn-light:hover{
  background:#eff6ff;
  color:var(--primary-dark);
}
.btn-sm{padding:11px 18px}
.btn-block{display:block;text-align:center}

.hero{
  padding:78px 0;
  background:linear-gradient(135deg,#0f172a,#1d4ed8);
  color:var(--white);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:34px;
  align-items:center;
}
.badge{
  display:inline-block;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  padding:8px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  margin-bottom:18px;
}
.hero h1{
  font-size:48px;
  line-height:1.1;
  margin:0 0 16px;
}
.hero p{
  font-size:18px;
  color:#dbeafe;
  margin:0 0 22px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:26px;
}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.stat{
  background:rgba(255,255,255,.08);
  padding:18px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  text-align:center;
}
.stat strong{
  display:block;
  font-size:22px;
  color:var(--white);
}
.stat span{
  font-size:14px;
  color:#dbeafe;
}

.hero-box{
  background:var(--white);
  color:var(--text);
  padding:28px;
  border-radius:20px;
  box-shadow:0 24px 60px rgba(0,0,0,.18);
}
.hero-box h3{
  margin:0 0 14px;
  color:var(--dark);
}
.check-list{
  list-style:none;
  padding:0;
  margin:0 0 16px;
}
.check-list li{
  padding:10px 0;
  border-bottom:1px solid var(--border);
}
.check-list li:last-child{border-bottom:0}
.service-area{
  color:var(--muted);
  margin:0 0 18px;
}

.section{padding:76px 0}
.section-white{background:var(--white)}
.section-light{background:var(--bg)}
.section-dark{
  background:var(--dark);
  color:var(--white);
}

.section-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 42px;
}
.section-title h2{
  margin:0 0 12px;
  font-size:36px;
  line-height:1.2;
}
.section-title p{
  margin:0;
  color:var(--muted);
}
.section-dark .section-title p{color:#cbd5e1}

.grid{display:grid;gap:24px}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}

.card{
  background:var(--white);
  padding:28px;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow:0 10px 30px rgba(15,23,42,.04);
}
.card h3{
  margin:0 0 10px;
  color:var(--dark);
  font-size:22px;
}
.card p{
  margin:0;
  color:var(--muted);
}
.icon-box{
  width:56px;
  height:56px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:#dbeafe;
  color:var(--primary);
  font-size:24px;
  font-weight:800;
  margin-bottom:16px;
}
.feature-card{background:#f8fafc}

.steps .card{
  position:relative;
  padding-top:70px;
}
.step-number{
  position:absolute;
  top:24px;
  left:24px;
  width:38px;
  height:38px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--primary);
  color:#fff;
  font-weight:800;
}

.testimonial{background:#f8fafc}
.testimonial strong{
  display:block;
  margin-top:14px;
  color:var(--dark);
}

.cta-box{
  text-align:center;
  max-width:780px;
  margin:0 auto;
}
.cta-box h2{
  margin:0 0 12px;
  font-size:36px;
}
.cta-box p{
  margin:0 0 24px;
  color:#cbd5e1;
}
.cta-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.content-box{
  background:var(--white);
  padding:32px;
  border:1px solid var(--border);
  border-radius:18px;
}
.page-title{
  margin:0 0 20px;
  color:var(--dark);
  font-size:40px;
}
.content-box h1,
.content-box h2,
.content-box h3{
  color:var(--dark);
}
.content-box p:last-child{margin-bottom:0}

.site-footer{
  background:#020617;
  color:#cbd5e1;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:24px;
  padding:56px 0 28px;
}
.site-footer h3,
.site-footer h4{
  color:#fff;
  margin-top:0;
}
.site-footer a{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:18px 0;
  text-align:center;
  font-size:14px;
}

@media (max-width: 991px){
  .hero-grid,
  .grid-4,
  .grid-3,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
  .hero h1{font-size:38px}
}

@media (max-width: 768px){
  .header-inner,
  .topbar-inner,
  .hero-actions,
  .cta-actions{
    flex-direction:column;
    align-items:flex-start;
  }
  .main-nav .menu{gap:14px}
  .hero-grid,
  .grid-4,
  .grid-3,
  .footer-grid,
  .stats{
    grid-template-columns:1fr;
  }
  .hero{
    padding:58px 0;
  }
  .hero h1,
  .page-title,
  .section-title h2,
  .cta-box h2{
    font-size:30px;
  }
  .btn,
  .btn-sm{
    width:100%;
    text-align:center;
  }
}