/* ==========================================================================
   DetailPro Auto Studio — Dark-Default CSS Architecture
   Bold/Cool mood | Bebas Neue + Archivo + Inter | 6 dark + 4 light themes
   ========================================================================== */

/* --- Default: Dark base (electric-blue-dark) --- */
:root {
    --primary-color: #0066FF;
    --primary-hover: #0050CC;
    --text-on-primary: #ffffff;
    --bg-light: #0A0A1A;
    --navbar-bg: var(--bg-light);
    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
    --font-accent: 'Archivo', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --bs-body-color: #e8e8ea;
    --bs-body-bg: #0A0A1A;
}

/* ==========================================================================
   Color Schemes — 10 data-theme blocks (6 dark, 4 light)
   ========================================================================== */

/* Dark themes — override colors only */
[data-theme="electric-blue-dark"] {
    --primary-color: #0066FF;
    --primary-hover: #0050CC;
    --text-on-primary: #ffffff;
    --bg-light: #0A0A1A;
}

[data-theme="crimson-black"] {
    --primary-color: #DC143C;
    --primary-hover: #B01030;
    --text-on-primary: #ffffff;
    --bg-light: #1A1A1A;
}

[data-theme="yellow-black"] {
    --primary-color: #FFD700;
    --primary-hover: #E5C100;
    --text-on-primary: #000000;
    --bg-light: #0D0D00;
}

[data-theme="orange-dark"] {
    --primary-color: #FF6600;
    --primary-hover: #CC5200;
    --text-on-primary: #ffffff;
    --bg-light: #1A1008;
}

[data-theme="neon-green-black"] {
    --primary-color: #39FF14;
    --primary-hover: #32D912;
    --text-on-primary: #000000;
    --bg-light: #0D0D0D;
}

[data-theme="lime-charcoal"] {
    --primary-color: #AAFF00;
    --primary-hover: #88CC00;
    --text-on-primary: #000000;
    --bg-light: #2D2D2D;
}

/* Light themes — override PLUS reset body/card/navbar */
[data-theme="navy-white"] {
    --primary-color: #1D3557;
    --primary-hover: #0D1B2A;
    --text-on-primary: #ffffff;
    --bg-light: #F8F9FA;
    --navbar-bg: #F8F9FA;
    --bs-body-color: #333;
    --bs-body-bg: #F8F9FA;
}

[data-theme="steel-gray"] {
    --primary-color: #4682B4;
    --primary-hover: #36648B;
    --text-on-primary: #ffffff;
    --bg-light: #F0F4F8;
    --navbar-bg: #F0F4F8;
    --bs-body-color: #333;
    --bs-body-bg: #F0F4F8;
}

[data-theme="slate-white"] {
    --primary-color: #2F4F4F;
    --primary-hover: #1C3030;
    --text-on-primary: #ffffff;
    --bg-light: #FAFAFA;
    --navbar-bg: #FAFAFA;
    --bs-body-color: #333;
    --bs-body-bg: #FAFAFA;
}

[data-theme="charcoal-gold"] {
    --primary-color: #333333;
    --primary-hover: #1A1A1A;
    --text-on-primary: #D4AF37;
    --bg-light: #FAF8F5;
    --navbar-bg: #FAF8F5;
    --bs-body-color: #333;
    --bs-body-bg: #FAF8F5;
}


/* ==========================================================================
   Global Styles — Dark default body
   ========================================================================== */

body {
    font-family: var(--font-body);
    color: #e8e8ea;
    background-color: var(--bg-light);
    transition: background-color 0.3s ease, color 0.3s ease;
    --bs-body-color: #e8e8ea;
    --bs-body-bg: var(--bg-light);
    letter-spacing: 0.01em;
}

/* Signature noise/grain overlay for atmospheric depth */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.025) 0%, transparent 40%),
                      radial-gradient(circle at 80% 80%, var(--primary-color) 0%, transparent 30%);
    opacity: 0.08;
    mix-blend-mode: screen;
}

[data-theme="navy-white"] body::before,
[data-theme="steel-gray"] body::before,
[data-theme="slate-white"] body::before,
[data-theme="charcoal-gold"] body::before {
    display: none;
}

.text-muted {
    color: #adb5bd !important;
}

/* Light theme body overrides */
[data-theme="navy-white"] body,
[data-theme="steel-gray"] body,
[data-theme="slate-white"] body,
[data-theme="charcoal-gold"] body {
    color: #333;
    --bs-body-color: #333;
    --bs-body-bg: var(--bg-light);
}

[data-theme="navy-white"] .text-muted,
[data-theme="steel-gray"] .text-muted,
[data-theme="slate-white"] .text-muted,
[data-theme="charcoal-gold"] .text-muted {
    color: #6c757d !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: var(--font-display);
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 400;
    line-height: 0.95;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

h5, h6, .card-title {
    letter-spacing: 0.03em;
}

/* Monospace / accent font for small stat labels, eyebrows, tags */
.eyebrow {
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: '— ';
}

/* Signature layered outline heading treatment */
.display-outline {
    position: relative;
    display: inline-block;
}

.display-outline::before {
    content: attr(data-text);
    position: absolute;
    top: -0.6em;
    left: -0.15em;
    font-size: 1.5em;
    -webkit-text-stroke: 1px var(--primary-color);
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
}

/* Dark-default: Bootstrap element overrides */
.form-label,
.form-check-label,
.form-text,
.input-group-text,
.accordion-button,
.accordion-body,
.list-group-item,
.table,
.table th,
.table td,
.breadcrumb-item,
.breadcrumb-item a,
.offcanvas-title,
.modal-title,
.modal-body,
.card-title,
.card-text,
label {
    color: inherit;
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #f0f0f0;
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.12);
    color: #f0f0f0;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
}

.accordion {
    --bs-accordion-bg: rgba(255, 255, 255, 0.05);
    --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
    --bs-accordion-color: #f0f0f0;
    --bs-accordion-btn-color: #f0f0f0;
    --bs-accordion-active-color: var(--primary-color);
    --bs-accordion-active-bg: rgba(255, 255, 255, 0.1);
    --bs-accordion-btn-bg: rgba(255, 255, 255, 0.05);
}

.accordion-button {
    background-color: var(--bs-accordion-btn-bg);
    color: var(--bs-accordion-btn-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-accordion-active-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
}

.accordion-body {
    background-color: rgba(255, 255, 255, 0.03);
    color: #f0f0f0;
}

.accordion-item {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.1);
}

.list-group-item {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.1);
}

.table {
    --bs-table-bg: transparent;
    --bs-table-border-color: rgba(255, 255, 255, 0.1);
    --bs-table-striped-bg: rgba(255, 255, 255, 0.03);
}

/* Light theme overrides — reset dark-default form/element styles */
[data-theme="navy-white"] .form-control,
[data-theme="steel-gray"] .form-control,
[data-theme="slate-white"] .form-control,
[data-theme="charcoal-gold"] .form-control,
[data-theme="navy-white"] .form-select,
[data-theme="steel-gray"] .form-select,
[data-theme="slate-white"] .form-select,
[data-theme="charcoal-gold"] .form-select {
    background-color: #fff;
    border-color: #dee2e6;
    color: #333;
}

[data-theme="navy-white"] .form-control::placeholder,
[data-theme="steel-gray"] .form-control::placeholder,
[data-theme="slate-white"] .form-control::placeholder,
[data-theme="charcoal-gold"] .form-control::placeholder {
    color: #6c757d;
}

[data-theme="navy-white"] .form-check-input,
[data-theme="steel-gray"] .form-check-input,
[data-theme="slate-white"] .form-check-input,
[data-theme="charcoal-gold"] .form-check-input {
    background-color: #fff;
    border-color: #dee2e6;
}

[data-theme="navy-white"] .form-control:focus,
[data-theme="steel-gray"] .form-control:focus,
[data-theme="slate-white"] .form-control:focus,
[data-theme="charcoal-gold"] .form-control:focus,
[data-theme="navy-white"] .form-select:focus,
[data-theme="steel-gray"] .form-select:focus,
[data-theme="slate-white"] .form-select:focus,
[data-theme="charcoal-gold"] .form-select:focus {
    background-color: #fff;
    color: #333;
}

[data-theme="navy-white"] .accordion,
[data-theme="steel-gray"] .accordion,
[data-theme="slate-white"] .accordion,
[data-theme="charcoal-gold"] .accordion {
    --bs-accordion-bg: #fff;
    --bs-accordion-border-color: rgba(0, 0, 0, 0.125);
    --bs-accordion-color: #333;
    --bs-accordion-btn-color: #333;
    --bs-accordion-btn-bg: #fff;
    --bs-accordion-active-bg: #f0f0f5;
}

[data-theme="navy-white"] .accordion-button,
[data-theme="steel-gray"] .accordion-button,
[data-theme="slate-white"] .accordion-button,
[data-theme="charcoal-gold"] .accordion-button {
    background-color: #fff;
    color: #333;
}

[data-theme="navy-white"] .accordion-button:not(.collapsed),
[data-theme="steel-gray"] .accordion-button:not(.collapsed),
[data-theme="slate-white"] .accordion-button:not(.collapsed),
[data-theme="charcoal-gold"] .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #f0f0f5;
}

[data-theme="navy-white"] .accordion-button::after,
[data-theme="steel-gray"] .accordion-button::after,
[data-theme="slate-white"] .accordion-button::after,
[data-theme="charcoal-gold"] .accordion-button::after,
[data-theme="navy-white"] .accordion-button:not(.collapsed)::after,
[data-theme="steel-gray"] .accordion-button:not(.collapsed)::after,
[data-theme="slate-white"] .accordion-button:not(.collapsed)::after,
[data-theme="charcoal-gold"] .accordion-button:not(.collapsed)::after {
    filter: none;
}

[data-theme="navy-white"] .accordion-body,
[data-theme="steel-gray"] .accordion-body,
[data-theme="slate-white"] .accordion-body,
[data-theme="charcoal-gold"] .accordion-body {
    background-color: #fff;
    color: #333;
}

[data-theme="navy-white"] .accordion-item,
[data-theme="steel-gray"] .accordion-item,
[data-theme="slate-white"] .accordion-item,
[data-theme="charcoal-gold"] .accordion-item {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.125);
}

[data-theme="navy-white"] .list-group-item,
[data-theme="steel-gray"] .list-group-item,
[data-theme="slate-white"] .list-group-item,
[data-theme="charcoal-gold"] .list-group-item {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.125);
}

[data-theme="navy-white"] .table,
[data-theme="steel-gray"] .table,
[data-theme="slate-white"] .table,
[data-theme="charcoal-gold"] .table {
    --bs-table-bg: #fff;
    --bs-table-border-color: #dee2e6;
    --bs-table-striped-bg: #f8f9fa;
}


/* ==========================================================================
   Bootstrap Overrides
   ========================================================================== */

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

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn {
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-on-primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary.active,
.btn-outline-primary:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-on-primary);
}

.border-primary {
    border-color: var(--primary-color) !important;
}


/* ==========================================================================
   Cards — Dark default, light theme overrides
   ========================================================================== */

.card {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
}

[data-theme="navy-white"] .card,
[data-theme="steel-gray"] .card,
[data-theme="slate-white"] .card,
[data-theme="charcoal-gold"] .card {
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.125);
    color: #333;
}

.card a.text-dark {
    color: #f0f0f0 !important;
}

[data-theme="navy-white"] .card a.text-dark,
[data-theme="steel-gray"] .card a.text-dark,
[data-theme="slate-white"] .card a.text-dark,
[data-theme="charcoal-gold"] .card a.text-dark {
    color: #333 !important;
}


/* ==========================================================================
   Hero Section — Cinematic fullwidth with overlay
   ========================================================================== */

.hero-section {
    background: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.3) 100%),
        linear-gradient(to top, var(--bg-light) 0%, transparent 25%);
    z-index: 1;
}

/* Diagonal racing-stripe accent behind hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 40%;
    height: 100%;
    background: linear-gradient(115deg, transparent 48%, var(--primary-color) 48%, var(--primary-color) 52%, transparent 52%);
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
}

/* Hero vertical accent bar */
.hero-content {
    position: relative;
    padding-left: 2rem;
    max-width: 820px;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2rem;
    bottom: 2rem;
    width: 4px;
    background: var(--primary-color);
    box-shadow: 0 0 30px var(--primary-color);
}

.hero-section h1 {
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.88;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-section h1 .accent {
    display: block;
    color: var(--primary-color);
    font-style: italic;
    position: relative;
}

.hero-section h1 .accent::after {
    content: '';
    display: inline-block;
    width: 0.6em;
    height: 0.08em;
    background: var(--primary-color);
    vertical-align: middle;
    margin-left: 0.3em;
    box-shadow: 0 0 20px var(--primary-color);
}

.hero-section .hero-tagline {
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-section .hero-tagline::before {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--primary-color);
}

.hero-section p.hero-lead {
    font-size: 1.15rem;
    max-width: 560px;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
}

/* VIN-style hero stamp — rotated */
.hero-stamp {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 140px;
    height: 140px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    z-index: 2;
    transform: rotate(-12deg);
    box-shadow: 0 0 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    line-height: 1.2;
}

.hero-stamp::before,
.hero-stamp::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .hero-stamp { display: none; }
}


/* ==========================================================================
   Trust Counter Strip
   ========================================================================== */

.counter-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-section .counter-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.counter-section .counter-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ==========================================================================
   Process Timeline
   ========================================================================== */

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step .step-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-connector {
    position: absolute;
    top: 30px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
}

[data-theme="navy-white"] .process-connector,
[data-theme="steel-gray"] .process-connector,
[data-theme="slate-white"] .process-connector,
[data-theme="charcoal-gold"] .process-connector {
    background: rgba(0, 0, 0, 0.15);
}


/* ==========================================================================
   Page Header — Inner pages
   ========================================================================== */

.page-header {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 3rem 0;
    margin-top: 56px;
}


/* ==========================================================================
   Section Titles
   ========================================================================== */

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}


/* ==========================================================================
   Navbar — Dark-default
   ========================================================================== */

.navbar {
    background-color: var(--navbar-bg) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

[data-theme="navy-white"] .navbar,
[data-theme="steel-gray"] .navbar,
[data-theme="slate-white"] .navbar,
[data-theme="charcoal-gold"] .navbar {
    border-bottom-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

[data-theme="navy-white"] .navbar .nav-link,
[data-theme="steel-gray"] .navbar .nav-link,
[data-theme="slate-white"] .navbar .nav-link,
[data-theme="charcoal-gold"] .navbar .nav-link {
    color: rgba(0, 0, 0, 0.65) !important;
}

[data-theme="navy-white"] .navbar .nav-link:hover,
[data-theme="steel-gray"] .navbar .nav-link:hover,
[data-theme="slate-white"] .navbar .nav-link:hover,
[data-theme="charcoal-gold"] .navbar .nav-link:hover,
[data-theme="navy-white"] .navbar .nav-link.active,
[data-theme="steel-gray"] .navbar .nav-link.active,
[data-theme="slate-white"] .navbar .nav-link.active,
[data-theme="charcoal-gold"] .navbar .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar .nav-link {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.nav-link.active {
    color: var(--primary-color) !important;
}


/* ==========================================================================
   Product / Service Cards
   ========================================================================== */

.product-card {
    transition: transform 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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


/* ==========================================================================
   Service Cards
   ========================================================================== */

.service-card {
    transition: transform 0.3s ease;
    padding: 2rem;
}

.service-card:hover {
    transform: translateY(-5px);
}



/* ==========================================================================
   Pricing Cards
   ========================================================================== */

.pricing-card {
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-card .badge-recommended {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 4px 16px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ==========================================================================
   Before/After Gallery
   ========================================================================== */

.gallery-card {
    overflow: hidden;
}

.gallery-card .before-after-container {
    display: flex;
}

.gallery-card .before-after-container img {
    width: 50%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover .before-after-container img {
    transform: scale(1.05);
}

.gallery-card .service-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 4px 12px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gallery-item {
    overflow: hidden;
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* ==========================================================================
   Fleet Page
   ========================================================================== */

.client-logo {
    height: 60px;
    opacity: 0.5;
    filter: grayscale(100%) brightness(2);
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

[data-theme="navy-white"] .client-logo,
[data-theme="steel-gray"] .client-logo,
[data-theme="slate-white"] .client-logo,
[data-theme="charcoal-gold"] .client-logo {
    filter: grayscale(100%);
}


/* ==========================================================================
   Theme Switcher — Dark panel
   ========================================================================== */

.theme-switcher {
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 1050;
}

#theme-toggle-btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 10px 15px;
    font-size: 1.2rem;
    cursor: pointer;
}

.theme-panel {
    position: absolute;
    right: 100%;
    top: 0;
    width: 200px;
    background: #0A0A1A;
    padding: 15px;
    border-radius: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    display: none;
}

.theme-panel.active {
    display: block;
}

.theme-panel h6 {
    color: #f0f0f0;
}

.color-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
}

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


/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination .page-link {
    color: var(--primary-color);
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.12);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-on-primary);
}

.pagination .page-link:hover {
    color: var(--primary-hover);
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="navy-white"] .pagination .page-link,
[data-theme="steel-gray"] .pagination .page-link,
[data-theme="slate-white"] .pagination .page-link,
[data-theme="charcoal-gold"] .pagination .page-link {
    background-color: #fff;
    border-color: #dee2e6;
}


/* ==========================================================================
   Divider
   ========================================================================== */

.divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

[data-theme="navy-white"] .divider,
[data-theme="steel-gray"] .divider,
[data-theme="slate-white"] .divider,
[data-theme="charcoal-gold"] .divider {
    border-top-color: rgba(0, 0, 0, 0.1);
}


/* ==========================================================================
   Footer
   ========================================================================== */

footer a:hover {
    color: white !important;
    text-decoration: underline !important;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
}


/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
    border-left: 4px solid var(--primary-color);
}

.testimonial-card .fa-quote-left {
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 2rem;
}


/* ==========================================================================
   Cart Styles
   ========================================================================== */

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}


/* ==========================================================================
   Counter Section (dark variant)
   ========================================================================== */

[data-theme="navy-white"] .counter-section,
[data-theme="steel-gray"] .counter-section,
[data-theme="slate-white"] .counter-section,
[data-theme="charcoal-gold"] .counter-section {
    background-color: rgba(0, 0, 0, 0.03);
    border-top-color: rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}


/* ==========================================================================
   PERSONALITY LAYER — Signature DetailPro treatments
   ========================================================================== */

/* ---- Buttons: Skewed, arrow-trailing, glow on hover ---- */
.btn {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    border-radius: 0;
    padding: 0.9rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
    border-width: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-on-primary);
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: 0 8px 30px -5px var(--primary-color);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    box-shadow: 0 8px 30px -5px var(--primary-color);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

/* Signature arrow treatment — reserved for large primary CTAs (hero, CTA section, form submits, Add to Cart) */
.btn-lg.btn-primary,
.btn-lg.btn-outline-primary {
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    padding-right: 2.8rem;
}

.btn-lg.btn-primary:hover,
.btn-lg.btn-outline-primary:hover {
    transform: translateX(3px);
}

/* Nav "Book Now" button — compact padding override */
.navbar .btn-primary {
    padding: 0.45rem 1.25rem;
    font-size: 0.85rem;
}

/* ---- Counter Section: Racing tachometer feel ---- */
.counter-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 3rem 0;
    position: relative;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.5;
}

.counter-section .counter-item {
    position: relative;
    padding: 0 1.5rem;
}

.counter-section .counter-item + .counter-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

[data-theme="navy-white"] .counter-section .counter-item + .counter-item::before,
[data-theme="steel-gray"] .counter-section .counter-item + .counter-item::before,
[data-theme="slate-white"] .counter-section .counter-item + .counter-item::before,
[data-theme="charcoal-gold"] .counter-section .counter-item + .counter-item::before {
    background: rgba(0,0,0,0.1);
}

.counter-section .counter-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
    text-shadow: 0 0 40px var(--primary-color);
}

.counter-section .counter-label {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
}

[data-theme="navy-white"] .counter-section .counter-label,
[data-theme="steel-gray"] .counter-section .counter-label,
[data-theme="slate-white"] .counter-section .counter-label,
[data-theme="charcoal-gold"] .counter-section .counter-label {
    color: rgba(0,0,0,0.55);
}

/* ---- Process Steps: Giant numbered badges ---- */
.process-step {
    text-align: left;
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.5);
}

[data-theme="navy-white"] .process-step,
[data-theme="steel-gray"] .process-step,
[data-theme="slate-white"] .process-step,
[data-theme="charcoal-gold"] .process-step {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.08);
    border-top-color: var(--primary-color);
}

.process-step .step-number {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--primary-color);
    display: block;
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 1rem 0;
    opacity: 0.9;
    text-shadow: 0 0 30px var(--primary-color);
}

.process-step .step-number::before {
    content: '0';
    opacity: 0.4;
}

.process-step .step-icon {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.process-step h5 {
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.process-connector { display: none; }

/* ---- Service Cards: Accent border + hover glow ---- */
.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    padding: 2.5rem 2rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.15);
}

[data-theme="navy-white"] .service-card,
[data-theme="steel-gray"] .service-card,
[data-theme="slate-white"] .service-card,
[data-theme="charcoal-gold"] .service-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.08);
}

[data-theme="navy-white"] .service-card:hover,
[data-theme="steel-gray"] .service-card:hover,
[data-theme="slate-white"] .service-card:hover,
[data-theme="charcoal-gold"] .service-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.15);
}

.service-card .service-icon {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    line-height: 1;
}

.service-card .service-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px dashed var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0.5;
}

[data-theme="navy-white"] .service-card .service-icon,
[data-theme="steel-gray"] .service-card .service-icon,
[data-theme="slate-white"] .service-card .service-icon,
[data-theme="charcoal-gold"] .service-card .service-icon {
    border-color: rgba(0,0,0,0.1);
}

/* ---- Section titles: Layered + eyebrow ---- */
section {
    position: relative;
    overflow: hidden;
}

.section-title {
    position: relative;
    display: block;
    padding-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.section-title::after {
    display: none;
}

.section-header {
    margin-bottom: 3.5rem;
    position: relative;
}

.section-header .section-eyebrow {
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.section-header .section-eyebrow::before,
.section-header .section-eyebrow::after {
    content: '';
    width: 35px;
    height: 1px;
    background: var(--primary-color);
}

.section-header h2 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: rgba(255,255,255,0.6);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
}

[data-theme="navy-white"] .section-header p,
[data-theme="steel-gray"] .section-header p,
[data-theme="slate-white"] .section-header p,
[data-theme="charcoal-gold"] .section-header p {
    color: rgba(0,0,0,0.65);
}

/* ---- Signature oversized watermark text behind sections ---- */
.section-watermark {
    position: absolute;
    top: 2rem;
    right: 0;
    font-family: var(--font-display);
    font-size: clamp(8rem, 18vw, 20rem);
    font-weight: 400;
    line-height: 0.8;
    color: rgba(255,255,255,0.025);
    letter-spacing: -0.03em;
    pointer-events: none;
    z-index: 0;
    text-transform: uppercase;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .section-watermark {
        display: none;
    }
}

[data-theme="navy-white"] .section-watermark,
[data-theme="steel-gray"] .section-watermark,
[data-theme="slate-white"] .section-watermark,
[data-theme="charcoal-gold"] .section-watermark {
    color: rgba(0,0,0,0.035);
}

section .container {
    position: relative;
    z-index: 1;
}

/* ---- Testimonial: Card with quote glyph ---- */
.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--primary-color);
    padding: 2.25rem;
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -1.5rem;
    right: 1.5rem;
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.15;
}

[data-theme="navy-white"] .testimonial-card,
[data-theme="steel-gray"] .testimonial-card,
[data-theme="slate-white"] .testimonial-card,
[data-theme="charcoal-gold"] .testimonial-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.08);
    border-left-color: var(--primary-color);
}

/* ---- Gallery card polish ---- */
.gallery-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px -15px rgba(0,0,0,0.7);
}

.gallery-card .before-after-container {
    position: relative;
}

.gallery-card .before-after-container::after {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: var(--text-on-primary);
    font-family: var(--font-display);
    font-size: 0.9rem;
    padding: 0.4rem 0.85rem;
    letter-spacing: 0.1em;
    z-index: 2;
    box-shadow: 0 0 30px var(--primary-color);
}

.gallery-card .card-body {
    padding: 1.5rem;
}

/* ---- Section CTA band with angular cut ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--text-on-primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(115deg, transparent 48%, rgba(255,255,255,0.1) 48%, rgba(255,255,255,0.1) 52%, transparent 52%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--text-on-primary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: #fff;
    background: transparent;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    padding-right: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--font-display);
    font-weight: 400;
}

.cta-section .btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
}

/* ---- Footer polish ---- */
footer {
    background: #05050f !important;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.4;
}

footer h5 {
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.navbar-brand i {
    color: var(--primary-color);
}

/* ---- Page Header angular ---- */
.page-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(0,0,0,0.8) 100%);
    color: var(--text-on-primary);
    padding: 6rem 0 4rem;
    margin-top: 56px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 30%;
    height: 100%;
    background: linear-gradient(115deg, transparent 48%, var(--primary-color) 48%, var(--primary-color) 52%, transparent 52%);
    opacity: 0.12;
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: inherit;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    box-shadow: 0 0 20px var(--primary-color);
}

.page-header p {
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    position: relative;
}

[data-theme="navy-white"] .page-header,
[data-theme="steel-gray"] .page-header,
[data-theme="slate-white"] .page-header,
[data-theme="charcoal-gold"] .page-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(0,0,0,0.05) 100%);
    border-bottom-color: rgba(0,0,0,0.08);
}

[data-theme="navy-white"] .page-header p,
[data-theme="steel-gray"] .page-header p,
[data-theme="slate-white"] .page-header p,
[data-theme="charcoal-gold"] .page-header p {
    color: rgba(0,0,0,0.5);
}

/* ---- Product Card polish ---- */
.product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.6);
}

[data-theme="navy-white"] .product-card,
[data-theme="steel-gray"] .product-card,
[data-theme="slate-white"] .product-card,
[data-theme="charcoal-gold"] .product-card {
    background: #fff;
    border-color: rgba(0,0,0,0.08);
}

[data-theme="navy-white"] .product-card:hover,
[data-theme="steel-gray"] .product-card:hover,
[data-theme="slate-white"] .product-card:hover,
[data-theme="charcoal-gold"] .product-card:hover {
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.15);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title,
.product-card h6 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.product-card .badge,
.product-card .service-badge,
.gallery-card .service-badge {
    background: var(--primary-color);
    color: var(--text-on-primary);
    padding: 0.35rem 0.85rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

/* ---- Form controls polish ---- */
.form-control,
.form-select {
    border-radius: 0;
    padding: 0.75rem 1rem;
    border-width: 1px;
    transition: all 0.25s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.form-label {
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

[data-theme="navy-white"] .form-label,
[data-theme="steel-gray"] .form-label,
[data-theme="slate-white"] .form-label,
[data-theme="charcoal-gold"] .form-label {
    color: rgba(0,0,0,0.7);
}

/* ---- FAQ accordion polish ---- */
.accordion-item {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    margin-bottom: 0.75rem;
    border-radius: 0 !important;
}

.accordion-button {
    background: transparent !important;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

[data-theme="navy-white"] .accordion-body,
[data-theme="steel-gray"] .accordion-body,
[data-theme="slate-white"] .accordion-body,
[data-theme="charcoal-gold"] .accordion-body {
    color: rgba(0,0,0,0.7);
}

/* ---- Pricing Card polish ---- */
.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    background: rgba(255,255,255,0.06);
    border: 2px solid var(--primary-color);
    transform: scale(1.03);
    box-shadow: 0 20px 60px -15px var(--primary-color);
}

[data-theme="navy-white"] .pricing-card,
[data-theme="steel-gray"] .pricing-card,
[data-theme="slate-white"] .pricing-card,
[data-theme="charcoal-gold"] .pricing-card {
    background: #fff;
    border-color: rgba(0,0,0,0.08);
}

.pricing-card .price {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 4vw, 3.75rem);
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 30px var(--primary-color);
}

.pricing-card h4 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
}

/* ---- Misc utility ---- */
.text-primary { color: var(--primary-color) !important; }

.bg-primary-soft {
    background: rgba(0,102,255,0.08);
}

/* Prevent pseudo-element grain from intercepting clicks */
main, nav, footer, section, .navbar, .theme-switcher {
    position: relative;
    z-index: 2;
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .card-img-top {
        height: 200px;
    }

    .page-header {
        padding: 2rem 0;
    }

    .counter-section .counter-number {
        font-size: 2rem;
    }

    .gallery-card .before-after-container img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
}
