/* =========================================================
   HONK Limousine Service — Global Styles
   Theme: Luxury black & gold
   ========================================================= */

:root {
  --gold: #c9a24b;
  --gold-light: #e0c27a;
  --black: #0b0b0d;
  --black-soft: #16161a;
  --black-card: rgba(30, 30, 35, 0.65);
  --gray: #b0b0b8; /* Brighter for contrast */
  --white: #ffffff; /* pure white for contrast */
  --radius: 12px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
  --glass-border-gold: 1px solid rgba(201, 162, 75, 0.3);
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(201, 162, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0); }
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, .brand-font {
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
}

.text-gold {
  color: var(--gold) !important;
}

.bg-black-soft {
  background-color: var(--black-soft);
}

.bg-black-card {
  background-color: var(--black-card);
}

.section-padding {
  padding: 90px 0;
}

.section-title {
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 50px;
}

.divider-gold {
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--black);
  border: none;
  font-weight: 600;
  padding: 14px 32px; /* slightly larger for mobile */
  border-radius: 6px;
  transition: all 0.3s ease;
  animation: pulse-gold 2.5s infinite;
}

.btn-gold:hover {
  background-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 162, 75, 0.4);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--black);
  box-shadow: 0 6px 20px rgba(201, 162, 75, 0.3);
}

/* ===================== NAVBAR ===================== */
.navbar-custom {
  background-color: rgba(11, 11, 13, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, top 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-custom.scrolled {
  padding: 8px 0;
  background-color: rgba(11, 11, 13, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  top: 0 !important;
}

a.navbar-brand, .navbar-brand {
  color: var(--white) !important;
}

.navbar-brand span {
  color: var(--gold);
}

.navbar-custom .nav-link {
  color: var(--white);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--gold);
}

.navbar-top-bar {
  background-color: var(--black-soft);
  color: var(--gray);
  font-size: 0.85rem;
  padding: 6px 0;
}

.navbar-top-bar a {
  color: var(--gray);
}

.navbar-top-bar a:hover {
  color: var(--gold);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0b0b0d 0%, #1a1a1f 55%, #0b0b0d 100%);
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201, 162, 75, 0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 162, 75, 0.08), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.9rem;
}

.hero-badge i {
  color: var(--gold);
}

/* ===================== QUICK BOOKING WIDGET ===================== */
.quick-booking-card {
  background: var(--black-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.quick-booking-card .nav-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-booking-card .nav-tabs .nav-link {
  color: var(--gray);
  border: none;
  font-weight: 600;
}

.quick-booking-card .nav-tabs .nav-link.active {
  color: var(--gold);
  background: transparent;
  border-bottom: 2px solid var(--gold);
}

.form-control-dark,
.form-select-dark {
  background-color: rgba(15, 15, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 14px 16px;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-control-dark:focus,
.form-select-dark:focus {
  background-color: rgba(15, 15, 18, 0.9);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 162, 75, 0.25);
  outline: none;
}

.form-control-dark::placeholder {
  color: #6b6b72;
}

.form-label-dark {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 26px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.95rem;
}

.trust-item i {
  color: var(--gold);
  font-size: 1.5rem;
}

/* ===================== CARDS ===================== */
.service-card,
.fleet-card {
  background: var(--black-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.fleet-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 162, 75, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.12);
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.fleet-card .fleet-image {
  height: 190px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #26262c, #141417);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.fleet-card .price-tag {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.3rem;
}

.fleet-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.fleet-card ul li {
  margin-bottom: 8px;
}

.fleet-card ul li i {
  color: var(--gold);
  margin-right: 8px;
}

/* ===================== WHY CHOOSE US ===================== */
.why-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.why-item i {
  color: var(--gold);
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-card {
  background: var(--black-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  border: var(--glass-border);
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
}

.testimonial-card .author {
  margin-top: 20px;
  color: var(--gold);
  font-weight: 600;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1f, #0b0b0d);
  border-top: 1px solid rgba(201, 162, 75, 0.2);
  border-bottom: 1px solid rgba(201, 162, 75, 0.2);
  padding: 60px 0;
  text-align: center;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--black-soft);
  padding: 70px 0 20px;
  color: var(--gray);
}

.footer h5 {
  color: var(--white);
  margin-bottom: 22px;
}

.footer a {
  color: var(--gray);
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

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

.footer .social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin-right: 10px;
}

.footer .social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===================== PAGE HEADER (inner pages) ===================== */
.page-header {
  background: linear-gradient(135deg, #0b0b0d 0%, #1a1a1f 100%);
  padding: 160px 0 70px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 162, 75, 0.15);
}

.page-header .breadcrumb-custom a {
  color: var(--gray);
}

.page-header .breadcrumb-custom span {
  color: var(--gold);
}

/* ===================== BOOKING FORM PAGE ===================== */
.booking-form-card {
  background: var(--black-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.booking-sidebar-card {
  background: var(--black-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border-gold);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.booking-sidebar-card i {
  color: var(--gold);
}

.form-step-label {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Floating quick-contact buttons */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-actions a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
  color: var(--white);
}

.floating-actions .whatsapp-btn {
  background-color: #25d366;
}

.floating-actions .call-btn {
  background-color: var(--gold);
  color: var(--black);
}

/* Alert used for form submission feedback */
#formFeedback {
  display: none;
}

/* ===================== TOAST NOTIFICATIONS ===================== */
.app-toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
}

.app-toast {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  overflow: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.app-toast.toast-success {
  border-left-color: #3ac26e;
}

.app-toast.toast-error {
  border-left-color: #e05a5a;
}

.app-toast.toast-warning {
  border-left-color: var(--gold);
}

.app-toast .toast-header-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: transparent;
  border-bottom: none;
}

.app-toast .toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.app-toast.toast-success .toast-icon {
  color: #3ac26e;
}

.app-toast.toast-error .toast-icon {
  color: #e05a5a;
}

.app-toast.toast-warning .toast-icon {
  color: var(--gold);
}

.app-toast .toast-title {
  font-weight: 600;
  font-size: 0.9rem;
  flex-grow: 1;
}

.app-toast .toast-body-custom {
  padding: 0 14px 14px 44px;
  font-size: 0.87rem;
  color: var(--gray);
}

.app-toast .btn-close-custom {
  background: transparent;
  border: none;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.app-toast .btn-close-custom:hover {
  color: var(--white);
}

/* ===================== FARE ESTIMATE CARD ===================== */
.fare-estimate-card {
  background: var(--black-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border-gold);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.fare-estimate-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fare-estimate-main .fare-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.fare-estimate-main .fare-info {
  flex-grow: 1;
  min-width: 160px;
}

.fare-estimate-main .fare-price {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.fare-estimate-main .fare-meta {
  color: var(--gray);
  font-size: 0.85rem;
}

.fare-details-body {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray);
  font-size: 0.87rem;
}

.fare-details-body dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  margin: 0;
}

.fare-details-body dt {
  color: var(--white);
  font-weight: 600;
}

.fare-details-body dd {
  margin: 0;
}

/* ===================== ADDRESS AUTOCOMPLETE ===================== */
.autocomplete-wrapper {
  position: relative;
}

.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  background: #0f0f12;
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-top: none;
  border-radius: 0 0 6px 6px;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}

.autocomplete-suggestions .suggestion-item {
  padding: 10px 14px;
  cursor: pointer;
  color: var(--white);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.autocomplete-suggestions .suggestion-item:hover,
.autocomplete-suggestions .suggestion-item.active {
  background: rgba(201, 162, 75, 0.15);
  color: var(--gold);
}

@media (max-width: 991px) {
  .page-header {
    padding: 130px 0 50px;
  }
  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }
}
