/* ==========================================================================
   LJ Detailing - Premium Mobile Auto Detailing Stylesheet
   Brand Theme: Luxury Obsidian & Metallic Gold / Silver
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #08090b;
    --bg-surface: #101216;
    --bg-card: rgba(22, 25, 32, 0.85);
    --bg-card-hover: rgba(30, 34, 44, 0.95);
    --bg-glass: rgba(18, 21, 28, 0.65);
    
    --gold-primary: #d4af37;
    --gold-light: #f5d77f;
    --gold-dark: #aa8521;
    --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #aa8521 100%);
    --gold-glow: rgba(212, 175, 55, 0.35);
    
    --silver-light: #f8fafc;
    --silver-mid: #cbd5e1;
    --silver-dark: #64748b;
    
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.35);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px var(--gold-glow);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.mt-5 { margin-top: 48px; }

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

.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.glass-panel:hover {
    border-color: var(--border-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
    filter: brightness(1.08);
}

.btn-glow {
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
    100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.65); }
}

.btn-secondary {
    background: #ffffff;
    color: #0a0a0c;
}

.btn-secondary:hover {
    background: var(--silver-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Top Announcement Bar */
.top-bar {
    background: #000000;
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item i, .top-contact-link i {
    color: var(--gold-primary);
    margin-right: 6px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-contact-link {
    font-weight: 700;
    color: var(--gold-light);
}

.top-contact-link:hover {
    color: #ffffff;
}

.divider {
    color: var(--border-subtle);
}

.hours-badge {
    color: var(--silver-mid);
}

/* Site Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 9, 11, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
    transition: var(--transition-normal);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-logo-img {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gold-primary);
    object-fit: cover;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    display: block;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 6px 2px;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 16px;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 90px 0 100px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(30, 40, 60, 0.25) 0%, transparent 50%),
                var(--bg-dark);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero_car.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-primary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 34px;
    max-width: 600px;
    line-height: 1.65;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--silver-mid);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    padding: 36px 28px;
    text-align: center;
    border-color: var(--border-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.15);
    max-width: 420px;
    width: 100%;
}

.hero-logo-frame {
    margin: 0 auto 24px auto;
    position: relative;
    width: 220px;
    height: 220px;
}

.hero-emblem-img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero-card-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
}

.meta-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-light);
}

.meta-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.2;
    margin-top: 4px;
    display: block;
}

/* Quick Highlights */
.quick-highlights {
    background: #0d0f14;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 30px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.h-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Section Shared Headers */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* Interactive Before & After Transformations */
.transformations-section {
    background: #090b0e;
}

.comparison-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.tab-btn {
    background: var(--bg-card);
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--text-main);
    border-color: var(--border-gold);
}

.tab-btn.active {
    background: var(--gold-gradient);
    color: #000;
    border-color: var(--gold-primary);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.comparison-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.ba-slider-container {
    display: none;
    animation: fadeIn 0.4s ease;
}

.ba-slider-container.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.ba-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    user-select: none;
    -webkit-user-select: none;
}

.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-resize-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.ba-resize-wrapper .ba-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-width: none;
}

.ba-badge {
    position: absolute;
    top: 20px;
    z-index: 5;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(8px);
}

.badge-before {
    right: 20px;
    background: rgba(220, 38, 38, 0.85);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-after {
    left: 20px;
    background: rgba(16, 185, 129, 0.85);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
    background: var(--gold-light);
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.ba-handle-line {
    width: 100%;
    height: 100%;
    background: var(--gold-light);
}

.ba-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: var(--gold-gradient);
    border: 3px solid #ffffff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #000;
    font-size: 0.75rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 15px var(--gold-glow);
}

.ba-caption {
    margin-top: 20px;
    text-align: center;
    background: var(--bg-card);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.ba-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.ba-caption p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Services Grid */
.services-section {
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img {
    transform: scale(1.06);
}

.service-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.service-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.55;
}

.service-features {
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    font-size: 0.88rem;
    color: var(--silver-mid);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-footer {
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
}

/* Pricing Grid */
.pricing-section {
    background: #0a0c10;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.featured-card {
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
    transform: scale(1.03);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.pricing-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 24px;
}

.pkg-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pkg-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    min-height: 42px;
}

.pkg-price {
    margin-top: 18px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pkg-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
}

.pkg-price .amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.pkg-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pkg-checklist {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pkg-checklist li {
    font-size: 0.88rem;
    color: var(--silver-mid);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pkg-checklist li i {
    color: var(--gold-primary);
    margin-top: 4px;
    font-size: 0.85rem;
}

.addons-bar {
    padding: 24px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.addons-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}

.addons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.addon-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    color: var(--silver-mid);
}

/* Calculator Section */
.estimator-section {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 70%), var(--bg-dark);
}

.calculator-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 44px;
    border-color: var(--border-gold);
}

.calc-label {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.vehicle-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.option-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.option-card input {
    position: absolute;
    opacity: 0;
}

.option-card:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.option-card.active {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.opt-icon {
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 10px;
    display: block;
}

.opt-title {
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.opt-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.package-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pkg-radio-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pkg-radio-card input {
    position: absolute;
    opacity: 0;
}

.pkg-radio-card:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.pkg-radio-card.active {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.pkg-radio-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.radio-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

.radio-price-tag {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.15);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.radio-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.addon-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.addon-checkbox-label input {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.addon-checkbox-label input:checked + .custom-checkbox {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.addon-checkbox-label input:checked + .custom-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #000;
}

.addon-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--silver-mid);
}

.calc-result-box {
    background: #08090b;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.est-label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.est-amount-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.est-currency {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-light);
}

.est-amount {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
}

.est-note {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-left: 10px;
}

.result-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.quick-call-btn {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--silver-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.quick-call-btn:hover {
    color: var(--gold-light);
}

/* About Section */
.about-section {
    background: #090a0d;
}

.about-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.about-logo-card {
    padding: 40px;
    text-align: center;
    border-color: var(--border-gold);
}

.about-emblem-large {
    width: 260px;
    height: 260px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin: 0 auto 24px auto;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.3);
}

.about-founders-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--silver-light);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--silver-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-pillars {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pillar h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.pillar p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-dark);
}

.rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--silver-light);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
}

.reviewer-loc {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
}

/* Service Area & FAQ */
.service-area-section {
    background: #090b0e;
}

.area-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.area-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.city-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-card {
    padding: 24px 28px;
}

.hours-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--silver-mid);
}

.hours-row:last-child {
    margin-bottom: 0;
}

.faq-header-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--border-gold);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    text-align: left;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    color: var(--gold-light);
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

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

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Booking & Contact Section */
.booking-section {
    background: var(--bg-dark);
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    padding: 50px;
    border-color: var(--border-gold);
}

.contact-channels {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.channel-card:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
}

.channel-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--gold-gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.channel-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.channel-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--silver-light);
    display: block;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--silver-mid);
}

.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.booking-success-box {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.4s ease;
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    display: block;
}

.booking-success-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.booking-success-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background: #040507;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gold-primary);
}

.footer-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 380px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-light);
}

.footer-socials a:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--text-dim);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sticky Mobile Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 9, 11, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-gold);
    padding: 10px 16px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.6);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.sticky-call {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid var(--border-subtle);
}

.sticky-book {
    background: var(--gold-gradient);
    color: #000000;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0c0e12;
        border-bottom: 1px solid var(--border-gold);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        display: none;
    }
    
    .nav-links.show {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px auto;
    }
    
    .hero-cta-group,
    .hero-trust-bar {
        justify-content: center;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        transform: none;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .area-container {
        grid-template-columns: 1fr;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar-right .hours-badge,
    .top-bar-right .divider {
        display: none;
    }
    
    .vehicle-options-grid {
        grid-template-columns: 1fr;
    }
    
    .package-options-grid {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .mobile-sticky-bar {
        display: flex;
        gap: 10px;
    }
    
    body {
        padding-bottom: 70px;
    }
}
