/*
Theme Name: Sprint Xpress
Theme URI: https://sprintxpresscourier.com
Author: Sprint Xpress
Description: Official theme for Sprint Xpress – International Courier from India to 200+ countries.
Version: 2.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: sprint-xpress
Tags: custom-logo, custom-menu, full-width-template, courier, business
*/

/* ═══════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════ */
:root {
  --yellow:       #FF6600;
  --yellow-dark:  #cc5200;
  --yellow-light: #ff944d;
  --yellow-bg:    #FFF3E8;
  --gray-dark:    #666666;
  --gray:         #555555;
  --gray-mid:     #888888;
  --gray-light:   #F5F6F8;
  --gray-border:  #E2E4E9;
  --white:        #FFFFFF;
  --text:         #666666;
  --text-muted:   #888888;
  --shadow-sm:    0 1px 8px rgba(0,0,0,.06);
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.16);
  --radius:       8px;
  --radius-lg:    14px;
  --transition:   all .25s cubic-bezier(.4,0,.2,1);
  --font-head:    'Bebas Neue', Impact, sans-serif;
  --font-body:    'DM Sans', -apple-system, 'Segoe UI', sans-serif;
  --max-w:        1200px;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow-dark); text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }
p { color: var(--text-muted); line-height: 1.75; }

/* ═══════════════════════════════════════════
   LAYOUT CONTAINERS
═══════════════════════════════════════════ */
.sx-container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.sx-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.05;
  letter-spacing: .5px;
}
.sx-section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: var(--yellow-bg);
  padding: 5px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.sx-section-tag.light {
  background: rgba(255,107,0,.15);
  color: var(--yellow);
}
.sx-section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 58px);
  margin-bottom: 16px;
}
.sx-section-title span { color: var(--yellow); }
.sx-section-title.white { color: var(--white); }
.sx-section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 0;
}
.sx-section-desc.white { color: rgba(255,255,255,.65); }
.sx-section-header { margin-bottom: 56px; }
.sx-section-header.center { text-align: center; }
.sx-section-header.center .sx-section-desc { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.sx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.sx-btn-primary {
  background: var(--yellow);
  color: var(--white);
  border-color: var(--yellow);
}
.sx-btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,0,.45);
}
.sx-btn-dark {
  background: var(--gray-dark);
  color: var(--white);
  border-color: var(--gray-dark);
}
.sx-btn-dark:hover {
  background: var(--gray);
  border-color: var(--gray);
  color: var(--white);
  transform: translateY(-2px);
}
.sx-btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.sx-btn-outline-white:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: transparent;
}
.sx-btn-lg { padding: 17px 40px; font-size: 15px; }
.sx-btn-sm { padding: 9px 20px; font-size: 13px; }

/* ═══════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: var(--shadow); }
.admin-bar #site-header { top: 32px; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Text Logo Fallback */
.sx-text-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.sx-text-logo-icon {
  font-size: 28px;
  line-height: 1;
}
.sx-text-logo-name {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--gray-dark);
  letter-spacing: 1px;
  line-height: 1;
}
.sx-text-logo-name span { color: var(--yellow); }

/* Logo */
.site-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.site-logo .fallback-logo {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--gray-dark);
  letter-spacing: 2px;
}
.site-logo .fallback-logo span { color: var(--yellow); }

/* Nav Links */
.nav-links-wrap { display: flex; align-items: center; }
#primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
#primary-nav li { position: relative; }
#primary-nav li > a {
  display: block;
  padding: 0 18px;
  height: 74px;
  line-height: 74px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: var(--transition);
}
#primary-nav li > a:hover,
#primary-nav li.current-menu-item > a,
#primary-nav li.current_page_item > a {
  color: var(--gray-dark);
  border-bottom-color: var(--yellow);
  background: rgba(255,107,0,.05);
}
/* Dropdown */
#primary-nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 210px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--yellow);
  border-radius: 0 0 var(--radius) var(--radius);
  display: none;
  z-index: 999;
  padding: 8px 0;
}
#primary-nav li:hover > ul { display: block; }
#primary-nav li ul li a {
  height: auto;
  line-height: 1.5;
  padding: 11px 20px;
  font-size: 13px;
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 0;
}
#primary-nav li ul li:last-child a { border-bottom: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gray-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  box-shadow: var(--shadow);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-nav.open { max-height: 600px; }
.mobile-nav ul { list-style: none; padding: 8px 0; }
.mobile-nav ul li a {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--gray-border);
  transition: var(--transition);
}
.mobile-nav ul li a:hover,
.mobile-nav ul li.current-menu-item > a { color: var(--yellow-dark); padding-left: 30px; }

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero-section {
  position: relative;
  background: var(--gray-dark);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(43,45,53,.96) 0%, rgba(43,45,53,.90) 48%, rgba(43,45,53,.4) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,107,0,.025) 40px,
    rgba(255,107,0,.025) 80px
  );
}
/* Yellow split panel */
.hero-split {
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: var(--yellow);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-split-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-left: 60px;
}
.hero-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}
.hero-split-icon {
  font-size: 200px;
  opacity: .12;
  transform: rotate(-10deg);
  user-select: none;
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  max-width: 600px;
  padding: 80px 40px;
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--gray-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 3px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(56px, 8.5vw, 104px);
  color: var(--white);
  line-height: .93;
  margin-bottom: 28px;
}
.hero-title .highlight { color: var(--yellow); display: block; }
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  line-height: 1.78;
  max-width: 480px;
  margin-bottom: 42px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .4px;
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--yellow);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 44px 24px;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(43,45,53,.15);
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 58px;
  color: var(--gray-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(43,45,53,.65);
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-img-placeholder {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, var(--gray-light) 0%, #E8EAEF 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 48px;
  color: var(--gray-dark);
  line-height: 1;
}
.about-img-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-text { padding-right: 0; }
.about-quote {
  border-left: 4px solid var(--yellow);
  padding: 14px 20px;
  margin: 28px 0;
  background: var(--yellow-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-quote p {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-dark);
  font-style: italic;
  margin: 0;
}
.about-meta {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-border);
}
.about-meta-item { }
.about-meta-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 38px;
  color: var(--yellow-dark);
  line-height: 1;
}
.about-meta-item span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ═══════════════════════════════════════════
   FEATURES / WHY CHOOSE US
═══════════════════════════════════════════ */
.features-section { background: var(--gray-dark); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.feat-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.feat-card-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feat-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.feat-card p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.78; margin: 0; }

/* ═══════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════ */
.services-section { background: var(--gray-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.svc-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.svc-card-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--yellow-bg) 0%, rgba(255,107,0,.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}
/* Illustrated SVG card image */
.svc-card-img-illustrated {
  height: 200px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 2px solid var(--gray-border);
}
.svc-card-img-illustrated svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Services section header row */
.sx-services-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  margin-top: -20px;
}
.sx-view-all-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sx-view-all-link:hover { color: var(--yellow-dark); }
.svc-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--yellow);
}
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--gray-dark);
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.svc-card p { font-size: 14px; line-height: 1.75; flex: 1; }
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow-dark);
  margin-top: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.svc-card-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════
   TRACK STRIP
═══════════════════════════════════════════ */
.track-strip {
  background: var(--yellow);
  padding: 80px 40px;
}
.track-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.track-strip h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 54px);
  color: var(--gray-dark);
  margin-bottom: 12px;
}
.track-strip p { color: var(--gray); font-size: 15px; margin: 0; }
.track-form {
  display: flex;
  gap: 0;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  overflow: hidden;
}
.track-form input[type="text"] {
  flex: 1;
  padding: 18px 24px;
  border: none;
  font-size: 15px;
  outline: none;
  color: var(--text);
  background: var(--white);
}
.track-form input::placeholder { color: #aaa; }
.track-form button {
  background: var(--gray-dark);
  color: var(--white);
  border: none;
  padding: 18px 32px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.track-form button:hover { background: var(--gray); }

/* ═══════════════════════════════════════════
   GOOGLE REVIEWS SECTION
═══════════════════════════════════════════ */
.reviews-section { background: var(--white); }
.reviews-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}
.reviews-overall {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}
.reviews-overall-score {
  font-family: var(--font-head);
  font-size: 72px;
  color: var(--gray-dark);
  line-height: 1;
}
.reviews-overall-detail { }
.stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}
.star { color: var(--yellow); font-size: 22px; }
.star.half { position: relative; color: var(--gray-border); }
.star.half::before { content: '★'; position: absolute; left: 0; color: var(--yellow); width: 50%; overflow: hidden; }
.reviews-count { font-size: 13px; color: var(--text-muted); }
.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 6px;
}
.google-g {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4 25%, #EA4335 25% 50%, #FBBC05 50% 75%, #34A853 75%);
  flex-shrink: 0;
}

/* Review Cards */
.reviews-slider { overflow: hidden; }
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.review-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.reviewer-info { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--gray-dark);
  flex-shrink: 0;
  overflow: hidden;
}
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-name { font-weight: 700; font-size: 15px; color: var(--text); }
.reviewer-date { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.review-card-stars { display: flex; gap: 2px; }
.review-card-stars .star { font-size: 16px; }
.review-text {
  font-size: 14px;
  line-height: 1.82;
  color: var(--text-muted);
  margin: 0;
}
.review-google-icon {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 18px;
  opacity: .5;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #34A853;
  margin-top: 14px;
  letter-spacing: .5px;
}

/* Review CTA */
.review-cta {
  text-align: center;
  margin-top: 48px;
}
.review-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  border: 2px solid var(--gray-border);
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.review-cta a:hover {
  border-color: var(--yellow);
  color: var(--gray-dark);
  background: var(--yellow-bg);
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq-section { background: var(--gray-light); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-sidebar { }
.faq-sidebar .sx-section-title { font-size: clamp(34px, 4vw, 52px); }
.faq-sidebar p { font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.faq-contact-box {
  background: var(--gray-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 36px;
}
.faq-contact-box h4 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}
.faq-contact-box p {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Accordion */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-question h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  flex: 1;
  line-height: 1.45;
}
.faq-item.open .faq-question h4 { color: var(--gray-dark); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  background: var(--yellow);
  color: var(--gray-dark);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--gray-border);
  padding-top: 16px;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  background: var(--gray-dark);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,107,0,.1) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 70px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   PAGE HERO (Inner Pages)
═══════════════════════════════════════════ */
.page-hero {
  background: var(--gray-dark);
  padding: 80px 40px 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--yellow);
}
.page-hero::before {
  content: attr(data-label);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 180px;
  color: rgba(255,255,255,.03);
  pointer-events: none;
  white-space: nowrap;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.breadcrumbs {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs a { color: var(--yellow); }
.breadcrumbs span { color: rgba(255,255,255,.3); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(50px, 7vw, 90px);
  color: var(--white);
  line-height: .97;
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.62);
  max-width: 560px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE – MISSION/VISION/VALUES
═══════════════════════════════════════════ */
.mvv-section { background: var(--gray-light); }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border-top: 5px solid var(--yellow);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mvv-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.mvv-card-icon {
  width: 60px; height: 60px;
  background: var(--yellow-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
}
.mvv-card h3 {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--gray-dark);
  margin-bottom: 14px;
}
.mvv-card p { font-size: 14px; line-height: 1.82; }

.values-section { background: var(--gray-dark); }
.values-pills { display: flex; flex-wrap: wrap; gap: 14px; }
.value-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,107,0,.25);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
}
.value-pill:hover {
  background: var(--yellow);
  color: var(--gray-dark);
  border-color: var(--yellow);
}

/* Founder Card */
.founder-section { background: var(--white); }
.founder-card {
  background: var(--gray-dark);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.founder-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 35%;
  height: 100%;
  background: rgba(255,107,0,.04);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}
.founder-avatar-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-avatar {
  width: 240px;
  height: 240px;
  border-radius: var(--radius-lg);
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  overflow: hidden;
  margin-bottom: 16px;
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-name-box { text-align: center; }
.founder-name-box strong { display: block; font-size: 15px; color: var(--white); font-weight: 700; }
.founder-name-box span { font-size: 13px; color: rgba(255,255,255,.5); }
.founder-quote-mark {
  font-family: var(--font-head);
  font-size: 80px;
  color: var(--yellow);
  line-height: .8;
  display: block;
  margin-bottom: -10px;
}
.founder-text p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.9; margin-bottom: 16px; }
.founder-sig {
  color: var(--yellow);
  font-weight: 700;
  font-size: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.founder-sig small { color: rgba(255,255,255,.45); font-size: 13px; font-weight: 400; display: block; margin-top: 2px; }

/* Founder Card – Light (White Background) Variant */
.founder-card-light {
  background: var(--white);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow);
}
.founder-card-light::after { background: rgba(255,107,0,.03); }
.founder-avatar-light { background: var(--yellow-bg); }
.founder-name-light strong { color: var(--text) !important; }
.founder-name-light span { color: var(--text-muted) !important; }
.founder-text-light p { color: var(--text-muted) !important; }
.founder-sig-light { color: var(--yellow) !important; border-top-color: var(--gray-border) !important; }
.founder-sig-light small { color: var(--text-muted) !important; }

/* ═══════════════════════════════════════════
   SERVICES DETAIL PAGE
═══════════════════════════════════════════ */
.services-detail { background: var(--white); }
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.svc-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: grid;
  grid-template-columns: 110px 1fr;
}
.svc-detail-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.svc-detail-icon-col {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
  background: var(--dark);
}
.svc-detail-body { padding: 28px; }
.svc-detail-badge {
  display: inline-block;
  background: var(--gray-light);
  color: var(--gray-mid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.svc-detail-body h3 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--gray-dark);
  margin-bottom: 10px;
}
.svc-detail-body p { font-size: 14px; line-height: 1.8; margin: 0; }

/* Process Steps */
.process-section { background: var(--gray-dark); }
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), rgba(255,107,0,.3));
}
.step-item { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--gray-dark);
  font-family: var(--font-head);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(255,107,0,.15);
}
.step-item h4 {
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.step-item p { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.75; }

/* ═══════════════════════════════════════════
   TRACK PAGE
═══════════════════════════════════════════ */
.track-page-hero {
  background: var(--gray-dark);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.track-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--yellow);
}
.track-page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(52px, 8vw, 96px);
  color: var(--white);
}
.track-page-hero h1 span { color: var(--yellow); }
.track-page-hero p {
  color: rgba(255,255,255,.65);
  font-size: 17px;
  max-width: 520px;
  margin: 16px auto 44px;
}
.track-input-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: 0 10px 50px rgba(0,0,0,.35);
  overflow: hidden;
  padding: 6px 6px 6px 22px;
}
.track-input-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--text);
  background: transparent;
  padding: 10px 0;
}
.track-input-box input::placeholder { color: #bbb; }
.track-input-box button {
  background: var(--yellow);
  color: var(--gray-dark);
  border: none;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.track-input-box button:hover { background: var(--yellow-dark); }
.track-result-wrap {
  max-width: 620px;
  margin: 28px auto 0;
  display: none;
}
.track-result-wrap.show { display: block; }
.track-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.track-card-head {
  background: var(--yellow);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.track-card-id { font-family: var(--font-head); font-size: 22px; color: var(--gray-dark); }
.track-card-id small { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(43,45,53,.6); margin-bottom: 2px; }
.track-status-pill {
  background: var(--gray-dark);
  color: var(--yellow);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.track-card-body { padding: 36px; }
.track-timeline { list-style: none; position: relative; }
.track-timeline::before {
  content: '';
  position: absolute;
  left: 21px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-light);
}
.tl-item { display: flex; gap: 20px; margin-bottom: 28px; }
.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-dot.done { background: var(--yellow); }
.tl-dot.active { background: var(--gray-dark); }
.tl-dot.pending { background: var(--gray-light); }
.tl-info { flex: 1; }
.tl-info h4 { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 3px; }
.tl-info p { font-size: 13px; color: var(--text-muted); margin: 0; }
.tl-time { font-size: 12px; color: #bbb; white-space: nowrap; padding-top: 3px; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-main { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-info-block { display: flex; flex-direction: column; gap: 18px; }
.cinfo-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--yellow);
  transition: var(--transition);
}
.cinfo-card:hover { background: var(--yellow-bg); }
.cinfo-icon {
  width: 50px; height: 50px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: #fff;
}
.cinfo-icon svg { color: #fff; fill: #fff; }
.cinfo-text h4 { font-weight: 700; font-size: 14px; color: var(--gray-dark); margin-bottom: 5px; }
.cinfo-text a, .cinfo-text p { font-size: 13px; color: var(--text-muted); display: block; line-height: 1.7; margin: 0; }
.cinfo-text a:hover { color: var(--yellow-dark); }
.cinfo-note { font-size: 11px; color: #aaa; margin-top: 4px; }

/* Contact Form */
.contact-form-block {}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  background: var(--white);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--yellow);
  color: var(--gray-dark);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,0,.4);
}
.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 14px;
}
.form-msg.success { background: #E8F5E9; color: #2e7d32; border: 1px solid #C8E6C9; }
.form-msg.error { background: #FFEBEE; color: #c62828; border: 1px solid #FFCDD2; }

/* Branches */
.branches-section { background: var(--gray-dark); }
.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.branch-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,107,0,.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.branch-card:hover { background: rgba(255,255,255,.09); border-color: rgba(255,107,0,.35); }
.branch-icon { font-size: 36px; margin-bottom: 16px; }
.branch-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--yellow);
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.branch-card p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.82; margin: 0; }
.branch-card a { color: var(--yellow); font-weight: 600; margin-top: 14px; display: inline-block; }

/* ═══════════════════════════════════════════
   PRIVACY POLICY PAGE
═══════════════════════════════════════════ */
.privacy-page { padding: 80px 40px; }
.pp-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--gray-border); }
.pp-section:last-child { border-bottom: none; margin-bottom: 0; }
.pp-heading {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pp-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.pp-subhead {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 12px;
}
.pp-section p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pp-def-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.pp-def-item {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--gray-border);
}
.pp-def-item strong { color: var(--yellow-dark); font-size: 14px; display: block; margin-bottom: 6px; }
.pp-def-item p { font-size: 13px; line-height: 1.7; margin: 0; }
.pp-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.pp-list-item {
  background: var(--gray-light);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.pp-card-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.pp-card-item {
  background: var(--gray-light);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  border-left: 3px solid var(--yellow);
}
@media(max-width:768px) {
  .privacy-page { padding: 50px 20px; }
  .pp-heading { font-size: 22px; }
  .pp-def-grid { grid-template-columns: 1fr; }
  .pp-list-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   TERMS PAGE
═══════════════════════════════════════════ */
.terms-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 60vh;
}
.terms-sidebar {
  position: sticky;
  top: 77px;
  background: var(--gray-light);
  padding: 32px 20px;
  border-right: 3px solid var(--yellow);
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.terms-sidebar h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.terms-sidebar a {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text-muted);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  margin-bottom: 2px;
  transition: var(--transition);
}
.terms-sidebar a:hover,
.terms-sidebar a.active {
  background: var(--white);
  color: var(--gray-dark);
  border-left-color: var(--yellow);
}
.terms-body { padding: 56px 56px; }
.terms-top-notice {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 44px;
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.75;
}
.clause {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--gray-border);
}
.clause:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.clause-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--gray-dark);
  font-family: var(--font-head);
  font-size: 18px;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.clause h2 {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--gray-dark);
  margin-bottom: 16px;
}
.clause p { font-size: 14px; line-height: 1.95; color: #444; margin-bottom: 12px; }
.clause p:last-child { margin-bottom: 0; }
.prohibited-box {
  background: var(--gray-dark);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 18px;
}
.prohibited-box h4 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.prohibited-box li {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.prohibited-box li::before { content: '⛔'; }
.prohibited-box li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#site-footer {
  background: var(--gray-dark);
  padding: 70px 40px 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto 48px;
}
.footer-brand {}
.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,.5);
}
.footer-brand .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--gray-dark); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-col a {
  display: block;
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--yellow); padding-left: 4px; }
.footer-col p { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.5); }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  font-size: 13px;
}
.footer-contact a:hover { color: var(--yellow); padding-left: 0; }
.footer-contact a:last-child { border-bottom: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-bottom p { font-size: 12px; color: #ffffff; margin: 0; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ═══════════════════════════════════════════
   ADMIN BAR
═══════════════════════════════════════════ */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

/* ═══════════════════════════════════════════
   WORDPRESS ALIGNMENT
═══════════════════════════════════════════ */
.alignleft { float: left; margin-right: 24px; margin-bottom: 12px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 12px; }
.aligncenter { display: block; margin: 0 auto 12px; }
.wp-caption-text { font-size: 13px; color: var(--text-muted); text-align: center; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }

/* ═══════════════════════════════════════════
   RESPONSIVE – 1100px
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-split { width: 38%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 50px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – 900px (Tablet)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .sx-section { padding-top: 70px; padding-bottom: 70px; }
  .sx-container { padding-left: 28px; padding-right: 28px; }
  .hero-split { display: none; }
  .hero-content { max-width: 100%; padding: 70px 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-img-badge { right: 0; bottom: -16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .track-strip-inner { grid-template-columns: 1fr; gap: 36px; }
  .reviews-track { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .branches-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap::before { display: none; }
  .founder-card { grid-template-columns: 1fr; padding: 40px; }
  .founder-avatar { width: 160px; height: 160px; }
  .terms-wrap { grid-template-columns: 1fr; }
  .terms-sidebar { position: static; border-right: none; border-bottom: 3px solid var(--yellow); max-height: none; }
  .terms-body { padding: 40px 28px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – 600px (Mobile)
═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
═══════════════════════════════════════════ */
.sx-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.sx-whatsapp-float:hover {
  padding-right: 28px;
  box-shadow: 0 10px 40px rgba(37,211,102,.55);
  transform: translateY(-3px);
}
.sx-whatsapp-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: white;
  max-width: 0;
  overflow: hidden;
  transition: max-width .3s ease, opacity .2s ease;
  opacity: 0;
}
.sx-whatsapp-float:hover .sx-whatsapp-label {
  max-width: 120px;
  opacity: 1;
}
@media (max-width:600px) {
  .sx-whatsapp-float { bottom: 18px; right: 18px; padding: 14px; }
  .sx-whatsapp-label { display: none; }
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATION
═══════════════════════════════════════════ */
.sx-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.sx-fade.sx-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: ensure visible after 1s even without JS */
@media (prefers-reduced-motion: reduce) {
  .sx-fade, .hp-reveal { opacity:1 !important; transform:none !important; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE – 600px (Mobile)
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  .sx-container, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .sx-section { padding-top: 56px; padding-bottom: 56px; }
  .nav-links-wrap { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
  .nav-inner { height: 64px; }
  .site-logo img { height: 42px; }
  .hero-content { padding: 56px 20px; }
  .hero-title { font-size: clamp(48px, 14vw, 68px); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .sx-btn { width: 100%; justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .services-grid,
  .reviews-track,
  .mvv-grid,
  .features-grid { grid-template-columns: 1fr; }
  .track-strip { padding: 60px 20px; }
  .track-form { flex-direction: column; border-radius: var(--radius); overflow: visible; box-shadow: none; gap: 10px; }
  .track-form input[type="text"] { border-radius: var(--radius); box-shadow: var(--shadow); }
  .track-form button { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
  .track-input-box { flex-direction: column; padding: 16px; }
  .track-input-box input { padding: 10px 0; font-size: 15px; }
  .track-input-box button { width: 100%; padding: 14px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .sx-btn { width: 100%; max-width: 360px; justify-content: center; }
  .reviews-overall { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 60px 20px 52px; }
  .form-row { grid-template-columns: 1fr; }
  .founder-card { padding: 28px 20px; gap: 32px; }
  .reviews-header-row { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════
   HOMEPAGE v3 — PREMIUM REDESIGN
   All classes prefixed hp- to avoid conflicts
═══════════════════════════════════════════ */

/* ── Scroll Reveal ── */
.hp-reveal { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
.hp-reveal.hp-visible { opacity:1; transform:translateY(0); }
.hp-reveal-delay-1 { transition-delay:.12s; }
.hp-reveal-delay-2 { transition-delay:.22s; }
.hp-reveal-delay-3 { transition-delay:.34s; }

/* ── Shared Buttons ── */
.hp-btn-primary {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--yellow); color:var(--white);
  padding:15px 34px; border-radius:var(--radius);
  font-size:14px; font-weight:700; letter-spacing:.4px;
  transition:all .25s cubic-bezier(.4,0,.2,1);
  text-decoration:none;
}
.hp-btn-primary:hover {
  background:var(--yellow-dark); transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(255,107,0,.38);
  color:var(--gray-dark);
}
.hp-btn-outline-white {
  display:inline-flex; align-items:center; gap:9px;
  background:transparent; color:var(--white);
  padding:15px 34px; border-radius:var(--radius);
  font-size:14px; font-weight:600;
  border:2px solid rgba(255,255,255,.25);
  transition:all .25s; text-decoration:none;
}
.hp-btn-outline-white:hover { border-color:var(--yellow); color:var(--yellow); }
.hp-btn-lg  { padding:17px 40px; font-size:15px; }
.hp-btn-xl  { padding:19px 52px; font-size:16px; }

/* ── Section Atoms ── */
.hp-section-tag {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--yellow-dark);
  margin-bottom:12px;
}
.hp-section-tag::before {
  content:''; width:24px; height:2px;
  background:var(--yellow); border-radius:2px;
}
.hp-tag-light { color:var(--yellow); }
.hp-tag-light::before { background:var(--yellow); }
.hp-tag-dark { color:rgba(43,45,53,.55); }
.hp-tag-dark::before { background:rgba(43,45,53,.3); }

.hp-section-title {
  font-family:var(--font-head);
  font-size:clamp(40px,5vw,62px);
  color:var(--text); line-height:.95;
  letter-spacing:1px; margin-bottom:0;
}
.hp-section-title span { color:var(--yellow-dark); }
.hp-title-white { color:var(--white); }
.hp-title-white span { color:var(--yellow); }

.hp-section-header {
  display:flex; align-items:flex-end;
  justify-content:space-between;
  gap:20px; margin-bottom:52px;
  flex-wrap:wrap;
}
.hp-view-all {
  font-size:12px; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:var(--gray);
  border-bottom:2px solid var(--yellow);
  padding-bottom:2px; transition:all .2s;
  align-self:flex-end; margin-bottom:10px;
  text-decoration:none;
}
.hp-view-all:hover { color:var(--yellow-dark); letter-spacing:3px; }

/* ── HERO ── */
.hp-hero {
  min-height:100vh;
  background:var(--gray-dark);
  position:relative;
  display:flex; align-items:center;
  overflow:hidden;
}
.hp-hero-bg { position:absolute;inset:0;background-size:cover;background-position:center; }
.hp-hero-bg::after {
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 50%, transparent 100%);
}
.hp-hero-overlay { display:none; }
.hp-hero-grid { display:none; }
@keyframes hp-grid-drift { to { transform:translate(64px,64px); } }
.hp-hero-orb { display:none; }
@keyframes hp-orb-pulse {
  0%,100%{transform:scale(1);opacity:1;}
  50%{transform:scale(1.15);opacity:.65;}
}
.hp-hero-slash { display:none; }
.hp-hero-worldmap { display:none; }
.hp-hero-bgtext { display:none; }
.hp-hero-truck { display:none; }
@keyframes hp-truck-idle {
  0%,100%{transform:translateY(0) rotate(-2deg);}
  50%{transform:translateY(-10px) rotate(0);}
}
.hp-country-tag { display:none; }
@keyframes hp-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-9px);} }
.hp-hero-content {
  position:relative; z-index:10;
  padding:90px 40px;
}
.hp-hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,107,0,.1);
  border:1px solid rgba(255,107,0,.28);
  padding:8px 20px; border-radius:40px;
  margin-bottom:32px;
  animation:hp-slide-up .9s ease both;
}
.hp-eyebrow-dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--yellow);
  animation:hp-blink 1.6s ease-in-out infinite;
}
@keyframes hp-blink { 0%,100%{opacity:1;} 50%{opacity:.25;} }
.hp-hero-eyebrow span {
  font-size:11px; font-weight:700;
  letter-spacing:2.5px; text-transform:uppercase;
  color:var(--yellow);
}
@keyframes hp-slide-up {
  from{opacity:0;transform:translateY(20px);}
  to{opacity:1;transform:translateY(0);}
}
.hp-hero-h1 {
  font-family:var(--font-head);
  font-size:clamp(68px,10.5vw,130px);
  color:white; line-height:.88;
  letter-spacing:2px; margin-bottom:8px;
  animation:hp-slide-up .9s .1s ease both;
}
.hp-highlight {
  color:var(--yellow); display:block;
}
.hp-hero-sub3 {
  display:block;
  font-family:'Barlow Condensed','DM Sans',sans-serif;
  font-size:clamp(18px,2.5vw,36px);
  font-weight:300; letter-spacing:10px;
  color:rgba(255,255,255,.3);
  text-transform:uppercase; margin-top:10px;
}
.hp-hero-sub {
  font-size:16px; line-height:1.82;
  color:rgba(255,255,255,.52);
  max-width:480px; margin:28px 0 40px;
  animation:hp-slide-up .9s .2s ease both;
}
.hp-hero-actions {
  display:flex; gap:14px; flex-wrap:wrap;
  animation:hp-slide-up .9s .3s ease both;
}
.hp-track-widget {
  display:flex; align-items:center; gap:0;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px; padding:6px;
  max-width:500px; margin-top:36px;
  animation:hp-slide-up .9s .42s ease both;
  backdrop-filter:blur(8px);
}
.hp-track-widget input {
  flex:1; background:transparent; border:none; outline:none;
  padding:12px 18px; font-size:14px; color:white;
  font-family:var(--font-body);
}
.hp-track-widget input::placeholder { color:rgba(255,255,255,.32); }
.hp-track-widget button {
  background:var(--yellow); color:var(--white);
  border:none; padding:12px 22px; border-radius:8px;
  font-weight:700; font-size:13px; letter-spacing:.5px;
  cursor:pointer; transition:background .2s; white-space:nowrap;
}
.hp-track-widget button:hover { background:var(--yellow-dark); }
.hp-hero-trust {
  display:flex; gap:20px; flex-wrap:wrap; margin-top:28px;
  animation:hp-slide-up .9s .5s ease both;
}
.hp-hero-trust span {
  font-size:12px; font-weight:600;
  color:rgba(255,255,255,.45); letter-spacing:.3px;
}

/* ── Countries Ticker ── */
.hp-countries-strip {
  background:#13151D;
  padding:22px 0; overflow:hidden;
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.hp-countries-track {
  display:flex; gap:40px;
  animation:hp-scroll-countries 28s linear infinite;
  white-space:nowrap; width:max-content;
}
.hp-country-pill {
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:600; letter-spacing:.5px;
  color:rgba(255,255,255,.38); flex-shrink:0;
}
.hp-country-pill::before { content:'→'; color:var(--yellow); }
@keyframes hp-scroll-countries {
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* ── Stats Bar ── */
.hp-stats-bar { background:var(--yellow); }
.hp-stats-inner {
  display:grid; grid-template-columns:repeat(4,1fr);
}
.hp-stat-item {
  padding:42px 28px; text-align:center;
  position:relative; transition:background .2s; cursor:default;
}
.hp-stat-item:hover { background:rgba(0,0,0,.06); }
.hp-stat-item + .hp-stat-item::before {
  content:''; position:absolute; left:0; top:25%; bottom:25%;
  width:1px; background:rgba(43,45,53,.15);
}
.hp-stat-num {
  display:block; font-family:var(--font-head);
  font-size:62px; color:var(--gray-dark);
  line-height:1; margin-bottom:6px;
  transition:transform .3s;
}
.hp-stat-item:hover .hp-stat-num { transform:scale(1.06); }
.hp-stat-lbl {
  font-size:11px; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:rgba(43,45,53,.55);
}

/* ── Services Grid ── */
.hp-services { background:var(--white); }
.hp-services-grid {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:20px;
  align-items:start;
}
.hp-svc-card {
  background:var(--white); border-radius:var(--radius-lg);
  overflow:hidden; border:1px solid #ECEEF2;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column; cursor:pointer;
  text-decoration:none;
}
.hp-svc-card:hover {
  border-color:var(--yellow);
  transform:translateY(-8px);
  box-shadow:0 22px 64px rgba(0,0,0,.12),0 0 0 1px var(--yellow);
}
.hp-svc-featured { grid-row:auto; }
.hp-svc-visual {
  height:200px; display:flex; align-items:center;
  justify-content:center; position:relative; overflow:hidden; flex-shrink:0;
}
.hp-svc-visual-lg { height:200px; }
.hp-svc-bg-solid {
  position:absolute; inset:0;
  transition:transform .5s ease;
}
.hp-svc-card:hover .hp-svc-bg-solid { transform:scale(1.04); }
.hp-vis-express   { background:linear-gradient(135deg,#1a1a2e,#16213e); }
.hp-vis-economy   { background:linear-gradient(135deg,#0f3460,#533483); }
.hp-vis-medicine  { background:linear-gradient(135deg,#1a3a2a,#0d2818); }
.hp-vis-food      { background:linear-gradient(135deg,#3d1a00,#5c2800); }
.hp-vis-relocation{ background:linear-gradient(135deg,#1a1a1a,#2d2d2d); }
.hp-vis-document  { background:linear-gradient(135deg,#0a1628,#162544); }
.hp-svc-icon-circle {
  position:relative; z-index:2;
  width:88px; height:88px;
  background:white; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:42px;
  box-shadow:0 8px 32px rgba(0,0,0,.18);
}
.hp-svc-icon-lg { width:108px; height:108px; font-size:54px; }
.hp-svc-speed-bar {
  position:absolute; bottom:18px; left:24px; right:24px; z-index:3;
}
.hp-speed-track {
  height:3px; background:rgba(255,255,255,.1); border-radius:2px;
}
.hp-speed-fill {
  height:3px; width:78%; background:var(--yellow);
  border-radius:2px;
}
.hp-speed-label {
  font-size:9px; color:rgba(255,255,255,.4);
  margin-top:6px; font-weight:700; letter-spacing:1.5px;
}
.hp-svc-body {
  padding:26px; flex:none; display:flex;
  flex-direction:column; border-top:3px solid var(--yellow);
}
.hp-svc-badge {
  display:inline-block; background:var(--gray-light);
  color:var(--text-muted); font-size:9px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase;
  padding:4px 10px; border-radius:3px; margin-bottom:9px;
}
.hp-svc-card h3 {
  font-family:var(--font-head); font-size:24px;
  color:var(--text); letter-spacing:.5px;
  margin-bottom:9px; line-height:1.05;
}
.hp-svc-featured h3 { font-size:30px; }
.hp-svc-desc { font-size:13px; line-height:1.78; color:var(--text-muted); }
.hp-svc-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; font-weight:700; letter-spacing:1px;
  text-transform:uppercase; color:var(--yellow-dark);
  margin-top:16px; text-decoration:none; transition:gap .2s;
}
.hp-svc-card:hover .hp-svc-link { gap:12px; }

/* ── Features ── */
.hp-features {
  background:var(--gray-dark); padding:100px 0;
  position:relative; overflow:hidden;
}
.hp-features::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(-45deg,transparent,transparent 80px,rgba(255,107,0,.015) 80px,rgba(255,107,0,.015) 82px);
}
.hp-features-top {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center; margin-bottom:72px;
  position:relative; z-index:1;
}
.hp-features-intro p { color:rgba(255,255,255,.48); font-size:15px; line-height:1.85; margin-top:20px; }
.hp-features-orbit {
  height:320px; position:relative;
  display:flex; align-items:center; justify-content:center;
}
.hp-ring {
  position:absolute; border-radius:50%;
  border:1px solid rgba(255,107,0,.15);
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  animation:hp-ring-spin 14s linear infinite;
}
.hp-ring-1 { width:200px; height:200px; }
.hp-ring-2 { width:290px; height:290px; animation-direction:reverse; animation-duration:20s; }
.hp-ring-3 { width:370px; height:370px; border-color:rgba(255,107,0,.07); animation-duration:28s; }
.hp-ring-dot {
  position:absolute; width:12px; height:12px;
  border-radius:50%; background:var(--yellow);
  top:0; left:50%; transform:translateX(-50%);
  box-shadow:0 0 14px var(--yellow);
}
@keyframes hp-ring-spin { to{transform:translate(-50%,-50%) rotate(360deg);} }
.hp-orbit-center {
  position:relative; z-index:2;
  width:100px; height:100px;
  background:var(--yellow); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:50px;
  box-shadow:0 0 60px rgba(255,107,0,.28);
}
.hp-features-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  border-radius:var(--radius-lg); overflow:hidden;
  position:relative; z-index:1;
  border:1px solid rgba(255,255,255,.07);
}
.hp-feat-item {
  padding:40px 30px;
  background:rgba(255,255,255,.03);
  border-right:1px solid rgba(255,255,255,.07);
  transition:background .3s; position:relative;
  overflow:hidden;
}
.hp-feat-item:last-child { border-right:none; }
.hp-feat-item:hover { background:rgba(255,107,0,.06); }
.hp-feat-item::before {
  content:''; position:absolute; top:0; left:0;
  width:3px; height:0; background:var(--yellow);
  transition:height .35s;
}
.hp-feat-item:hover::before { height:100%; }
.hp-feat-num {
  font-family:var(--font-head); font-size:56px;
  color:rgba(255,255,255,.05); line-height:1; margin-bottom:-12px;
}
.hp-feat-icon {
  width:50px; height:50px;
  background:rgba(255,107,0,.12); border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  font-size:24px; margin-bottom:18px;
}
.hp-feat-item h3 {
  font-family:var(--font-head); font-size:22px;
  color:white; letter-spacing:.5px; margin-bottom:10px;
}
.hp-feat-item p { color:rgba(255,255,255,.42); font-size:13px; line-height:1.78; }

/* ── About ── */
.hp-about { background:var(--white); }
.hp-about-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}
.hp-about-visual { position:relative; }
.hp-about-card {
  background:var(--gray-dark);
  border-radius:var(--radius-lg); padding:48px;
  min-height:360px; display:flex;
  flex-direction:column; justify-content:flex-end;
  position:relative;
}
.hp-about-card::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:5px; background:var(--yellow);
}
.hp-about-globe {
  position:absolute; top:-20px; right:-20px;
  font-size:200px; opacity:.08; pointer-events:none;
}
.hp-about-img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:1; }
.hp-about-years {
  position:absolute; top:40px; left:48px;
  background:var(--yellow); border-radius:var(--radius);
  padding:16px 22px;
}
.hp-about-years strong {
  display:block; font-family:var(--font-head);
  font-size:52px; color:var(--gray-dark); line-height:1;
}
.hp-about-years span {
  font-size:11px; font-weight:700; letter-spacing:1px;
  text-transform:uppercase; color:rgba(43,45,53,.6);
}
.hp-about-card-text { position:relative; z-index:1; }
.hp-about-card-text h3 {
  font-family:var(--font-head); font-size:26px;
  color:white; letter-spacing:1px; margin-bottom:8px;
}
.hp-about-card-text p { color:rgba(255,255,255,.48); font-size:14px; line-height:1.7; }
.hp-stat-chips {
  position:static;
  display:flex; flex-direction:row; flex-wrap:wrap; gap:10px;
  margin-top:16px;
}
.hp-stat-chip {
  background:white; border-radius:10px; padding:14px 18px;
  box-shadow:0 8px 32px rgba(0,0,0,.12);
  display:flex; align-items:center; gap:12px; white-space:nowrap;
}
.hp-chip-icon { font-size:22px; }
.hp-stat-chip strong {
  display:block; font-family:var(--font-head);
  font-size:24px; color:var(--text); line-height:1;
}
.hp-stat-chip span { font-size:11px; color:var(--text-muted); }
.hp-about-text .hp-section-title { margin-bottom:22px; }
.hp-about-text > p { color:var(--text-muted); line-height:1.85; font-size:15px; margin-bottom:14px; }
.hp-quote-block {
  border-left:4px solid var(--yellow);
  padding:16px 22px;
  background:var(--yellow-bg);
  border-radius:0 var(--radius) var(--radius) 0;
  margin:24px 0;
}
.hp-quote-block p {
  font-size:17px; font-weight:600; font-style:italic;
  color:var(--text); margin:0;
}
.hp-about-meta {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:16px; margin:28px 0;
  padding:24px 0;
  border-top:1px solid var(--gray-border);
  border-bottom:1px solid var(--gray-border);
}
.hp-about-meta-item strong {
  display:block; font-family:var(--font-head);
  font-size:38px; color:var(--yellow-dark); line-height:1;
}
.hp-about-meta-item span {
  font-size:12px; color:var(--text-muted);
  font-weight:500; margin-top:4px; display:block;
}

/* ── Track Strip ── */
.hp-track-strip {
  background:var(--yellow); padding:90px 0;
  position:relative; overflow:hidden;
}
.hp-track-strip::before {
  content:'TRACK'; position:absolute; right:-50px;
  top:50%; transform:translateY(-50%);
  font-family:var(--font-head); font-size:200px;
  color:rgba(43,45,53,.05); pointer-events:none; white-space:nowrap;
}
.hp-track-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}
.hp-track-text h2 {
  font-family:var(--font-head);
  font-size:clamp(40px,5vw,64px);
  color:var(--gray-dark); line-height:.95;
  margin-bottom:14px; letter-spacing:1px;
}
.hp-track-text p { color:rgba(43,45,53,.6); font-size:15px; line-height:1.7; }
.hp-track-form-box {
  background:var(--gray-dark); border-radius:var(--radius-lg); padding:36px;
}
.hp-track-form-box label {
  display:block; font-size:11px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  color:rgba(255,255,255,.38); margin-bottom:12px;
}
.hp-track-row { display:flex; gap:10px; }
.hp-track-row input {
  flex:1; background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1); border-radius:8px;
  padding:15px 20px; font-size:15px; color:white;
  outline:none; font-family:var(--font-body);
  transition:border-color .2s;
}
.hp-track-row input:focus { border-color:var(--yellow); }
.hp-track-row input::placeholder { color:rgba(255,255,255,.3); }
.hp-track-row button {
  background:var(--yellow); color:var(--white);
  border:none; border-radius:8px; padding:15px 28px;
  font-weight:700; font-size:14px; letter-spacing:.5px;
  cursor:pointer; transition:background .2s; white-space:nowrap;
}
.hp-track-row button:hover { background:var(--yellow-dark); }
.hp-track-note {
  margin-top:12px; font-size:12px;
  color:rgba(255,255,255,.25); text-align:center;
}

/* ── Reviews ── */
.hp-reviews-header {
  display:flex; align-items:flex-end;
  justify-content:space-between;
  margin-bottom:52px; flex-wrap:wrap; gap:20px;
}
.hp-score-box {
  display:flex; align-items:center; gap:18px;
  background:white; border-radius:var(--radius-lg);
  padding:20px 28px;
  box-shadow:0 4px 20px rgba(0,0,0,.07);
}
.hp-score-num {
  font-family:var(--font-head); font-size:72px;
  color:var(--text); line-height:1;
}
.hp-score-stars { display:flex; gap:3px; margin-bottom:4px; }
.hp-star { color:var(--yellow); font-size:20px; }
.hp-score-count { font-size:12px; color:var(--text-muted); }
.hp-google-row {
  display:flex; align-items:center; gap:6px; margin-top:4px;
}
.hp-g-dot {
  width:18px; height:18px; border-radius:50%; flex-shrink:0;
  background:conic-gradient(#4285F4 0 25%,#EA4335 25% 50%,#FBBC05 50% 75%,#34A853 75%);
}
.hp-google-row span { font-size:12px; color:var(--text-muted); font-weight:600; }
.hp-reviews-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.hp-review-card {
  background:white; border-radius:var(--radius-lg); padding:28px;
  border:1px solid var(--gray-border); transition:all .3s; position:relative;
}
.hp-review-card:hover {
  border-color:var(--yellow); box-shadow:var(--shadow);
  transform:translateY(-4px);
}
.hp-review-g-badge {
  position:absolute; top:22px; right:22px;
  font-size:11px; font-weight:700; color:var(--text-muted);
  display:flex; align-items:center; gap:4px;
}
.hp-review-stars { display:flex; gap:2px; margin-bottom:14px; }
.hp-review-text {
  font-size:14px; line-height:1.82;
  color:var(--text-muted); font-style:italic; margin-bottom:20px;
}
.hp-reviewer-row { display:flex; align-items:center; gap:12px; }
.hp-reviewer-av {
  width:44px; height:44px; border-radius:50%;
  background:var(--yellow);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-size:20px;
  color:var(--gray-dark); flex-shrink:0; overflow:hidden;
}
.hp-reviewer-av img { width:100%;height:100%;object-fit:cover; }
.hp-reviewer-name { font-weight:700; font-size:14px; color:var(--text); }
.hp-reviewer-loc { font-size:12px; color:var(--text-muted); }
.hp-review-cta { text-align:center; margin-top:44px; }
.hp-review-cta a {
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:600; color:var(--gray);
  border:2px solid var(--gray-border); padding:12px 28px;
  border-radius:var(--radius); transition:all .2s; text-decoration:none;
}
.hp-review-cta a:hover { border-color:var(--yellow); color:var(--gray-dark); background:var(--yellow-bg); }

/* ── FAQ ── */
.hp-faq { background:var(--white); }
.hp-faq-grid {
  display:grid; grid-template-columns:1fr 1.4fr;
  gap:80px; align-items:start;
}
.hp-faq-intro .hp-section-title { margin-bottom:20px; }
.hp-faq-intro > p { color:var(--text-muted); font-size:15px; line-height:1.8; margin-bottom:28px; }
.hp-faq-cta-box {
  background:var(--gray-dark); border-radius:var(--radius-lg); padding:36px; margin-top:36px;
}
.hp-faq-cta-box h4 {
  font-family:var(--font-head); font-size:22px; color:white; margin-bottom:8px;
}
.hp-faq-cta-box p { color:rgba(255,255,255,.48); font-size:14px; margin-bottom:20px; }
.hp-faq-list { display:flex; flex-direction:column; gap:12px; }
.hp-faq-item {
  background:var(--gray-light); border-radius:var(--radius);
  overflow:hidden; border:1px solid var(--gray-border);
  transition:border-color .2s;
}
.hp-faq-item.hp-open { border-color:var(--yellow); background:#FFFCF0; }
.hp-faq-q {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px; cursor:pointer; gap:16px;
}
.hp-faq-q h4 {
  font-family:var(--font-body); font-size:15px; font-weight:600;
  color:var(--text); flex:1; line-height:1.45;
}
.hp-faq-icon {
  width:32px; height:32px; border-radius:50%;
  background:white; border:1px solid var(--gray-border);
  display:flex; align-items:center; justify-content:center;
  font-size:18px; color:var(--gray);
  transition:all .2s; flex-shrink:0;
}
.hp-faq-item.hp-open .hp-faq-icon {
  background:var(--yellow); border-color:var(--yellow);
  color:var(--gray-dark); transform:rotate(45deg);
}
.hp-faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.hp-faq-a-inner {
  padding:0 24px 20px;
  font-size:14px; color:var(--text-muted);
  line-height:1.82;
  border-top:1px solid var(--gray-border);
  padding-top:16px;
}

/* ── CTA ── */
.hp-cta {
  background:var(--gray-dark); padding:120px 40px;
  text-align:center; position:relative; overflow:hidden;
}
.hp-cta::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 65% 75% at 50% 50%,rgba(255,107,0,.07) 0%,transparent 70%);
}
.hp-cta-inner { position:relative;z-index:1;max-width:740px;margin:0 auto; }
.hp-cta-inner h2 {
  font-family:var(--font-head);
  font-size:clamp(52px,8vw,100px);
  color:white; line-height:.9;
  letter-spacing:2px; margin-bottom:24px;
}
.hp-cta-inner h2 span { color:var(--yellow); }
.hp-cta-inner p { font-size:17px; color:rgba(255,255,255,.48); margin-bottom:48px; line-height:1.7; }
.hp-cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── Responsive ── */
@media(max-width:1100px) {
  .hp-services-grid { grid-template-columns:1fr 1fr; }
  .hp-svc-featured { grid-row:auto; }
  .hp-features-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:900px) {
  .hp-hero-slash { display:none; }
  .hp-hero-content { padding:70px 28px; }
  .hp-hero-h1 { font-size:clamp(56px,14vw,90px); }
  .hp-services-grid { grid-template-columns:1fr 1fr; }
  .hp-features-top { grid-template-columns:1fr; gap:48px; }
  .hp-features-orbit { display:none; }
  .hp-about-grid { grid-template-columns:1fr; }
  .hp-stat-chips { position:static; flex-direction:row; flex-wrap:wrap; margin-top:16px; }
  .hp-track-grid { grid-template-columns:1fr; gap:40px; }
  .hp-reviews-grid { grid-template-columns:repeat(2,1fr); }
  .hp-faq-grid { grid-template-columns:1fr; }
  .hp-stats-inner { grid-template-columns:repeat(2,1fr); }
  .hp-countries-track { animation-duration:18s; }
}
@media(max-width:600px) {
  /* ── Stacked hero: image on top, text below ── */
  .hp-hero {
    flex-direction: column;
    align-items: stretch;
    min-height: unset;
  }
  .hp-hero-bg {
    position: relative !important;
    inset: unset !important;
    width: 100%;
    height: 55vw;
    min-height: 220px;
    max-height: 300px;
    flex-shrink: 0;
  }
  .hp-hero-bg::after {
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55) 100%) !important;
  }
  .hp-hero-overlay,
  .hp-hero-orb,
  .hp-hero-slash,
  .hp-hero-worldmap,
  .hp-hero-bgtext,
  .hp-hero-truck { display: none !important; }
  .hp-hero-content {
    position: relative;
    z-index: 10;
    background: var(--gray-dark, #1a1a1a);
    padding: 32px 20px 40px !important;
    width: 100%;
  }
  .hp-hero-sub { max-width: 100%; }

  .hp-hero-h1 { font-size:clamp(46px,15vw,72px); }
  .hp-hero-actions { flex-direction:column; }
  .hp-hero-actions a { width:100%; justify-content:center; }
  .hp-track-widget { flex-direction:column; padding:10px; }
  .hp-track-widget input,.hp-track-widget button { width:100%; }
  .hp-services-grid { grid-template-columns:1fr; }
  .hp-svc-card { height:auto; }
  .hp-svc-body { flex:none; }
  .hp-svc-featured { grid-row:auto; }
  .hp-svc-visual { height:220px; }
  .hp-svc-visual-lg { height:220px; }
  .hp-features-grid { grid-template-columns:1fr; }
  .hp-reviews-grid { grid-template-columns:1fr; }
  .hp-track-row { flex-direction:column; }
  .hp-track-row button { width:100%; }
  .hp-country-tag { display:none; }
  .hp-stats-inner { grid-template-columns:1fr 1fr; }
  .hp-cta-btns { flex-direction:column; align-items:center; }
  .hp-cta-btns a { width:100%; max-width:340px; justify-content:center; }
  .hp-section-header { flex-direction:column; align-items:flex-start; }
}

/* ═══════════════════════════════════════════
   MISSING & FIXED STYLES (v2.0.1 patch)
═══════════════════════════════════════════ */

/* Service card background image (used in front-page.php) */
.hp-svc-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Track box wrapper in homepage track strip */
.hp-track-box { width: 100%; }

/* Reviews section background */
.hp-reviews { background: var(--gray-light); }

/* Fix footer inner centering — ensure no double padding conflict */
/* Footer bottom uses max-width container */
#site-footer .footer-bottom {
  padding-left: 0;
  padding-right: 0;
}

/* Fix: footer bottom link centering */
@media (min-width: 601px) {
  .nav-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
  .nav-links-wrap { display: flex !important; }
}

/* Fix: footer brand logo wrapping on small screens */
.footer-brand { min-width: 0; }
.footer-logo-img { max-width: 200px; }

/* Fix: hp-about-card min-height on mobile */
@media (max-width: 600px) {
  .hp-about-card { min-height: 320px; padding: 32px 24px; }
  .hp-about-years { top: 24px; left: 24px; padding: 12px 16px; }
  .hp-about-years strong { font-size: 38px; }
  .hp-stat-chip { flex-shrink: 0; }
  .hp-cta { padding: 72px 20px; }
  .hp-track-strip { padding: 60px 0; }
  .hp-features { padding: 72px 0; }
  .hp-about-meta { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .hp-about-meta-item strong { font-size: 28px; }
  .hp-faq-cta-box { padding: 24px 20px; }
  .hp-score-num { font-size: 56px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

/* Fix: CTA section padding on tablet */
@media (max-width: 900px) {
  .hp-cta { padding: 90px 28px; }
  .hp-track-strip { padding: 72px 0; }
}

/* Fix: stats bar number overflow */
.hp-stat-num { overflow: hidden; text-overflow: ellipsis; }

/* Fix: nav active indicator precise alignment */
#primary-nav li > a { display: flex; align-items: center; }

/* Fix: mobile menu link padding consistency */
.mobile-nav ul li:last-child a { border-bottom: none; }

/* Fix: review card google badge overflow */
.hp-review-g-badge { z-index: 1; }

/* Fix: footer contact links vertical alignment */
.footer-contact a { line-height: 1.6; }

/* Fix: service card hp-svc-body border at top matches yellow */
.hp-svc-body { border-top-color: var(--yellow); }

/* Fix: proper smooth scroll behavior */
html { scroll-padding-top: 80px; }

/* ── AWB Tracker Integration ───────────────────────── */
/* Hide the AWB tracker's own hero on the track page since theme has its own */
.track-page-hero ~ section .awb-hero {
  border-radius: 16px;
  margin-top: 0;
}

/* Align AWB tracker wrap with theme container */
.track-page-hero ~ section .awb-wrap {
  margin: 0 auto;
  padding: 32px 0 48px;
}

/* Make AWB tracker primary color match theme yellow */
:root {
  --awb-primary: var(--yellow, #ff6b00);
}
