/*
Theme Name: Oil Ninja LLC Theme
Theme URI: https://www.oilninjaca.com
Author: Nlinksolution
Author URI: https://www.nlinksolution.com
Description: Custom, fully editable WordPress theme for Oil Ninja LLC - Mobile Oil Change & Fleet Service in Inland Empire, CA. Integrated with WordPress Customizer, Custom Post Types for Services & Testimonials, and Google reCAPTCHA v3 inquiry form.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: oilninjaca-theme
*/

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

:root {
  --navy: #1E3A5F;
  --navy-dark: #142843;
  --navy-mid: #2C4F7C;
  --accent: #2E6EB5;
  --white: #FFFFFF;
  --off-white: #F4F7FB;
  --light-gray: #E8EEF5;
  --text-dark: #0F2137;
  --text-mid: #4A6080;
  --text-light: #7A95B0;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-dark);
  color: #a8c4e0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #a8c4e0; text-decoration: none; }
.top-bar a:hover { color: var(--white); }
.top-bar .tb-left, .top-bar .tb-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar i { margin-right: 5px; color: #5BA3D9; }

/* ── HEADER ── */
.main-header {
  background: var(--white);
  border-bottom: 2px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(30,58,95,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 98px;
  padding: 6px 0;
}
.logo-link, .custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.header-logo, .custom-logo, .custom-logo-link img, .logo-link img {
  height: 84px !important;
  max-height: 84px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.2s ease;
}
.logo-link:hover .header-logo,
.logo-link:hover .custom-logo,
.custom-logo-link:hover img {
  transform: scale(1.03);
}

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--navy); background: var(--off-white); }

.btn-book-nav {
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 8px !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 1.08rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s !important;
}
.btn-book-nav:hover { background: var(--navy-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 16px 20px 20px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(30,58,95,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid var(--light-gray);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── CONTAINER ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.2s;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(46,110,181,0.35);
}
.btn-primary:hover { background: #1d5a9e; box-shadow: 0 6px 28px rgba(46,110,181,0.45); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(30,58,95,0.3);
}
.btn-navy:hover { background: var(--navy-dark); box-shadow: 0 6px 24px rgba(30,58,95,0.4); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.28);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,33,58,0.85) 0%, rgba(30,58,95,0.6) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,110,181,0.25);
  border: 1px solid rgba(46,110,181,0.5);
  color: #7EC8F0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.hero h1 span { color: #5BA3D9; }
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tagline {
  margin-top: 48px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.hero-divider { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item i { color: #5BA3D9; font-size: 1.1rem; }

/* ── SECTION BASE ── */
section { padding: 90px 0; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}
.section-header { margin-bottom: 52px; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--off-white); }
.story-banner {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 48px;
  border: 2px solid var(--light-gray);
  box-shadow: 0 4px 20px rgba(30,58,95,0.05);
  position: relative;
  overflow: hidden;
}
.story-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--navy);
}
.story-header {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.story-text {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.story-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.story-pill {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.story-pill i { color: #5BA3D9; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.step-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(30,58,95,0.07);
  border: 2px solid var(--light-gray);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(30,58,95,0.12);
  border-color: var(--accent);
}
.step-img-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.step-card:hover .step-img { transform: scale(1.05); }
.step-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.step-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.step-voiceover {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-top: auto;
}
.step-voiceover i {
  color: var(--accent);
  margin-right: 4px;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  border: 2px solid var(--light-gray);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  background: var(--white);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(30,58,95,0.12);
  transform: translateY(-4px);
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.service-body { padding: 28px 24px; }
.service-tag {
  display: inline-block;
  background: var(--light-gray);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.service-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.service-features li {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li i { color: var(--accent); font-size: 0.8rem; flex-shrink: 0; }

.sub-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 18px 0;
}
.sub-tier-card {
  background: rgba(30, 58, 95, 0.05);
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}
.sub-tier-cap {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sub-tier-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 2px;
}
.sub-tier-price span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* ── WHY CHOOSE US ── */
.why-section {
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(46,110,181,0.1);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.why-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.why-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.why-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.why-badge span { font-size: 0.8rem; opacity: 0.9; }
.why-content .section-title { color: var(--white); }
.why-content .section-label { color: #7EC8F0; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(46,110,181,0.25);
  border: 1px solid rgba(46,110,181,0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #7EC8F0;
}
.why-item-text h4 {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--white);
  margin-bottom: 4px;
}
.why-item-text p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* ── SERVICE AREAS ── */
.areas-section { background: var(--off-white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.area-pill {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
a.area-pill {
  cursor: pointer;
}
.area-pill:hover,
a.area-pill:hover {
  border-color: var(--accent);
  background: #EEF4FB;
  color: var(--text-dark);
  text-decoration: none;
}
a.area-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 46, 89, 0.08);
}
.area-pill i { color: var(--accent); font-size: 0.9rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 2px solid var(--light-gray);
  transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--accent); }
.stars { color: #F4A417; font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.reviewer-loc { font-size: 0.8rem; color: var(--text-light); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.cta-band p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 34px; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-item h4 { font-weight: 700; font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 0.97rem; color: var(--text-dark); font-weight: 500; text-decoration: none; }
.contact-item a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 2px solid var(--light-gray);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-form-wrap p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; font-size: 1rem; padding: 15px; }

.form-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}
.form-alert.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}
.form-alert.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
}
.footer-main {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-logo-link:hover .footer-logo {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-size: 0.95rem;
}
.social-link:hover { background: var(--accent); color: var(--white); }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 600; }
.footer-bottom a:hover { color: var(--white); text-decoration: underline; }

/* ── UTILITIES ── */
.mt-8 { margin-top: 32px; }
.gap-16 { gap: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-img-wrap img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .top-bar, .tb-left .hide-mobile { display: none; }
  nav { display: none; }
  .hamburger { display: flex; margin-left: auto; z-index: 2; }
  .header-inner { height: 78px; padding: 4px 0; display: flex; align-items: center; justify-content: space-between; }
  .logo-link { margin-left: 0; }
  .header-logo, .custom-logo, .custom-logo-link img, .logo-link img { height: 60px !important; max-height: 60px !important; }
  .hero { min-height: 88vh; }
  .hero-content { padding: 60px 0; }
  section { padding: 64px 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar .container { gap: 18px; }
  .trust-item { font-size: 0.8rem; }
  .hero-tagline { gap: 20px; }
}

@media (max-width: 420px) {
  .steps-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
