/* ===========================
   Gaziantep Şehir İçi Nakliye
   Ana Stil Dosyası
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #1a5fb4;
  --primary-dark: #0d3d7a;
  --primary-light: #4a90d9;
  --accent:    #f5a623;
  --text:      #222831;
  --text-light:#555e6e;
  --bg:        #ffffff;
  --bg-light:  #f4f8ff;
  --bg-dark:   #0d1f3c;
  --border:    #dde4ef;
  --radius:    8px;
  --shadow:    0 4px 18px rgba(26,95,180,.12);
  --transition:0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: .5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.section-header { text-align: center; margin-bottom: 3rem; }

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,95,180,.35);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: #e0941a;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
  background: var(--primary-dark);
  color: #c8d8f0;
  font-size: .82rem;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #c8d8f0; }
.top-bar a:hover { color: #fff; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar-left span, .top-bar-right span { display: flex; align-items: center; gap: 5px; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}
.navbar-brand span { color: var(--accent); }
.navbar-brand .brand-sub { font-size: .72rem; font-weight: 500; color: var(--text-light); display: block; }

.nav-menu { display: flex; align-items: center; gap: 4px; }

.nav-menu li { position: relative; }

.nav-menu a {
  display: block;
  padding: 8px 14px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary);
  background: var(--bg-light);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  z-index: 1000;
  padding: 8px 0;
}
.dropdown-menu li a {
  padding: 9px 18px;
  font-size: .87rem;
  font-weight: 500;
  border-radius: 0;
}
.dropdown-menu li a:hover { background: var(--bg-light); }
.nav-menu li:hover > .dropdown-menu { display: block; }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover {
  background: #e0941a !important;
  color: #fff !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: #fff;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  letter-spacing: .5px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.hero-stat span { font-size: .82rem; opacity: .8; }

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section { padding: 80px 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.service-icon {
  width: 72px; height: 72px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; color: var(--primary-dark); }
.service-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 1.2rem; }
.service-card a.read-more { font-size: .88rem; font-weight: 600; color: var(--primary); }
.service-card a.read-more:hover { color: var(--primary-dark); }

/* ===========================
   WHY US
   =========================== */
.why-section { padding: 80px 0; background: var(--bg-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform var(--transition);
}
.why-card:hover { transform: translateY(-4px); }
.why-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--primary-dark); }
.why-card p { font-size: .88rem; color: var(--text-light); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section { padding: 80px 0; background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 28px 24px;
  border-left: 4px solid var(--primary);
}
.testimonial-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: .8rem; }
.testimonial-text { font-size: .95rem; color: var(--text); font-style: italic; margin-bottom: 1.2rem; line-height: 1.7; }
.testimonial-author strong { display: block; font-weight: 700; color: var(--primary-dark); }
.testimonial-author span { font-size: .82rem; color: var(--text-light); }

/* ===========================
   FAQ
   =========================== */
.faq-section { padding: 80px 0; background: var(--bg-light); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question .faq-icon { font-size: 1.3rem; font-weight: 400; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .92rem;
  color: var(--text-light);
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }

/* ===========================
   BLOG PREVIEW
   =========================== */
.blog-section { padding: 80px 0; background: var(--bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.6);
}
.blog-card-body { padding: 20px; }
.blog-meta { font-size: .78rem; color: var(--text-light); margin-bottom: .6rem; }
.blog-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; color: var(--primary-dark); line-height: 1.4; }
.blog-card p { font-size: .88rem; color: var(--text-light); margin-bottom: 1rem; }
.blog-card a.read-more { font-size: .85rem; font-weight: 600; color: var(--primary); }

/* ===========================
   CTA BAND
   =========================== */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: .8rem; }
.cta-band p { opacity: .9; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-band .btn-accent { font-size: 1.05rem; padding: 15px 36px; }

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section { padding: 80px 0; background: var(--bg-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--primary-dark); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.2rem;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-weight: 700; font-size: .9rem; color: var(--primary-dark); }
.contact-info-text span { font-size: .88rem; color: var(--text-light); }
.map-embed { border-radius: 12px; overflow: hidden; margin-top: 1.5rem; }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form { background: #fff; border-radius: 12px; padding: 32px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--primary-dark); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .93rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,95,180,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-dark);
  color: #a8b8d0;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { }
.footer-brand .brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .8rem;
}
.footer-brand .brand-name span { color: var(--accent); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #a8b8d0;
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }

.footer-col h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .87rem; color: #a8b8d0; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: .82rem;
  color: #6a7d95;
}
.footer-bottom a { color: #6a7d95; }
.footer-bottom a:hover { color: #fff; }

/* ===========================
   WHATSAPP BUTTON
   =========================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 9999;
  transition: all var(--transition);
  color: #fff;
  font-size: 1.6rem;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
  color: #fff;
}
.whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: .6rem; }
.page-hero p { opacity: .88; font-size: 1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  margin-top: 1rem;
  opacity: .75;
  flex-wrap: wrap;
}
.breadcrumb a { color: #fff; }
.breadcrumb span { opacity: .6; }

/* ===========================
   CONTENT PAGE
   =========================== */
.content-section { padding: 70px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.content-body h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); margin: 1.8rem 0 .8rem; }
.content-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 1.4rem 0 .6rem; }
.content-body p { margin-bottom: 1.1rem; color: var(--text); font-size: .97rem; line-height: 1.8; }
.content-body ul { margin: .8rem 0 1.2rem 1.2rem; }
.content-body ul li { margin-bottom: .5rem; font-size: .95rem; color: var(--text); list-style: disc; }

.sidebar-widget {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.sidebar-widget h4 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 1rem; border-bottom: 2px solid var(--primary); padding-bottom: .5rem; }
.sidebar-widget ul li { margin-bottom: .6rem; }
.sidebar-widget ul li a { font-size: .88rem; color: var(--text); display: flex; align-items: center; gap: 6px; }
.sidebar-widget ul li a:hover { color: var(--primary); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
}
.sidebar-cta h4 { color: #fff; font-size: 1.1rem; margin-bottom: .8rem; border: none; padding: 0; }
.sidebar-cta p { font-size: .88rem; opacity: .88; margin-bottom: 1.2rem; }
.sidebar-cta .btn { width: 100%; text-align: center; }

/* ===========================
   BLOG PAGE
   =========================== */
.blog-list-section { padding: 70px 0; }
.blog-list-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.blog-post-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.blog-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-post-img {
  height: 160px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-post-body { padding: 18px; }
.blog-post-meta { font-size: .78rem; color: var(--text-light); margin-bottom: .5rem; }
.blog-post-body h3 { font-size: .97rem; font-weight: 700; margin-bottom: .5rem; color: var(--primary-dark); line-height: 1.4; }
.blog-post-body p { font-size: .87rem; color: var(--text-light); margin-bottom: .8rem; }
.blog-post-body a.read-more { font-size: .84rem; font-weight: 600; color: var(--primary); }

/* ===========================
   DISTRICTS LIST PAGE
   =========================== */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 70px 0;
}
.district-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.district-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.district-card .district-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.district-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .4rem; }
.district-card p { font-size: .85rem; color: var(--text-light); margin-bottom: 1rem; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    gap: 2px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 11px 14px; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; display: block; }
  .nav-toggle { display: flex; }
  .top-bar { display: none; }
  .hero { padding: 60px 0 50px; }
  .hero-stats { gap: 20px; }
  .blog-posts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-btns { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
}
