/* ============================================================
   OxFleet Transportation Solution â€“ Premium Stylesheet
   Brand: Blue #1a6fb5 | Gray #6d6e70 | Orange #f5a623 | Yellow #ffd700
   ============================================================ */

/* â”€â”€ CSS Variables â”€â”€ */
:root {
  --blue: #1a6fb5;
  --blue-dark: #124f85;
  --blue-light: #3a8fd5;
  --gray: #6d6e70;
  --gray-dark: #3d3e40;
  --gray-light: #a8a9ab;
  --orange: #f5a623;
  --orange-dark: #d4881a;
  --yellow: #ffd700;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --dark: #0d1117;
  --dark-2: #161b22;

  --gradient-brand: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
  --gradient-warm: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 60%, var(--yellow) 100%);
  --gradient-hero: linear-gradient(160deg, #0a2f52 0%, #124f85 45%, #1a6fb5 100%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .12);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, .15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .2);
  --shadow-glow: 0 0 40px rgba(26, 111, 181, .35);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: .6s cubic-bezier(.4, 0, .2, 1);

  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

/* â”€â”€ Reset & Base â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* â”€â”€ Topbar â”€â”€ */
.topbar {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  padding: 8px 0;
  position: relative;
  z-index: 1000;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-left span,
.topbar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-left i,
.topbar-right i {
  color: var(--orange);
}

.topbar-btn {
  background: var(--gradient-warm);
  color: var(--dark);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .8rem;
  transition: var(--transition);
  letter-spacing: .5px;
}

.topbar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, .4);
}

/* â”€â”€ Navbar â”€â”€ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 47, 82, .97);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .nav-toggle span {
  color: var(--white) !important;
}

.navbar.scrolled .nav-link:hover {
  color: var(--orange) !important;
}

.navbar.scrolled .logo-fallback .logo-ox {
  color: var(--orange);
}

.navbar.scrolled .logo-fallback .logo-fleet {
  color: var(--white);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 48px;
}

.logo-fallback {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 900;
}

.logo-ox {
  color: var(--blue);
  font-size: 1.8rem;
}

.logo-fleet {
  color: var(--gray);
  font-size: 1.4rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .92rem;
  color: var(--gray-dark);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  background: rgba(26, 111, 181, .07);
}

.nav-link i {
  font-size: .7rem;
  transition: transform var(--transition);
}

.has-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
  border-top: 3px solid var(--orange);
  overflow: hidden;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: .9rem;
  color: var(--gray-dark);
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  color: var(--blue);
  background: rgba(26, 111, 181, .06);
  border-left-color: var(--orange);
}

.dropdown-menu li a i {
  color: var(--orange);
  width: 16px;
  text-align: center;
}

.dropdown-divider {
  height: 1px;
  background: rgba(0, 0, 0, .08);
  margin: 4px 0;
}

/* Nav CTA */
.btn-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-warm);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  margin-left: 8px;
  box-shadow: 0 4px 15px rgba(245, 166, 35, .3);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, .45);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--gray-dark);
  border-radius: 4px;
  transition: var(--transition);
}

/* â”€â”€ Hero â”€â”€ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  transform: scale(1.05);
  animation: zoomPan 10s ease-in-out infinite alternate;
}

.hero-slide.active {
  opacity: 1;
}

.slide-1 {
  background-image: linear-gradient(160deg, rgba(6, 30, 53, .75) 0%, rgba(10, 53, 96, .6) 45%, rgba(26, 111, 181, .5) 100%), url('../images/hero_sedan.jpg');
  background-size: cover;
  background-position: center 60%;
}

.slide-2 {
  background-image: linear-gradient(160deg, rgba(6, 30, 53, .7) 0%, rgba(10, 53, 96, .55) 45%, rgba(26, 111, 181, .45) 100%), url('../images/city_street.jpg');
  background-size: cover;
  background-position: center;
}

.slide-3 {
  background-image: linear-gradient(160deg, rgba(20, 10, 0, .72) 0%, rgba(80, 40, 0, .55) 45%, rgba(200, 120, 20, .45) 100%), url('../images/airport_curb.jpg');
  background-size: cover;
  background-position: center 70%;
}

@keyframes zoomPan {
  from {
    transform: scale(1.05) translateX(0)
  }

  to {
    transform: scale(1.12) translateX(-1%)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 20, 40, .55) 0%, rgba(5, 20, 40, .3) 50%, rgba(5, 20, 40, .7) 100%);
  z-index: 1;
}

/* Floating Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: .12;
  border-radius: 50%;
  animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--orange);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--blue-light);
  bottom: 10%;
  left: -60px;
  animation-delay: 2s;
}

.shape-3 {
  width: 180px;
  height: 180px;
  background: var(--yellow);
  top: 40%;
  right: 20%;
  animation-delay: 4s;
}

.shape-hex {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(245, 166, 35, .08);
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexRotate 20s linear infinite;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-25px)
  }
}

@keyframes hexRotate {
  from {
    transform: translateY(-50%) rotate(0deg)
  }

  to {
    transform: translateY(-50%) rotate(360deg)
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, .2);
  border: 1px solid rgba(245, 166, 35, .4);
  color: var(--yellow);
  padding: 7px 20px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeSlideUp .8s ease both;
  animation-delay: .2s;
}

.hero-badge i {
  color: var(--yellow);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title-line1 {
  display: block;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  animation: fadeSlideUp .8s ease both;
  animation-delay: .4s;
}

.hero-title-line2 {
  display: block;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  color: var(--white);
  animation: fadeSlideUp .8s ease both;
  animation-delay: .55s;
}

.hero-accent {
  font-style: normal;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 4px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .85);
  max-width: 620px;
  margin: 0 auto 36px;
  animation: fadeSlideUp .8s ease both;
  animation-delay: .7s;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeSlideUp .8s ease both;
  animation-delay: .85s;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-warm);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(245, 166, 35, .4);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 166, 35, .55);
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(10px);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, .22);
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  animation: fadeSlideUp .8s ease both;
  animation-delay: 1s;
}

.stat-item {
  text-align: center;
  padding: 0 28px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
}

.stat-plus {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow);
}

.stat-label {
  display: block;
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .5px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .2);
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  transition: var(--transition);
  cursor: pointer;
}

.slide-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 4px;
}

/* Scroll Down */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  letter-spacing: 1px;
}

.scroll-arrow {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(6px)
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* â”€â”€ Booking Section â”€â”€ */
.booking-section {
  background: var(--off-white);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-warm);
}

.booking-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-header {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.booking-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.booking-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.booking-header p {
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
  margin-top: 2px;
}

.booking-form {
  padding: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--gray-dark);
  margin-bottom: 8px;
  letter-spacing: .3px;
}

.form-group label i {
  color: var(--orange);
}

.pickup-icon {
  color: #27ae60 !important;
}

.dropoff-icon {
  color: #e74c3c !important;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid #e8eaed;
  font-family: var(--font-main);
  font-size: .93rem;
  color: var(--dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 111, 181, .1);
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 90px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
  font-size: .8rem;
}

.input-indicator {
  position: absolute;
  bottom: -1px;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.input-indicator.pickup {
  background: #27ae60;
}

.input-indicator.dropoff {
  background: #e74c3c;
}

.input-wrapper input:focus~.input-indicator {
  transform: scaleX(1);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #e8eaed;
}

.form-assurance {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: .86rem;
}

.form-assurance i {
  color: #27ae60;
  font-size: 1rem;
}

.btn-book-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-warm);
  color: var(--dark);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(245, 166, 35, .35);
}

.btn-book-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 166, 35, .5);
}

/* â”€â”€ Introduction / Features â”€â”€ */
.introduction {
  padding: 96px 24px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.introduction::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -60px;
  width: 640px;
  height: 340px;
  background: url('../images/tieox-car.png') no-repeat right bottom;
  background-size: contain;
  opacity: .05;
  pointer-events: none;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, .7);
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title.light {
  color: var(--white);
}

.section-title em {
  font-style: normal;
  color: var(--blue);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 20px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, .75);
}

.intro-text-block {
  max-width: 700px;
  margin: 0 auto 56px;
}

.intro-text-block p {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.8;
}

/* Feature Cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid #e8eaed;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-hex-accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(245, 166, 35, .06);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(26, 111, 181, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-card-icon {
  background: var(--blue);
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .87rem;
  color: var(--gray-dark);
}

.feature-list li i {
  color: var(--orange);
  font-size: .75rem;
}

/* â”€â”€ Services â”€â”€ */
.services-section {
  padding: 96px 24px;
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
}

/* Car watermark in services section */
.services-section::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -40px;
  width: 560px;
  height: 300px;
  background: url('../images/tieox-car.png') no-repeat right bottom;
  background-size: contain;
  opacity: .09;
  pointer-events: none;
  z-index: 0;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.service-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  color: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .12);
  border-color: var(--orange);
}

.service-card.featured {
  border-color: var(--orange);
  background: rgba(245, 166, 35, .1);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-warm);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .5px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(245, 166, 35, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-card ul {
  padding-left: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card ul li {
  font-size: .88rem;
  color: rgba(255, 255, 255, .78);
  padding-left: 16px;
  position: relative;
}

.service-card ul li::before {
  content: 'â€º';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: .88rem;
  margin-top: 20px;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.service-link:hover {
  gap: 10px;
  border-bottom-color: var(--orange);
}

/* â”€â”€ Why Us â”€â”€ */
.why-us {
  padding: 96px 24px;
  background: var(--off-white);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-title {
  text-align: left;
}

.why-text .section-eyebrow {
  justify-content: flex-start;
}

.why-text p {
  color: var(--gray-dark);
  margin-bottom: 36px;
  line-height: 1.8;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.why-item h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-item p {
  font-size: .88rem;
  color: var(--gray);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-brand);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(26, 111, 181, .3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26, 111, 181, .45);
}

/* Contact Card */
.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.why-image-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.image-hex-1,
.image-hex-2 {
  position: absolute;
  border-radius: 50%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.image-hex-1 {
  width: 280px;
  height: 280px;
  background: var(--gradient-warm);
  opacity: .3;
  top: 0;
  right: 0;
  animation: floatShape 6s ease-in-out infinite;
}

.image-hex-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-brand);
  opacity: .15;
  bottom: 0;
  left: 0;
  animation: floatShape 8s ease-in-out infinite reverse;
}

/* Car image in why-us */
.why-car-img {
  width: 100%;
  max-width: 500px;
  display: block;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .25));
  animation: floatShape 5s ease-in-out infinite;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  z-index: 2;
  border-top: 5px solid var(--orange);
}

.contact-card-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-card-logo span {
  color: var(--gray);
}

.contact-card p {
  color: var(--gray);
  font-size: .95rem;
  margin-bottom: 12px;
}

.contact-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 24px;
  transition: var(--transition);
}

.contact-phone:hover {
  color: var(--orange);
}

.contact-book-btn {
  display: block;
  background: var(--gradient-warm);
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .95rem;
  transition: var(--transition);
}

.contact-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, .4);
}

/* â”€â”€ Testimonials â”€â”€ */
.testimonials {
  padding: 96px 24px;
  background: var(--dark-2);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.testimonial-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  color: var(--white);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, .4);
}

.testimonial-card.featured {
  border-color: var(--orange);
  background: rgba(245, 166, 35, .06);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--orange);
  font-size: .9rem;
}

.testimonial-card p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 111, 181, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue-light);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: .92rem;
}

.testimonial-author span {
  color: var(--gray-light);
  font-size: .8rem;
}

/* â”€â”€ CTA Strip â”€â”€ */
.cta-strip {
  background: var(--gradient-warm);
  padding: 56px 24px;
}

.cta-strip-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.cta-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}

.cta-strip-text p {
  color: rgba(0, 0, 0, .65);
  font-size: .95rem;
}

.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-phone,
.btn-cta-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .95rem;
  transition: var(--transition);
}

.btn-cta-phone {
  background: var(--dark);
  color: var(--white);
}

.btn-cta-phone:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-cta-book {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}

.btn-cta-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

/* â”€â”€ Footer â”€â”€ */
.footer {
  background: var(--dark);
  padding: 72px 24px 0;
  color: rgba(255, 255, 255, .8);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1;
}

.footer-logo .logo-ox {
  font-size: 2rem;
  color: var(--blue-light);
}

.footer-logo .logo-fleet {
  font-size: 1.5rem;
  color: var(--gray-light);
}

.logo-tagline {
  font-family: var(--font-main);
  font-size: .78rem;
  font-weight: 400;
  color: var(--gray-light);
  letter-spacing: 1px;
  margin-top: 4px;
}

.footer-brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .87rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .87rem;
  color: rgba(255, 255, 255, .55);
}

.footer-contact-item i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .83rem;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .4);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* â”€â”€ Modal â”€â”€ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  transform: scale(.85);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-icon {
  font-size: 3.5rem;
  color: #27ae60;
  margin-bottom: 16px;
}

.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-box p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 8px;
}

.modal-phone a {
  color: var(--blue);
  font-weight: 700;
}

.modal-close-btn {
  margin-top: 24px;
  background: var(--gradient-warm);
  color: var(--dark);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .95rem;
  transition: var(--transition);
}

.modal-close-btn:hover {
  transform: translateY(-2px);
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1024px) {

  .feature-cards,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .topbar-inner {
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 0;
    padding: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    align-items: stretch;
  }

  .nav-menu.open {
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    border-top: none;
    padding-left: 16px;
    display: none;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .btn-nav-cta {
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-left: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

  .feature-cards,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .booking-form {
    padding: 24px;
  }

  .booking-header {
    padding: 24px;
  }

  .why-container {
    gap: 48px;
  }
}
/* -- Why-Us car image layout fix -- */
.why-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.why-image-frame {
  position: relative; width: 100%; max-width: 460px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.why-car-img {
  width: 100%; max-width: 500px; display: block; position: relative; z-index: 3;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.28));
  animation: floatCar 5s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes floatCar {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-lg); text-align: center; position: relative; z-index: 2;
  border-top: 5px solid var(--orange); width: 100%; margin-top: -10px;
}

/* ============================================================
   HERO TWO-COLUMN SPLIT LAYOUT + BOOKING PANEL
   ============================================================ */

/* Override hero to use full-height grid layout */
.hero {
  display: grid;
  align-items: stretch;
  min-height: 100vh;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 40px 80px;
  min-height: 100vh;
}

/* -- Left: Hero text adjustments -- */
.hero-layout .hero-content {
  position: static;
  text-align: left;
  padding: 0 48px 0 0;
  max-width: none;
  margin: 0;
  color: var(--white);
}
.hero-layout .hero-badge { justify-content: flex-start; }
.hero-layout .hero-subtitle { margin: 0 0 28px; max-width: 520px; }
.hero-layout .hero-cta-group { justify-content: flex-start; margin-bottom: 36px; }
.hero-layout .hero-stats {
  justify-content: flex-start;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  gap: 0;
}
.hero-layout .stat-item { padding: 0 20px; }

/* -- Right: Booking Panel -- */
.hero-booking-panel {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08);
  animation: fadeSlideUp .9s ease both;
  animation-delay: .5s;
  align-self: center;
}

.hbp-header {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 60%, var(--yellow) 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hbp-icon {
  width: 44px; height: 44px;
  background: rgba(0,0,0,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--dark); flex-shrink: 0;
}
.hbp-header h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
  margin: 0;
}
.hbp-header p { font-size: .82rem; color: rgba(0,0,0,.6); margin: 2px 0 0; }

.hbp-form { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }

.hbp-field { display: flex; flex-direction: column; gap: 5px; }
.hbp-field label {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.9);
  letter-spacing: .3px; text-transform: uppercase;
}
.hbp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.hbp-input-wrap { position: relative; }
.hbp-input-wrap input,
.hbp-input-wrap select,
.hbp-input-wrap textarea {
  width: 100%;
  padding: 10px 13px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font-main);
  font-size: .88rem;
  outline: none;
  transition: var(--transition);
}
.hbp-input-wrap input::placeholder,
.hbp-input-wrap textarea::placeholder { color: rgba(255,255,255,.45); }
.hbp-input-wrap input:focus,
.hbp-input-wrap select:focus,
.hbp-input-wrap textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.18);
  box-shadow: 0 0 0 3px rgba(245,166,35,.25);
}
.hbp-input-wrap select { appearance: none; padding-right: 32px; cursor: pointer; }
.hbp-input-wrap select option { background: var(--dark-2); color: var(--white); }
.hbp-input-wrap textarea { resize: none; }

.hbp-select-wrap { position: relative; }
.hbp-arrow {
  position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.5); pointer-events: none; font-size: .75rem;
}

/* datetime calendar icon colour fix in dark inputs */
input[type="datetime-local"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(.6); cursor: pointer; }

.hbp-submit {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 60%, var(--yellow) 100%);
  color: var(--dark);
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 900;
  font-size: .95rem;
  font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(245,166,35,.4);
  cursor: pointer;
  border: none;
  width: 100%;
  margin-top: 4px;
}
.hbp-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,166,35,.55); }

.hbp-assurance {
  text-align: center;
  font-size: .77rem;
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding-top: 2px;
}
.hbp-assurance i { color: #4ade80; }

/* -- Responsive: stack vertically on tablet/mobile -- */
@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 40px;
    align-items: start;
  }
  .hero-layout .hero-content {
    padding: 0;
    text-align: center;
  }
  .hero-layout .hero-badge,
  .hero-layout .hero-cta-group { justify-content: center; }
  .hero-layout .hero-subtitle { margin: 0 auto 28px; }
  .hero-layout .hero-stats { justify-content: center; }
  .hero-booking-panel { max-width: 560px; margin: 0 auto; width: 100%; }
}
@media (max-width: 480px) {
  .hbp-row { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING PANEL REFINEMENTS
   - Blue/gray logo color scheme (less orange)
   - OxFleet logo in header
   - Service type dropdown fix
   ============================================================ */

/* Header: white background, blue accent bar */
.hero-booking-panel {
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.07);
}

.hbp-header {
  background: linear-gradient(135deg, #0a2f52 0%, #124f85 50%, #1a6fb5 100%);
  border-bottom: 3px solid var(--orange);
  padding: 20px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.hbp-logo-wrap {
  display: flex;
  align-items: center;
}

.hbp-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* Invert to white so logo reads cleanly on dark blue header */
  filter: brightness(0) invert(1);
}

.hbp-logo-fallback {
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 900;
}
.hbp-logo-ox   { color: var(--white); font-size: 1.6rem; }
.hbp-logo-fleet { color: rgba(255,255,255,.65); font-size: 1.2rem; }

.hbp-header-text h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}
.hbp-header-text p {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin: 2px 0 0;
}

/* Form background tint — more neutral */
.hbp-form {
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: rgba(0,0,0,.12);
}

/* Labels — white, no uppercase */
.hbp-field label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  letter-spacing: .2px;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Inputs — subtle blue-tinted glass */
.hbp-input-wrap input,
.hbp-input-wrap select,
.hbp-input-wrap textarea {
  background: rgba(10,47,82,.45);
  border: 1.5px solid rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: .87rem;
  transition: border-color .25s, background .25s;
}
.hbp-input-wrap input::placeholder,
.hbp-input-wrap textarea::placeholder {
  color: rgba(255,255,255,.38);
}
.hbp-input-wrap input:focus,
.hbp-input-wrap select:focus,
.hbp-input-wrap textarea:focus {
  border-color: var(--blue-light);
  background: rgba(26,111,181,.25);
  box-shadow: 0 0 0 3px rgba(26,111,181,.22);
}

/* -- Service-Type Dropdown fix --
   Native <select> options are OS-rendered and cannot be
   fully styled with CSS alone. We ensure the dropdown
   wrapper background is dark so visible in all browsers. */
.hbp-select-wrap select {
  background: #0a2f52;
  color: var(--white);
  border-color: rgba(255,255,255,.18);
}
.hbp-select-wrap select:focus {
  background: #124f85;
  border-color: var(--blue-light);
}
/* Style optgroup and option in supporting browsers */
.hbp-select-wrap select optgroup {
  background: #0d1b2a;
  color: var(--orange);
  font-weight: 700;
  font-size: .82rem;
}
.hbp-select-wrap select option {
  background: #0a2a45;
  color: var(--white);
  font-size: .87rem;
  padding: 6px 10px;
}
.hbp-select-wrap select option:checked,
.hbp-select-wrap select option:hover {
  background: #1a6fb5;
  color: var(--white);
}

/* Submit button — primary blue with orange accent on hover */
.hbp-submit {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 900;
  font-size: .95rem;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(26,111,181,.4);
  cursor: pointer;
  width: 100%;
  margin-top: 4px;
}
.hbp-submit:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 60%, var(--yellow) 100%);
  color: var(--dark);
  box-shadow: 0 10px 28px rgba(245,166,35,.45);
  transform: translateY(-2px);
}

/* Assurance strip */
.hbp-assurance {
  font-size: .75rem;
  color: rgba(255,255,255,.48);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 2px;
  text-align: center;
}
.hbp-assurance i { color: var(--orange); }

/* -- Scroll To Top Button -- */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9990;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.18);
  box-shadow: 0 6px 24px rgba(26,111,181,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease, background .25s ease, box-shadow .25s ease;
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  box-shadow: 0 10px 30px rgba(245,166,35,.5);
  transform: translateY(-3px);
}
.scroll-top-btn:active { transform: translateY(0); }
