/* ==========================================================================
   APB Premium Design System
   Airport Parking Bay — premium.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --apb-primary:    #1a72ba;
  --apb-primary-dk: #1259a0;
  --apb-primary-xl: #0d4a82;
  --apb-primary-lt: #e8f3fb;
  --apb-white:      #ffffff;
  --apb-dark:       #1c2536;
  --apb-muted:      #64748b;
  --apb-surface:    #f0f4f9;
  --apb-border:     #e2e8f0;
  --apb-shadow:     0 4px 24px rgba(11,23,41,0.12);
  --apb-shadow-lg:  0 20px 60px rgba(11,23,41,0.20);
  --apb-radius:     12px;
  --apb-radius-sm:  8px;
  --apb-transition: all 0.2s ease;
  --apb-font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --apb-navy:       #0b1729;
  --apb-navy2:      #0f2035;
  --apb-navy-mid:   #1a72ba;
  --apb-blue:       #1a72ba;
  --apb-blue-dark:  #1259a0;
  --apb-blue-light: #e8f3fb;
  --apb-gold:       #f59e0b;
  --apb-gold-dark:  #d97706;
  --apb-text-muted: #64748b;
}

/* --------------------------------------------------------------------------
   2. Reset / Base Overrides
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--apb-font);
  color: var(--apb-dark);
  background-color: var(--apb-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Override Bootstrap 3 default link colour for APB elements */
.apb-navbar a,
.apb-footer a {
  text-decoration: none;
}

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

/* --------------------------------------------------------------------------
   3. Premium Navbar
   -------------------------------------------------------------------------- */
.apb-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  height: 70px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8edf4;
  box-shadow: 0 2px 12px rgba(26, 114, 186, 0.07);
  transition: var(--apb-transition);
}

.apb-navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(26, 114, 186, 0.12);
}

.apb-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.apb-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.apb-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Nav links */
.apb-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.apb-nav-links li a {
  display: inline-block;
  color: var(--apb-dark);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--apb-transition);
  position: relative;
}

.apb-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--apb-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.apb-nav-links li a:hover {
  color: var(--apb-primary);
  background: rgba(26, 114, 186, 0.07);
}

.apb-nav-links li a:hover::after {
  transform: scaleX(1);
}

.apb-nav-links li a.active {
  color: var(--apb-primary);
}

/* Dropdown */
.apb-nav-dropdown {
  position: relative;
}

.apb-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--apb-primary-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--apb-radius-sm);
  min-width: 180px;
  padding: 6px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  z-index: 100;
}

.apb-nav-dropdown:hover .apb-nav-dropdown-menu,
.apb-nav-dropdown.open .apb-nav-dropdown-menu {
  display: block;
}

.apb-nav-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  border-radius: 0;
}

.apb-nav-dropdown-menu li a::after {
  display: none;
}

.apb-nav-dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.apb-nav-dropdown-menu .apb-dropdown-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}

/* Hamburger */
.apb-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(28, 37, 54, 0.18);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: var(--apb-transition);
}

.apb-hamburger:hover {
  background: rgba(28, 37, 54, 0.06);
  border-color: rgba(28, 37, 54, 0.35);
}

.apb-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--apb-dark);
  border-radius: 2px;
  transition: var(--apb-transition);
  transform-origin: center;
}

.apb-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.apb-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.apb-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. Premium Hero
   -------------------------------------------------------------------------- */
.apb-hero {
  min-height: 560px;
  background: linear-gradient(135deg, var(--apb-navy) 0%, var(--apb-navy2) 50%, #1a3356 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

/* Dot-grid overlay */
.apb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Subtle radial glow */
.apb-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(26, 114, 186, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.apb-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.apb-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--apb-white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.apb-hero__title span {
  color: #ffffff;
}

.apb-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   5. Booking Card
   -------------------------------------------------------------------------- */
.apb-bk-card {
  background: var(--apb-white);
  border-radius: 16px;
  box-shadow: var(--apb-shadow-lg);
  padding: 28px;
  position: relative;
  z-index: 10;
}

.apb-bk-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--apb-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--apb-surface);
}

/* --------------------------------------------------------------------------
   6. Form Fields
   -------------------------------------------------------------------------- */
.apb-field {
  margin-bottom: 16px;
}

.apb-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--apb-muted);
  margin-bottom: 6px;
}

.apb-field input,
.apb-field select,
.apb-field textarea {
  width: 100%;
  height: 46px;
  border: 1.5px solid var(--apb-border);
  border-radius: var(--apb-radius-sm);
  padding: 0 14px;
  font-size: 0.9rem;
  font-family: var(--apb-font);
  color: var(--apb-dark);
  background: var(--apb-white);
  transition: var(--apb-transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.apb-field textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
}

.apb-field input:focus,
.apb-field select:focus,
.apb-field textarea:focus {
  border-color: var(--apb-primary);
  box-shadow: 0 0 0 3px rgba(26, 114, 186, 0.15);
}

.apb-field input::placeholder,
.apb-field textarea::placeholder {
  color: #a8b4c6;
}

.apb-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.apb-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   7. Get Quote / CTA Button
   -------------------------------------------------------------------------- */
.apb-btn-quote {
  display: block;
  width: 100%;
  height: 52px;
  background: var(--apb-primary);
  color: var(--apb-white);
  font-family: var(--apb-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--apb-radius-sm);
  cursor: pointer;
  transition: var(--apb-transition);
  text-align: center;
  line-height: 52px;
  text-decoration: none;
}

.apb-btn-quote:hover,
.apb-btn-quote:focus {
  background: var(--apb-primary-dk);
  color: var(--apb-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 114, 186, 0.4);
  text-decoration: none;
}

.apb-btn-quote:active {
  transform: translateY(0);
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   8. Trust Bar
   -------------------------------------------------------------------------- */
.apb-trust-bar {
  background: var(--apb-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
}

.apb-trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.apb-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
}

.apb-trust-item i,
.apb-trust-item .apb-trust-icon {
  color: var(--apb-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.apb-trust-item strong {
  color: var(--apb-white);
  display: block;
  font-size: 0.85rem;
}

.apb-trust-item span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
}

/* --------------------------------------------------------------------------
   9. Results / Product Cards
   -------------------------------------------------------------------------- */
.apb-results-section {
  padding: 48px 0;
  background: var(--apb-surface);
}

.apb-product-card {
  background: var(--apb-white);
  border-radius: var(--apb-radius);
  box-shadow: var(--apb-shadow);
  border-left: 4px solid var(--apb-primary);
  padding: 22px 24px;
  margin-bottom: 20px;
  transition: var(--apb-transition);
  position: relative;
  overflow: hidden;
}

.apb-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 114, 186, 0.14);
}

.apb-product-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}

.apb-product-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--apb-dark);
  margin: 0 0 4px;
}

.apb-product-card__meta {
  font-size: 0.8rem;
  color: var(--apb-muted);
}

.apb-product-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--apb-primary);
  line-height: 1;
  white-space: nowrap;
}

.apb-product-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--apb-muted);
}

.apb-product-card__features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.apb-product-card__features li {
  font-size: 0.8rem;
  color: var(--apb-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.apb-product-card__features li i {
  color: #10b981;
  font-size: 0.75rem;
}

.apb-btn-book {
  display: block;
  width: 100%;
  height: 46px;
  background: var(--apb-primary);
  color: var(--apb-white);
  font-family: var(--apb-font);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--apb-radius-sm);
  cursor: pointer;
  transition: var(--apb-transition);
  text-align: center;
  line-height: 46px;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.apb-btn-book:hover,
.apb-btn-book:focus {
  background: var(--apb-primary-dk);
  color: var(--apb-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26, 114, 186, 0.35);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   10. Promo Banner
   -------------------------------------------------------------------------- */
.apb-promo-banner {
  background: var(--apb-primary);
  color: var(--apb-white);
  text-align: center;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.apb-promo-banner strong {
  font-weight: 800;
}

.apb-promo-banner a {
  color: var(--apb-white);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   11. Secondary Page Hero
   -------------------------------------------------------------------------- */
.apb-page-hero {
  background: linear-gradient(135deg, #0b1729 0%, #0f2035 55%, #1a3356 100%);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.apb-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.apb-page-hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(26,114,186,.14) 0%, transparent 70%);
  pointer-events: none;
}

.apb-page-hero h1 {
  position: relative;
  color: var(--apb-white);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

.apb-page-hero__sub {
  position: relative;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-top: 10px;
}

.apb-hero-eyebrow {
  position: relative;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.apb-hero-title {
  position: relative;
  color: #ffffff;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.apb-hero-subtitle {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
  margin: 0;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   12. Content Card
   -------------------------------------------------------------------------- */
.apb-content-card {
  background: var(--apb-white);
  border-radius: var(--apb-radius);
  box-shadow: var(--apb-shadow);
  padding: 28px;
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   13. Accordion (FAQ / How It Works / Privacy)
   -------------------------------------------------------------------------- */
.apb-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apb-accordion-item {
  border: 1.5px solid var(--apb-border);
  border-radius: var(--apb-radius-sm);
  overflow: hidden;
  transition: var(--apb-transition);
}

.apb-accordion-item.open {
  border-color: var(--apb-primary);
  box-shadow: 0 4px 16px rgba(26, 114, 186, 0.1);
}

.apb-accordion-header {
  background: var(--apb-primary-xl);
  color: var(--apb-white);
  cursor: pointer;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: var(--apb-transition);
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--apb-font);
}

.apb-accordion-header:hover {
  background: var(--apb-primary-dk);
}

.apb-accordion-header .apb-accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.apb-accordion-item.open .apb-accordion-icon {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.25);
  color: var(--apb-white);
}

.apb-accordion-body {
  background: var(--apb-white);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.apb-accordion-item.open .apb-accordion-body {
  padding: 20px;
  max-height: 600px;
}

.apb-accordion-body p,
.apb-accordion-body ul,
.apb-accordion-body ol {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.apb-accordion-body p:last-child,
.apb-accordion-body ul:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   14. Review Cards
   -------------------------------------------------------------------------- */
.apb-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.apb-review-card {
  background: var(--apb-white);
  border-radius: var(--apb-radius);
  box-shadow: var(--apb-shadow);
  padding: 22px 24px;
  transition: var(--apb-transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.apb-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(26, 114, 186, 0.13);
}

.apb-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.95rem;
}

.apb-review-card__text {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.65;
  flex: 1;
}

.apb-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--apb-surface);
  padding-top: 12px;
}

.apb-review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--apb-primary);
  color: var(--apb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.apb-review-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--apb-dark);
}

.apb-review-card__date {
  font-size: 0.75rem;
  color: var(--apb-muted);
}

/* --------------------------------------------------------------------------
   15. Contact Cards
   -------------------------------------------------------------------------- */
.apb-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.apb-contact-card {
  background: var(--apb-white);
  border-radius: var(--apb-radius);
  box-shadow: var(--apb-shadow);
  padding: 32px 24px;
  text-align: center;
  transition: var(--apb-transition);
}

.apb-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(26, 114, 186, 0.13);
}

.apb-contact-card__icon {
  font-size: 2.5rem;
  color: var(--apb-primary);
  margin-bottom: 14px;
  display: block;
}

.apb-contact-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--apb-dark);
  margin-bottom: 6px;
}

.apb-contact-card__text {
  font-size: 0.875rem;
  color: var(--apb-muted);
  line-height: 1.5;
}

.apb-contact-card__text a {
  color: var(--apb-primary);
  text-decoration: none;
}

.apb-contact-card__text a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   16. Booking Form — 2-col layout
   -------------------------------------------------------------------------- */
.apb-booking-section {
  padding: 48px 0 64px;
  background: var(--apb-surface);
}

.apb-booking-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.apb-section-card {
  background: var(--apb-white);
  border-radius: var(--apb-radius);
  box-shadow: var(--apb-shadow);
  padding: 26px;
  margin-bottom: 20px;
}

.apb-section-card h3,
.apb-section-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--apb-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--apb-surface);
}

.apb-booking-sidebar {
  background: var(--apb-primary-xl);
  border-radius: var(--apb-radius);
  padding: 24px;
  position: sticky;
  top: 90px;
  color: var(--apb-white);
}

.apb-booking-sidebar h3 {
  color: var(--apb-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.apb-sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.apb-sidebar-row span:last-child {
  font-weight: 600;
  color: var(--apb-white);
}

.apb-sidebar-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--apb-white);
}

.apb-sidebar-total .apb-sidebar-amount {
  font-size: 1.5rem;
  color: var(--apb-white);
}

/* --------------------------------------------------------------------------
   17. Payment Toggle
   -------------------------------------------------------------------------- */
.apb-pay-toggle {
  display: flex;
  border: 1.5px solid var(--apb-border);
  border-radius: var(--apb-radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.apb-pay-toggle__btn {
  flex: 1;
  padding: 12px 16px;
  text-align: center;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--apb-muted);
  background: var(--apb-white);
  border: none;
  font-family: var(--apb-font);
  transition: var(--apb-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1.5px solid var(--apb-border);
}

.apb-pay-toggle__btn:last-child {
  border-right: none;
}

.apb-pay-toggle__btn.active,
.apb-pay-toggle__btn:hover {
  background: var(--apb-primary);
  color: var(--apb-white);
}

.apb-pay-toggle__btn.active {
  cursor: default;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.apb-footer {
  background: #ffffff;
  color: #374151;
  padding: 64px 0 0;
  font-size: 0.875rem;
  line-height: 1.7;
  border-top: 1px solid #e2e8f4;
}

.apb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 40px;
  padding-bottom: 48px;
}

.apb-footer-col__logo {
  display: block;
  margin-bottom: 14px;
}

.apb-footer-col__logo img {
  height: 44px;
  width: auto;
}

.apb-footer-tagline {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 18px;
}

.apb-footer-social {
  display: flex;
  gap: 10px;
}

.apb-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f4f9;
  color: #374151;
  font-size: 0.85rem;
  transition: var(--apb-transition);
  text-decoration: none;
}

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

.apb-footer-heading {
  color: var(--apb-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.apb-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apb-footer-links li a {
  color: #4b5563;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--apb-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.apb-footer-links li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 1px;
  background: var(--apb-gold);
  opacity: 0;
  transition: var(--apb-transition);
}

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

.apb-footer-links li a:hover::before {
  opacity: 1;
}

.apb-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 0.875rem;
}

.apb-footer-contact-item i {
  color: var(--apb-gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.apb-footer-contact-item a {
  color: #4b5563;
  text-decoration: none;
  transition: var(--apb-transition);
}

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

.apb-footer-bottom {
  border-top: 1px solid #e2e8f4;
  padding: 18px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
}

.apb-footer-bottom a {
  color: #64748b;
  text-decoration: none;
  transition: var(--apb-transition);
}

.apb-footer-bottom a:hover {
  color: var(--apb-primary);
}

/* --------------------------------------------------------------------------
   19. Utility Classes
   -------------------------------------------------------------------------- */
.apb-section {
  padding: 64px 0;
}

.apb-section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--apb-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.apb-section-sub {
  text-align: center;
  color: var(--apb-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.apb-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.apb-badge--gold {
  background: rgba(26, 114, 186, 0.12);
  color: var(--apb-primary-dk);
}

.apb-badge--blue {
  background: rgba(26, 114, 186, 0.1);
  color: var(--apb-primary);
}

.apb-badge--navy {
  background: rgba(28, 37, 54, 0.08);
  color: var(--apb-dark);
}

.apb-divider {
  border: none;
  border-top: 1px solid var(--apb-border);
  margin: 24px 0;
}

/* Generic button variants */
.apb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 44px;
  border-radius: var(--apb-radius-sm);
  font-family: var(--apb-font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--apb-transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.apb-btn--primary:hover {
  background: var(--apb-primary-dk);
  color: var(--apb-white);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26, 114, 186, 0.35);
}

.apb-btn--gold {
  background: var(--apb-primary);
  color: var(--apb-white);
}

.apb-btn--gold:hover {
  background: var(--apb-primary-dk);
  color: var(--apb-white);
  text-decoration: none;
}

.apb-btn--outline {
  background: var(--apb-white);
  color: var(--apb-primary);
  border: 1.5px solid var(--apb-primary);
}

.apb-btn--outline:hover {
  background: var(--apb-primary);
  color: var(--apb-white);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   20. Responsive — 992px
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .apb-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .apb-booking-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   21. Responsive — 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Navbar */
  .apb-hamburger {
    display: flex;
  }

  .apb-nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e8edf4;
    box-shadow: 0 8px 24px rgba(26, 114, 186, .12);
    padding: 12px 0 16px;
    gap: 0;
  }

  .apb-nav-links.open {
    display: flex;
  }

  .apb-nav-links li a {
    color: #1c2536 !important;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid #e8f3fb;
  }

  .apb-nav-links li a::after {
    display: none;
  }

  .apb-nav-links li a:hover {
    background: #f5f9fd;
    color: #1a72ba !important;
  }

  /* Hero */
  .apb-hero {
    min-height: auto;
    padding: 100px 0 40px;
  }

  /* Footer grid */
  .apb-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Booking grid */
  .apb-booking-grid {
    grid-template-columns: 1fr;
  }

  .apb-booking-sidebar {
    position: static;
    order: -1;
  }

  /* Field row */
  .apb-field-row {
    grid-template-columns: 1fr;
  }

  /* Trust bar */
  .apb-trust-bar__inner {
    gap: 12px 24px;
  }

  /* Section padding */
  .apb-section { padding: 48px 0; }
  .apb-page-hero { padding: 72px 20px 24px; min-height: 120px; }
  .apb-content-card { padding: 20px; }

  /* Mobile dropdown for logged-in users */
  .apb-nav-dropdown-menu {
    position: static;
    display: none;
    background: #f5f9fd;
    border: none;
    border-top: 1px solid #e8edf4;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: auto;
  }

  .apb-nav-dropdown.open .apb-nav-dropdown-menu {
    display: block;
  }

  .apb-nav-dropdown-menu li a {
    color: #1c2536 !important;
    padding: 12px 32px;
  }

  .apb-nav-dropdown-menu li a:hover {
    background: #f5f9fd;
    color: #1a72ba !important;
  }
}

/* --------------------------------------------------------------------------
   22. Responsive — 480px
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .apb-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .apb-bk-card {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .apb-product-card {
    padding: 18px 16px;
  }

  .apb-product-card__header {
    flex-direction: column;
  }

  .apb-product-price {
    font-size: 1.6rem;
  }

  .apb-section {
    padding: 36px 0;
  }

  .apb-section-title { font-size: 1.5rem; }
  .apb-page-hero h1 { font-size: 1.5rem; }

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

  .apb-reviews-grid {
    grid-template-columns: 1fr;
  }

  .apb-trust-bar__inner {
    justify-content: flex-start;
    gap: 14px 20px;
  }

  .apb-pay-toggle {
    flex-direction: column;
  }

  .apb-pay-toggle__btn {
    border-right: none;
    border-bottom: 1.5px solid var(--apb-border);
  }

  .apb-pay-toggle__btn:last-child {
    border-bottom: none;
  }
}

/* --------------------------------------------------------------------------
   23. Announcement Ticker Banner
   To update copy or code: edit the two identical blocks in header.php.
   To hide entirely:       add  display:none  to .apb-ticker-outer here.
   -------------------------------------------------------------------------- */
.apb-ticker-outer {
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
  overflow: hidden;
  position: relative;       /* normal flow — no sticky/fixed needed */
  margin-top: 70px;         /* push clear of the 70 px fixed navbar  */
  height: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(245, 158, 11, .28);
}

.apb-ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: apb-ticker-scroll 48s linear infinite;
  will-change: transform;
}

.apb-ticker-outer:hover .apb-ticker-track {
  animation-play-state: paused;
}

@keyframes apb-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.apb-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 48px;
  font-size: 13px;
  font-weight: 700;
  color: #0b1729;           /* dark text on gold background */
  letter-spacing: .15px;
}

.apb-ticker-code {
  display: inline-block;
  background: #0b1729;      /* dark navy chip on gold */
  color: #f59e0b;
  border-radius: 3px;
  padding: 0 9px;
  line-height: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 3px;
}

.apb-ticker-sep {
  color: rgba(11, 23, 41, .3);
  font-size: 5px;
  margin: 0 16px;
  flex-shrink: 0;
}

.apb-ticker-icon {
  color: #0b1729;           /* dark icon on gold */
  font-size: 11px;
  flex-shrink: 0;
}

.apb-ticker-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(11, 23, 41, .45);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 7px;
  z-index: 2;
  flex-shrink: 0;
  transition: color .15s;
}

.apb-ticker-close:hover { color: rgba(11, 23, 41, .85); }

/* --------------------------------------------------------------------------
   24. Best Price Guarantee Section  (home.php)
   -------------------------------------------------------------------------- */
.apb-bestprice-section {
  padding: 86px 0;
  background: linear-gradient(135deg, #0b1729 0%, #0f2035 55%, #1a3356 100%);
  position: relative;
  overflow: hidden;
}

.apb-bestprice-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.apb-bestprice-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(245,158,11,.09) 0%, transparent 68%);
  pointer-events: none;
}

.apb-bp-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #f59e0b;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.apb-bp-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: #f59e0b;
  border-radius: 2px;
  flex-shrink: 0;
}

.apb-bp-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.apb-bp-title span { color: #f59e0b; }

.apb-bp-body {
  font-size: .97rem;
  color: rgba(255,255,255,.7);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 34px;
}

/* 2-column benefit grid */
.apb-bp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 38px;
}

.apb-bp-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background .2s, border-color .2s;
}

.apb-bp-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(245,158,11,.38);
}

.apb-bp-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 15px;
  flex-shrink: 0;
}

.apb-bp-card h5 {
  font-size: .88rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}

.apb-bp-card p {
  font-size: .8rem;
  color: rgba(255,255,255,.56);
  margin: 0;
  line-height: 1.55;
}

/* CTA buttons */
.apb-bp-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.apb-bp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0b1729;
  font-weight: 800;
  font-size: .92rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
}

.apb-bp-btn-primary:hover {
  opacity: .88;
  transform: translateY(-2px);
  color: #0b1729;
  text-decoration: none;
}

.apb-bp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: .92rem;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.2);
  transition: background .15s, transform .15s;
}

.apb-bp-btn-secondary:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* Right column — code callout + checklist */
.apb-bp-code-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245,158,11,.1);
  border: 1.5px dashed rgba(245,158,11,.45);
  border-radius: 14px;
  padding: 20px 26px;
  margin-bottom: 26px;
}

.apb-code-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.52);
  margin-bottom: 4px;
}

.apb-code-value {
  font-size: 2rem;
  font-weight: 900;
  color: #f59e0b;
  letter-spacing: 4px;
  font-family: 'Courier New', monospace;
  line-height: 1;
}

.apb-code-save {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.42);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.apb-bp-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.apb-bp-checklist li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .9rem;
  color: rgba(255,255,255,.76);
  font-weight: 500;
  line-height: 1.4;
}

.apb-bp-checklist li i {
  color: #10b981;
  font-size: 13px;
  flex-shrink: 0;
}

.apb-bp-why-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 20px 22px;
}

.apb-bp-why-box__label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.38);
  margin-bottom: 8px;
}

.apb-bp-why-box p {
  font-size: .86rem;
  color: rgba(255,255,255,.6);
  line-height: 1.68;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .apb-bp-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .apb-bestprice-section { padding: 60px 0; }
  .apb-bp-cta-group { flex-direction: column; }
  .apb-bp-btn-primary,
  .apb-bp-btn-secondary { justify-content: center; width: 100%; }
}
