/* ==========================================================================
   DMKCarrent.com - Master Luxury Automotive Stylesheet (Clean Vector Edition)
   Theme: Deep Royal Navy, Platinum White, Warm Gold Accents (#E5A93C, #D4AF37)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800&family=Prompt:wght@300;400;500;600;700&display=swap');

:root {
  --primary-navy: #0A1128;
  --navy-dark: #000814;
  --navy-medium: #141E38;
  --navy-light: #1C2B4F;
  --navy-glass: rgba(10, 17, 40, 0.92);
  
  --gold-primary: #D4AF37;
  --gold-bright: #F5BE38;
  --gold-deep: #B38F26;
  --gold-gradient: linear-gradient(135deg, #F9D976 0%, #E5A93C 50%, #B8860B 100%);
  
  --pure-white: #FFFFFF;
  --text-light: #E2E8F0;
  --text-muted: #94A3B8;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 6px 20px rgba(229, 169, 60, 0.35);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --font-heading: 'Kanit', sans-serif;
  --font-body: 'Prompt', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: #050A14;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== TOP NAVIGATION BAR ==================== */
.top-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.top-bar-strip {
  background: #030710;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 0;
  font-size: 0.82rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.top-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #F5BE38;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.loc-full-text {
  display: inline;
}

.loc-short-text {
  display: none;
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.social-icon-btn.line { background: #06C755; color: #FFFFFF; }
.social-icon-btn.whatsapp { background: #25D366; color: #FFFFFF; }
.social-icon-btn.wechat { background: #07C160; color: #FFFFFF; }
.social-icon-btn.facebook { background: #1877F2; color: #FFFFFF; }
.social-icon-btn.tiktok { background: #000000; border: 1px solid rgba(255,255,255,0.2); color: #FFFFFF; }

.social-icon-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

.lang-switch-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FFFFFF;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 2px;
  flex-shrink: 0;
}

.lang-switch-btn.active {
  background: var(--gold-gradient);
  color: #0A1128;
  font-weight: 700;
  border-color: transparent;
}

/* Mobile Top Bar Optimizations */
@media (max-width: 768px) {
  .top-bar-strip {
    padding: 4px 0;
    font-size: 0.75rem;
  }
  .top-bar-inner {
    gap: 6px;
  }
  .top-location-badge {
    font-size: 0.72rem;
  }
  .top-location-badge svg {
    width: 12px;
    height: 12px;
  }
  .top-social-links {
    gap: 4px;
  }
  .social-icon-btn {
    width: 22px;
    height: 22px;
  }
  .social-icon-btn svg {
    width: 12px;
    height: 12px;
  }
  .social-icon-btn.facebook,
  .social-icon-btn.tiktok {
    display: none; /* Secondary social moved to drawer menu on mobile */
  }
  .lang-switch-btn {
    padding: 1px 5px;
    font-size: 0.65rem;
    margin-left: 1px;
  }
}

@media (max-width: 480px) {
  .loc-full-text {
    display: none;
  }
  .loc-short-text {
    display: inline;
  }
  .top-location-badge {
    font-size: 0.68rem;
  }
  .social-icon-btn {
    width: 20px;
    height: 20px;
  }
  .social-icon-btn svg {
    width: 11px;
    height: 11px;
  }
  .lang-switch-btn {
    padding: 1px 4px;
    font-size: 0.62rem;
  }
}

/* Main Navigation - Strict Single Line Layout */
.main-nav {
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: nowrap;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}

.brand-text-col {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-title span {
  color: #F5BE38;
}

.brand-subtitle {
  font-size: 0.65rem;
  color: #94A3B8;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.nav-menu-links {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-menu-links a {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: #E2E8F0;
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
}

.nav-menu-links a:hover, .nav-menu-links a.active {
  color: #F5BE38;
}

.nav-menu-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s;
}

.nav-menu-links a:hover::after, .nav-menu-links a.active::after {
  width: 100%;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.phone-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #0A1128;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
  transition: all 0.25s;
  white-space: nowrap;
}

.phone-badge-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(229, 169, 60, 0.5);
}

.hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ==================== HERO SECTION & BANNER (FULL WIDTH) ==================== */
.hero-banner-section {
  position: relative;
  background: #040812;
  padding: 0 0 40px;
}

.hero-banner-fullwidth {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1774 / 887;
  display: block;
  object-fit: cover;
}

/* ==================== FAST BOOKING WIDGET BAR ==================== */
.fast-booking-box {
  background: linear-gradient(175deg, rgba(17, 28, 56, 0.95) 0%, rgba(8, 14, 28, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 1180px;
  margin: 24px auto 0;
  position: relative;
  z-index: 20;
}

.booking-header-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-heading-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.2px;
}

.booking-service-switch {
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-tab-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border: none;
  background: transparent;
  color: #94A3B8;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.car-hero-booking-box .booking-service-switch .service-tab-btn {
  flex: 1;
  text-align: center;
}

.service-tab-btn.active {
  background: var(--gold-gradient);
  color: #0A1128;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.service-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.service-tab-btn .tab-th {
  font-weight: 700;
}

.service-tab-btn .tab-en {
  font-size: 0.78rem;
  opacity: 0.88;
}

.fast-booking-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  align-items: flex-end;
}

.booking-field-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.booking-field-col.col-car {
  grid-column: span 6;
}
.booking-field-col.col-ploc {
  grid-column: span 3;
}
.booking-field-col.col-rloc {
  grid-column: span 3;
}

.booking-field-col.col-pdate {
  grid-column: span 2;
}
.booking-field-col.col-ptime {
  grid-column: span 2;
}
.booking-field-col.col-rdate {
  grid-column: span 2;
}
.booking-field-col.col-rtime {
  grid-column: span 2;
}
.booking-field-col.col-btn {
  grid-column: span 4;
}

.field-label, .qmodal-label {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 2px;
  line-height: 1.3;
}

.field-label .label-th, .qmodal-label .label-th {
  font-size: 0.85rem;
  font-weight: 700;
  color: #F5BE38;
  letter-spacing: 0.2px;
}

.field-label .label-en, .qmodal-label .label-en {
  font-size: 0.72rem;
  font-weight: 500;
  color: #94A3B8;
  letter-spacing: 0.2px;
}

.booking-input, .booking-select, input[type="date"], input[type="time"] {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: rgba(6, 11, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: all 0.2s ease;
  color-scheme: dark;
}

textarea.booking-input,
.booking-field-col textarea.booking-input,
.detail-form-group textarea.booking-input,
#contact-msg {
  height: auto;
  min-height: 85px;
  padding: 18px 16px 14px 16px !important;
  line-height: 1.6;
  resize: none;
  box-sizing: border-box;
}

.booking-input:focus, .booking-select:focus, input[type="date"]:focus, input[type="time"]:focus {
  border-color: #F5BE38;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.3);
  background: #081022;
}

/* Bright gold calendar and time picker icons for dark mode */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator,
.booking-input::-webkit-calendar-picker-indicator {
  filter: invert(0.85) sepia(1) saturate(5) hue-rotate(5deg) brightness(1.2);
  cursor: pointer;
  opacity: 0.9;
  padding: 3px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover,
.booking-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  filter: invert(0.95) sepia(1) saturate(8) hue-rotate(15deg) brightness(1.4);
  transform: scale(1.15);
}

.booking-submit-btn {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  background: var(--gold-gradient);
  border: none;
  border-radius: 10px;
  color: #0A1128;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.booking-submit-btn.line-booking-btn {
  background: #06C755;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
}

.booking-submit-btn.line-booking-btn:hover {
  background: #05b34c;
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.6);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.booking-submit-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.6);
}

.btn-sub-en {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  margin-left: 3px;
}

/* ==================== 3-COLUMNS SHOWCASE (EQUAL HEIGHT PERFECTION) ==================== */
.showroom-section {
  padding: 60px 0;
  background: #050A14;
}

.section-head-wrap {
  text-align: center;
  margin-bottom: 35px;
}

.section-tag {
  color: #F5BE38;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 6px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #FFFFFF;
}

.section-title span {
  color: #F5BE38;
}

.section-desc {
  color: #94A3B8;
  font-size: 0.95rem;
  max-width: 650px;
  margin: 8px auto 0;
}

.showroom-promo-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 10px;
}

.promo-highlight-pill {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F8FAFC;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-right: 6px;
  letter-spacing: 0.3px;
}

.promo-fire-pill {
  display: inline-block;
  color: #F5BE38;
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 1.08rem;
  text-shadow: 0 0 12px rgba(245, 190, 56, 0.35);
}

.mobile-category-pills {
  display: none;
}

/* Services Filter Box */
.services-filter-box {
  background: #0E172F;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.filter-categories-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.filter-category-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-category-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-category-btn.active {
  background: var(--gold-gradient) !important;
  color: #0A1128 !important;
  font-weight: 700 !important;
  border-color: var(--gold-primary) !important;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.filter-search-wrap {
  width: 100%;
  max-width: 280px;
}

.filter-search-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.filter-search-inner .search-icon {
  position: absolute;
  left: 12px;
  pointer-events: none;
}

.filter-search-inner input {
  width: 100%;
  padding: 9px 12px 9px 36px;
  background: #060B18;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-family: var(--font-body);
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.filter-search-inner input:focus {
  border-color: #F5BE38;
}

/* 3-Column Stream Grid */
.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stream-column {
  background: rgba(12, 20, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.stream-column.luxury-stream { border-top: 3px solid #D4AF37; }
.stream-column.ev-stream { border-top: 3px solid #00D2FF; }
.stream-column.family-stream { border-top: 3px solid #10B981; }

.stream-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stream-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.stream-header-badge.luxury-badge { background: rgba(212, 175, 55, 0.15); color: #F5BE38; border: 1px solid rgba(212, 175, 55, 0.35); }
.stream-header-badge.ev-badge { background: rgba(0, 210, 255, 0.12); color: #00D2FF; border: 1px solid rgba(0, 210, 255, 0.3); }
.stream-header-badge.family-badge { background: rgba(16, 185, 129, 0.12); color: #10B981; border: 1px solid rgba(16, 185, 129, 0.3); }

.stream-count-pill {
  font-size: 0.8rem;
  color: #94A3B8;
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.stream-cars-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ==================== CAR CARD (STRICT UNIFORM HEIGHT & ALIGNMENT) ==================== */
.car-card {
  background: #091124;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 420px; /* Fixed height for pixel-perfect row alignment */
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.car-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.15);
}

.car-card-media {
  position: relative;
  width: 100%;
  height: 190px;
  flex-shrink: 0;
  background: #040812;
  overflow: hidden;
}

.car-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.car-card:hover .car-card-img {
  transform: scale(1.05);
}

.car-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(10, 17, 40, 0.88);
  border: 1px solid var(--gold-primary);
  color: #F5BE38;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.car-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.car-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  height: 44px; /* Exactly 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2px;
}

.car-card-sub {
  font-size: 0.8rem;
  color: #94A3B8;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 8px;
}

.car-specs-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  margin-bottom: 8px;
}

.spec-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.car-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.car-price-block {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.7rem;
  color: #94A3B8;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #F5BE38;
  line-height: 1;
}

.price-unit {
  font-size: 0.75rem;
  font-weight: 400;
  color: #CBD5E1;
}

.card-actions-group {
  display: flex;
  gap: 6px;
}

.btn-detail-sm {
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-detail-sm:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-book-sm {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient);
  color: #0A1128;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-book-sm:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.services-cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ==================== SERVICES & CONTACT ==================== */
.services-section {
  padding: 60px 0;
  background: #081022;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: #0E172F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.service-card:hover {
  border-color: var(--gold-primary);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* ==================== FAQ ACCORDION SECTION ==================== */
.faq-section {
  padding: 65px 0;
  background: #040814;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-accordion-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(180deg, #0D162C 0%, #080E1C 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.08);
}

.faq-question-btn {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-q-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-q-text .q-badge {
  color: #F5BE38;
  font-weight: 800;
  font-size: 1.1rem;
}

.faq-icon-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #F5BE38;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.2s;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
  background: rgba(212, 175, 55, 0.2);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer-panel {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-answer-text {
  color: #CBD5E1;
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

.faq-answer-text strong {
  color: #F5BE38;
}

/* ==================== SEO TRAVEL & AIRPORT GUIDES ==================== */
.guides-section {
  padding: 65px 0;
  background: #060B18;
}

.guides-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.guide-card {
  background: linear-gradient(180deg, #0D162C 0%, #070D1A 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

.guide-card-media {
  position: relative;
  height: 190px;
  width: 100%;
  overflow: hidden;
}

.guide-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.guide-card:hover .guide-card-media img {
  transform: scale(1.05);
}

.guide-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 17, 40, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #F5BE38;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.guide-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.guide-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: 10px;
}

.guide-excerpt {
  color: #94A3B8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.guide-footer-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  font-size: 0.82rem;
  color: #F5BE38;
  font-weight: 700;
}

/* ==================== CONTACT QR SUITE ==================== */
.contact-qr-section {
  padding: 65px 0 70px;
  background: #03060E;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.qr-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.qr-box-card {
  background: linear-gradient(180deg, #0E172F 0%, #080F1F 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.qr-box-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 20px rgba(212, 175, 55, 0.15);
}

.qr-box-card.line-card {
  border-top: 3px solid #06C755;
}

.qr-box-card.whatsapp-card {
  border-top: 3px solid #25D366;
}

.qr-box-card.wechat-card {
  border-top: 3px solid #07C160;
}

.qr-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.qr-image-frame {
  width: 180px;
  height: 180px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.qr-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.qr-channel-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.qr-channel-handle {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.qr-scan-hint {
  font-size: 0.78rem;
  color: #94A3B8;
  margin-bottom: 14px;
}

.qr-action-btn {
  width: 100%;
  max-width: 220px;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, filter 0.2s;
}

.qr-action-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

/* ==================== SITE FOOTER (LUXURY REDESIGN) ==================== */
.site-footer {
  background: radial-gradient(circle at 50% 0%, #0F1B38 0%, #060B18 60%, #02050D 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 55px 0 25px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), rgba(245, 190, 56, 1), rgba(212, 175, 55, 0.8), transparent);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.3fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 35px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  display: block;
}

.footer-brand-name span {
  color: #F5BE38;
}

.footer-brand-sub {
  font-size: 0.65rem;
  letter-spacing: 1.2px;
  color: #94A3B8;
  display: block;
  font-weight: 600;
}

.footer-brand-desc {
  color: #94A3B8;
  line-height: 1.65;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.footer-hotlines-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-phone-pill.primary {
  background: linear-gradient(135deg, #F5BE38 0%, #D4AF37 100%);
  color: #070B16;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.footer-phone-pill.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
}

.footer-phone-pill.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #F5BE38;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.footer-phone-pill.secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.footer-links-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
}

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

.footer-nav-list li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.86rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-nav-list li a::before {
  content: '›';
  color: #64748B;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.footer-nav-list li a:hover {
  color: #F5BE38;
  transform: translateX(3px);
}

.footer-nav-list li a:hover::before {
  color: #F5BE38;
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.footer-hub-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: #CBD5E1;
}

.footer-hub-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.hub-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(212, 175, 55, 0.12);
  color: #F5BE38;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social-channels {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.channels-title {
  font-size: 0.78rem;
  color: #94A3B8;
  margin-bottom: 8px;
  font-weight: 600;
}

.channels-btn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.footer-channel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  color: #FFFFFF;
}

.footer-channel-btn.line {
  background: #06C755;
}
.footer-channel-btn.line:hover {
  background: #05b34c;
  transform: translateY(-2px);
}

.footer-channel-btn.whatsapp {
  background: #25D366;
}
.footer-channel-btn.whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
}

.footer-channel-btn.wechat {
  background: #07C160;
}
.footer-channel-btn.wechat:hover {
  background: #06a853;
  transform: translateY(-2px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748B;
  font-size: 0.8rem;
}

/* Floating contact buttons */
.floating-contact-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s;
  cursor: pointer;
  border: none;
}

.floating-btn.line-btn { background: #06C755; }
.floating-btn.call-btn { background: var(--gold-gradient); color: #0A1128; }

.floating-btn:hover { transform: scale(1.1); }

/* QR Modal Backdrop */
.qr-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.qr-modal-backdrop.active { display: flex; }

.qr-modal-window {
  background: #0E172F;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 26px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==================== ULTRA-LUXURY CONTACT PAGE & VIP CONCIERGE ATELIER ==================== */
@keyframes livePulseGold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes livePulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(6, 199, 85, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); }
}

@keyframes livePulseCyan {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 210, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

@keyframes sweepLight {
  0% { transform: translateX(-150%) skewX(-20deg); }
  100% { transform: translateX(250%) skewX(-20deg); }
}

.contact-atelier-hero {
  padding: 70px 0 40px;
  background: radial-gradient(circle at 50% 0%, #17274E 0%, #091122 55%, #03060E 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-atelier-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.02) 60%, transparent 80%);
  pointer-events: none;
  filter: blur(50px);
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 35px;
}

@media (max-width: 992px) {
  .contact-quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
  }
  .contact-quick-card {
    padding: 18px 14px 14px;
    border-radius: 16px;
  }
  .card-top-header {
    margin-bottom: 10px;
  }
  .card-title-lg {
    font-size: 1.05rem;
  }
  .card-subtext {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }
  .card-icon-sphere {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 680px) {
  .contact-quick-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-quick-card {
    padding: 20px 16px 16px;
  }
}

.contact-quick-card {
  position: relative;
  background: linear-gradient(170deg, rgba(22, 34, 66, 0.75) 0%, rgba(11, 18, 36, 0.9) 60%, rgba(5, 9, 18, 0.98) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.contact-quick-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: height 0.3s;
}

.contact-quick-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.25;
  transition: opacity 0.35s ease;
}

.contact-quick-card:hover {
  transform: translateY(-8px);
}

.contact-quick-card.phone-card::before {
  background: linear-gradient(90deg, #99751F, #F5BE38, #FFF5C0, #D4AF37);
}
.contact-quick-card.phone-card::after {
  background: #F5BE38;
}
.contact-quick-card.phone-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 35px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(212, 175, 55, 0.55);
}
.contact-quick-card.phone-card:hover::after {
  opacity: 0.6;
}

.contact-quick-card.line-card::before {
  background: linear-gradient(90deg, #048C3C, #06C755, #73FFA8, #06C755);
}
.contact-quick-card.line-card::after {
  background: #06C755;
}
.contact-quick-card.line-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 35px rgba(6, 199, 85, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(6, 199, 85, 0.55);
}
.contact-quick-card.line-card:hover::after {
  opacity: 0.6;
}

.contact-quick-card.global-card::before {
  background: linear-gradient(90deg, #007799, #00D2FF, #8AEBFF, #00D2FF);
}
.contact-quick-card.global-card::after {
  background: #00D2FF;
}
.contact-quick-card.global-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65), 0 0 35px rgba(0, 210, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 210, 255, 0.55);
}
.contact-quick-card.global-card:hover::after {
  opacity: 0.6;
}

/* Card Header & Icon Sphere */
.card-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.card-icon-sphere {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease;
}

.card-icon-sphere svg {
  width: 24px;
  height: 24px;
}

.contact-quick-card:hover .card-icon-sphere {
  transform: scale(1.1) rotate(4deg);
}

.card-icon-sphere.gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(14, 23, 47, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #F5BE38;
}

.card-icon-sphere.green {
  background: linear-gradient(135deg, rgba(6, 199, 85, 0.2) 0%, rgba(14, 23, 47, 0.8) 100%);
  border: 1px solid rgba(6, 199, 85, 0.45);
  color: #06C755;
}

.card-icon-sphere.cyan {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.2) 0%, rgba(14, 23, 47, 0.8) 100%);
  border: 1px solid rgba(0, 210, 255, 0.45);
  color: #00D2FF;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
}

.live-badge.gold {
  background: rgba(212, 175, 55, 0.12);
  color: #F5BE38;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.live-badge.green {
  background: rgba(6, 199, 85, 0.12);
  color: #06C755;
  border: 1px solid rgba(6, 199, 85, 0.35);
}

.live-badge.cyan {
  background: rgba(0, 210, 255, 0.12);
  color: #00D2FF;
  border: 1px solid rgba(0, 210, 255, 0.35);
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.live-pulse-dot.gold {
  background: #F5BE38;
  animation: livePulseGold 2s infinite;
}

.live-pulse-dot.green {
  background: #06C755;
  animation: livePulseGreen 2s infinite;
}

.live-pulse-dot.cyan {
  background: #00D2FF;
  animation: livePulseCyan 2s infinite;
}

.card-title-lg {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.card-subtext {
  font-size: 0.86rem;
  color: #94A3B8;
  line-height: 1.45;
  margin-bottom: 22px;
}

/* Luxury Interactive Buttons */
.luxury-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
  border: none;
  width: 100%;
}

.luxury-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-150%);
  transition: transform 0.65s ease;
}

.luxury-btn:hover::after {
  transform: translateX(300%);
}

.luxury-btn:hover {
  transform: translateY(-2px);
}

.luxury-btn.gold-primary {
  background: linear-gradient(135deg, #F5BE38 0%, #D4AF37 50%, #B88E1C 100%);
  color: #080D1A;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.luxury-btn.gold-primary:hover {
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.luxury-btn.gold-outline {
  background: rgba(212, 175, 55, 0.08);
  color: #F5BE38;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.luxury-btn.gold-outline:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.85);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
}

.luxury-btn.line-primary {
  background: linear-gradient(135deg, #07DC5F 0%, #06C755 50%, #039E41 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(6, 199, 85, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.luxury-btn.line-primary:hover {
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.luxury-btn.frosted-glass {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.luxury-btn.frosted-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}

.luxury-btn.whatsapp-pill {
  background: linear-gradient(135deg, #2FE571 0%, #25D366 50%, #17A04B 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.luxury-btn.whatsapp-pill:hover {
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

.luxury-btn.wechat-pill {
  background: linear-gradient(135deg, #09D66C 0%, #07C160 50%, #039648 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(7, 193, 96, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.luxury-btn.wechat-pill:hover {
  box-shadow: 0 12px 28px rgba(7, 193, 96, 0.55);
}

/* ==================== 2-COLUMN LUXURY ATELIER ==================== */
.contact-atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

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

.contact-form-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

@media (max-width: 992px) {
  .contact-atelier-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .atelier-form-card {
    order: 1;
    padding: 24px 20px;
    border-radius: 18px;
  }
  .atelier-visual-card {
    order: 2;
    border-radius: 18px;
  }
  .contact-form-dates-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 10px;
  }
}

@media (max-width: 600px) {
  .contact-atelier-hero {
    padding: 35px 0 25px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .atelier-form-card {
    padding: 20px 16px;
  }
  .atelier-badges-col {
    padding: 16px 14px;
    gap: 10px;
  }
  .terminal-badge-row {
    padding: 12px 14px;
    gap: 10px;
  }
  .atelier-image-wrap {
    height: 180px;
  }
}

.atelier-visual-card {
  background: linear-gradient(175deg, rgba(17, 28, 56, 0.8) 0%, rgba(8, 14, 28, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
}

.atelier-image-wrap {
  position: relative;
  height: 230px;
  width: 100%;
  overflow: hidden;
}

.atelier-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.atelier-visual-card:hover .atelier-image-wrap img {
  transform: scale(1.05);
}

.atelier-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 8, 18, 0.95) 90%);
  padding: 16px 22px;
}

.atelier-badges-col {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.terminal-badge-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
}

.terminal-badge-row:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateX(4px);
}

.terminal-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.atelier-form-card {
  background: linear-gradient(175deg, rgba(17, 28, 56, 0.85) 0%, rgba(8, 14, 28, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 22px;
  padding: 30px 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Contact Google Maps Card */
.contact-map-card {
  margin-top: 36px;
  background: #0E172F;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.contact-map-header {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #0B1226;
}

.contact-map-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-map-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  line-height: 1.35;
}

.contact-map-title svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-map-sub {
  color: #94A3B8;
  font-size: 0.82rem;
  margin: 0;
  padding-left: 26px;
  line-height: 1.4;
}

.contact-map-btn {
  height: 42px;
  padding: 0 18px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
}

.contact-map-frame {
  height: 320px;
  width: 100%;
}

/* ==================== CAR DETAIL LUXURY REDESIGN ==================== */
.car-detail-breadcrumb {
  background: #030710;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94A3B8;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.breadcrumb-inner::-webkit-scrollbar { display: none; }
.breadcrumb-inner a { color: #CBD5E1; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: #F5BE38; }
.breadcrumb-inner .active-crumb { color: #F5BE38; font-weight: 600; }

.car-detail-hero-section {
  padding: 35px 0 65px;
  background: radial-gradient(circle at 50% 0%, #132247 0%, #070D1B 60%, #03060E 100%);
}

/* 2-Column Hero Top Grid */
.car-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.car-hero-media-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.car-media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: #060B18;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(212, 175, 55, 0.1);
}

.car-hero-main-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.car-media-frame:hover .car-hero-main-img {
  transform: scale(1.02);
}

.car-media-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.car-media-badges .car-card-badge {
  position: static;
  top: auto;
  left: auto;
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.car-status-badge {
  background: rgba(16, 185, 129, 0.9);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 6px #FFFFFF;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.car-trust-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.trust-pill-item {
  background: rgba(15, 25, 50, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #CBD5E1;
}

.trust-pill-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #F5BE38;
}

/* Pricing & Booking Card */
.car-hero-booking-box {
  background: linear-gradient(175deg, rgba(18, 30, 60, 0.95) 0%, rgba(8, 14, 28, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(212, 175, 55, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.booking-category-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: #F5BE38;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.booking-car-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0 0 4px;
}

.booking-car-subtitle {
  color: #94A3B8;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.pricing-matrix-container {
  margin-bottom: 16px;
}

.matrix-label {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 8px;
}

.pricing-rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.rate-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  color: inherit;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.rate-box:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.06);
  transform: translateY(-2px);
}

.rate-box:active {
  transform: scale(0.97);
}

.rate-box.primary-rate,
.rate-box.active {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.07) 100%);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.rate-box.primary-rate .rate-tag,
.rate-box.active .rate-tag {
  color: #F5BE38;
  font-weight: 700;
}

.rate-box.secondary-rate:not(.active) {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transform: none;
}

.rate-box.secondary-rate:not(.active) .rate-tag {
  color: #CBD5E1;
  font-weight: 500;
}

.rate-box .rate-tag {
  font-size: 0.72rem;
  margin-bottom: 3px;
  transition: color 0.2s;
}

.rate-box .rate-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.rate-box .rate-unit {
  font-size: 0.65rem;
  color: #94A3B8;
  margin-top: 2px;
  transition: color 0.2s;
}

.rate-box.active .rate-unit,
.rate-box.primary-rate .rate-unit {
  color: #F8FAFC;
}

/* Car Detail Booking Form */
.car-detail-booking-form {
  margin-top: 14px;
}

.detail-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.detail-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-form-group.full-width {
  grid-column: 1 / -1;
}

.detail-form-group .booking-input,
.detail-form-group .booking-select {
  height: 42px;
  font-size: 0.88rem;
  padding: 0 12px;
  background: rgba(4, 9, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #FFFFFF;
  color-scheme: dark;
}

.detail-form-group .booking-input:focus,
.detail-form-group .booking-select:focus {
  border-color: #F5BE38;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.detail-form-group .field-label {
  font-size: 0.78rem;
  color: #F5BE38;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 12px;
}

.hero-spec-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-spec-card .h-label {
  font-size: 0.72rem;
  color: #94A3B8;
}

.hero-spec-card .h-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}

.hero-spec-card.highlight-card .gold-txt {
  color: #F5BE38;
  font-weight: 700;
}

.hero-booking-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.booking-submit-btn {
  background: linear-gradient(135deg, #06C755 0%, #00B33C 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-shadow: 0 4px 18px rgba(6, 199, 85, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(6, 199, 85, 0.55);
  background: linear-gradient(135deg, #07d65b 0%, #00ca00 100%);
}

.btn-hero-call {
  background: rgba(212, 175, 55, 0.12);
  color: #F5BE38;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-hero-call:hover {
  background: var(--gold-gradient);
  color: #0A1128;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-hero-call svg {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.booking-trust-footer {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #E2E8F0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-trust-footer svg {
  color: #10B981;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ==================== FULL-WIDTH DETAILS SPLIT CONTAINER ==================== */
.car-details-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
  align-items: stretch;
}

.specs-panel,
.features-panel {
  background: linear-gradient(175deg, rgba(16, 26, 52, 0.85) 0%, rgba(8, 14, 28, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-title svg {
  width: 18px;
  height: 18px;
  color: #F5BE38;
}

.panel-tag {
  font-size: 0.72rem;
  color: #94A3B8;
  background: rgba(0, 0, 0, 0.35);
  padding: 3px 8px;
  border-radius: 6px;
}

.panel-tag.gold-tag {
  color: #F5BE38;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 9px 4px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.specs-table td.label-col {
  color: #94A3B8;
  width: 38%;
  font-weight: 500;
}

.specs-table td.val-col {
  color: #FFFFFF;
  font-weight: 600;
  text-align: right;
}

.specs-table td.highlight-gold {
  color: #F5BE38;
  font-weight: 700;
}

.features-grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.features-grid-list li {
  color: #CBD5E1;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid-list li svg {
  color: #06C755;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.rental-docs-box {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.docs-box-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #F5BE38;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.docs-step-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doc-step-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.85rem;
  color: #E2E8F0;
}

.step-num {
  width: 20px;
  height: 20px;
  background: #F5BE38;
  color: #050B17;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.car-story-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: auto;
}

.service-guarantee-box {
  background: rgba(6, 199, 85, 0.05);
  border: 1px solid rgba(6, 199, 85, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: auto;
}

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

.guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.45;
}

.guarantee-list li svg {
  width: 14px;
  height: 14px;
  color: #06C755;
  flex-shrink: 0;
  margin-top: 2px;
}

.story-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 6px;
}

.story-desc {
  color: #94A3B8;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* Related section */
.car-related-container {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.related-heading-wrap {
  margin-bottom: 22px;
}

.related-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  color: #F5BE38;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 4px;
}

.related-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: #FFFFFF;
  margin: 0;
}

.related-cars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.related-more-btn-wrap {
  text-align: center;
  margin-top: 36px;
}

.btn-view-more-cars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #0A1128;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 38px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  transition: all 0.25s ease;
}

.btn-view-more-cars:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  filter: brightness(1.1);
}

/* ==================== MODAL & QUICK BOOKING POPUP ==================== */
.qr-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.qr-modal-backdrop.active {
  display: flex !important;
}

.qr-modal-window {
  position: relative;
  background: #0B1329;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
  animation: modalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 94vh;
  overflow-y: auto;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #CBD5E1;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #EF4444;
  border-color: #EF4444;
}

.qr-image-frame {
  background: #FFFFFF;
  padding: 10px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.qr-image-frame img {
  width: 180px;
  height: 180px;
  display: block;
  object-fit: contain;
}

.qr-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Quick Booking Modal Specifics */
.booking-modal-window {
  max-width: 520px;
  text-align: left;
  padding: 22px 20px;
}

.qmodal-header {
  margin-bottom: 14px;
  text-align: center;
}

.qmodal-top-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: #F5BE38;
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.qmodal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 0 0 3px;
  font-weight: 800;
}

.qmodal-sub {
  font-size: 0.8rem;
  color: #94A3B8;
  margin: 0;
}

.qmodal-car-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 14px;
}

.qmodal-car-img-wrap {
  width: 100px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
  background: #050A14;
  flex-shrink: 0;
}

.qmodal-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qmodal-car-info {
  flex: 1;
  min-width: 0;
}

.qmodal-car-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qmodal-car-sub {
  font-size: 0.75rem;
  color: #94A3B8;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qmodal-car-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #F5BE38;
}

.qmodal-price-unit {
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: normal;
}

.qmodal-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.qmodal-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qmodal-field-group.full-width {
  grid-column: 1 / -1;
}

.qmodal-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #CBD5E1;
}

.qmodal-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qmodal-btn-line {
  width: 100%;
  background: #06C755;
  color: #FFFFFF;
  border: none;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.98rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
  transition: all 0.2s ease;
}

.qmodal-btn-line:hover {
  background: #05b34c;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.6);
}

.qmodal-sub-actions {
  display: flex;
  gap: 8px;
}

.qmodal-btn-phone {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 9px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.qmodal-btn-phone:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #F5BE38;
  color: #F5BE38;
}

.qmodal-btn-detail {
  flex: 1;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #F5BE38;
  padding: 9px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.qmodal-btn-detail:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: #F5BE38;
}

/* Floating Toast Notification */
.booking-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0B1329;
  border: 1px solid #10B981;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(16, 185, 129, 0.3);
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  text-align: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ==================== CLEAN VIP SERVICES SECTION ==================== */
.exclusive-services-section {
  padding: 50px 0 60px;
  background: #081022;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.exclusive-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.vip-clean-card {
  background: #0E172F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.vip-clean-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

.vip-clean-media {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #020617;
}

.vip-clean-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.vip-clean-card:hover .vip-clean-media img {
  transform: scale(1.04);
}

.vip-clean-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 17, 40, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F5BE38;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.vip-clean-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vip-clean-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 4px;
  line-height: 1.3;
}

.vip-clean-car {
  color: #F5BE38;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.vip-clean-chips {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  flex: 1;
}

.vip-clean-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 0.8rem;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}

.vip-clean-chip svg {
  width: 14px;
  height: 14px;
  color: #F5BE38;
  flex-shrink: 0;
}

.vip-clean-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.vip-clean-btn-book {
  flex: 1;
  background: var(--gold-gradient);
  color: #0A1128;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vip-clean-btn-book:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.vip-clean-btn-detail {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.vip-clean-btn-detail:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: #F5BE38;
}

@media (max-width: 992px) {
  .exclusive-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==================== INTERACTIVE DETAIL PHOTO GALLERY ==================== */
.gallery-thumbs-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.gallery-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  background: #0B1426;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.22s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: brightness(0.85);
}

.gallery-thumb:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.gallery-thumb:hover img {
  filter: brightness(1);
}

.gallery-thumb.active {
  border-color: #F5BE38;
  box-shadow: 0 0 12px rgba(245, 190, 56, 0.45);
}

.gallery-thumb.active img {
  filter: brightness(1.05);
}

.car-hero-main-img {
  transition: opacity 0.2s ease-in-out;
}

/* ==================== G-CLASS EXCLUSIVE SHOWCASE BANNER ==================== */
.gclass-exclusive-banner {
  background: radial-gradient(circle at 50% 0%, #17254C 0%, #0A1124 75%, #050814 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gclass-banner-head {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.gclass-banner-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #F5BE38;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.gclass-banner-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin: 0 0 6px;
}

.gclass-banner-subtitle {
  font-size: 0.98rem;
  color: #CBD5E1;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gclass-banner-subtitle span.divider {
  color: #F5BE38;
}

/* 1. Airport Transfer Card */
.gclass-transfer-card {
  background: rgba(245, 190, 56, 0.08);
  border: 1px solid rgba(245, 190, 56, 0.35);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.gclass-transfer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gclass-transfer-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F5BE38;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gclass-transfer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 3px;
}

.gclass-transfer-sub {
  font-size: 0.82rem;
  color: #94A3B8;
  margin: 0;
}

.gclass-transfer-price-box {
  background: #080E1E;
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 8px 18px;
  border-radius: 10px;
  text-align: right;
}

.gclass-transfer-price-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #F5BE38;
}

.gclass-transfer-price-sub {
  font-size: 0.78rem;
  color: #CBD5E1;
}

/* 2. Dual Package Grid (Self-Drive & Chauffeur) */
.gclass-dual-pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gclass-pkg-card {
  background: rgba(14, 23, 47, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gclass-pkg-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.gclass-pkg-card-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.gclass-pkg-card-title span.diamond {
  color: #F5BE38;
  font-size: 1rem;
}

.gclass-pkg-card-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gclass-pkg-card-badge.gold {
  background: rgba(212, 175, 55, 0.18);
  color: #F5BE38;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.gclass-pkg-card-badge.cyan {
  background: rgba(0, 210, 255, 0.18);
  color: #00D2FF;
  border: 1px solid rgba(0, 210, 255, 0.4);
}

.gclass-pkg-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gclass-pkg-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.gclass-pkg-row:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.35);
}

.gclass-pkg-row.highlight {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.45);
}

.gclass-pkg-row-label {
  display: flex;
  flex-direction: column;
}

.gclass-pkg-row-label strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.gclass-pkg-row-label span {
  font-size: 0.78rem;
  color: #94A3B8;
}

.gclass-pkg-row-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  text-align: right;
}

.gclass-pkg-row.highlight .gclass-pkg-row-price {
  color: #F5BE38;
}

.gclass-inclusive-pill {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #A7F3D0;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* 3. Nationwide Across Thailand Card */
.gclass-nationwide-card {
  background: rgba(14, 23, 47, 0.7);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.gclass-nationwide-info {
  flex: 1;
  min-width: 280px;
}

.gclass-nationwide-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
}

.gclass-nationwide-points {
  margin: 0;
  padding-left: 18px;
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.gclass-nationwide-badge {
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.4);
  color: #00D2FF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* 4. Slogan Signature Footer */
.gclass-slogan-footer {
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.gclass-slogan-big {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #FFF1B8 0%, #F5BE38 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.gclass-slogan-sub {
  font-size: 0.88rem;
  color: #94A3B8;
  margin: 0;
}

/* 5-Package Pricing Matrix Layout for G-Class */
.pricing-rates-grid.gclass-rates-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

@media (max-width: 992px) {
  .gclass-dual-pkg-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-rates-grid.gclass-rates-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gclass-exclusive-banner {
    padding: 18px 14px;
  }
  .gclass-transfer-card {
    padding: 14px;
  }
  .gclass-transfer-price-box {
    width: 100%;
    text-align: left;
  }
  .gallery-thumbs-row {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }
  .pricing-rates-grid.gclass-rates-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== SHOWROOM PRICE SORTING TOOLBAR (COMPACT CAPSULE) ==================== */
.showroom-filter-toolbar-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 10px auto 28px;
  width: 100%;
}

.showroom-filter-toolbar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 25, 48, 0.95) 0%, rgba(6, 12, 24, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50px;
  padding: 6px 14px 6px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 20px rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 50;
}

.sort-selector-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.sort-label {
  font-size: 0.92rem;
  color: #CBD5E1;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.sort-label .spec-icon {
  fill: #F5BE38;
  flex-shrink: 0;
}

/* Custom Luxury Dropdown */
.luxury-sort-dropdown {
  position: relative;
  display: inline-block;
}

.luxury-sort-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #0A1326;
  color: #F5BE38;
  border: 1.5px solid #F5BE38;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 14px rgba(245, 190, 56, 0.45), inset 0 0 8px rgba(245, 190, 56, 0.1);
  transition: all 0.22s ease;
  white-space: nowrap;
}

.luxury-sort-btn:hover,
.luxury-sort-btn.active {
  border-color: #FFD56B;
  box-shadow: 0 0 20px rgba(245, 190, 56, 0.65), inset 0 0 12px rgba(245, 190, 56, 0.2);
  color: #FFFFFF;
}

.luxury-sort-btn .dropdown-arrow-icon {
  fill: #F5BE38;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.luxury-sort-btn.active .dropdown-arrow-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu Popup */
.luxury-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;
  background: #081022;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.luxury-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.luxury-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  color: #E2E8F0;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.luxury-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #F5BE38;
  padding-left: 18px;
}

.luxury-dropdown-item.active {
  background: linear-gradient(135deg, rgba(245, 190, 56, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
  color: #F5BE38;
  font-weight: 700;
  border: 1px solid rgba(245, 190, 56, 0.35);
}

.luxury-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 6px;
}

@media (max-width: 600px) {
  .showroom-filter-toolbar {
    border-radius: 30px;
    padding: 6px 12px;
  }
  .luxury-sort-btn {
    font-size: 0.82rem;
    padding: 6px 14px;
  }
  .luxury-dropdown-menu {
    min-width: 220px;
    right: 0;
  }
}












