/*
Theme Name: Khyber Line Transport
Theme URI: https://khyberlinetransport.com
Author: Khyber Line Development
Author URI: https://khyberlinetransport.com
Description: A professional WordPress theme for Khyber Line General Transport - UAE transport and logistics solutions. Custom-built for tanker transportation, water supply, sewerage services, tipper trucks, refrigerated transport and heavy equipment rental.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: khyber-line-transport
Tags: custom-menu, featured-images, theme-options, translation-ready
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary-navy: #15213e;
  --primary-navy-700: #1f2f57;
  --primary-navy-800: #15213e;
  --primary-navy-900: #0e1729;
  --primary-navy-950: #070d1a;
  --secondary-gold: #c89a1f;
  --gold-light: #e3c266;
  --gold-400: #daad33;
  --gold-500: #c89a1f;
  --gold-600: #a47d16;
  --white: #ffffff;
  --off-white: #f7f5f1;
  --dark-text: #1a1d23;
  --muted-text: #5a6172;
  --border-light: #e8e6e1;
  --surface-light: #fbfaf8;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

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

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

body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--dark-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--primary-navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--secondary-gold);
  color: var(--primary-navy);
}

:focus-visible {
  outline: 2px solid var(--secondary-gold);
  outline-offset: 2px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container-x {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container-x {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-x {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-pad {
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .section-pad {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-pad {
    padding: 4rem 2rem;
  }
}

.bg-surface {
  background: var(--surface-light);
}

.bg-white {
  background: var(--white);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold,
.btn-navy,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--primary-navy);
}

.btn-gold:hover {
  background: var(--gold-400);
  box-shadow: 0 10px 25px -5px rgba(200, 154, 31, 0.3);
  transform: translateY(-2px);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-navy {
  background: var(--primary-navy-800);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--primary-navy-700);
  box-shadow: 0 10px 25px -5px rgba(14, 23, 41, 0.3);
  transform: translateY(-2px);
}

.btn-navy:active {
  transform: translateY(0);
}

.btn-outline {
  border: 2px solid var(--gold-500);
  color: var(--gold-600);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold-500);
  color: var(--primary-navy);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--primary-navy);
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-600);
}

.heading-2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-navy);
}

@media (min-width: 768px) {
  .heading-2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .heading-2 { font-size: 2.75rem; }
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.field-label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-navy-700);
}

.field-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--dark-text);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.field-input::placeholder {
  color: #a9bad8;
}

.field-input:focus {
  border-color: var(--gold-400);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 154, 31, 0.2);
}

.field-error {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px -3px rgba(14, 23, 41, 0.05);
  backdrop-filter: blur(8px);
}

.site-header:not(.scrolled) {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

@media (min-width: 768px) {
  .header-inner { padding: 0.75rem 1.5rem; }
}

@media (min-width: 1024px) {
  .header-inner { padding: 0.75rem 2rem; }
}

/* Top utility bar */
.top-bar {
  display: none;
  background: var(--primary-navy-900);
  color: var(--white);
}

@media (min-width: 1024px) {
  .top-bar { display: block; }
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .top-bar-inner { padding: 0.5rem 1.5rem; }
}

@media (min-width: 1024px) {
  .top-bar-inner { padding: 0.5rem 2rem; }
}

.top-bar p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #d4dcec;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-links a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #d4dcec;
  transition: color 0.2s;
}

.top-bar-links a:hover {
  color: #e3c266;
}

/* Desktop nav */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav li {
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-navy-800);
  transition: color 0.2s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--gold-600);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  border-radius: 9999px;
  background: var(--gold-500);
  opacity: 0;
  transition: opacity 0.3s;
}

.desktop-nav a.active::after {
  opacity: 1;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta { display: flex; gap: 0.75rem; align-items: center; }
}

/* Mobile menu toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  color: var(--primary-navy-800);
  transition: background 0.2s;
}

.mobile-toggle:hover {
  background: var(--off-white);
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(7, 13, 26, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .mobile-menu-backdrop { display: none; }
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 70;
  width: 85%;
  max-width: 24rem;
  height: 100%;
  background: var(--white);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 1.25rem;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  color: var(--primary-navy-800);
  transition: background 0.2s;
}

.mobile-menu-close:hover {
  background: var(--off-white);
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 0.75rem;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-navy-800);
  transition: all 0.2s;
}

.mobile-menu-nav a:hover {
  background: var(--off-white);
  color: var(--gold-600);
}

.mobile-menu-footer {
  border-top: 1px solid var(--border-light);
  padding: 1.25rem;
}

.mobile-menu-footer .btn-gold {
  width: 100%;
}

.mobile-menu-contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
  color: var(--primary-navy-800);
  transition: background 0.2s;
}

.mobile-menu-contact a:hover {
  background: var(--off-white);
}

.mobile-menu-contact .btn-whatsapp {
  background: var(--primary-navy-800);
  border-color: var(--primary-navy-800);
  color: var(--white);
}

.mobile-menu-contact .btn-whatsapp:hover {
  background: var(--primary-navy-700);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary-navy-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -10;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary-navy-950), rgba(14, 23, 41, 0.85), rgba(21, 33, 62, 0.4));
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary-navy-950), transparent, rgba(7, 13, 26, 0.3));
}

.hero-content {
  padding: 2rem 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-truck {
  display: none;
  flex-shrink: 0;
}

.hero-truck img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@media (min-width: 480px) {
  .hero-content { padding: 2.5rem 1.5rem 0; }
}

@media (min-width: 768px) {
  .hero-content { padding: 3rem 1.5rem 0; }
  .hero-truck { display: block; }
}

@media (min-width: 1024px) {
  .hero-content { padding: 3rem 2rem 0; }
  .hero-truck img { max-width: 550px; }
}

@media (min-width: 1280px) {
  .hero-content { padding: 3.5rem 2rem 0; }
  .hero-truck img { max-width: 600px; }
}

.hero-inner {
  max-width: 40rem;
}

.hero-tagline {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-400);
}

.hero-title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}

@media (min-width: 400px) {
  .hero-title { font-size: 2.25rem; }
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-description {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: #d4dcec;
}

@media (min-width: 768px) {
  .hero-description { font-size: 1.25rem; }
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

/* Hero Badge Pills */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.hero-badge svg {
  color: var(--gold-400);
  flex-shrink: 0;
}

/* Hero 3 CTA Buttons */
.hero-ctas {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.btn-whatsapp-hero:hover {
  background: #1da851;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.btn-phone-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1;
}

.btn-phone-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .hero-ctas { gap: 1rem; }
}

.hero-checklist {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem 1.5rem;
}

@media (min-width: 640px) {
  .hero-checklist { grid-template-columns: 1fr 1fr; }
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d4dcec;
}

/* Hero stat strip */
.hero-stats {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 13, 26, 0.8);
  backdrop-filter: blur(4px);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  divide-x: 1px;
  -webkit-box-shadow: inset 0 0 0 0 rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.hero-stat {
  padding: 1.25rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-stat { padding: 1.5rem 1rem; }
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-400);
}

@media (min-width: 768px) {
  .hero-stat-value { font-size: 1.5rem; }
}

.hero-stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a9bad8;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--primary-navy-950);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -10;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary-navy-950), rgba(7, 13, 26, 0.9), rgba(21, 33, 62, 0.7));
}

.page-hero-content {
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .page-hero-content { padding: 4rem 1.5rem; }
}

@media (min-width: 1024px) {
  .page-hero-content { padding: 4rem 2rem; }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #a9bad8;
}

.breadcrumb a {
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #e3c266;
}

.breadcrumb .current {
  color: var(--gold-400);
}

.breadcrumb-sep {
  color: #5370af;
}

.page-hero h1 {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--white);
}

@media (min-width: 640px) {
  .page-hero h1 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .page-hero h1 { font-size: 3rem; }
}

.page-hero-desc {
  margin-top: 1rem;
  max-width: 40rem;
  font-size: 1rem;
  color: #d4dcec;
}

@media (min-width: 768px) {
  .page-hero-desc { font-size: 1.125rem; }
}

/* ============================================
   SECTION HEADING
   ============================================ */
.section-heading {
  max-width: 40rem;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
  text-align: center;
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light .section-heading-desc {
  color: #d4dcec;
}

.section-heading .section-heading-desc {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--muted-text);
}

@media (min-width: 768px) {
  .section-heading .section-heading-desc { font-size: 1.125rem; }
}

.section-heading-bar {
  margin-top: 1.5rem;
  height: 4px;
  width: 5rem;
  border-radius: 9999px;
  background: var(--gold-500);
}

.section-heading.center .section-heading-bar {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #e3c266;
  box-shadow: 0 20px 25px -5px rgba(14, 23, 41, 0.1);
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--primary-navy-800);
  color: var(--gold-400);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: var(--gold-500);
  color: var(--primary-navy);
}

.service-card-category {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-600);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.service-card p {
  margin-top: 0.75rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-text);
}

.service-card-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-navy-800);
  transition: color 0.2s;
}

.service-card:hover .service-card-link {
  color: var(--gold-600);
}

.service-card-link svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* Service Card with Image */
.service-card-image {
  padding: 0;
  overflow: hidden;
}

.service-grid-3col {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .service-grid-3col { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .service-grid-3col { grid-template-columns: repeat(3, 1fr); }
}

.service-card-image .service-card-body {
  padding: 1.5rem;
}

.service-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--off-white);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(7, 13, 26, 0.85);
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-400);
}

/* ============================================
   FLEET CARDS
   ============================================ */
.fleet-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(14, 23, 41, 0.1);
}

.fleet-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--off-white);
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-card-image img {
  transform: scale(1.1);
}

.fleet-card-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(7, 13, 26, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-400);
  backdrop-filter: blur(4px);
}

.fleet-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.fleet-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.fleet-card-meta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.fleet-card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fleet-card-meta-label {
  font-weight: 600;
  color: var(--primary-navy-700);
}

.fleet-card-meta-value {
  color: var(--muted-text);
}

.fleet-card-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.fleet-card-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.2s;
  text-decoration: none;
}

.fleet-card-btn-outline {
  border: 1px solid var(--border-light);
  color: var(--primary-navy-800);
}

.fleet-card-btn-outline:hover {
  background: var(--off-white);
}

.fleet-card-btn-gold {
  background: var(--gold-500);
  color: var(--primary-navy);
}

.fleet-card-btn-gold:hover {
  background: var(--gold-400);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(14, 23, 41, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold-500);
  margin-top: 0.75rem;
}

.testimonial-quote {
  margin-top: 1rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--dark-text);
}

.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--primary-navy-800);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-400);
  flex-shrink: 0;
}

.testimonial-author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.testimonial-author-role {
  font-size: 0.75rem;
  color: var(--muted-text);
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  text-align: left;
  transition: background 0.2s;
}

.faq-toggle:hover {
  background: var(--off-white);
}

@media (min-width: 768px) {
  .faq-toggle { padding: 1.25rem 1.5rem; }
}

.faq-toggle-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.faq-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: var(--primary-navy-800);
  color: var(--gold-400);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-toggle[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
}

@media (min-width: 768px) {
  .faq-answer { padding: 0 1.5rem 1.25rem; }
}

.faq-answer p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-text);
}

@media (max-width: 767px) {
  .faq-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  background: var(--primary-navy-900);
}

.process-timeline {
  position: relative;
  margin-top: 4rem;
}

.process-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 2.25rem;
  height: 2px;
  background: linear-gradient(to right, rgba(200, 154, 31, 0.3), var(--gold-500), rgba(200, 154, 31, 0.3));
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  text-align: center;
}

.process-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto;
  border: 4px solid var(--primary-navy-900);
  border-radius: 9999px;
  background: var(--gold-500);
}

.process-step-number span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.process-step h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.process-step p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #d4dcec;
}

/* Mobile process timeline */
.process-mobile {
  display: none;
  position: relative;
  padding-left: 2.5rem;
}

@media (max-width: 767px) {
  .process-mobile { display: block; margin-top: 3rem; }
  .process-timeline-desktop { display: none; }
}

.process-mobile-line {
  position: absolute;
  left: 18px;
  bottom: 0.5rem;
  top: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-500), rgba(200, 154, 31, 0.3));
}

.process-mobile-step {
  position: relative;
  padding-bottom: 2rem;
}

.process-mobile-step:last-child {
  padding-bottom: 0;
}

.process-mobile-step-number {
  position: absolute;
  left: -2.5rem;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 4px solid var(--primary-navy-900);
  border-radius: 9999px;
  background: var(--gold-500);
}

.process-mobile-step-number span {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.process-mobile-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.process-mobile-step p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #d4dcec;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: var(--gold-500);
  color: var(--primary-navy);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: none;
}

@media (min-width: 640px) {
  .about-badge { display: block; }
}

@media (min-width: 1024px) {
  .about-badge { right: -1.5rem; }
}

.about-badge-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
}

.about-badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-point {
  display: flex;
  gap: 0.75rem;
}

.trust-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--primary-navy-800);
  color: var(--gold-400);
  flex-shrink: 0;
}

.trust-point-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.trust-point-text {
  margin-top: 2px;
  font-size: 0.875rem;
  color: var(--muted-text);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--primary-navy-950);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -10;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary-navy-950), rgba(7, 13, 26, 0.95), rgba(21, 33, 62, 0.8));
}

.cta-content {
  padding: 3rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-content { padding: 4rem 1.5rem; }
}

@media (min-width: 1024px) {
  .cta-content { padding: 4rem 2rem; }
}

.cta-content h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--white);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-content h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .cta-content h2 { font-size: 3rem; }
}

.cta-content p {
  margin-top: 1.25rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  color: #d4dcec;
}

@media (min-width: 768px) {
  .cta-content p { font-size: 1.125rem; }
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; justify-content: center; }
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
  background: var(--primary-navy-900);
}

.quote-contact-card {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.quote-contact-card-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-400);
}

.quote-contact-card-phone {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.quote-contact-card-detail {
  font-size: 0.875rem;
  color: #d4dcec;
}

.quote-form-card {
  border-radius: 1rem;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .quote-form-card { padding: 2rem; }
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .quote-form-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   INDUSTRY CARDS
   ============================================ */
.industry-card {
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  background: var(--surface-light);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: #e3c266;
  box-shadow: 0 10px 15px -3px rgba(14, 23, 41, 0.1);
}

.industry-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(200, 154, 31, 0.1);
  color: var(--gold-600);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-card-icon {
  background: var(--gold-500);
  color: var(--white);
}

.industry-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.industry-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-text);
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-card {
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  background: var(--surface-light);
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: #e3c266;
  box-shadow: 0 10px 15px -3px rgba(14, 23, 41, 0.1);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--primary-navy-800);
  color: var(--gold-400);
}

.contact-card-label {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-600);
}

.contact-card-value {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-navy);
}

/* Business hours card */
.hours-card {
  border-radius: 1rem;
  background: var(--primary-navy-800);
  padding: 1.5rem;
  color: var(--white);
}

.hours-card-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-400);
}

.hours-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hours-card-value {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.hours-card-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #d4dcec;
}

/* Quick contact card */
.quick-contact-card {
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  padding: 1.5rem;
}

.quick-contact-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-600);
}

.quick-contact-buttons {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Map */
.map-container {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

/* ============================================
   SERVICE DETAIL
   ============================================ */
.service-detail-image {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
}

.service-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--primary-navy-800);
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}

.service-detail-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .service-detail-features { grid-template-columns: 1fr 1fr; }
}

.service-detail-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-navy-800);
}

.service-detail-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .service-detail-buttons { flex-direction: row; }
}

.service-detail-nav {
  background: var(--primary-navy-900);
  padding: 3rem 1rem;
}

.service-detail-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .service-detail-nav-inner { flex-direction: row; }
}

.service-detail-nav-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-400);
}

.service-detail-nav-title {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-listing-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .services-listing-item { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

.services-listing-item.reversed .services-listing-image {
  order: 2;
}

.services-listing-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.services-listing-image img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.services-listing-image:hover img {
  transform: scale(1.05);
}

.services-listing-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(7, 13, 26, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-400);
  backdrop-filter: blur(4px);
}

/* ============================================
   FLEET PAGE
   ============================================ */
.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.fleet-filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--primary-navy-700);
  transition: all 0.2s;
  cursor: pointer;
}

.fleet-filter-btn:hover {
  border-color: #e3c266;
  color: var(--gold-600);
}

.fleet-filter-btn.active {
  background: var(--primary-navy-800);
  color: var(--gold-400);
  border-color: var(--primary-navy-800);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: var(--primary-navy-950);
  padding: 1rem;
  text-align: center;
}

.page-404-number {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--gold-500);
}

@media (min-width: 768px) {
  .page-404-number { font-size: 5rem; }
}

.page-404 h1 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

@media (min-width: 768px) {
  .page-404 h1 { font-size: 1.875rem; }
}

.page-404 p {
  margin-top: 0.75rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  color: #d4dcec;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary-navy-950);
  color: #d4dcec;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .footer-main { padding: 5rem 1.5rem; }
}

@media (min-width: 1024px) {
  .footer-main { padding: 5rem 2rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand-logo {
  display: inline-block;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  background: var(--white);
}

.footer-brand-desc {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #a9bad8;
}

.footer-social {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-400);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--gold-500);
  color: var(--primary-navy);
}

.footer-col h3 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-400);
  margin: 0;
}

.footer-col ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col li {
  font-size: 0.875rem;
}

.footer-col a {
  color: #a9bad8;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #e3c266;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  font-size: 0.75rem;
  color: #7e95c4;
}

.footer-bottom-inner a {
  color: var(--gold-500);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-bottom-inner a:hover {
  color: var(--gold-400);
}

@media (min-width: 768px) {
  .footer-bottom-inner { flex-direction: row; padding: 1.25rem 1.5rem; }
}

@media (min-width: 1024px) {
  .footer-bottom-inner { padding: 1.25rem 2rem; }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #22c55e;
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #16a34a;
}

.whatsapp-float-ping {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: #22c55e;
  opacity: 0.3;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-fade-up {
  animation: fadeUp 0.7s ease-out both;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out both;
}

.animate-slide-in {
  animation: slideIn 0.4s ease-out both;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ============================================
   FORM MESSAGES
   ============================================ */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--white);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: #dcfce7;
  color: #16a34a;
}

.form-success h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.form-success p {
  margin-top: 0.5rem;
  max-width: 28rem;
  font-size: 0.875rem;
  color: var(--muted-text);
}

.form-success-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .form-success-buttons { flex-direction: row; }
}

/* ============================================
   BLOG CARDS (matching fleet card format)
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(14, 23, 41, 0.1);
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--off-white);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(7, 13, 26, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-400);
  backdrop-filter: blur(4px);
}

.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--heading);
}

.blog-card-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

.blog-card-title a:hover {
  color: var(--gold-500);
}

.blog-card-meta {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8125rem;
}

.blog-card-meta dt,
.blog-card-meta dd {
  margin: 0;
  display: inline;
}

.blog-card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-text);
}

.blog-card-meta-item strong {
  font-weight: 600;
  color: var(--primary-navy-700);
}

.blog-card-excerpt {
  flex: 1;
  margin-top: 0.75rem;
  color: var(--muted-text);
  font-size: 0.8125rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.blog-card-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.2s;
  text-decoration: none;
}

.blog-card-btn-outline {
  border: 1px solid var(--border-light);
  color: var(--primary-navy-800);
}

.blog-card-btn-outline:hover {
  background: var(--off-white);
}

.blog-card-btn-gold {
  background: var(--gold-500);
  color: var(--primary-navy);
}

.blog-card-btn-gold:hover {
  background: var(--gold-400);
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   BLOG CONTENT (single post)
   ============================================ */
.blog-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--heading);
  margin: 2rem 0 0.75rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin: 1.5rem 0 0.5rem;
}

.blog-content p {
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.blog-content ul,
.blog-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.blog-content li {
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.blog-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

/* Blog post navigation */
.blog-nav-grid {
  grid-template-columns: 1fr;
}

.blog-nav-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line-color);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.blog-nav-card:hover {
  border-color: var(--gold-500);
  box-shadow: 0 4px 16px rgba(0,29,70,.08);
}

.blog-nav-card-next {
  text-align: right;
  align-items: flex-end;
}

.blog-nav-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-nav-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
}

@media (min-width: 640px) {
  .blog-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.alignwide {
  margin-left: -1rem;
  margin-right: -1rem;
}

@media (min-width: 768px) {
  .alignwide {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

@media (min-width: 1024px) {
  .alignwide {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

/* WordPress admin bar offset */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ============================================
   GOOGLE REVIEWS SLIDER
   ============================================ */
.gr-rating-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.gr-rating-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.gr-rating-badge-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gr-rating-badge-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.gr-rating-badge-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gr-rating-badge-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.gr-rating-badge-stars {
  display: flex;
  gap: 1px;
  color: #f59e0b;
}

.gr-rating-badge-count {
  font-size: 0.8125rem;
  color: var(--muted-text);
}

/* Slider */
.gr-slider-wrapper {
  position: relative;
}

.gr-slider {
  overflow: hidden;
  border-radius: 1rem;
}

.gr-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gr-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
  min-width: 0;
}

@media (min-width: 640px) {
  .gr-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .gr-slide {
    flex: 0 0 33.333%;
  }
}

.gr-slide-inner {
  height: 100%;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  background: var(--surface-light);
  transition: all 0.3s ease;
}

.gr-slide-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(14, 23, 41, 0.1);
}

.gr-slide-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gr-slide-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--primary-navy-800);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-400);
  flex-shrink: 0;
}

.gr-slide-author {
  flex: 1;
  min-width: 0;
}

.gr-slide-name {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gr-slide-date {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted-text);
}

.gr-slide-google-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gr-slide-stars {
  display: flex;
  gap: 2px;
  margin-top: 0.875rem;
  color: #f59e0b;
}

.gr-slide-text {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--dark-text);
}

/* Slider Controls */
.gr-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.gr-slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--primary-navy-800);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.gr-slider-btn:hover {
  background: var(--primary-navy-800);
  color: var(--white);
  border-color: var(--primary-navy-800);
}

.gr-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gr-slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--border-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gr-slider-dot.active {
  background: var(--gold-500);
  width: 1.5rem;
}
