/* Ultra-Luxury Global Styles for King of Pawn — fonts loaded via preload in HTML head */
/* Ultra-Luxury Global Styles for King of Pawn */

:root {
  /* Hyper-Luxury Palette */
  --bg-dark: #161920;      /* Matte Obsidian */      /* Pure Black */
  --bg-card: rgba(5, 10, 20, 0.6); /* Darker Translucent Sapphire */
  --card-border: rgba(255, 215, 0, 0.25); /* Vibrant gold border */
  --text-primary: #ffffff; /* Pure white */
  --text-muted: #a0aec0;   /* Silver-blue for secondary text */
  --gold-primary: #FFD700; /* Vibrant Pure Gold */
  --gold-light: #FFE55C;
  --gold-accent: #FFA500;
  --gold-champagne: #D4AF37;  /* Champagne Gold — brand focus-state colour */
  --gold-champagne-ring: rgba(212, 175, 55, 0.35);
  --blue-glow: rgba(15, 30, 80, 0.6); /* Darker sapphire aura glow */
  
  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Cinzel', 'Playfair Display', serif; /* Vintage logo font */
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  /* Luxurious ambient lighting effects in the background */
  background-image: 
    radial-gradient(circle at 15% 30%, rgba(30, 58, 138, 0.10), transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.06), transparent 35%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* Metallic Gold Text Gradient for ultimate pop */
.highlight, .logo {
  background: linear-gradient(to right, #FFD700, #FFF8DC, #FFA500, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-primary);
  display: inline-block;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fcd34d, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-primary);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.15rem;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

/* Buttons - High End Look */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px; /* Pill shape for elegance */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
  color: #000;
  border: 1px solid #fcf6ba;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fcf6ba 0%, #d4af37 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

/* Keyboard focus for buttons. The ring is offset clear of the gold fill so it
   reads against the dark background instead of blending into the gradient. */
.btn:focus-visible,
.submit-btn:focus-visible {
  outline: 2px solid var(--gold-champagne);
  outline-offset: 3px;
}

.btn-outline {
  background-color: rgba(212, 175, 55, 0.05);
  color: #d4af37;
  border: 1px solid #d4af37;
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background-color: rgba(212, 175, 55, 0.15);
  color: #fcf6ba;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

/* Navigation */
.navbar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar .logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-logo {
  height: 60px;
  width: auto;
  transition: height 0.3s ease;
}

/* Top Banner & Contact Bar */
.top-announcement-banner {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.top-contact-bar {
  background-color: #111;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}
.top-contact-bar a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  margin: 0 0.5rem;
}
.top-contact-bar a:hover {
  color: #FFF;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

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

.hero-calculator {
  flex: 0.8;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 2;
  position: relative;
  width: 100%;
}

.calc-title {
  font-family: var(--font-heading);
  color: var(--gold-primary);
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
  text-align: center;
  border-bottom: 1px dashed var(--card-border);
  padding-bottom: 0.8rem;
}

.calc-form-group {
  margin-bottom: 1rem;
}

.calc-form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.calc-control {
  width: 100%;
  box-sizing: border-box;
  background: #111;
  border: 1px solid var(--card-border);
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-size: 0.95rem;
  outline: none;
  font-family: var(--font-main);
  transition: border-color 0.2s ease;
}

/* iOS Safari paints its own inset shadow on text fields, which washes out the
   custom gold border. Reset it, but leave <select> alone so it keeps its arrow. */
.calc-control:not(select),
.form-control:not(select) {
  -webkit-appearance: none;
  appearance: none;
}

.calc-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* Champagne gold focus state. A 1px border-colour shift alone is not
   perceivable on a phone, so focus draws a solid ring plus a soft halo.
   The ring uses box-shadow because it follows the field's border-radius on
   every iOS Safari version; outline is kept transparent purely so forced-colors
   and Windows High Contrast modes, which discard shadows, still show focus. */
.calc-control:focus,
.form-control:focus {
  border-color: var(--gold-champagne);
  box-shadow: 0 0 0 2px var(--gold-champagne),
              0 0 0 6px var(--gold-champagne-ring);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  /* 16px minimum stops iOS Safari zooming the viewport on focus, which used to
     scroll the focused field (and its gold ring) off-screen. */
  .calc-control,
  .form-control {
    font-size: 16px;
    padding: 0.7rem 0.85rem;
  }
  /* Thicker ring and denser halo so the focused field stays obvious on a
     small, often sun-lit screen. Stays within the 1rem container padding. */
  .calc-control:focus,
  .form-control:focus {
    box-shadow: 0 0 0 3px var(--gold-champagne),
                0 0 0 7px rgba(212, 175, 55, 0.5);
  }
}

.calc-result-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  margin-top: 1.2rem;
}

.calc-result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-result-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin: 0.3rem 0;
}

@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem 0;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-calculator {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
  }
}

/* Glassmorphism Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3.5rem 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px var(--blue-glow), 0 0 25px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(15, 23, 50, 0.7);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(to right, #bf953f, #fcf6ba);
  -webkit-background-clip: text;
  background-clip: text;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4rem;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

/* Make inline styles from HTML pop more */
strong {
  color: #ffffff;
  font-weight: 600;
}

/* Footer */
footer {
  background: linear-gradient(to bottom, transparent, #010205);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.footer-col p, .footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

/* Scroll shrink effect */
.sticky-header.scrolled .navbar {
  padding: 0.5rem 0;
  gap: 0.5rem;
}
.sticky-header.scrolled .main-logo {
  height: 45px !important;
}

/* Floating Quick Text Bubble */
.floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #FFD700, rgba(255, 215, 0, 0.1));
  border-radius: 4px;
}
.timeline-step {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}
.timeline-step::before {
  content: '';
  position: absolute;
  top: 5px;
  left: -29px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #000;
  border: 4px solid #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.timeline-step h3 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
details.faq-item:hover {
  background: rgba(15, 23, 50, 0.8);
}
details.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  outline: none;
  position: relative;
  padding-right: 2rem;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
details.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
details.faq-item[open] summary::after {
  content: '−';
}
details.faq-item p {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 1.85rem !important; line-height: 1.25 !important; }
  h2 { font-size: 1.5rem !important; line-height: 1.25 !important; }
  h3 { font-size: 1.25rem !important; }
  p { font-size: 0.95rem !important; line-height: 1.5 !important; margin-bottom: 0.85rem !important; }
  
  /* Make navbar compact and horizontally scrollable on mobile */
  .navbar { flex-direction: column; padding: 0.5rem 0 0 0; gap: 0.35rem; width: 100%; }
  .main-logo { height: 40px !important; }
  .navbar .logo { font-size: 1.1rem !important; }
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 0.35rem 0.75rem !important;
    gap: 1rem !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 0;
  }
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  .nav-links li {
    flex: 0 0 auto !important;
  }
  .nav-links a { font-size: 0.88rem; padding: 0.2rem 0.4rem; display: block; }
  .nav-btn { padding: 0.35rem 0.65rem !important; font-size: 0.8rem; }
  .showroom-link { width: 100%; text-align: center; display: block; margin-top: 0.5rem; }
  
  .hero { min-height: auto !important; text-align: center; padding: 1.5rem 0 !important; gap: 1.5rem !important; }
  .hero-content { margin: 0 auto; width: 100%; }
  .hero-content h1 { font-size: 1.85rem !important; margin-bottom: 0.75rem !important; }
  .hero-content p { font-size: 0.95rem !important; margin-bottom: 1rem !important; }
  
  /* Target ONLY button CTA group inside hero content */
  .hero-content .hero-cta-group {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.65rem !important;
    margin-top: 1.25rem !important;
  }
  .hero-content .btn {
    width: 100% !important;
    margin: 0 !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.95rem !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* Responsive styling for Google Reviews badge & widget above H1 */
  #google-reviews-header-widget {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    gap: 0.5rem !important;
  }
  #google-reviews-header-widget a {
    max-width: 100% !important;
    font-size: 0.8rem !important;
    padding: 0.35rem 0.75rem !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: break-word !important;
    box-sizing: border-box !important;
  }

  /* Ensure Trustindex containers scale to 100% width and never cause overflow */
  #google-reviews-widget-container, #instagram-widget-container, .trustindex-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  #google-reviews-widget-container *, #instagram-widget-container * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-calculator {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.25rem 1rem !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  
  /* Fix paddings that squish content */
  .glass-panel { padding: 1.25rem 1rem !important; margin-bottom: 1.25rem !important; border-radius: 12px !important; }
  .section { padding: 2rem 0 !important; }
  .container { padding: 0 0.85rem !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
  
  /* Force all inline 2-column & multi-column grids to stack vertically on mobile */
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: repeat(auto-fit"],
  div[style*="grid-template-columns: repeat(3,"],
  div[style*="grid-template-columns: repeat(4,"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Prevent bottom fixed sticky bar from obscuring content */
  body {
    padding-bottom: 80px !important;
  }
  
  /* Make top banner slim on mobile */
  .top-announcement-banner {
    padding: 0.35rem !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.5px;
    line-height: 1.3 !important;
  }

  /* Disable text gradients on mobile to prevent browser force-dark mode inversion bugs */
  .highlight, .logo, h2 {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: var(--gold-primary) !important;
    color: var(--gold-primary) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2) !important;
  }
}

/* WhatsApp Floating Button */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* Map Embed Container styles */
.map-embed-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
    height: 450px;
    width: 100%;
}
.map-embed-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: invert(90%) hue-rotate(180deg) grayscale(30%);
}

/* Mobile Bottom Sticky Bar Styles */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 215, 0, 0.25);
    z-index: 99999;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  }
  
  .mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .sms-btn {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-primary);
    border: 1px solid var(--card-border);
  }
  
  .call-btn {
    background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
    color: #000;
    border: 1px solid #fcf6ba;
  }
  
  .whatsapp-float {
    bottom: 95px !important;
  }
  
  body {
    padding-bottom: 70px !important;
  }
}

/* ==========================================
   UPDATED/NEW UI MODULES FOR KING OF PAWN
   ========================================== */

/* Hero Video Background */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  opacity: 0.15; /* Subdued background opacity */
  pointer-events: none;
  contain: strict;
  aspect-ratio: 16 / 9;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  display: block;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: -2rem;
  margin-bottom: 4rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  position: relative;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.stat-card h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  color: var(--gold-primary);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.stat-card p {
  margin-bottom: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Repayment Calculator & Booking Cards Grid */
.calc-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.calc-card, .booking-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

/* Slider Design */
.slider-container {
  margin: 2rem 0;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #1a1a1a;
  outline: none;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #aa771c);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  border: 1px solid #fff;
}

/* Booking Forms */
.booking-form-group {
  margin-bottom: 1.25rem;
}

.booking-form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: var(--font-main);
  outline: none;
  box-sizing: border-box;
}

.booking-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* Luxury Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  font-size: 1.05rem;
}

.comparison-table th {
  background: rgba(255, 215, 0, 0.05);
  color: var(--gold-primary);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.1rem;
}

.comparison-table tr:hover {
  background: rgba(255, 215, 0, 0.02);
}

/* Reviews Carousel */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.15);
}

.stars {
  color: var(--gold-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-primary);
}

.review-source {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

/* Suburbs Service Area Section */
.suburbs-section {
  background: rgba(255, 215, 0, 0.02);
  border-top: 1px dashed rgba(255, 215, 0, 0.15);
  border-bottom: 1px dashed rgba(255, 215, 0, 0.15);
  padding: 4rem 0;
  margin-top: 5rem;
}

.suburbs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.suburbs-column h4 {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.suburbs-column ul {
  list-style: none;
  padding: 0;
}

.suburbs-column li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.suburbs-column li::before {
  content: '📍';
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .calc-booking-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .suburbs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .suburbs-grid {
    grid-template-columns: 1fr;
  }
}



/* ── Minimalist Input Style: bottom-border only, gold focus ── */
.qf-control,
.qf-control:is(select, textarea) {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 0;
  color: #f5f5f7;
  padding: 0.7rem 0.25rem;
  font-size: 1rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.qf-control::placeholder { color: rgba(255,255,255,0.3); }
.qf-control:focus { border-bottom-color: var(--gold-primary); }
.qf-control option { background: #161920; color: #f5f5f7; }

/* Unified form-group spacing */
.qf-group { margin-bottom: 1.4rem; }
.qf-group label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(212, 175, 55, 0.7);
  margin-bottom: 0.3rem;
}
