/* ============================================================
   CityWide Auto Rentals — Main Stylesheet
   Premium dark-themed car rental website
   ============================================================ */

/* ----- Design Tokens ----- */
:root {
  /* Navy/Dark colors for text and accents */
  --color-navy-950: #0f172a;
  --color-navy-900: #1e293b;
  --color-navy-800: #334155;

  /* Vibrant Blue Accents */
  --color-blue-500: #2563eb;
  --color-blue-400: #3b82f6;
  --color-blue-glow: rgba(37, 99, 235, 0.35);

  --color-white: #ffffff;
  --color-gray-50:  #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #94a3b8;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-900: #0f172a;

  --color-success: #10b981;
  --color-danger:  #ef4444;

  /* Typography Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.0625rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;

  /* Spacing & Layout */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 8rem;

  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 0 24px var(--color-blue-glow);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: var(--color-navy-950);
  font-size: var(--text-base);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6, .title, .eyebrow {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

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

a:hover {
  color: var(--color-blue-400);
}

a:focus-visible {
  outline: 2px solid var(--color-blue-500);
  outline-offset: 2px;
  border-radius: 2px;
}

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

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-blue-500);
  outline-offset: 2px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

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

.w-100 {
  width: 100%;
}

.mb-1 {
  margin-bottom: var(--space-2);
}

.desktop-only {
  display: block;
}

.section {
  padding: var(--space-7) 0;
}

.title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-navy-950);
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  margin-top: var(--space-1);
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-blue-500), var(--color-blue-400));
  border-radius: 99px;
  margin: var(--space-3) auto 0;
}

.eyebrow {
  text-transform: uppercase;
  font-size: var(--text-xs);
  color: var(--color-blue-400);
  font-weight: 700;
  letter-spacing: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  border: none;
  min-height: 48px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
  gap: 8px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: scale(0.95);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-blue-500), var(--color-blue-400));
  color: #ffffff;
  box-shadow: 0 4px 15px var(--color-blue-glow);
}

.btn--primary:hover {
  box-shadow: 0 8px 25px var(--color-blue-glow);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn--secondary {
  background: white;
  border: 2px solid var(--color-gray-200);
  color: var(--color-navy-950);
}

.btn--secondary:hover {
  background: var(--color-gray-50);
  border-color: var(--color-blue-400);
  color: var(--color-blue-500);
  transform: translateY(-2px);
}

.btn--danger {
  background: linear-gradient(135deg, var(--color-blue-500), var(--color-blue-400));
  color: var(--color-white);
  box-shadow: 0 4px 15px var(--color-blue-glow);
}

.btn--danger:hover {
  box-shadow: 0 8px 25px var(--color-blue-glow);
  transform: translateY(-2px);
  color: var(--color-white);
}

/* ============================================================
   PHONE STRIP
   ============================================================ */
.phone-strip {
  background: var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-200);
  padding: 8px 0;
  font-size: var(--text-xs);
}

.phone-strip__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-strip__label {
  color: #000000;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-strip__list {
  display: flex;
  gap: var(--space-3);
  list-style: none;
}

.phone-strip__link {
  color: #000000;
  font-weight: 600;
  transition: color 0.2s ease;
}

.phone-strip__link:hover {
  color: var(--color-blue-500);
}

.phone-strip__mobile {
  display: none;
  position: relative;
}

.phone-strip__mobile-btn {
  background: none;
  border: 1px solid var(--color-gray-300);
  color: #000000;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  font-size: var(--text-xs);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s ease;
}

.phone-strip__mobile-btn:hover {
  border-color: var(--color-gray-400);
}

.phone-strip__mobile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  list-style: none;
  z-index: 100;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  margin-top: 4px;
}

.phone-strip__mobile-dropdown.show {
  display: block;
}

.phone-strip__mobile-dropdown li {
  padding: 6px 0;
}

.phone-strip__mobile-dropdown a {
  color: #000000;
  font-size: var(--text-sm);
  font-weight: 500;
  display: block;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.phone-strip__mobile-dropdown a:hover {
  background: var(--color-gray-100);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--color-gray-200);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* ============================================================
   MAIN NAVIGATION
   ============================================================ */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) 0;
  position: relative;
}

.nav-group {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  align-items: center;
}

.nav-group--left {
  flex: 1;
}

.nav-group--right {
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  color: var(--color-gray-600);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-blue-500);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-blue-500);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-4);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: black;
  font-size: var(--text-xl);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
}

.mobile-nav-toggle:hover {
  color: var(--color-blue-400);
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--color-navy-950);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-3);
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.mobile-nav-drawer__close {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 1;
}

.mobile-nav-drawer__close:hover {
  color: var(--color-blue-400);
  transform: rotate(90deg);
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: var(--color-gray-200);
  font-weight: 500;
  font-size: var(--text-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--color-white);
  padding-left: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 20, 50, 0.82) 0%,
    rgba(10, 20, 50, 0.55) 55%,
    transparent 100%
  );
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 600px;
}

.hero__eyebrow {
  text-transform: uppercase;
  font-size: var(--text-xs);
  color: var(--color-blue-400);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: var(--space-1);
}

.hero__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.1;
  margin: var(--space-2) 0;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.hero__desc {
  color: var(--color-gray-200);
  font-size: var(--text-base);
  max-width: 450px;
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* ============================================================
   RESERVATION SECTION
   ============================================================ */
.reservation-section {
  background: var(--color-gray-50);
  padding: var(--space-6) 0;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.reservation-box {
  background: white;
  backdrop-filter: none;
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  position: relative;
  overflow: hidden;
}

.reservation-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue-500), var(--color-blue-400));
  opacity: 1;
}

.reservation-box__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-navy-950);
  -webkit-text-fill-color: unset;
}

.reservation-box__desc {
  color: var(--color-gray-600);
  font-size: var(--text-sm);
  margin: var(--space-1) 0 var(--space-4);
}

.reservation-box__submit {
  margin-top: var(--space-4);
}

.reservation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy-950);
}

.form-control {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--color-navy-950);
  font-size: var(--text-sm);
  font-family: inherit;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-control::placeholder {
  color: var(--color-gray-400);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-blue-500);
  box-shadow: 0 0 0 4px var(--color-blue-glow);
  background: rgba(255, 255, 255, 0.12);
}

.form-control.is-invalid {
  border-color: var(--color-danger);
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.15);
}

.validation-error {
  font-size: var(--text-xs);
  color: var(--color-danger);
  min-height: 18px;
}

/* ============================================================
   FLEET CARDS & CAROUSEL
   ============================================================ */
.fleet-header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
}

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

.carousel-slide {
  flex: 0 0 33.333%;
  padding: 0 var(--space-2);
  box-sizing: border-box;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  font-size: var(--text-base);
}

.carousel-btn:hover {
  background: var(--color-blue-500);
  border-color: var(--color-blue-500);
  transform: scale(1.08);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: none;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.3);
}

.carousel-dot.active {
  background: var(--color-blue-500);
  transform: scale(1.2);
}

/* Fleet Card */
.fleet-card {
  background: var(--color-navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(47, 128, 237, 0.2);
  border-color: rgba(47, 128, 237, 0.5);
}

.fleet-card__image-box {
  position: relative;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.fleet-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-success);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
}

.fleet-card__image {
  max-height: 140px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-card__image {
  transform: scale(1.05);
}

.fleet-card__content {
  padding: var(--space-3);
}

.fleet-card__category {
  font-size: var(--text-lg);
  font-weight: 700;
}

.fleet-card__model {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  margin-top: 2px;
}

.fleet-card__specs {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-2);
  flex-wrap: wrap;
}

.fleet-card__spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: black;
  font-weight: 500;
}

.fleet-card__spec-item i {
  color: var(--color-blue-500);
}

.fleet-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fleet-card__price-label {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
}

.fleet-card__price-value {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-white);
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.benefit-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  font-size: var(--text-xl);
  color: var(--color-blue-500);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover .benefit-card__icon {
  background: rgba(47, 128, 237, 0.18);
  transform: scale(1.1);
}

.benefit-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-navy-950);
}

.benefit-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-700);
  margin-top: var(--space-1);
}

/* ============================================================
   LOCATION CARDS
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.location-card {
  background: var(--color-navy-900);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.location-card__content {
  padding: var(--space-4);
}

.location-card__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.location-card__list {
  list-style: none;
}

.location-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: var(--text-sm);
  color: var(--color-gray-200);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.location-card__item:last-child {
  border-bottom: none;
}

.location-card__item i {
  color: var(--color-blue-400);
  width: 16px;
  text-align: center;
  margin-top: 3px;
  flex-shrink: 0;
}

.location-card__item a {
  color: var(--color-blue-400);
  transition: color 0.2s ease;
}

.location-card__item a:hover {
  color: var(--color-blue-500);
}

.location-card__hours {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  margin-top: var(--space-3);
}

.location-card__hours-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.location-card__hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: var(--text-sm);
}

.location-card__hours-day {
  font-weight: 600;
  color: var(--color-gray-200);
}

.location-card__actions {
  display: flex;
  gap: var(--space-2);
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}

.about-preview__text {
  color: var(--color-gray-200);
  font-size: var(--text-base);
  line-height: 1.8;
  margin: var(--space-3) 0;
}

.about-preview img {
  border-radius: var(--radius-md);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-blue-500), #1a5fba);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  margin: var(--space-2) 0 var(--space-4);
  position: relative;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy-950);
  padding: var(--space-7) 0 var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.footer-col__title {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-2);
  letter-spacing: 1px;
}

.footer-col__text {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--color-gray-400);
  font-size: var(--text-sm);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  margin-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: var(--text-xs);
  color: var(--color-gray-400);
}

.footer-bottom__links {
  display: flex;
  gap: var(--space-3);
  list-style: none;
}

.footer-bottom__links a {
  color: var(--color-gray-400);
  transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
  color: var(--color-white);
}

/* ============================================================
   FLEET PAGE — Grid & Filters
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-4);
}

.fleet-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.fleet-filter-btn {
  background: white;
  border: 1px solid var(--color-gray-200);
  color: var(--color-gray-700);
  padding: 10px 20px;
  border-radius: 99px;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 500;
  font-family: inherit;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.fleet-filter-btn:hover,
.fleet-filter-btn.active {
  background: var(--color-blue-500);
  color: var(--color-white);
  border-color: var(--color-blue-500);
}

.fleet-filter-btn:active {
  transform: scale(0.96);
}

/* ============================================================
   ABOUT PAGE — Timeline & Values
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-blue-500);
}

.timeline__item {
  position: relative;
  margin-bottom: var(--space-4);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-blue-500);
  border: 3px solid var(--color-navy-950);
  box-shadow: 0 0 0 2px var(--color-blue-500);
}

.timeline__year {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-blue-400);
}

.timeline__text {
  font-size: var(--text-sm);
  color: var(--color-gray-200);
  margin-top: 4px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-4);
}

.value-card {
  background: var(--color-navy-900);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 128, 237, 0.3);
}

.value-card__icon {
  font-size: var(--text-2xl);
  color: var(--color-blue-400);
  margin-bottom: var(--space-2);
}

.value-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
}

.value-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  margin-top: var(--space-1);
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item__button {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-3) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: 600;
  text-align: left;
  font-family: inherit;
  gap: var(--space-2);
  transition: color 0.2s ease;
}

.faq-item__button:hover {
  color: var(--color-blue-400);
}

.faq-item__button i {
  transition: transform 0.3s ease;
  color: var(--color-blue-400);
  flex-shrink: 0;
}

.faq-item__button[aria-expanded='true'] i {
  transform: rotate(180deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__panel-inner {
  padding: 0 0 var(--space-3);
  color: var(--color-gray-200);
  font-size: var(--text-sm);
  line-height: 1.8;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.contact-form {
  background: var(--color-navy-900);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  color: var(--color-gray-400);
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--color-blue-500);
  background: rgba(47, 128, 237, 0.05);
}

.upload-zone__icon {
  font-size: var(--text-3xl);
  color: var(--color-blue-400);
  margin-bottom: var(--space-2);
}

.upload-zone__text {
  font-size: var(--text-sm);
}

.upload-zone__hint {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  margin-top: 4px;
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: var(--space-2);
}

.file-preview__name {
  font-size: var(--text-sm);
  color: var(--color-gray-200);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-preview__remove {
  background: none;
  border: none;
  color: var(--color-danger);
  cursor: pointer;
  padding: 4px;
  font-size: var(--text-base);
  transition: transform 0.15s ease;
}

.file-preview__remove:hover {
  transform: scale(1.2);
}

/* ============================================================
   BOOK NOW PAGE — Wizard
   ============================================================ */
.booking-page {
  padding: var(--space-7) 0;
}

.booking-page__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-5);
}

.booking-widget-shell {
  background: var(--color-navy-900);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.wizard-steps {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  transition: color 0.3s ease;
}

.wizard-step.active {
  color: var(--color-blue-400);
}

.wizard-step.completed {
  color: var(--color-success);
}

.wizard-step__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  font-size: var(--text-sm);
}

.wizard-step.active .wizard-step__number {
  background: var(--color-blue-500);
  border-color: var(--color-blue-500);
  color: var(--color-white);
  transform: scale(1.1);
}

.wizard-step.completed .wizard-step__number {
  background: var(--color-success);
  border-color: var(--color-success);
  color: var(--color-white);
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-4);
}

.booking-summary {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-top: var(--space-4);
}

.booking-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: var(--text-sm);
}

.booking-summary__row:last-child {
  border-bottom: none;
}

.booking-summary__total {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-blue-400);
}

.confirmation-card {
  text-align: center;
  padding: var(--space-6);
}

.confirmation-card__icon {
  font-size: 64px;
  color: var(--color-success);
  margin-bottom: var(--space-3);
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  margin-bottom: var(--space-3);
}

.breadcrumbs a {
  color: var(--color-gray-400);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--color-blue-400);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 50%;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: block !important;
  }

  .main-nav {
    justify-content: space-between !important;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-preview {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Forms & Reservation Box Stacking */
  #home-reservation-form > div {
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  #home-reservation-form .form-group,
  #home-reservation-form > div > div {
    width: 100% !important;
    min-width: 100% !important;
    flex: none !important;
  }

  #home-reservation-form button {
    width: 100% !important;
  }

  /* Booking Wizard Fixes */
  .wizard-steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  
  .wizard-step {
    font-size: var(--text-xs);
    padding: 6px 10px;
  }

  .booking-widget-shell {
    padding: var(--space-3);
  }
  
  .booking-summary-strip {
    flex-direction: column;
    gap: var(--space-2);
  }

  .wizard-fleet-card {
    flex-direction: column;
    text-align: center;
  }
  
  .wizard-fleet-card__rate {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
  }

  /* Mobile Nav & Header Alignment */
  .mobile-nav-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .site-header .main-nav {
    padding: 8px 16px !important;
    min-height: 60px !important;
  }

  .responsive-logo {
    height: 55px !important;
  }

  /* Structural Grids */
  .reservation-grid,
  .locations-grid,
  .footer-grid,
  .fleet-grid,
  .app-promo__container {
    grid-template-columns: 1fr;
  }

  .carousel-slide {
    flex: 0 0 100%;
  }

  .phone-strip__list { display: none; }
  .phone-strip__mobile { display: block; }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .hero__container {
    padding-top: 20px !important;
  }

  .hero__title {
    font-size: clamp(var(--text-2xl), 6vw, var(--text-4xl));
  }

  .reservation-box {
    padding: var(--space-3);
  }

  .cta-banner {
    padding: var(--space-4);
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-2);
  }

  .section {
    padding: var(--space-5) 0;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .fleet-filters {
    gap: var(--space-1);
  }

  .fleet-filter-btn {
    padding: 8px 14px;
    font-size: var(--text-xs);
  }
}

/* ============================================================
   ACCESSIBILITY — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   ACCESSIBILITY — Focus Visible
   ============================================================ */
:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-blue-500);
  outline-offset: 2px;
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: rgba(47, 128, 237, 0.35);
  color: var(--color-white);
}

/* ============================================================
   SCROLLBAR (Webkit)
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-navy-950);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   PREMIUM ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-100 { transition-delay: 100ms; }
.animate-delay-200 { transition-delay: 200ms; }
.animate-delay-300 { transition-delay: 300ms; }

/* Logo Outline utility */
.logo-outline {
  filter: 
    drop-shadow(1px 0 0 #ffffff) 
    drop-shadow(0 1px 0 #ffffff) 
    drop-shadow(-1px 0 0 #ffffff) 
    drop-shadow(0 -1px 0 #ffffff);
}

/* Wizard Fleet Card Styles */
.wizard-fleet-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wizard-fleet-card:hover {
  border-color: var(--color-blue-300);
  box-shadow: var(--shadow-sm);
}

.wizard-fleet-card.is-selected {
  border-color: var(--color-blue-500);
  background: rgba(14, 165, 233, 0.05);
  box-shadow: 0 0 0 1px var(--color-blue-500);
}

.wizard-fleet-card__image {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.wizard-fleet-card__details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wizard-fleet-card__title {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-navy-950);
  margin-bottom: 4px;
}

.wizard-fleet-card__specs {
  font-size: var(--text-sm);
  color: var(--color-gray-700);
}

.wizard-fleet-card__rate {
  text-align: right;
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-blue-500);
}

/* WIZARD LIGHT THEME OVERRIDES */
#booking-wizard .form-group label {
  color: var(--color-gray-700);
}

#booking-wizard .form-control {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  color: var(--color-navy-950);
}

#booking-wizard .form-control:focus {
  border-color: var(--color-blue-500);
  background: rgba(59, 130, 246, 0.05);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

#booking-wizard .form-control::placeholder {
  color: var(--color-gray-400);
}

.booking-summary-strip {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--color-navy-950);
}

.booking-summary-strip__item {
  display: flex;
  flex-direction: column;
}

.booking-summary-strip__label {
  font-size: var(--text-xs);
  color: var(--color-gray-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.booking-summary-strip__val {
  font-weight: 600;
  color: var(--color-navy-950);
}

/* Receipt Styles */
.booking-receipt {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  color: var(--color-navy-950);
}

.booking-receipt__row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.booking-receipt__row:last-child {
  border-bottom: none;
}

.booking-receipt__row--total {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-blue-500); /* Will use the inherited or updated definition */
  border-top: 2px solid var(--color-gray-200);
  margin-top: 8px;
  padding-top: 16px;
}

/* ============================================================
   PROMOTIONAL TICKER
   ============================================================ */
.promo-ticker {
  background: linear-gradient(90deg, var(--color-blue-500), var(--color-blue-400), var(--color-blue-500));
  background-size: 200% auto;
  color: #000000;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 10;
}
.promo-ticker__track {
  display: flex;
}
.promo-ticker__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  animation: ticker 50s linear infinite;
}
.promo-ticker:hover .promo-ticker__content {
  animation-play-state: paused;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


/* ============================================================
   APP PROMO SECTION
   ============================================================ */
.app-promo {
  background-color: var(--color-gray-100);
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
  margin-top: -1px;
}

.app-promo::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.app-promo__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.app-promo__content {
  flex: 1;
  min-width: 300px;
  padding-bottom: 60px;
}

.app-promo__title {
  font-size: var(--text-4xl);
  color: var(--color-navy-950);
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.app-promo__desc {
  font-size: var(--text-lg);
  color: var(--color-navy-800);
  margin-bottom: 32px;
  line-height: 1.6;
}

.app-promo__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-btn {
  background: var(--color-navy-950);
  border: 1px solid var(--color-navy-800);
  padding: 12px 24px;
  border-radius: 12px;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.app-btn:hover {
  background: var(--color-navy-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.app-btn__icon {
  font-size: 28px;
}

.fa-google-play.app-btn__icon {
  font-size: 24px;
}

.app-btn__text {
  text-align: left;
  line-height: 1.2;
}

.app-btn__subtitle {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
}

.app-btn__title {
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.app-promo__image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: -100px;
  background: transparent;
}

.app-promo__image {
  max-width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  transform: scale(1.08) translateY(-90px);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.2));
}

/* Mobile Adjustments for App Promo */
@media (max-width: 768px) {
  .app-promo__container {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  
  .app-promo__content {
    padding-bottom: 40px;
    padding-top: 20px;
  }
  
  .app-promo__title {
    font-size: var(--text-3xl);
  }
  
  .app-promo__buttons {
    justify-content: center;
  }

  .app-promo__image-wrapper {
    margin-bottom: -60px;
  }
  
  .app-promo__image {
    max-height: 400px;
    transform: scale(1.0) translateY(0);
  }
}

/* Responsive Logo */
.responsive-logo {
  height: 110px;
  width: auto;
  max-height: 120px;
}
@media (max-width: 768px) {
  .responsive-logo {
    height: 60px !important;
  }
}
