/*
Theme Name: Cemil Nakliyat
Theme URI: https://cemilnakliyat.com.tr
Author: Cemil Nakliyat
Description: Cemil Nakliyat resmi WordPress teması
Version: 1.0
Text Domain: cemilnakliyat
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
  --navy:       #1a4480;
  --navy-dark:  #0d1b2e;
  --gold:       #c9a227;
  --gold-dark:  #a8841f;
  --white:      #fff;
  --light:      #f8fafd;
  --gray:       #666;
  --gray-light: #e2e8f0;
  --shadow:     0 4px 24px rgba(26,68,128,.12);
  --radius:     10px;
  --transition: .3s ease;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

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

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: .5rem;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.section-title span { color: var(--gold); }

/* ===================== TOP BAR ===================== */
.top-bar {
  background: var(--navy-dark);
  color: #b0bec5;
  font-size: .82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.top-bar a { color: #b0bec5; }
.top-bar a:hover { color: var(--gold); }
.top-bar .badge-247 {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .75rem;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
}
.top-bar .icon-inline {
  margin-right: 4px;
  font-size: .9rem;
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,68,128,.09);
  position: sticky;
  top: 0;
  z-index: 900;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text .brand { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.logo-text .sub   { font-size: .7rem;  font-weight: 500; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

/* ---- Desktop Nav ---- */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--navy);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a {
  background: var(--light);
  color: var(--gold);
}
.has-dropdown > a::after {
  content: ' ▾';
  font-size: .7rem;
}
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 99;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid var(--gray-light);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--light); color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  margin-left: 8px;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- Mobile Menu ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  background: var(--white);
  box-shadow: -4px 0 30px rgba(0,0,0,.18);
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 80px 0 40px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999;
}
.mobile-menu-overlay.open { display: block; }
.mobile-menu-section { padding: 0 24px 20px; }
.mobile-menu-section h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gray-light);
}
.mobile-menu-section a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: .95rem;
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu-section a:hover { color: var(--gold); }
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
}
.mobile-menu-cta a {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
}
.mobile-menu-cta .btn-wa {
  background: #25d366;
  color: var(--white) !important;
}
.mobile-menu-cta .btn-call {
  background: var(--navy);
  color: var(--white) !important;
}

/* ===================== HERO SLIDER ===================== */
.hero-slider {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  opacity: 0;
  transition: opacity .8s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,46,.78) 0%, rgba(26,68,128,.55) 100%);
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: 1.13rem;
  color: rgba(255,255,255,.87);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .97rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  font-size: .97rem;
  padding: 12px 30px;
  border-radius: 8px;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background .3s;
  padding: 0;
}
.hero-dot.active { background: var(--gold); }
.hero-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.hero-arrow {
  pointer-events: all;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 10px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* ===================== SERVICES SECTION ===================== */
.services-section { padding: 80px 0; background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
  text-decoration: none;
  display: block;
  color: #222;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,68,128,.18);
  border-top-color: var(--gold);
  color: #222;
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.7rem;
}
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: .88rem; color: var(--gray); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
}

/* ===================== QUOTE FORM ===================== */
.quote-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,162,39,.08);
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.quote-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.quote-info h2 span { color: var(--gold); }
.quote-info p { color: rgba(255,255,255,.78); margin-bottom: 28px; }
.quote-features { display: flex; flex-direction: column; gap: 12px; }
.quote-feature {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: .93rem;
}
.quote-feature .check {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  color: var(--navy-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.quote-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.quote-form-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  text-align: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: 7px;
  font-family: inherit;
  font-size: .92rem;
  color: #222;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-wa-submit {
  width: 100%;
  background: #25d366;
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--transition);
  cursor: pointer;
  margin-top: 4px;
}
.btn-wa-submit:hover { background: #1db954; }

/* ===================== DISTRICTS ===================== */
.districts-section { padding: 70px 0; background: var(--white); }
.districts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.district-tag {
  background: var(--light);
  border: 1.5px solid var(--gray-light);
  color: var(--navy);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all var(--transition);
  text-decoration: none;
}
.district-tag:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===================== WHY US ===================== */
.why-section { padding: 80px 0; background: var(--light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}
.why-card:hover { transform: translateY(-4px); }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p { font-size: .87rem; color: var(--gray); }

/* ===================== MAP ===================== */
.map-section { padding: 60px 0; background: var(--white); }
.map-section h2 { text-align: center; font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 30px; }
.map-embed { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ===================== REVIEWS ===================== */
.reviews-section { padding: 80px 0; background: var(--light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-size: .92rem; color: #444; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.review-author-info .name { font-weight: 700; font-size: .93rem; color: var(--navy); }
.review-author-info .date { font-size: .78rem; color: var(--gray); }

/* ===================== BLOG SECTION ===================== */
.blog-section { padding: 80px 0; background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img { height: 200px; background: var(--light); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-meta { font-size: .78rem; color: var(--gray); margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: .87rem; color: var(--gray); margin-bottom: 14px; }
.blog-read-more { font-size: .85rem; font-weight: 700; color: var(--gold); }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.78);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand .logo-text .brand { color: var(--white); }
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: background var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--navy-dark); }
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.68);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
  font-size: .88rem;
}
.footer-contact-item .fi-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ===================== FLOATING BUTTONS ===================== */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--white);
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(0,0,0,.3); color: var(--white); }
.float-btn-wa  { background: #25d366; }
.float-btn-tel { background: var(--navy); }
.float-btn-label {
  position: absolute;
  right: 68px;
  background: var(--navy-dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.float-btn:hover .float-btn-label { opacity: 1; }

/* ===================== PAGE TEMPLATE ===================== */
.page-wrapper { padding: 60px 0; background: var(--light); min-height: 50vh; }
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.page-content-area {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.page-content-area h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--gold);
}
.page-content-area .wp-post-image {
  width: 100%; border-radius: 10px;
  margin-bottom: 24px;
}
.entry-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 24px 0 12px; }
.entry-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 20px 0 10px; }
.entry-content p  { margin-bottom: 14px; color: #333; line-height: 1.8; }
.entry-content ul, .entry-content ol { padding-left: 22px; margin-bottom: 14px; }
.entry-content li { margin-bottom: 6px; color: #444; }
.entry-content a   { color: var(--gold); }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-cta-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 7px;
  font-weight: 700;
  font-size: .93rem;
  text-align: center;
  margin-bottom: 10px;
}
.sidebar-cta-btn.wa-btn { background: #25d366; color: var(--white) !important; }
.sidebar-cta-btn.tel-btn { background: var(--navy); color: var(--white) !important; }

/* ===================== SINGLE POST ===================== */
.post-hero-img { width: 100%; max-height: 380px; object-fit: cover; border-radius: 10px; margin-bottom: 24px; }
.post-meta { display: flex; gap: 16px; font-size: .85rem; color: var(--gray); margin-bottom: 20px; flex-wrap: wrap; }
.post-meta span { display: flex; align-items: center; gap: 5px; }

/* ===================== INDEX / BLOG LIST ===================== */
.archive-section { padding: 60px 0; background: var(--light); }
.archive-header { margin-bottom: 36px; }
.archive-header h1 { font-size: 1.9rem; font-weight: 800; color: var(--navy); }

/* ===================== 404 ===================== */
.not-found-section {
  padding: 100px 0;
  text-align: center;
  min-height: 60vh;
  display: flex; align-items: center;
}
.not-found-number {
  font-size: 8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}
.not-found-number span { color: var(--gold); }
.not-found-section h2 { font-size: 1.7rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.not-found-section p { color: var(--gray); margin-bottom: 30px; font-size: 1.05rem; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb-bar {
  background: var(--light);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
}
.breadcrumb { display: flex; gap: 6px; font-size: .83rem; color: var(--gray); flex-wrap: wrap; }
.breadcrumb a { color: var(--navy); }
.breadcrumb .sep { color: var(--gray-light); }

/* ===================== PAGINATION ===================== */
.wp-pagenavi, .navigation { text-align: center; padding: 30px 0; }
.wp-pagenavi a, .wp-pagenavi span,
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .88rem;
  border: 1.5px solid var(--gray-light);
  color: var(--navy);
  transition: all var(--transition);
}
.wp-pagenavi .current,
.wp-pagenavi a:hover,
.nav-links a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero-title { font-size: 2rem; }
  .hero-slider { height: 440px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-inner { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .page-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
  .hero-title { font-size: 1.55rem; }
  .hero-slider { height: 380px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .section-title { font-size: 1.5rem; }
  .quote-form-box { padding: 24px 18px; }
  .not-found-number { font-size: 5rem; }
}
