/* ==========================================================================
   WEDDING CARS HYDERABAD - GOOGLE ADS LANDING PAGE CUSTOM STYLES
   Gauto theme alignment (#ec3323 / Poppins & Rubik)
   ========================================================================== */

:root {
  /* Brand Color Tokens (per brand standards: Red, Black, WhatsApp Green) */
  --brand-black: #020202;
  --brand-red: #ec3323;
  --brand-wa: #25D366;
  --color-body: #7c8a97;
  --color-border: #f0f0ff;
  --color-surface: #ffffff;

  /* Typography Tokens (per DESIGN.md) */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Rubik', sans-serif;

  /* Motion & Elevation Tokens */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* Font Awesome Font Face Definition */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
       url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
       url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Browser Surfaces & Theme Accents
   ========================================================================== */
::selection {
  background: var(--brand-red);
  color: var(--color-surface);
}

::-moz-selection {
  background: var(--brand-red);
  color: var(--color-surface);
}

.text-accent {
  color: var(--brand-red);
}

/* Accessible Focus Rings */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brand-red) !important;
  outline-offset: 2px !important;
}

/* Base Body Spacing for Sticky Mobile Bar */
@media (max-width: 767px) {
  body {
    padding-bottom: 65px;
  }
}

/* ==========================================================================
   BUTTON FIXES & ELEVATION (Solid, High-Contrast, Zero Wireframe Brackets)
   ========================================================================== */

/* Disable all old wireframe bracket pseudo-elements */
.gauto-btn:before,
.gauto-btn:after,
button.gauto-theme-btn:before,
button.gauto-theme-btn:after,
.about-right:before,
.about-right:after {
  display: none !important;
  content: none !important;
}

/* Primary Action Button (Solid Red) */
.gauto-btn,
button.gauto-theme-btn,
.btn-primary-red {
  background-color: var(--brand-red) !important;
  color: var(--color-surface) !important;
  border: 2px solid var(--brand-red) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 12px 26px !important;
  border-radius: 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(236, 51, 35, 0.25) !important;
  transition: background-color 200ms var(--ease-out), border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out), transform 160ms var(--ease-out) !important;
  margin: 0 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  line-height: 1.4 !important;
}

.gauto-btn:hover,
button.gauto-theme-btn:hover,
.btn-primary-red:hover {
  background-color: var(--brand-black) !important;
  border-color: var(--brand-black) !important;
  color: var(--color-surface) !important;
  box-shadow: 0 6px 20px rgba(2, 2, 2, 0.35) !important;
  text-decoration: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .gauto-btn:hover,
  button.gauto-theme-btn:hover,
  .btn-primary-red:hover {
    transform: translateY(-2px) !important;
  }
}

.gauto-btn:active,
button.gauto-theme-btn:active {
  transform: translateY(0) scale(0.98) !important;
}

/* ==========================================================================
   SIMPLE HIGH-CONVERTING LANDING HEADER (Logo Left, Call/CTA Right)
   ========================================================================== */
.simple-landing-header {
  background: var(--color-surface);
  padding: 14px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 200ms var(--ease-out), padding 200ms var(--ease-out);
}

.simple-landing-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 18, 56, 0.12);
}

.simple-landing-header .header-inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.simple-landing-header .site-logo img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.simple-landing-header .header-cta-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-call-btn {
  background-color: var(--brand-red) !important;
  color: var(--color-surface) !important;
  border: none !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 14px rgba(236, 51, 35, 0.3) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.header-call-btn:hover {
  background-color: var(--brand-black) !important;
  color: var(--color-surface) !important;
  box-shadow: 0 6px 18px rgba(2, 2, 2, 0.35) !important;
  text-decoration: none !important;
}

.header-wa-btn {
  background-color: var(--brand-wa) !important;
  color: var(--color-surface) !important;
  border: none !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.header-wa-btn:hover {
  background-color: #1eb956 !important;
  color: var(--color-surface) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45) !important;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .simple-landing-header {
    padding: 10px 0;
  }
  .simple-landing-header .site-logo img {
    max-height: 38px;
  }
  .header-call-btn {
    padding: 7px 15px !important;
    font-size: 12px !important;
    border-radius: 20px !important;
    white-space: nowrap !important;
    gap: 6px !important;
  }
  .header-wa-btn {
    display: none !important;
  }
}

/* Hero Section Refinements */
.gauto-hero-banner {
  position: relative;
  background: linear-gradient(rgba(0, 18, 56, 0.88), rgba(0, 0, 0, 0.92)), url('../img/slider-1.webp') center center / cover no-repeat;
  padding: 80px 0 100px 0;
  color: var(--color-surface);
}

.hero-left-content {
  padding-right: 20px;
}

.hero-eyebrow {
  color: var(--brand-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 18px;
  color: var(--color-surface);
}

.hero-lead {
  font-size: 16px;
  line-height: 28px;
  color: #f1f3f7;
  margin-bottom: 25px;
}

.hero-center-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero-highlights-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-bottom: 30px;
}

.hero-highlight-col {
  margin-bottom: 12px;
}

.hero-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13.5px;
  color: var(--color-surface);
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.hero-highlight-item i {
  color: var(--brand-red);
  font-size: 15px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature-item i {
  color: var(--brand-red);
  font-size: 18px;
  flex-shrink: 0;
}

.hero-feature-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-surface);
}

.hero-actions-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-quote-btn {
  background: var(--brand-red);
  color: var(--color-surface);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(236, 51, 35, 0.4);
  transition: all 0.25s ease;
  text-decoration: none;
}

.hero-quote-btn:hover {
  background: #d62516;
  color: var(--color-surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(236, 51, 35, 0.55);
  text-decoration: none;
}

/* Hero Trust Bar (Directly below Hero Banner) */
.hero-trust-bar {
  background: var(--brand-black);
  padding: 22px 0;
  position: relative;
  z-index: 10;
}

.trust-bar-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.trust-bar-item {
  text-align: center;
  flex: 1;
  padding: 0 15px;
}

.trust-bar-divider {
  width: 1px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.trust-bar-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.trust-bar-star {
  color: var(--brand-red);
  font-size: 24px;
  margin-left: 2px;
  vertical-align: 1px;
}

.trust-bar-label {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #cbd5e1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .hero-trust-bar {
    padding: 16px 0;
  }
  .trust-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 10px;
  }
  .trust-bar-divider {
    display: none;
  }
  .trust-bar-item {
    padding: 6px 4px;
  }
  .trust-bar-num {
    font-size: 24px;
  }
  .trust-bar-label {
    font-size: 11.5px;
  }
}

.hero-wa-btn {
  background: var(--brand-wa);
  color: var(--color-surface);
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.hero-wa-btn:hover {
  background: #1eb956;
  color: var(--color-surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  text-decoration: none;
}

@media (max-width: 767px) {
  .gauto-hero-banner {
    padding: 24px 0 32px 0;
  }
  .hero-badge {
    font-size: 11.5px;
    padding: 4px 10px;
    margin-bottom: 8px;
  }
  .hero-title {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 10px;
  }
  .hero-lead {
    font-size: 13.5px;
    line-height: 20px;
    margin-bottom: 14px;
  }
  .hero-highlights-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px 8px !important;
    margin-bottom: 16px !important;
  }
  .hero-highlight-col {
    width: auto !important;
    flex: 0 0 auto !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
  .hero-feature-item {
    font-size: 12px !important;
    gap: 6px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    padding: 5px 10px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .hero-feature-item i {
    font-size: 12px !important;
  }
  .hero-feature-item span {
    font-size: 12px !important;
  }
  .hero-highlight-item {
    font-size: 11.5px !important;
    padding: 5px 10px !important;
    border-radius: 14px !important;
  }
  .hero-actions-btns {
    display: flex !important;
    justify-content: center !important;
    margin-top: 14px !important;
    margin-bottom: 0 !important;
  }
  .hero-quote-btn {
    font-size: 13px !important;
    padding: 12px 20px !important;
    width: 100%;
    justify-content: center;
  }
  .hero-booking-wrap {
    padding: 16px 14px !important;
    border-radius: 10px !important;
    margin-top: 5px !important;
  }
  .booking-title {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }
  .booking-subtitle {
    font-size: 12px !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
  }
  .custom-form-group {
    margin-bottom: 10px !important;
  }
  .custom-form-group label {
    font-size: 12px !important;
    margin-bottom: 3px !important;
  }
  .custom-form-control {
    height: 42px !important;
    font-size: 13px !important;
    padding: 6px 12px !important;
  }
  select.custom-form-control {
    background-position: right 12px center !important;
    background-size: 14px !important;
    padding-right: 32px !important;
  }
  .form-submit-btn {
    padding: 11px 16px !important;
    font-size: 13.5px !important;
  }
}

/* Dedicated Booking & Availability Area */
.gauto-booking-area {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  scroll-margin-top: 75px;
}

/* Dedicated Booking & Availability Area */
.gauto-booking-area {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 80px 0;
  scroll-margin-top: 75px;
}

.main-booking-wrap {
  margin: 0 auto;
  max-width: 640px;
  background: var(--color-surface);
  padding: 40px 36px;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 18, 56, 0.12);
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.main-booking-wrap.highlight-pulse {
  animation: bookingPulse 1.2s ease;
}

@keyframes bookingPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(236, 51, 35, 0.6); }
  50% { transform: scale(1.02); box-shadow: 0 0 0 14px rgba(236, 51, 35, 0); }
  100% { transform: scale(1); box-shadow: 0 16px 40px rgba(0, 18, 56, 0.12); }
}

@media (max-width: 767px) {
  .gauto-booking-area {
    padding: 50px 0;
  }
  .main-booking-wrap {
    padding: 24px 18px !important;
  }
}

/* Find / Booking Form in Hero */
.hero-booking-wrap {
  background: var(--color-surface);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 18, 56, 0.18);
  border: 1px solid #e2e8f0;
  margin-top: 10px;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 6px;
}

.booking-subtitle {
  font-size: 13px;
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.5;
}

.custom-form-group {
  margin-bottom: 15px;
}

.custom-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 5px;
  display: block;
}

.custom-form-control {
  width: 100%;
  height: 46px;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--font-body) !important;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--brand-black) !important;
  background-color: var(--color-surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.custom-form-control:hover {
  border-color: #cbd5e1;
}

.custom-form-control:focus {
  border-color: var(--brand-red) !important;
  box-shadow: 0 0 0 3px rgba(236, 51, 35, 0.12) !important;
  outline: none;
  background-color: #ffffff;
}

/* Custom styled Dropdown Select (Replaces generic OS dropdown arrow with Brand SVG Chevron) */
select.custom-form-control {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='none' stroke='%23020202' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 15px !important;
  padding-right: 38px !important;
  cursor: pointer !important;
}

select.custom-form-control:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='none' stroke='%23ec3323' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.custom-form-control optgroup {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 12.5px !important;
  color: var(--brand-black) !important;
  background: #f8fafc !important;
  padding: 8px 12px !important;
}

.custom-form-control option {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  color: #1a202c !important;
  padding: 8px 12px !important;
  background: var(--color-surface) !important;
}

/* Custom styled Date Input (Matches Brand Typography & Color Palette) */
input[type="date"].custom-form-control {
  font-family: var(--font-body) !important;
  color: var(--brand-black) !important;
  cursor: pointer !important;
  position: relative !important;
}

input[type="date"].custom-form-control::-webkit-calendar-picker-indicator {
  cursor: pointer !important;
  opacity: 0.65 !important;
  padding: 4px !important;
  margin-right: -2px !important;
  transition: opacity 0.2s ease, filter 0.2s ease !important;
}

input[type="date"].custom-form-control:hover::-webkit-calendar-picker-indicator,
input[type="date"].custom-form-control:focus::-webkit-calendar-picker-indicator {
  opacity: 1 !important;
  filter: invert(24%) sepia(85%) saturate(5436%) hue-rotate(352deg) brightness(96%) contrast(93%) !important; /* Brand Red #ec3323 */
}

input[type="date"].custom-form-control::-webkit-datetime-edit {
  font-family: var(--font-body) !important;
  color: var(--brand-black) !important;
  padding: 0 !important;
}

input[type="date"].custom-form-control::-webkit-datetime-edit-fields-wrapper {
  padding: 0 !important;
}

/* ==========================================================================
   CUSTOM DROPDOWN UI (Replaces OS Native Blue with Brand Red & Brand Black)
   ========================================================================== */
:root,
body,
form,
input,
select {
  accent-color: var(--brand-red) !important;
}

.custom-dropdown-wrap {
  position: relative;
  width: 100%;
}

.custom-dropdown-trigger {
  width: 100%;
  height: 46px;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  padding: 0 14px;
  background-color: var(--color-surface);
  color: var(--brand-black);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  outline: none;
}

.custom-dropdown-trigger:hover {
  border-color: #cbd5e1;
}

.custom-dropdown-wrap.is-open .custom-dropdown-trigger,
.custom-dropdown-trigger:focus {
  border-color: var(--brand-red) !important;
  box-shadow: 0 0 0 3px rgba(236, 51, 35, 0.12) !important;
}

.dropdown-trigger-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 8px;
}

.dropdown-trigger-chevron {
  font-size: 11px;
  color: var(--brand-black);
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.custom-dropdown-wrap.is-open .dropdown-trigger-chevron {
  transform: rotate(180deg);
  color: var(--brand-red);
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  width: max-content;
  max-width: 320px;
  max-height: 240px;
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  overflow-y: auto;
  z-index: 1050;
  display: none;
  padding: 4px 0;
}

.custom-dropdown-wrap.is-open .custom-dropdown-menu {
  display: block;
}

.dropdown-optgroup-title {
  padding: 8px 14px 4px 14px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #f8fafc;
  border-bottom: 1px solid #edf2f7;
  margin-top: 4px;
}

.dropdown-optgroup-title:first-child {
  margin-top: 0;
}

.dropdown-option-item {
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #1a202c;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.dropdown-option-item:hover {
  background-color: #fff5f5;
  color: var(--brand-red);
}

.dropdown-option-item.is-selected {
  background-color: var(--brand-red);
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 767px) {
  .custom-dropdown-trigger {
    height: 42px;
    font-size: 13px;
    padding: 0 12px;
  }
  .custom-dropdown-menu {
    max-width: 290px;
  }
}

.form-error-alert {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  color: #c53030;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.form-submit-btn {
  width: 100%;
  border: none;
  padding: 13px;
  margin-top: 5px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0;
}

/* Hero form CTA — brand red default, black hover (not navy) */
.hero-booking-wrap button.gauto-theme-btn.form-submit-btn {
  background-color: var(--brand-red) !important;
  border: 2px solid var(--brand-red) !important;
  color: var(--color-surface) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.hero-booking-wrap button.gauto-theme-btn.form-submit-btn:hover {
  background-color: var(--brand-black) !important;
  border-color: var(--brand-black) !important;
  color: var(--color-surface) !important;
  box-shadow: none !important;
}

/* Testimonial & FAQ Styling */
.testimonial-quote {
  font-style: italic;
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 24px;
  font-size: 14px;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--brand-navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.client-location {
  color: #64748b;
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 0;
}

/* FAQ — single accordion implementation */
.gauto-faq-area {
  background: var(--color-surface);
}

.custom-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--color-surface);
  overflow: hidden;
  transition: border-color 200ms var(--ease-out);
}

.custom-faq-item.active {
  border-color: var(--brand-red);
}

.custom-faq-question {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--brand-navy);
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}

.custom-faq-question:hover {
  background: #f8f9fa;
}

.custom-faq-item.active .custom-faq-question {
  color: var(--brand-red);
}

.custom-faq-question i {
  color: var(--brand-red);
  transition: transform 200ms var(--ease-out);
}

.custom-faq-item.active .custom-faq-question i {
  transform: rotate(180deg);
}

.custom-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms var(--ease-out), padding 250ms var(--ease-out);
  padding: 0 20px;
  color: #4a5568;
  font-size: 14px;
  line-height: 24px;
}

.custom-faq-item.active .custom-faq-answer {
  padding-bottom: 16px;
}

/* Promo Banner Area */
.promo-subtitle {
  font-size: 16px;
  color: #f1f3f7;
  font-weight: 600;
  margin-bottom: 8px;
}

.promo-phone-heading a {
  color: var(--color-surface);
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-heading);
  transition: color 0.2s ease;
}

.promo-phone-heading a:hover {
  color: var(--brand-red);
}

.promo-btn-wrap {
  margin-top: 18px;
}

.promo-wa-btn {
  background: var(--brand-wa);
  color: var(--color-surface);
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}

.promo-wa-btn:hover {
  background: #1eb956;
  color: var(--color-surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  text-decoration: none;
}

.promo-car-img {
  max-width: 100%;
  height: auto;
}

/* Hot offers — native Gauto single-offers + tab/card fixes */

/* About image — match live site (about.png, no rounded card wrapper) */
.gauto-about-area .about-right {
  margin-top: 0;
  text-align: center;
}

.gauto-about-area .about-right img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Offer tabs — uniform skew (fixes active tab looking smaller / broken joins) */
.gauto-offers-area #offerTab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px 6px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  border: none;
}

.gauto-offers-area #offerTab li {
  display: block;
  margin: 0;
  float: none;
}

.gauto-offers-area #offerTab li.nav-item a.nav-link,
.gauto-offers-area #offerTab li.nav-item a.nav-link.active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
  color: #fff;
  border: none;
  background: transparent;
}

/* Same skew angle for default, hover, and active — only color changes */
.gauto-offers-area #offerTab li.nav-item a.nav-link:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: var(--brand-black) !important;
  transform: skewX(-18deg) !important;
  z-index: -1;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.gauto-offers-area #offerTab li.nav-item a.nav-link:hover:after,
.gauto-offers-area #offerTab li.nav-item a.nav-link.active:after,
.gauto-offers-area #offerTab li.nav-item a.nav-link.active:hover:after {
  background: var(--brand-red) !important;
}

/* ==========================================================================
   EDITORIAL PROOF LEDGER (Impeccable Craft — No AI Slop Cards)
   ========================================================================== */
.proof-ledger {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 28px !important;
  padding: 20px 0 !important;
  border-top: 1px solid #edf2f7 !important;
  border-bottom: 1px solid #edf2f7 !important;
}

.proof-item {
  flex: 1 !important;
  text-align: center !important;
  padding: 0 10px !important;
}

.proof-divider {
  width: 1px !important;
  height: 38px !important;
  background-color: #e2e8f0 !important;
  flex-shrink: 0 !important;
}

.proof-num {
  font-family: var(--font-heading) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--brand-black) !important;
  line-height: 1.1 !important;
  margin-bottom: 4px !important;
  letter-spacing: -0.5px !important;
}

.proof-star {
  color: var(--brand-red) !important;
  font-size: 20px !important;
  margin-left: 2px !important;
  vertical-align: 1px !important;
}

.proof-label {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  color: var(--color-body) !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
}

@media (max-width: 767px) {
  .proof-ledger {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 12px !important;
    padding: 16px 0 !important;
    margin-top: 20px !important;
  }
  .proof-divider {
    display: none !important;
  }
  .proof-item {
    text-align: center !important;
    padding: 4px 0 !important;
  }
  .proof-num {
    font-size: 23px !important;
    margin-bottom: 2px !important;
  }
  .proof-label {
    font-size: 12px !important;
  }
}

@media (max-width: 767px) {
  .gauto-offers-area #offerTab {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 15px !important;
    margin: 15px -15px 25px -15px !important;
    gap: 8px !important;
  }
  .gauto-offers-area #offerTab::-webkit-scrollbar {
    display: none;
  }
  .gauto-offers-area #offerTab li {
    flex: 0 0 auto !important;
  }
  .gauto-offers-area #offerTab li.nav-item a.nav-link,
  .gauto-offers-area #offerTab li.nav-item a.nav-link.active {
    padding: 7px 16px !important;
    font-size: 11.5px !important;
    min-height: 36px !important;
    border-radius: 20px !important;
  }
  .gauto-offers-area #offerTab li.nav-item a.nav-link:after {
    border-radius: 20px !important;
    transform: none !important;
  }
}

/* Headings: strictly Brand Black with Brand Red accents */
.gauto-offers-area .site-heading h2,
.gauto-about-area .about-left h2,
.gauto-partners-area .site-heading h2,
.gauto-gallery-area .site-heading h2,
.booking-title,
.custom-faq-question {
  color: var(--brand-black) !important;
}

.site-heading h4,
.gauto-about-area .about-left h4 {
  color: var(--brand-red) !important;
}

.gauto-offers-area .offer-text h3,
.gauto-offers-area .offer-text h3 a {
  color: var(--brand-black) !important;
  text-transform: uppercase !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 16.5px !important;
  letter-spacing: 0.5px !important;
}

.gauto-offers-area .offer-text h3 a:hover {
  color: var(--brand-red) !important;
}

/* Equal-height fleet cards */
.gauto-offers-area #fleetGridContainer > [class*="col-"] {
  display: flex;
  margin-bottom: 24px;
}

.gauto-offers-area .single-offers {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding: 16px 14px 14px 14px;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-surface);
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.gauto-offers-area .single-offers:hover {
  border-color: var(--brand-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(2, 2, 2, 0.08);
}

.gauto-offers-area .offer-image {
  width: 100%;
  height: 150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gauto-offers-area .offer-image img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease-out);
}

.gauto-offers-area .single-offers:hover .offer-image img {
  transform: scale(1.05);
}


.gauto-offers-area .offer-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 8px;
  text-align: center;
}

.gauto-offers-area .offer-text h3 {
  margin-bottom: 0;
}

/* Clean 50/50 Split Action Bar for Fleet Cards (Cleanly Inset Inside Card, Zero Overflow) */
.gauto-offers-area .offer-action {
  display: flex !important;
  align-items: stretch !important;
  background: var(--brand-black) !important;
  margin: auto 0 0 0 !important;
  width: 100% !important;
  padding: 0 !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  position: relative !important;
  box-sizing: border-box !important;
}

.gauto-offers-area .offer-action:after {
  display: none !important;
}

.gauto-offers-area .offer-action a {
  flex: 1 1 50% !important;
  width: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 6px !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 11.5px !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  color: var(--color-surface) !important;
  transition: all 0.2s var(--ease-out) !important;
}

.gauto-offers-area .offer-action a:first-child {
  background: var(--brand-black) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.gauto-offers-area .offer-action a:first-child:hover {
  background: #1a1a1a !important;
  color: var(--brand-red) !important;
}

.gauto-offers-area .offer-action a:last-child {
  background: var(--brand-red) !important;
}

.gauto-offers-area .offer-action a:last-child:hover {
  background: #c52719 !important;
}

.gauto-offers-area .offer-action a.offer-book-btn {
  flex: 1 1 100% !important;
  width: 100% !important;
  background: var(--brand-black) !important;
  border-right: none !important;
  padding: 10px 12px !important;
  font-size: 12px !important;
  gap: 7px !important;
  text-decoration: none !important;
}

.gauto-offers-area .offer-action a.offer-book-btn:hover {
  background: var(--brand-red) !important;
  color: var(--color-surface) !important;
}

@media (max-width: 575px) {
  .gauto-offers-area .offer-action a {
    padding: 9px 4px !important;
    font-size: 10.5px !important;
    letter-spacing: 0px !important;
  }
  .gauto-offers-area .offer-action a.offer-book-btn {
    font-size: 10.5px !important;
    padding: 9px 4px !important;
  }
}

.gauto-partners-area {
  background: #f8f9fb;
  text-align: center;
}

.gauto-partners-area .site-heading {
  width: 100%;
}

.gauto-partners-area .site-heading h2,
.gauto-gallery-area .site-heading h2:only-child {
  color: var(--brand-black);
}

/* Testimonial Card Polish */
.single-testimonial-card {
  background: var(--color-surface);
  padding: 32px 28px;
  border: 1px solid #e2e4ef;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 18, 56, 0.04);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.single-testimonial-card:hover {
  border-color: var(--brand-red);
  box-shadow: 0 12px 28px rgba(0, 18, 56, 0.08);
  transform: translateY(-3px);
}

.single-testimonial-card .rating-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

/* Gallery Grid & Lightbox */
.single-gallery {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 25px;
}

.single-gallery:hover {
  transform: translateY(-4px);
}

.single-gallery .img-holder {
  position: relative;
  border: 1px solid #e2e4ef;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.single-gallery .img-holder img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.single-gallery:hover .img-holder img {
  transform: scale(1.06);
}

/* Kinetic Scroll Velocity Gallery Showcase */
.gallery-lead-text {
  font-family: var(--font-body);
  color: var(--color-body);
  font-size: 14.5px;
  margin-top: -6px;
  margin-bottom: 24px;
}

.gallery-velocity-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 24px 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.gallery-velocity-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-bottom: 16px;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
}

.gallery-velocity-row:active {
  cursor: grabbing;
}

.gallery-velocity-track {
  display: inline-flex;
  flex-nowrap: nowrap;
  white-space: nowrap;
  will-change: transform;
  gap: 16px;
}

.velocity-gallery-card {
  flex: 0 0 280px;
  width: 280px;
  margin-bottom: 0;
  display: inline-block;
  cursor: pointer;
}

.velocity-gallery-card .img-holder {
  position: relative;
  width: 100%;
  height: 185px;
  border-radius: 8px;
  border: 2px solid var(--color-border);
  overflow: hidden;
  background: var(--brand-black);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.velocity-gallery-card .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out);
}

.velocity-gallery-card:hover .img-holder {
  border-color: var(--brand-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(236, 51, 35, 0.18);
}

.velocity-gallery-card:hover .img-holder img {
  transform: scale(1.08);
}

.gallery-zoom-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(2, 2, 2, 0.75);
  color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.velocity-gallery-card:hover .gallery-zoom-overlay {
  opacity: 1;
  transform: scale(1);
}

.gallery-zoom-overlay:hover {
  background: var(--brand-red);
}

@media (max-width: 991px) {
  .velocity-gallery-card {
    flex: 0 0 240px;
    width: 240px;
  }
  .velocity-gallery-card .img-holder {
    height: 155px;
  }
}

@media (max-width: 639px) {
  .gallery-velocity-wrapper {
    padding: 8px 0 16px 0;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  }
  .gallery-velocity-track {
    gap: 12px;
  }
  .velocity-gallery-card {
    flex: 0 0 190px;
    width: 190px;
  }
  .velocity-gallery-card .img-holder {
    height: 125px;
    border-radius: 6px;
  }
  .gallery-lead-text {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

.gallery-wa-cta {
  background: var(--brand-wa);
  color: var(--color-surface) !important;
  border: 2px solid var(--brand-wa) !important;
  margin-left: 10px;
}

.gallery-wa-cta:hover {
  background: #1eb956 !important;
  border-color: #1eb956 !important;
  color: var(--color-surface) !important;
}

@media (max-width: 575px) {
  .gallery-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .gallery-wa-cta {
    margin-left: 0;
    width: 100%;
    max-width: 320px;
  }
  .gallery-cta-wrap .gauto-btn {
    width: 100%;
    max-width: 320px;
  }
}

.custom-gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms var(--ease-out), visibility 200ms var(--ease-out);
}

.custom-gallery-modal.open {
  opacity: 1;
  visibility: visible;
}

.custom-gallery-modal-content {
  position: relative;
  max-width: 960px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Lightbox Header Bar & Counter */
.lightbox-header-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.lightbox-counter-pill {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-surface);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.lightbox-counter-pill i {
  color: var(--brand-red);
  margin-right: 6px;
}

.custom-gallery-modal-close {
  position: static;
  color: #fff;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s var(--ease-out);
}

.custom-gallery-modal-close:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  transform: scale(1.08);
}

/* Lightbox Viewport & Navigation */
.lightbox-viewport {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 820px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-gallery-modal-img {
  max-height: 68vh;
  max-width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  object-fit: contain;
  transition: transform 0.25s var(--ease-out);
}

.lightbox-nav-btn {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  flex-shrink: 0;
  z-index: 2;
}

.lightbox-nav-btn:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  transform: scale(1.1);
}

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

/* Bottom Bar: Dots & WhatsApp CTA */
.lightbox-bottom-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.lightbox-dots-scroll {
  width: 100%;
  max-width: 600px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lightbox-dots-scroll::-webkit-scrollbar {
  display: none;
}

.lightbox-dots-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: max-content;
  margin: 0 auto;
}

.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.lightbox-dot.active {
  width: 22px;
  border-radius: 10px;
  background: var(--brand-red);
  box-shadow: 0 0 10px rgba(236, 51, 35, 0.6);
}

.lightbox-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.lightbox-action-row {
  margin-top: 2px;
}

.lightbox-wa-btn {
  background: var(--brand-wa);
  color: var(--color-surface) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s var(--ease-out);
}

.lightbox-wa-btn:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 767px) {
  .lightbox-viewport {
    position: relative;
    gap: 0;
  }
  .lightbox-nav-btn {
    position: absolute;
    width: 38px;
    height: 38px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.7);
  }
  .lightbox-prev-btn {
    left: 6px;
  }
  .lightbox-next-btn {
    right: 6px;
  }
  .custom-gallery-modal-img {
    max-height: 60vh;
  }
  .lightbox-dot {
    width: 6px;
    height: 6px;
  }
  .lightbox-dot.active {
    width: 16px;
  }
}

/* Sticky Mobile Conversion Bar */
.gauto-mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--brand-black);
  border-top: 3px solid var(--brand-red);
  display: flex;
  padding: 8px 10px;
  gap: 10px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  will-change: transform, opacity;
}

.gauto-mobile-sticky-bar.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .gauto-mobile-sticky-bar {
    display: none !important;
  }
}

.gauto-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 5px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-heading);
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gauto-sticky-call {
  background: var(--brand-red);
}

.gauto-sticky-wa {
  background: var(--brand-wa);
}

.gauto-sticky-btn:active {
  transform: scale(0.97);
}

/* Desktop Floating WhatsApp CTA Widget */
.desktop-floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 58px;
  height: 58px;
  background: var(--brand-wa);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
}

.desktop-floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65);
  color: #ffffff !important;
}

.desktop-floating-wa .wa-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: #020202;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 6px 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.desktop-floating-wa:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.desktop-floating-wa.is-hidden {
  transform: scale(0.7) translateY(20px);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .desktop-floating-wa {
    display: none !important;
  }
}

/* ==========================================================================
   FINAL CTA PROMO BANNER (Modern Dignified Dark Luxury Canvas)
   ========================================================================== */
.gauto-promo-area {
  background: #0d0d10 !important;
  position: relative !important;
  padding: 65px 0 !important;
  overflow: hidden !important;
  border-top: 1px solid #1f1f26 !important;
  border-bottom: 1px solid #1f1f26 !important;
}

.gauto-promo-area:after {
  display: none !important;
}

/* Eliminate dated 2012 skewed polygon pseudo-elements */
.promo-box-left:before,
.promo-box-left:after {
  display: none !important;
  content: none !important;
}

.promo-box-left {
  position: relative !important;
  padding: 15px 0 !important;
  z-index: 1 !important;
  text-align: center !important;
}

.promo-box-left .promo-car-img {
  max-width: 100% !important;
  max-height: 250px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.75)) !important;
}

.promo-box-right {
  padding: 15px 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

.promo-box-right .promo-subtitle {
  font-family: var(--font-heading) !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  color: var(--color-surface) !important;
  line-height: 1.3 !important;
  margin-bottom: 12px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.promo-box-right .promo-desc {
  font-family: var(--font-body) !important;
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  color: #9ca3af !important;
  margin-bottom: 22px !important;
}

.promo-action-group {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.promo-phone-heading {
  margin: 0 !important;
  display: inline-flex !important;
}

.promo-phone-heading a.promo-call-btn,
.promo-wa-btn {
  min-width: 205px !important;
  height: 50px !important;
  padding: 0 24px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

.promo-phone-heading a.promo-call-btn {
  background: var(--brand-red) !important;
  color: var(--color-surface) !important;
  box-shadow: 0 4px 14px rgba(236, 51, 35, 0.35) !important;
  transition: all 0.25s ease !important;
}

.promo-phone-heading a.promo-call-btn:hover {
  background: #c52719 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(236, 51, 35, 0.5) !important;
}

.promo-wa-btn {
  background: var(--brand-wa) !important;
  color: var(--color-surface) !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.25s ease !important;
}

.promo-wa-btn:hover {
  background: #1eb956 !important;
  color: var(--color-surface) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
}

@media (max-width: 767px) {
  .gauto-promo-area {
    padding: 40px 0 !important;
  }
  .promo-box-right .promo-subtitle {
    font-size: 23px !important;
  }
  .promo-box-right .promo-desc {
    font-size: 13.5px !important;
    margin-bottom: 18px !important;
  }
  .promo-action-group {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .promo-phone-heading,
  .promo-phone-heading a.promo-call-btn,
  .promo-wa-btn {
    width: 100% !important;
    min-width: 100% !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   MINIMALIST 3-WAY ARCHITECTURAL FOOTER
   ========================================================================== */
.simple-site-footer {
  background-color: #08080a !important;
  padding: 55px 0 25px 0 !important;
  border-top: 1px solid #1a1a1f !important;
  color: #9ca3af !important;
}

.footer-main-row {
  margin-bottom: 35px;
}

.footer-col {
  margin-bottom: 25px;
  text-align: left;
}

.footer-logo-holder {
  display: inline-block;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.footer-logo-img {
  max-height: 40px;
  width: auto;
  display: block;
}

.simple-site-footer .footer-brand {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-surface);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.simple-site-footer .footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brand-red);
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-about-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #7c8a97;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-surface);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links-list a {
  color: #9ca3af;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--brand-red);
}

.simple-site-footer .footer-address,
.simple-site-footer .footer-contact,
.footer-hours-note {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 8px;
}

.simple-site-footer .footer-address i,
.simple-site-footer .footer-contact i,
.footer-hours-note i {
  color: var(--brand-red);
  margin-right: 6px;
  width: 14px;
  text-align: center;
}

.simple-site-footer .footer-contact a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.simple-site-footer .footer-contact a:hover {
  color: var(--brand-red);
}

.footer-bottom-bar {
  border-top: 1px solid #1a1a1f;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-site-footer .footer-copyright {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.simple-site-footer .footer-credit {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.simple-site-footer .footer-credit a {
  color: #9ca3af;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.simple-site-footer .footer-credit a:hover {
  color: var(--brand-red);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .simple-site-footer {
    padding: 35px 0 20px 0 !important;
  }
  .footer-col {
    text-align: center;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* Gallery Rhythmic Spacing */
.gallery-col {
  margin-bottom: 28px;
}

.gallery-cta-wrap {
  margin-top: 20px;
}

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

  .single-gallery:hover,
  .single-testimonial-card:hover {
    transform: none !important;
  }
}

/* ==========================================================================
   MOBILE COMPACT LAYOUT — less vertical scroll on phone
   ========================================================================== */
.testimonial-swipe-hint,
.fleet-mobile-more-wrap {
  display: none;
}

@media (max-width: 767px) {
  .gauto-gallery-area.section_70,
  .gauto-testimonial-area.section_70,
  .gauto-offers-area.section_70 {
    padding: 42px 0;
  }

  .gauto-testimonial-area {
    padding-bottom: 48px !important;
  }

  .gauto-offers-area #offerTab {
    margin: 18px 0 22px;
    gap: 8px 4px;
  }

  /* Gallery: 2-column grid, smaller thumbnails, fewer visible by default */
  .single-gallery .img-holder img {
    height: 120px;
  }

  .gallery-col {
    margin-bottom: 10px;
  }

  .single-gallery {
    margin-bottom: 0;
  }

  .gallery-col.gallery-mobile-hidden {
    display: none;
  }

  .gallery-col.gallery-mobile-hidden.show-mobile {
    display: block;
  }

  .gallery-cta-wrap {
    margin-top: 12px;
  }

  /* Testimonials: horizontal swipe instead of 4 stacked cards */
  .testimonial-scroll-outer {
    margin: 0 -15px;
    padding: 0 0 4px;
  }

  .testimonial-mobile-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 0 15px 6px;
    margin: 0;
  }

  .testimonial-mobile-scroll > [class*="col-"] {
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: start;
    margin-bottom: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }

  .single-testimonial-card {
    padding: 20px 18px;
  }

  .testimonial-quote {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .testimonial-swipe-hint {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    margin: 10px 0 0;
    letter-spacing: 0.3px;
  }

  /* Hot offers: 2-column compact cards, show 6 then expand */
  .gauto-offers-area #fleetGridContainer > .fleet-col {
    margin-bottom: 16px;
  }

  .gauto-offers-area .offer-image {
    height: 110px;
  }

  .gauto-offers-area .offer-image img {
    max-width: 100%;
    max-height: 90px;
  }

  .gauto-offers-area .offer-text {
    min-height: 48px;
    margin-top: 8px;
  }

  .gauto-offers-area .offer-text h3 {
    font-size: 13px;
    line-height: 1.3;
  }

  .gauto-offers-area .offer-action a {
    font-size: 11px;
    padding: 8px 10px;
  }

  .gauto-offers-area .single-offers {
    padding: 8px;
  }

  .fleet-mobile-extra {
    display: none !important;
  }

  .fleet-mobile-extra.show-mobile {
    display: flex !important;
  }

  .fleet-mobile-more-wrap {
    display: none;
    margin-top: 4px;
  }

  .gauto-btn-outline {
    background: transparent;
    border: 2px solid var(--brand-red);
    color: var(--brand-red);
  }

  .gauto-btn-outline:hover {
    background: var(--brand-red);
    color: #fff;
  }
}

@media (min-width: 768px) {
  .gallery-col.gallery-mobile-hidden {
    display: block;
  }
}
