/* =========================================================
   Yakındaki Nakliyat — Stylesheet
   Kurumsal mavi (#2563eb / #1e40af) + yeşil vurgu (#16a34a)
   Ankara içi + Ankara–İzmir arası evden eve nakliyat
   ========================================================= */

:root {
  /* Kurumsal mavi */
  --blue:       #2563eb;
  --blue-600:   #2563eb;
  --blue-700:   #1d4ed8;
  --blue-800:   #1e40af;
  --blue-900:   #1e3a8a;
  --blue-50:    #eff6ff;
  --blue-100:   #dbeafe;
  /* Yeşil vurgu */
  --green:      #16a34a;
  --green-600:  #16a34a;
  --green-700:  #15803d;
  --green-500:  #22c55e;
  --green-400:  #4ade80;
  --green-50:   #f0fdf4;
  --green-100:  #dcfce7;
  /* WhatsApp */
  --wa:         #25d366;
  --wa-dark:    #1da851;
  /* Nötr (Tailwind slate/gray) */
  --black:      #0f172a;
  --gray-900:   #111827;
  --gray-800:   #1f2937;
  --gray-700:   #374151;
  --gray-600:   #4b5563;
  --gray-500:   #6b7280;
  --gray-400:   #9ca3af;
  --gray-300:   #d1d5db;
  --gray-200:   #e5e7eb;
  --gray-100:   #f3f4f6;
  --gray-50:    #f9fafb;
  --white:      #ffffff;

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,0.08), 0 2px 4px -2px rgba(15,23,42,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15,23,42,0.10), 0 4px 6px -4px rgba(15,23,42,0.06);
  --shadow-xl: 0 20px 25px -5px rgba(15,23,42,0.12), 0 8px 10px -6px rgba(15,23,42,0.08);
  --shadow-blue: 0 12px 28px -8px rgba(37,99,235,0.45);

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --container: 1240px;
  --header-h: 80px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-800); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--gray-900); letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
p  { color: var(--gray-600); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--blue-600); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-700); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.btn-outline { background: transparent; color: var(--blue-700); border-color: var(--blue-600); }
.btn-outline:hover { background: var(--blue-600); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--blue-800); border-color: var(--white); }
.btn-whatsapp { background: var(--wa); color: var(--white); border-color: var(--wa); }
.btn-whatsapp:hover { background: var(--wa-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(37,211,102,0.6); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.25rem; color: var(--gray-900); }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 44px;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .ln1 { color: var(--blue-700); font-weight: 800; }
.logo-text .ln2 { color: var(--gray-900); font-weight: 800; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 16px;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}
.main-nav a:hover, .main-nav a.active { color: var(--blue-700); background: var(--blue-50); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1rem;
}
.header-phone:hover { color: var(--blue-700); }
.header-phone svg { width: 18px; height: 18px; color: var(--green-600); }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--gray-900);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 55%, #1e3a8a 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(34,197,94,0.28) 0%, transparent 42%),
    radial-gradient(circle at 10% 90%, rgba(59,130,246,0.35) 0%, transparent 45%);
  z-index: 2;
}
.hero-illus {
  position: absolute;
  right: -30px;
  bottom: -10px;
  width: 44%;
  max-width: 600px;
  opacity: 0.14;
  z-index: 2;
  pointer-events: none;
  color: var(--white);
}
.hero .container { position: relative; z-index: 3; padding-top: 80px; padding-bottom: 80px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px -6px rgba(34,197,94,0.6);
}
.hero h1 { color: var(--white); margin-bottom: 20px; letter-spacing: -0.03em; }
.hero h1 .accent { color: var(--green-400); }
.hero p.lead {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 9px;
  color: var(--white); font-size: 0.92rem; font-weight: 500;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 16px;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}
.hero-trust-item svg { color: var(--green-400); width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Route strip (Ankara <-> İzmir) ---------- */
.route-strip {
  background: linear-gradient(90deg, var(--blue-700), var(--blue-800));
  color: var(--white);
}
.route-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}
.route-strip .route-cities {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
.route-strip .route-cities svg { width: 30px; height: 30px; color: var(--green-400); }
.route-strip .route-note { font-size: 0.98rem; color: rgba(255,255,255,0.9); font-weight: 500; }

/* ---------- Section base ---------- */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--green-700);
  background: var(--green-50);
  padding: 5px 14px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head p { font-size: 1.1rem; }
.bg-light { background: var(--gray-50); }
.bg-blue-soft { background: linear-gradient(180deg, var(--blue-50), var(--white)); }
.bg-dark { background: var(--black); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.8); }
.eyebrow-inline {
  display: inline-block;
  color: var(--blue-700);
  background: var(--blue-50);
  padding: 5px 14px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--green-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--blue-100); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { color: var(--gray-900); margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; color: var(--gray-500); }
.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--blue-700);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Why us / stats ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card .num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green-600);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  letter-spacing: -0.02em;
}
.why-card h4 { color: var(--gray-900); margin-bottom: 8px; }
.why-card p { font-size: 0.93rem; }

/* ---------- About / content split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-image {
  background: var(--gray-100) center/cover no-repeat;
  border-radius: var(--radius-xl);
  min-height: 440px;
  box-shadow: var(--shadow-lg);
}
.split-illus {
  position: relative;
  border-radius: var(--radius-xl);
  min-height: 440px;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(140deg, var(--blue-700) 0%, var(--blue-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgba(255,255,255,0.95);
}
.split-illus::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(34,197,94,0.4) 0%, transparent 48%);
}
.split-illus svg { width: 56%; max-width: 280px; position: relative; z-index: 1; color: var(--white); opacity: 0.96; }
.split-illus .illus-label {
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.82);
  z-index: 1;
}
.split-content h2 { margin-bottom: 18px; }
.split-content p + p { margin-top: 14px; }
.feature-list { margin-top: 24px; }
.feature-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--gray-700);
}
.feature-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 800;
  font-size: 0.8rem;
}

/* ---------- Areas ---------- */
.areas-block + .areas-block { margin-top: 40px; }
.areas-title {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 1.15rem; font-weight: 700; color: var(--gray-900);
  margin-bottom: 18px;
}
.areas-title svg { width: 22px; height: 22px; color: var(--blue-600); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}
.area-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--gray-800);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.area-pill:hover { border-color: var(--blue-600); color: var(--blue-700); background: var(--blue-50); box-shadow: var(--shadow-sm); }
.area-pill svg { width: 16px; height: 16px; color: var(--green-600); flex-shrink: 0; }

/* ---------- Gallery / illustration cards ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,0.5) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.illus-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--blue-700) 0%, var(--blue-900) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.95);
  overflow: hidden;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.illus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.illus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 16%, rgba(34,197,94,0.42) 0%, transparent 50%);
}
.illus-card svg { width: 60px; height: 60px; position: relative; z-index: 1; color: var(--white); }
.illus-card span { position: relative; z-index: 1; font-weight: 600; font-size: 0.96rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 25%, rgba(34,197,94,0.3) 0%, transparent 45%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 600px; margin: 0 auto 28px; }
.cta-banner .btn-primary { background: var(--green-500); color: var(--white); }
.cta-banner .btn-primary:hover { background: var(--green-600); color: var(--white); box-shadow: 0 12px 24px -8px rgba(34,197,94,0.6); }
.cta-banner .btn-outline-white:hover { color: var(--blue-800); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info-card {
  background: linear-gradient(160deg, var(--blue-50), var(--green-50));
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item .icon {
  width: 46px; height: 46px;
  background: var(--blue-600);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.contact-item .icon svg { width: 20px; height: 20px; }
.contact-item h4 { margin-bottom: 4px; color: var(--gray-900); font-size: 1rem; }
.contact-item a, .contact-item p { color: var(--gray-700); font-size: 0.95rem; }
.contact-item a:hover { color: var(--blue-700); }

.contact-form { background: var(--white); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-status {
  display: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.form-status.success { display: block; background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-100); }
.form-status.error { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.step { position: relative; padding: 28px 24px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-blue);
}
.step h4 { margin-bottom: 8px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-900);
  font-size: 1.05rem;
  list-style: none;
}
.faq-q::after {
  content: "+";
  color: var(--blue-600);
  font-weight: 700;
  font-size: 1.5rem;
  transition: transform var(--transition);
}
.faq-item[open] { border-color: var(--blue-100); }
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a { margin-top: 12px; color: var(--gray-600); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--green-400); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; font-size: 0.95rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  background: var(--wa);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 90;
  animation: pulse-whatsapp 2.5s infinite;
  transition: transform 0.2s ease;
}
.float-whatsapp:hover { transform: scale(1.08); color: var(--white); }
.float-whatsapp svg { width: 32px; height: 32px; }
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
}

/* ---------- Page header (subpages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  color: var(--white);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(34,197,94,0.28) 0%, transparent 45%);
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 4px;
  background: var(--green-500);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.breadcrumb { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.breadcrumb a { color: rgba(255,255,255,0.9); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-image, .split-illus { min-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-illus { display: none; }
}

@media (max-width: 1024px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 8px 24px 20px;
    gap: 0;
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    display: none;
    align-items: stretch;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1.05rem;
  }
  .main-nav a:last-child { border-bottom: none; }

  .menu-toggle { display: block; }
  .header-phone span { display: none; }
  .header-phone svg { width: 24px; height: 24px; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  section { padding: 60px 0; }
  .hero { min-height: 560px; }
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
  .route-strip .route-cities { font-size: 1.05rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .header-cta .btn-primary { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .container { padding: 0 18px; }
}
