/*--------------------------------------------------------------
# PRESTIGE THEME — "Black Onyx & Liquid Gold"
# Ultra-premium dark luxury aesthetic
# Inspired by Audemars Piguet, Aman Hotels, Rolls-Royce
# For VOZEL Premium Chauffeur Service
--------------------------------------------------------------*/

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════ */
:root {
    /* Core palette */
    --prestige-bg-primary: #060606;
    --prestige-bg-secondary: #0D0D0D;
    --prestige-bg-card: #141414;
    --prestige-bg-elevated: #1C1C1C;

    --prestige-gold: #C8A855;
    --prestige-gold-light: #D4B86A;
    --prestige-gold-pale: #E8D9A0;
    --prestige-gold-dark: #A8893A;

    --prestige-text-primary: #F2F0EB;
    --prestige-text-secondary: #8A8A8A;
    --prestige-text-muted: #555555;

    --prestige-overlay: rgba(6, 6, 6, 0.75);
    --prestige-divider: rgba(200, 168, 85, 0.12);
    --prestige-border-subtle: rgba(255, 255, 255, 0.04);

    /* Firefly aliases (Razor uses firefly- HTML classes) */
    --firefly-bg-primary: var(--prestige-bg-primary);
    --firefly-bg-secondary: var(--prestige-bg-secondary);
    --firefly-bg-card: var(--prestige-bg-card);
    --firefly-bg-elevated: var(--prestige-bg-elevated);
    --firefly-gold: var(--prestige-gold);
    --firefly-gold-light: var(--prestige-gold-light);
    --firefly-gold-dark: var(--prestige-gold-dark);
    --firefly-text-primary: var(--prestige-text-primary);
    --firefly-text-secondary: var(--prestige-text-secondary);
    --firefly-text-muted: var(--prestige-text-muted);
    --firefly-overlay: var(--prestige-overlay);
    --firefly-divider: var(--prestige-divider);
    --firefly-border: var(--prestige-divider);
    --firefly-shadow-card: 0 8px 32px rgba(0,0,0,0.6);
    --firefly-shadow-hover: 0 16px 48px rgba(0,0,0,0.7);
    --firefly-shadow-gold-glow: 0 0 40px rgba(200,168,85,0.1), 0 0 80px rgba(200,168,85,0.05);
    --firefly-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows & motion */
    --prestige-shadow-card: 0 8px 32px rgba(0,0,0,0.6);
    --prestige-shadow-hover: 0 16px 48px rgba(0,0,0,0.7);
    --prestige-shadow-gold-glow: 0 0 40px rgba(200,168,85,0.1), 0 0 80px rgba(200,168,85,0.05);
    --prestige-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --prestige-transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);

    /* Spacing */
    --prestige-space-xs: 0.5rem;
    --prestige-space-sm: 1rem;
    --prestige-space-md: 1.5rem;
    --prestige-space-lg: 2.5rem;
    --prestige-space-xl: 4rem;
    --prestige-space-2xl: 6rem;
    --prestige-space-3xl: 8rem;

    /* Radius */
    --prestige-radius-sm: 2px;
    --prestige-radius-md: 4px;
    --prestige-radius-lg: 8px;
    --prestige-radius-xl: 12px;

    /* Override main.css */
    --heading-color: var(--prestige-gold);
    --default-color: var(--prestige-text-secondary);
    --background-color: var(--prestige-bg-primary);
    --surface-color: var(--prestige-bg-card);
    --accent-color: var(--prestige-gold);
    --accent-color-rgb: 200, 168, 85;
    --nav-color: var(--prestige-text-secondary);
    --nav-hover-color: var(--prestige-gold);
    --nav-mobile-background-color: var(--prestige-bg-primary);
    --nav-dropdown-background-color: var(--prestige-bg-secondary);
    --nav-dropdown-color: var(--prestige-text-secondary);
    --nav-dropdown-hover-color: var(--prestige-gold);
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL FOUNDATION
   ═══════════════════════════════════════════════════════════ */
body {
    background-color: var(--prestige-bg-primary);
    color: var(--prestige-text-secondary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--prestige-gold);
    color: var(--prestige-bg-primary);
}

.website-section > .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.website-section {
    padding-left: 0;
    padding-right: 0;
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY — Refined & Commanding
   ═══════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    color: var(--prestige-gold);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.04em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 500;
}

p {
    color: var(--prestige-text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.section-title {
    text-align: center;
    margin-bottom: var(--prestige-space-xl);
    position: relative;
}

.section-title h2 {
    color: var(--prestige-text-primary);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.section-title p {
    color: var(--prestige-text-primary);
    max-width: 600px;
    margin: 0.75rem auto 0;
    font-size: 0.9375rem;
    opacity: 0.7;
}

/* Gold decorative line under section titles */
.section-title h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prestige-gold), transparent);
    margin: 1.25rem auto 0;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION — Floating, Transparent, Refined
   ═══════════════════════════════════════════════════════════ */
.bg-light {
    background-color: transparent !important;
}

.navbar {
    padding: 1.25rem 0;
    background: transparent;
    transition: var(--prestige-transition);
    border-bottom: 1px solid transparent;
    height: 80px;
}

.navbar.scrolled {
    background: rgba(6, 6, 6, 0.92);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom-color: var(--prestige-divider);
    padding: 0.75rem 0;
}

.navbar-brand {
    color: var(--prestige-gold) !important;
    font-weight: 400;
    font-size: 1.375rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.navbar-brand img,
.navbar-brand .website-image {
    height: 80px !important;
    max-height: 80px !important;
    width: auto !important;
    object-fit: contain;
}

.navbar {
    height: auto !important;
    min-height: 90px;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255,255,255,0.5) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--prestige-gold) !important;
}

.navbar-nav .nav-link {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5) !important;
    margin: 0 1.25rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--prestige-transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--prestige-gold) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--prestige-gold);
    box-shadow: 0 0 6px var(--prestige-gold);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-light .navbar-toggler-icon,
.navbar-toggler-icon {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C8A855' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@@media (max-width: 768px) {
    .navbar { height: 64px; }
    .navbar-collapse {
        background: rgba(6,6,6,0.97);
        backdrop-filter: blur(24px);
        padding: 2rem;
        margin-top: 0.5rem;
        border: 1px solid var(--prestige-divider);
    }
    .navbar-nav .nav-link {
        font-size: 0.875rem;
        letter-spacing: 0.12em;
        margin: 0;
        padding: 0.875rem 0;
        border-bottom: 1px solid var(--prestige-border-subtle);
    }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS — Gold on Obsidian
   ═══════════════════════════════════════════════════════════ */
.btn {
    transition: var(--prestige-transition);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 0;
    position: relative;
}

.btn-primary {
    background: var(--prestige-gold) !important;
    border: 1px solid var(--prestige-gold) !important;
    color: var(--prestige-bg-primary) !important;
    padding: 16px 40px !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--prestige-gold-light) !important;
    border-color: var(--prestige-gold-light) !important;
    color: var(--prestige-bg-primary) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200,168,85,0.25) !important;
}

.btn-outline-primary {
    background: transparent !important;
    border: 1px solid var(--prestige-gold) !important;
    color: var(--prestige-gold) !important;
    padding: 16px 40px !important;
}

.btn-outline-primary:hover {
    background: rgba(200,168,85,0.08) !important;
    border-color: var(--prestige-gold-light) !important;
    color: var(--prestige-gold-light) !important;
}

.btn-light {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: white !important;
}

.btn-light:hover {
    background: rgba(255,255,255,0.05) !important;
    color: white !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO — Cinematic, Full-Bleed
   ═══════════════════════════════════════════════════════════ */
.prestige-hero,
.firefly-hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.prestige-hero-background,
.firefly-hero-background {
    position: absolute;
    top: -5%;
    left: -5%;
    right: -5%;
    bottom: -5%;
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
    filter: brightness(0.4) contrast(1.1);
    transition: transform 20s ease-out;
}

/* Slow Ken Burns drift */
.prestige-hero:hover .prestige-hero-background,
.firefly-hero:hover .firefly-hero-background {
    transform: scale(1.05);
}

.prestige-hero-overlay,
.firefly-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(6,6,6,0.3) 0%, rgba(6,6,6,0.1) 40%, rgba(6,6,6,0.7) 80%, rgba(6,6,6,0.95) 100%),
        radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(6,6,6,0.3) 100%);
    z-index: 1;
}

.prestige-hero .hero-inner,
.firefly-hero .hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Decorative gold label with lines */
.prestige-hero .hero-label,
.firefly-hero .hero-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--prestige-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-weight: 300;
}

.prestige-hero .hero-label::before,
.prestige-hero .hero-label::after,
.firefly-hero .hero-label::before,
.firefly-hero .hero-label::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prestige-gold));
    opacity: 0.5;
}

.prestige-hero .hero-label::before,
.firefly-hero .hero-label::before {
    background: linear-gradient(90deg, transparent, var(--prestige-gold));
}

.prestige-hero .hero-label::after,
.firefly-hero .hero-label::after {
    background: linear-gradient(90deg, var(--prestige-gold), transparent);
}

/* Logo */
.prestige-hero .prestige-hero-logo,
.firefly-hero .firefly-hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.prestige-hero .prestige-hero-logo img,
.firefly-hero .firefly-hero-logo img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 24px rgba(200,168,85,0.15));
}

/* Heading */
.prestige-hero h1,
.firefly-hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 200;
    color: var(--prestige-text-primary);
    line-height: 1.05;
    max-width: 900px;
    margin: 0 auto 1.75rem;
    letter-spacing: 0.08em;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

/* Subtitle */
.prestige-hero .hero-subtitle,
.firefly-hero .hero-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
    color: var(--prestige-text-secondary);
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

/* Buttons */
.prestige-hero .hero-buttons,
.firefly-hero .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 3rem;
}

.prestige-hero .btn-get-started,
.firefly-hero .btn-get-started {
    background: var(--prestige-gold) !important;
    border: 1px solid var(--prestige-gold) !important;
    color: var(--prestige-bg-primary) !important;
    padding: 16px 44px !important;
    text-decoration: none !important;
    display: inline-block;
    transition: var(--prestige-transition);
    border-radius: 0;
    font-weight: 400 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
}

.prestige-hero .btn-get-started:hover,
.firefly-hero .btn-get-started:hover {
    background: var(--prestige-gold-light) !important;
    border-color: var(--prestige-gold-light) !important;
    color: var(--prestige-bg-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,168,85,0.3);
}

.prestige-hero .btn-outline-gold,
.firefly-hero .btn-outline-gold {
    background: transparent !important;
    border: 1px solid rgba(200,168,85,0.5) !important;
    color: var(--prestige-gold) !important;
    padding: 16px 44px !important;
    text-decoration: none !important;
    display: inline-block;
    transition: var(--prestige-transition);
    border-radius: 0;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.prestige-hero .btn-outline-gold:hover,
.firefly-hero .btn-outline-gold:hover {
    background: rgba(200,168,85,0.08) !important;
    border-color: var(--prestige-gold) !important;
    color: var(--prestige-gold-light) !important;
    transform: translateY(-2px);
}

/* Scroll indicator */
.prestige-hero .hero-scroll-indicator,
.firefly-hero .hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.prestige-hero .hero-scroll-indicator a,
.firefly-hero .hero-scroll-indicator a {
    color: var(--prestige-gold);
    opacity: 0.4;
    font-size: 1.25rem;
    text-decoration: none;
    animation: prestige-float 3s ease-in-out infinite;
}

@@keyframes prestige-float {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 0.7; }
}

@@media (max-width: 767px) {
    .prestige-hero, .firefly-hero { min-height: 90vh; min-height: 90svh; }
    .prestige-hero .prestige-hero-logo img,
    .firefly-hero .firefly-hero-logo img { max-height: 100px; }
    .prestige-hero h1, .firefly-hero h1 { font-size: 2.5rem; letter-spacing: 0.04em; }
    .prestige-hero .hero-subtitle, .firefly-hero .hero-subtitle { font-size: 0.875rem; }
    .prestige-hero .hero-buttons, .firefly-hero .hero-buttons { flex-direction: column; gap: 0.75rem; }
    .prestige-hero .hero-buttons a, .firefly-hero .hero-buttons a { width: 100%; text-align: center; }
    .prestige-hero .hero-label::before,
    .prestige-hero .hero-label::after,
    .firefly-hero .hero-label::before,
    .firefly-hero .hero-label::after { display: none; }
    .prestige-hero .hero-scroll-indicator,
    .firefly-hero .hero-scroll-indicator { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS — Rhythm & Atmosphere
   ═══════════════════════════════════════════════════════════ */
section {
    padding: var(--prestige-space-3xl) 0;
    position: relative;
}

@@media (max-width: 1024px) { section { padding: var(--prestige-space-2xl) 0; } }
@@media (max-width: 767px) { section { padding: var(--prestige-space-xl) 0; } }

section:nth-child(odd) { background: var(--prestige-bg-primary); }
section:nth-child(even) { background: var(--prestige-bg-secondary); }

/* Subtle noise texture overlay for depth */
section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

section > * {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT — Editorial Layout
   ═══════════════════════════════════════════════════════════ */
.prestige-about,
.firefly-about {
    background: var(--prestige-bg-secondary);
}

.prestige-about .about-image-wrapper,
.firefly-about .about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--prestige-radius-lg);
    border: 1px solid var(--prestige-divider);
}

.prestige-about .about-image-wrapper::after,
.firefly-about .about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,168,85,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.prestige-about .about-image-wrapper img,
.firefly-about .about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.prestige-about .about-image-wrapper:hover img,
.firefly-about .about-image-wrapper:hover img {
    transform: scale(1.03);
}

.prestige-about .prestige-section-label,
.prestige-about .firefly-section-label,
.firefly-about .prestige-section-label,
.firefly-about .firefly-section-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--prestige-gold);
    font-weight: 400;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding-left: 2rem;
}

.prestige-about .prestige-section-label::before,
.prestige-about .firefly-section-label::before,
.firefly-about .prestige-section-label::before,
.firefly-about .firefly-section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 1px;
    background: var(--prestige-gold);
}

.prestige-about h2,
.firefly-about h2 {
    color: var(--prestige-text-primary);
    margin-bottom: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.prestige-about .about-content p,
.firefly-about .about-content p {
    color: var(--prestige-text-secondary);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.prestige-about .about-accent-line,
.firefly-about .about-accent-line {
    font-style: italic;
    color: var(--prestige-gold);
    font-size: 1.125rem;
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--prestige-gold);
}

@@media (max-width: 767px) {
    .prestige-about .about-image-wrapper,
    .firefly-about .about-image-wrapper {
        max-height: 280px;
        overflow: hidden;
        margin-bottom: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES — Premium Numbered Cards with Gold Accents
   ═══════════════════════════════════════════════════════════ */
.prestige-features,
.firefly-features {
    background: var(--prestige-bg-primary);
    position: relative;
}

/* Subtle background radial glow */
.prestige-features::after,
.firefly-features::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(200,168,85,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.prestige-features .feature-box,
.firefly-features .feature-box {
    background: transparent;
    border-radius: 0;
    padding: 2.5rem 2rem 2.5rem 2rem;
    border: none;
    border-bottom: 1px solid var(--prestige-border-subtle);
    transition: var(--prestige-transition);
    height: 100%;
    position: relative;
    overflow: visible;
    counter-increment: feature-counter;
}

/* Gold top accent line */
.prestige-features .feature-box::before,
.firefly-features .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--prestige-gold);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.prestige-features .feature-box:hover::before,
.firefly-features .feature-box:hover::before {
    width: 100%;
}

.prestige-features .feature-box:hover,
.firefly-features .feature-box:hover {
    background: rgba(200,168,85,0.02);
    border-bottom-color: var(--prestige-divider);
}

/* Icon — large gold circle with glow on hover */
.prestige-features .feature-icon,
.firefly-features .feature-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: rgba(200,168,85,0.06) !important;
    background-color: rgba(200,168,85,0.06) !important;
    border: 1px solid rgba(200,168,85,0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--prestige-transition);
    position: relative;
}

.prestige-features .feature-box:hover .feature-icon,
.firefly-features .feature-box:hover .feature-icon {
    background: rgba(200,168,85,0.12) !important;
    border-color: var(--prestige-gold) !important;
    box-shadow: 0 0 24px rgba(200,168,85,0.2), 0 0 48px rgba(200,168,85,0.08);
    transform: scale(1.05);
}

.prestige-features .feature-icon i,
.firefly-features .feature-icon i {
    font-size: 1.5rem;
    color: var(--prestige-gold) !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prestige-features .feature-box h4,
.firefly-features .feature-box h4 {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--prestige-text-primary);
    margin-bottom: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.9375rem;
}

.prestige-features .feature-box p,
.firefly-features .feature-box p {
    font-size: 0.875rem;
    color: var(--prestige-text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 300;
}

/* Features counter — reset on the row */
.prestige-features .row,
.firefly-features .row {
    counter-reset: feature-counter;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE CARDS — Full-Image Overlay Cinematic Cards
   Inspired by luxury brand lookbooks
   ═══════════════════════════════════════════════════════════ */
.service-card {
    background: var(--prestige-bg-card) !important;
    border-radius: var(--prestige-radius-md) !important;
    border: 1px solid rgba(200,168,85,0.15) !important;
    transition: var(--prestige-transition-slow) !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 420px !important;
    padding: 0 !important;
}

/* Gold shimmer line at top — like the reference warm glow */
.service-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent 5%, var(--prestige-gold) 50%, transparent 95%) !important;
    opacity: 0.6 !important;
    z-index: 5 !important;
}

/* Gold shimmer line at bottom on hover */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prestige-gold-light), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 5;
}

.service-card:hover {
    border-color: rgba(200,168,85,0.35) !important;
    box-shadow:
        0 24px 64px rgba(0,0,0,0.6),
        0 0 40px rgba(200,168,85,0.08),
        inset 0 0 60px rgba(200,168,85,0.02) !important;
    transform: translateY(-6px) scale(1.01) !important;
}

.service-card:hover::after {
    opacity: 1;
}

/* IMAGE — Full-bleed, covers entire card */
.service-card .service-image-container {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    overflow: hidden !important;
    border-radius: inherit;
}

.service-card .service-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: brightness(0.55) contrast(1.1) saturate(0.95) !important;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease !important;
}

.service-card:hover .service-image {
    transform: scale(1.08) !important;
    filter: brightness(0.65) contrast(1.05) saturate(1) !important;
}

/* Dark gradient overlay for text readability */
.service-card .service-image-container::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        to bottom,
        rgba(6,6,6,0.2) 0%,
        rgba(6,6,6,0.4) 30%,
        rgba(6,6,6,0.88) 65%,
        rgba(6,6,6,0.97) 100%
    ) !important;
    z-index: 1 !important;
    pointer-events: none;
}

/* CONTENT — Positioned at bottom over image */
.service-card h4,
.service-card h3 {
    position: relative !important;
    z-index: 3 !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    font-size: 1.1875rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-top: auto !important;
    margin-bottom: 0.625rem !important;
    padding: 0 1.75rem !important;
    text-shadow: 0 2px 16px rgba(0,0,0,0.8);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.service-card p {
    position: relative !important;
    z-index: 3 !important;
    color: rgba(255,255,255,0.85) !important;
    opacity: 1 !important;
    font-size: 0.8125rem !important;
    line-height: 1.65 !important;
    font-weight: 300 !important;
    padding: 0 1.75rem !important;
    margin-bottom: 0.75rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* Price accent */
.service-card .text-accent,
.service-card .price-info,
.service-card .service-price {
    color: var(--prestige-gold) !important;
    font-weight: 400 !important;
    font-size: 0.6875rem !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
}

/* Hide gear icon when no image */
.service-card .service-icon {
    position: relative !important;
    z-index: 3 !important;
    margin-top: auto !important;
    padding: 0 1.75rem !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin-bottom: 0.75rem !important;
}

.service-card .service-icon i {
    color: var(--prestige-gold) !important;
    font-size: 1.5rem;
}

/* Bottom padding for last element */
.service-card > *:last-child {
    padding-bottom: 1.75rem !important;
}

/* ── Service card button (WIĘCEJ / DOWIEDZ SIĘ) ── */
.service-card .btn,
.service-card .btn-outline-primary {
    position: relative !important;
    z-index: 3 !important;
    border: 1px solid rgba(200,168,85,0.6) !important;
    color: var(--prestige-gold) !important;
    background: rgba(200,168,85,0.08) !important;
    border-radius: 0 !important;
    font-size: 0.625rem !important;
    letter-spacing: 0.2em !important;
    padding: 10px 24px !important;
    text-transform: uppercase;
    transition: var(--prestige-transition);
    margin: 0 1.75rem 1.75rem !important;
    backdrop-filter: blur(4px);
    width: calc(100% - 3.5rem) !important;
    text-align: center;
}

.service-card .btn:hover,
.service-card .btn-outline-primary:hover {
    background: var(--prestige-gold) !important;
    border-color: var(--prestige-gold) !important;
    color: var(--prestige-bg-primary) !important;
}

/* Services grid — force 4 columns on desktop */
@@media (min-width: 992px) {
    .services-section .row > [class*="col-lg"],
    .services-section .row > [class*="col-md"] {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
}

/* Services grid — 2 columns on tablet */
@@media (min-width: 576px) and (max-width: 991px) {
    .services-section .row > [class*="col-"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@@media (max-width: 991px) {
    .service-card { min-height: 340px !important; }
}

@@media (max-width: 575px) {
    .service-card { min-height: 300px !important; }
    .service-card h4, .service-card h3 { font-size: 1rem !important; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE — Complete Dark Override
   ═══════════════════════════════════════════════════════════ */
.service-detail {
    background: var(--prestige-bg-primary);
}

.service-detail .service-title {
    color: var(--prestige-text-primary) !important;
    font-weight: 300 !important;
    letter-spacing: 0.03em;
}

.service-detail .service-description {
    color: var(--prestige-text-secondary) !important;
    font-weight: 300;
}

.service-detail .service-icon {
    background: rgba(200,168,85,0.08) !important;
    border: 1px solid var(--prestige-divider);
}

.service-detail .service-icon i {
    color: var(--prestige-gold) !important;
}

/* Sidebar card */
.service-detail .service-sidebar .card {
    background: var(--prestige-bg-card) !important;
    border: 1px solid var(--prestige-divider) !important;
    box-shadow: none !important;
    border-radius: var(--prestige-radius-lg) !important;
}

.service-detail .service-sidebar .card h5,
.service-detail .service-sidebar .card h4 {
    color: var(--prestige-text-primary) !important;
    font-weight: 400 !important;
    letter-spacing: 0.03em;
}

.service-detail .service-sidebar .info-item {
    color: var(--prestige-text-secondary) !important;
    border-bottom: 1px solid var(--prestige-border-subtle);
    padding: 0.75rem 0 !important;
}

.service-detail .service-sidebar .info-item i {
    color: var(--prestige-gold) !important;
}

.service-detail .service-sidebar .info-item strong {
    color: var(--prestige-text-primary) !important;
}

.service-detail .service-sidebar .cta-section h5 {
    color: var(--prestige-gold) !important;
}

/* Badge */
.service-detail .badge {
    background: transparent !important;
    border: 1px solid var(--prestige-gold) !important;
    color: var(--prestige-gold) !important;
    font-weight: 400 !important;
    font-size: 0.6875rem !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 0.4rem 1rem !important;
    border-radius: 0 !important;
}

.service-detail .badge.bg-warning,
.service-detail .badge.bg-primary,
.service-detail .badge.bg-success {
    background: transparent !important;
    border: 1px solid var(--prestige-gold) !important;
    color: var(--prestige-gold) !important;
}

/* Tabs */
.service-detail .nav-tabs {
    border-bottom: 1px solid var(--prestige-border-subtle) !important;
}

.service-detail .nav-tabs .nav-link {
    color: var(--prestige-text-muted) !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    font-weight: 400 !important;
    font-size: 0.8125rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
}

.service-detail .nav-tabs .nav-link:hover {
    color: var(--prestige-text-secondary) !important;
}

.service-detail .nav-tabs .nav-link.active {
    color: var(--prestige-gold) !important;
    background: transparent !important;
    border-bottom-color: var(--prestige-gold) !important;
}

/* Tab content — THE WHITE BLOCK FIX */
.service-detail .tab-content {
    background: var(--prestige-bg-primary) !important;
    color: var(--prestige-text-secondary) !important;
    border: none !important;
    min-height: 100px;
}

.service-detail .tab-content .content {
    color: var(--prestige-text-secondary) !important;
    line-height: 1.85;
    font-weight: 300;
}

.service-detail .tab-content h2,
.service-detail .tab-content h3,
.service-detail .tab-content h4 {
    color: var(--prestige-text-primary) !important;
    font-weight: 400 !important;
}

.service-detail .tab-content table td,
.service-detail .tab-content table th {
    border-color: var(--prestige-border-subtle) !important;
    color: var(--prestige-text-secondary) !important;
}

.service-detail .tab-content table th {
    background: var(--prestige-bg-card) !important;
    color: var(--prestige-text-primary) !important;
}

/* Breadcrumb */
.service-detail .breadcrumb {
    background: transparent !important;
}

.service-detail .breadcrumb-item a {
    color: var(--prestige-text-muted) !important;
}

.service-detail .breadcrumb-item a:hover {
    color: var(--prestige-gold) !important;
}

.service-detail .breadcrumb-item.active {
    color: var(--prestige-text-secondary) !important;
}

.service-detail .breadcrumb-item + .breadcrumb-item::before {
    color: var(--prestige-text-muted) !important;
}

/* Gallery */
.service-detail .service-gallery .gallery-item {
    border-radius: var(--prestige-radius-md) !important;
    border: 1px solid var(--prestige-border-subtle);
}

.service-detail .service-gallery img {
    border-radius: var(--prestige-radius-md) !important;
}

/* Related services cards */
.service-detail .related-services .card {
    background: var(--prestige-bg-card) !important;
    border: 1px solid var(--prestige-border-subtle) !important;
}

/* Package cards */
.service-detail .card {
    background: var(--prestige-bg-card) !important;
    border: 1px solid var(--prestige-border-subtle) !important;
    box-shadow: none !important;
}

.service-detail .card:hover {
    border-color: var(--prestige-divider) !important;
    box-shadow: var(--prestige-shadow-gold-glow) !important;
}

.service-detail .card-header {
    background: var(--prestige-bg-elevated) !important;
    border-bottom: 1px solid var(--prestige-border-subtle) !important;
    color: var(--prestige-text-primary) !important;
}

.service-detail .card-body {
    color: var(--prestige-text-secondary) !important;
}

/* Package features */
.service-detail .package-features ul li::before {
    color: var(--prestige-gold) !important;
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL DARK OVERRIDES — All Content Pages
   Catch any remaining light-themed elements
   ═══════════════════════════════════════════════════════════ */

/* White background blocks */
.bg-white,
.bg-light {
    background-color: var(--prestige-bg-primary) !important;
}

/* Tab panels */
.tab-content,
.tab-pane {
    background: var(--prestige-bg-primary) !important;
    color: var(--prestige-text-secondary) !important;
}

/* All cards globally */
.card-header {
    background: var(--prestige-bg-elevated) !important;
    border-bottom-color: var(--prestige-border-subtle) !important;
    color: var(--prestige-text-primary) !important;
}

/* All text-dark, text-muted overrides */
.text-dark {
    color: var(--prestige-text-primary) !important;
}

.text-muted {
    color: var(--prestige-text-muted) !important;
}

.text-secondary {
    color: var(--prestige-text-secondary) !important;
}

/* Bootstrap primary accent → gold */
.text-primary {
    color: var(--prestige-gold) !important;
}

.text-accent {
    color: var(--prestige-gold) !important;
}

/* All alerts and notices */
.alert {
    background: var(--prestige-bg-card) !important;
    border-color: var(--prestige-divider) !important;
    color: var(--prestige-text-secondary) !important;
}

/* Breadcrumbs globally */
.breadcrumb {
    background: transparent !important;
}

.breadcrumb-item a {
    color: var(--prestige-text-muted) !important;
}

.breadcrumb-item a:hover {
    color: var(--prestige-gold) !important;
}

.breadcrumb-item.active {
    color: var(--prestige-text-secondary) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--prestige-text-muted) !important;
}

/* Form controls globally */
.form-control,
.form-select {
    background-color: var(--prestige-bg-secondary) !important;
    border: 1px solid var(--prestige-border-subtle) !important;
    color: var(--prestige-text-primary) !important;
    border-radius: 0 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--prestige-gold) !important;
    box-shadow: 0 0 0 1px rgba(200,168,85,0.15) !important;
    background-color: var(--prestige-bg-secondary) !important;
}

.form-control::placeholder {
    color: var(--prestige-text-muted) !important;
}

.form-label,
label {
    color: var(--prestige-text-secondary) !important;
    font-size: 0.8125rem;
}

/* Links globally */
a:not(.btn):not(.nav-link):not(.navbar-brand) {
    color: var(--prestige-gold);
}

a:not(.btn):not(.nav-link):not(.navbar-brand):hover {
    color: var(--prestige-gold-light);
}

/* List groups */
.list-group-item {
    background: var(--prestige-bg-card) !important;
    border-color: var(--prestige-border-subtle) !important;
    color: var(--prestige-text-secondary) !important;
}

/* Tables */
table {
    color: var(--prestige-text-secondary) !important;
}

table th {
    color: var(--prestige-text-primary) !important;
}

table td, table th {
    border-color: var(--prestige-border-subtle) !important;
}

/* Pagination */
.page-link {
    background: var(--prestige-bg-card) !important;
    border-color: var(--prestige-border-subtle) !important;
    color: var(--prestige-text-secondary) !important;
}

.page-link:hover {
    background: var(--prestige-bg-elevated) !important;
    color: var(--prestige-gold) !important;
}

.page-item.active .page-link {
    background: var(--prestige-gold) !important;
    border-color: var(--prestige-gold) !important;
    color: var(--prestige-bg-primary) !important;
}

/* ═══════════════════════════════════════════════════════════
   CARDS — Universal Dark Cards
   ═══════════════════════════════════════════════════════════ */
.card {
    border: none;
    background: var(--prestige-bg-card);
    border-radius: var(--prestige-radius-lg);
    box-shadow: var(--prestige-shadow-card);
    transition: var(--prestige-transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--prestige-shadow-hover);
}

.card-body { padding: 1.75rem; }
.card-title { color: var(--prestige-text-primary); font-weight: 400; }
.card-text { color: var(--prestige-text-secondary); line-height: 1.75; font-weight: 300; }
.card-img-top { transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.card:hover .card-img-top { transform: scale(1.04); }

/* ═══════════════════════════════════════════════════════════
   OFFER ITEMS — Premium Fleet Cards
   ═══════════════════════════════════════════════════════════ */
.offerItems-section { background: var(--prestige-bg-secondary); }

.offerItems-section .card,
.offerItem-card .card {
    background: var(--prestige-bg-card) !important;
    border: 1px solid var(--prestige-border-subtle) !important;
    border-radius: var(--prestige-radius-lg) !important;
    overflow: hidden;
    transition: var(--prestige-transition);
}

.offerItems-section .card:hover,
.offerItem-card .card:hover {
    border-color: var(--prestige-divider) !important;
    box-shadow: var(--prestige-shadow-gold-glow) !important;
    transform: translateY(-4px);
}

/* Image */
.offerItem-card .offerItem-image img {
    height: 240px !important;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.offerItem-card .card:hover .offerItem-image img {
    transform: scale(1.05);
}

/* Title */
.offerItem-card .card-title {
    color: var(--prestige-text-primary) !important;
    font-weight: 400 !important;
    font-size: 1.125rem !important;
    letter-spacing: 0.03em;
}

/* Description */
.offerItem-card .card-text {
    color: var(--prestige-text-secondary) !important;
    font-weight: 300 !important;
    line-height: 1.7;
}

/* HIDE price row when price is 0 and stock badge */
.offerItem-card .offerItem-price-stock {
    display: none !important;
}

/* Card footer / button */
.offerItem-card .card-footer {
    background: transparent !important;
    border-top: 1px solid var(--prestige-border-subtle) !important;
    padding: 1rem 1.25rem !important;
}

.offerItem-card .card-footer .btn {
    border: 1px solid var(--prestige-gold) !important;
    color: var(--prestige-gold) !important;
    background: transparent !important;
    border-radius: 0 !important;
    font-size: 0.6875rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    font-weight: 400 !important;
    padding: 0.75rem 1rem !important;
    transition: var(--prestige-transition);
}

.offerItem-card .card-footer .btn:hover {
    background: var(--prestige-gold) !important;
    color: var(--prestige-bg-primary) !important;
}

/* Hide the "Przeglądaj nasz wybór" generic subtitle */
.offerItems-section .text-muted.mb-5 {
    display: none;
}

/* ═══════════════════════════════════════════════════════════
   OFFER ITEM DETAIL PAGE — Premium Vehicle Page
   ═══════════════════════════════════════════════════════════ */

/* Hide price (0,00 zł) and stock badge on detail page */
.offerItem-price {
    display: none !important;
}

.offerItem-detail .badge.bg-success,
.offerItem-detail .badge.bg-danger {
    display: none !important;
}

/* Image gallery — kill white border/shadow */
.offerItem-detail img,
.offerItem-detail .offerItem-gallery img,
.offerItem-detail .gallery-main img,
.offerItem-detail .offerItem-main-image img,
.offerItem-detail .offerItem-thumbnail,
.offerItem-main-image img {
    border-radius: var(--prestige-radius-md) !important;
    border: 1px solid var(--prestige-divider) !important;
    background: var(--prestige-bg-card) !important;
    box-shadow: none !important;
}

.offerItem-main-image {
    background: var(--prestige-bg-card) !important;
    border-radius: var(--prestige-radius-md) !important;
    overflow: hidden;
}

.shadow-sm {
    box-shadow: none !important;
}

/* Title */
.offerItem-detail h1,
.offerItem-detail .offerItem-title {
    color: var(--prestige-text-primary) !important;
    font-weight: 300 !important;
    letter-spacing: 0.03em;
    font-size: 2.25rem !important;
}

/* Description tab area */
.offerItem-detail .nav-tabs {
    border-bottom: 1px solid var(--prestige-border-subtle) !important;
}

.offerItem-detail .nav-tabs .nav-link {
    color: var(--prestige-text-muted) !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    font-size: 0.8125rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    font-weight: 400 !important;
}

.offerItem-detail .nav-tabs .nav-link.active {
    color: var(--prestige-gold) !important;
    border-bottom-color: var(--prestige-gold) !important;
}

.offerItem-detail .tab-content {
    background: var(--prestige-bg-primary) !important;
    border: 1px solid var(--prestige-border-subtle) !important;
    border-top: none !important;
    border-radius: 0 0 var(--prestige-radius-md) var(--prestige-radius-md) !important;
    color: var(--prestige-text-secondary) !important;
    padding: 2rem !important;
    font-weight: 300;
    line-height: 1.85;
}

.offerItem-detail .tab-content p {
    color: var(--prestige-text-secondary) !important;
    margin-bottom: 1rem;
}

.offerItem-detail .tab-content h3,
.offerItem-detail .tab-content h4 {
    color: var(--prestige-text-primary) !important;
    font-weight: 400 !important;
    margin-top: 1.5rem;
}

/* Breadcrumb */
.offerItem-detail .breadcrumb-item a {
    color: var(--prestige-text-muted) !important;
}

.offerItem-detail .breadcrumb-item.active {
    color: var(--prestige-text-secondary) !important;
}

/* Related items */
.offerItem-detail .related-items h3 {
    color: var(--prestige-text-primary) !important;
}

/* CTA button if present */
.offerItem-detail .btn-primary {
    background: var(--prestige-gold) !important;
    border-color: var(--prestige-gold) !important;
    color: var(--prestige-bg-primary) !important;
    border-radius: 0 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION HEADER
   ═══════════════════════════════════════════════════════════ */
.service-card h3, .service-card h4 {
    color: var(--prestige-text-primary) !important;
    font-weight: 400 !important;
}

/* ═══════════════════════════════════════════════════════════
   BLOG & PORTFOLIO
   ═══════════════════════════════════════════════════════════ */
.blog-section .card,
.portfolio-section .card {
    background: var(--prestige-bg-card);
    border: 1px solid var(--prestige-border-subtle);
    overflow: hidden;
}

.blog-meta, .portfolio-meta {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--prestige-gold);
    margin-bottom: 0.5rem;
}

.portfolio-info {
    background: linear-gradient(to bottom, transparent 0%, rgba(6,6,6,0.9) 100%);
    padding: 2rem;
}

.portfolio-info h4, .portfolio-info p { color: white; }

/* ═══════════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════════ */
.team-member { text-align: center; }
.team-member img {
    border-radius: var(--prestige-radius-lg);
    margin-bottom: 1.5rem;
    transition: var(--prestige-transition);
    border: 1px solid var(--prestige-border-subtle);
}
.team-member:hover img {
    box-shadow: var(--prestige-shadow-gold-glow);
    border-color: var(--prestige-divider);
}
.team-member h4 { color: var(--prestige-text-primary); font-weight: 400; }
.team-member .position {
    color: var(--prestige-gold);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS — Refined Quote Cards
   ═══════════════════════════════════════════════════════════ */
.prestige-testimonials,
.firefly-testimonials {
    background: var(--prestige-bg-secondary);
}

.prestige-testimonials .testimonial-item,
.firefly-testimonials .testimonial-item {
    background: var(--prestige-bg-card);
    border-radius: var(--prestige-radius-lg);
    padding: 2.5rem;
    height: 100%;
    border: 1px solid var(--prestige-border-subtle);
    transition: var(--prestige-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.prestige-testimonials .testimonial-item::before,
.firefly-testimonials .testimonial-item::before {
    content: '\201C';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--prestige-gold);
    opacity: 0.08;
    line-height: 1;
}

.prestige-testimonials .testimonial-item:hover,
.firefly-testimonials .testimonial-item:hover {
    border-color: var(--prestige-divider);
    box-shadow: var(--prestige-shadow-gold-glow);
    transform: translateY(-4px);
}

.prestige-testimonials .bi-star-fill,
.firefly-testimonials .bi-star-fill {
    color: var(--prestige-gold) !important;
    font-size: 0.875rem;
}

.prestige-testimonials .bi-star,
.firefly-testimonials .bi-star {
    color: rgba(200,168,85,0.2) !important;
    font-size: 0.875rem;
}

.prestige-testimonials .stars,
.firefly-testimonials .stars { gap: 0.15rem; }

.prestige-testimonials .testimonial-content,
.firefly-testimonials .testimonial-content {
    color: var(--prestige-text-secondary);
    font-style: italic;
    line-height: 1.85;
    font-size: 0.9375rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
    font-weight: 300;
}

.prestige-testimonials .client-info h4,
.prestige-testimonials .client-info h6,
.firefly-testimonials .client-info h4,
.firefly-testimonials .client-info h6 {
    color: var(--prestige-text-primary) !important;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
    letter-spacing: 0.02em;
}

.prestige-testimonials .client-info p,
.prestige-testimonials .client-info span,
.prestige-testimonials .client-info small,
.firefly-testimonials .client-info p,
.firefly-testimonials .client-info span,
.firefly-testimonials .client-info small {
    color: var(--prestige-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.prestige-testimonials .testimonial-avatar,
.firefly-testimonials .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200,168,85,0.06);
    border: 1px solid var(--prestige-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--prestige-gold);
    font-weight: 500;
    flex-shrink: 0;
}

.prestige-testimonials .client-img,
.firefly-testimonials .client-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--prestige-gold);
}

/* ═══════════════════════════════════════════════════════════
   CTA — Radiant Gold Glow
   ═══════════════════════════════════════════════════════════ */
.prestige-cta,
.firefly-cta {
    background: var(--prestige-bg-primary);
    position: relative;
    overflow: hidden;
}

.prestige-cta::before,
.firefly-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200,168,85,0.06) 0%, rgba(200,168,85,0.02) 30%, transparent 70%);
    pointer-events: none;
}

.prestige-cta h2,
.firefly-cta h2 {
    color: var(--prestige-text-primary);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 300;
    letter-spacing: 0.03em;
}

.prestige-cta p,
.firefly-cta p {
    color: var(--prestige-text-secondary);
    font-size: 1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.prestige-cta .cta-buttons,
.firefly-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.prestige-cta .btn-cta-primary,
.firefly-cta .btn-cta-primary,
.btn-cta-primary,
.cta-btn {
    background: var(--prestige-gold) !important;
    border: 1px solid var(--prestige-gold) !important;
    color: var(--prestige-bg-primary) !important;
    padding: 16px 44px !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    font-weight: 400 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    transition: var(--prestige-transition);
    display: inline-block;
}

.prestige-cta .btn-cta-primary:hover,
.firefly-cta .btn-cta-primary:hover,
.btn-cta-primary:hover,
.cta-btn:hover {
    background: var(--prestige-gold-light) !important;
    border-color: var(--prestige-gold-light) !important;
    color: var(--prestige-bg-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,168,85,0.3) !important;
}

@@media (max-width: 767px) {
    .prestige-cta h2, .firefly-cta h2 { font-size: 1.625rem; }
    .prestige-cta .cta-buttons, .firefly-cta .cta-buttons { flex-direction: column; }
    .prestige-cta .cta-buttons a, .firefly-cta .cta-buttons a { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   PRICELIST CTA — Gold Border Accent
   ═══════════════════════════════════════════════════════════ */
.prestige-pricelist-cta,
.firefly-pricelist-cta {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(200,168,85,0.04) 0%, var(--prestige-bg-primary) 50%, rgba(200,168,85,0.03) 100%);
    border-top: 1px solid rgba(200,168,85,0.3);
    border-bottom: 1px solid rgba(200,168,85,0.3);
}

.firefly-pricelist-cta-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200,168,85,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.firefly-pricelist-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--prestige-text-primary) !important;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.firefly-pricelist-subheading {
    color: var(--prestige-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 0;
    max-width: 480px;
}

.firefly-pricelist-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--prestige-bg-primary) !important;
    background: var(--prestige-gold);
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(200,168,85,0.2);
    transition: var(--prestige-transition);
    text-decoration: none;
}

.firefly-pricelist-btn:hover {
    color: var(--prestige-bg-primary) !important;
    background: var(--prestige-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(200,168,85,0.35);
}

@@media (max-width: 767px) {
    .prestige-pricelist-cta, .firefly-pricelist-cta { padding: 3rem 0; text-align: center; }
    .firefly-pricelist-subheading { max-width: 100%; margin: 0 auto 1.5rem; }
    .prestige-pricelist-cta .text-md-end, .firefly-pricelist-cta .text-md-end { text-align: center !important; }
    .firefly-pricelist-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   FAQ — Minimal Accordion
   ═══════════════════════════════════════════════════════════ */
.faq-section { background: var(--prestige-bg-secondary); }
.faq-section .faq-section-title { color: var(--prestige-text-primary); }
.faq-section .faq-section-subtitle { color: var(--prestige-text-secondary); }

.faq-section .faq-accordion .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 0.5rem;
}

.faq-section .faq-accordion .accordion-button {
    background: var(--prestige-bg-card);
    border: 1px solid var(--prestige-border-subtle);
    border-radius: var(--prestige-radius-md) !important;
    color: var(--prestige-text-primary);
    font-weight: 400;
    padding: 1.25rem 3rem 1.25rem 1.5rem;
    box-shadow: none;
    transition: var(--prestige-transition);
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.faq-section .faq-accordion .accordion-button:hover {
    border-color: var(--prestige-divider);
}

.faq-section .faq-accordion .accordion-button:not(.collapsed) {
    background: var(--prestige-gold);
    color: var(--prestige-bg-primary);
    border-color: var(--prestige-gold);
    box-shadow: 0 8px 24px rgba(200,168,85,0.15);
    font-weight: 500;
}

.faq-section .faq-accordion .accordion-button::before { background: var(--prestige-gold); }
.faq-section .faq-accordion .accordion-button::after { color: var(--prestige-text-muted); }
.faq-section .faq-accordion .accordion-button:not(.collapsed)::after { color: var(--prestige-bg-primary); }

.faq-section .faq-accordion .accordion-body {
    background: var(--prestige-bg-card);
    border: 1px solid var(--prestige-divider);
    border-top: none;
    color: var(--prestige-text-secondary);
    border-radius: 0 0 var(--prestige-radius-md) var(--prestige-radius-md);
    font-weight: 300;
    line-height: 1.8;
}

.faq-section .faq-accordion .accordion-button:not(.collapsed) + .accordion-collapse .accordion-body {
    border-color: rgba(200,168,85,0.15);
    background: rgba(200,168,85,0.02);
}

.faq-section .faq-icon { background: rgba(200,168,85,0.08); color: var(--prestige-gold); }
.faq-section .accordion-button:not(.collapsed) .faq-icon { background: rgba(6,6,6,0.2); color: var(--prestige-bg-primary); }

/* ═══════════════════════════════════════════════════════════
   CONTACT — Dark Form, Inverted Map
   ═══════════════════════════════════════════════════════════ */
.contact-section { background: var(--prestige-bg-primary); }

.contact-section .contact-form {
    background: var(--prestige-bg-card) !important;
    border: 1px solid var(--prestige-border-subtle) !important;
    box-shadow: none !important;
    border-radius: var(--prestige-radius-lg);
}

.contact-section .contact-form h2 { color: var(--prestige-text-primary) !important; font-weight: 300; }

.contact-section .form-control,
.contact-section .form-select {
    background-color: var(--prestige-bg-secondary) !important;
    border: 1px solid var(--prestige-border-subtle) !important;
    color: var(--prestige-text-primary) !important;
    border-radius: 0 !important;
    padding: 0.875rem 1rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
    border-color: var(--prestige-gold) !important;
    box-shadow: 0 0 0 1px rgba(200,168,85,0.15) !important;
    background-color: var(--prestige-bg-secondary) !important;
    color: var(--prestige-text-primary) !important;
}

.contact-section .form-control::placeholder { color: var(--prestige-text-muted) !important; }
.contact-section label { color: var(--prestige-text-secondary); font-size: 0.8125rem; letter-spacing: 0.05em; }

.contact-section .btn-primary,
.homepage-contact .btn-primary {
    background: var(--prestige-gold) !important;
    border: none !important;
    color: var(--prestige-bg-primary) !important;
    font-weight: 400 !important;
    font-size: 0.75rem !important;
    padding: 1rem 2.5rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 16px rgba(200,168,85,0.2);
    transition: var(--prestige-transition) !important;
}

.contact-section .btn-primary:hover,
.homepage-contact .btn-primary:hover {
    background: var(--prestige-gold-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 32px rgba(200,168,85,0.3) !important;
    color: var(--prestige-bg-primary) !important;
}

.contact-section .text-muted { color: var(--prestige-text-secondary) !important; }
.contact-section a { color: var(--prestige-gold); }
.contact-section a:hover { color: var(--prestige-gold-light); }

/* Dark mode map */
.contact-section .map-container,
.homepage-contact .map-container {
    background-color: var(--prestige-bg-card) !important;
    border-radius: var(--prestige-radius-lg);
    overflow: hidden;
    border: 1px solid var(--prestige-border-subtle);
}

.contact-section .map-container iframe,
.homepage-contact .map-container iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(0.8) contrast(1.2);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — Refined Gold Borders
   ═══════════════════════════════════════════════════════════ */
footer {
    background: var(--prestige-bg-secondary);
    border-top: 1px solid var(--prestige-gold);
    color: var(--prestige-text-secondary);
    padding-top: 4rem;
}

footer h5, footer h6, footer .footer-heading {
    color: var(--prestige-gold) !important;
    font-size: 0.6875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

footer p {
    color: var(--prestige-text-secondary);
    line-height: 1.8;
    font-weight: 300;
    font-size: 0.875rem;
}

footer a {
    color: var(--prestige-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

footer a:hover { color: var(--prestige-gold); }
footer i.bi { color: var(--prestige-gold) !important; }

footer .btn-outline-secondary,
footer .btn-outline-primary,
footer .btn {
    border-color: var(--prestige-gold) !important;
    color: var(--prestige-gold) !important;
    background: transparent !important;
    border-radius: 0 !important;
}

footer .btn:hover {
    background: var(--prestige-gold) !important;
    color: var(--prestige-bg-primary) !important;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 1px solid var(--prestige-divider);
    color: var(--prestige-text-secondary);
    font-size: 1rem;
    transition: var(--prestige-transition);
}

footer .social-links a:hover {
    color: var(--prestige-bg-primary);
    border-color: var(--prestige-gold);
    background: var(--prestige-gold);
}

footer table, footer .opening-hours { color: var(--prestige-text-secondary); }
footer table td:first-child, footer table th:first-child { color: var(--prestige-gold) !important; font-weight: 400; }
footer table td, footer table th { color: var(--prestige-text-secondary) !important; border-color: var(--prestige-border-subtle) !important; }

footer .footer-bottom {
    border-top: 1px solid var(--prestige-border-subtle);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    font-size: 0.8125rem;
    color: var(--prestige-text-muted);
}

footer .footer-bottom strong, footer .footer-bottom b { color: var(--prestige-gold); }

/* ═══════════════════════════════════════════════════════════
   GALLERY — Cinematic Grid
   ═══════════════════════════════════════════════════════════ */
.gallery-section { background: var(--prestige-bg-primary); }

.gallery-section img {
    border-radius: var(--prestige-radius-md);
    transition: var(--prestige-transition-slow);
    image-orientation: from-image;
}

.gallery-section .gallery-item-image img {
    object-fit: cover !important;
    image-orientation: from-image;
    filter: brightness(0.9) contrast(1.05);
}

.gallery-section img:hover {
    transform: scale(1.02);
    filter: brightness(1) contrast(1.05);
}

.gallery-section .text-muted { color: var(--prestige-text-secondary) !important; }

.gallery-section .gallery-caption {
    text-align: center !important;
    padding: 0.5rem 0.75rem;
    margin-top: 0.5rem !important;
    border: none;
    background: transparent;
}

.gallery-section .gallery-caption p {
    color: var(--prestige-text-secondary) !important;
    font-size: 0.8125rem !important;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 0;
}

.gallery-section .gallery-item {
    border-radius: var(--prestige-radius-md);
    overflow: hidden;
    border: 1px solid var(--prestige-border-subtle);
    transition: var(--prestige-transition);
}

.gallery-section .gallery-item:hover {
    border-color: var(--prestige-divider);
    box-shadow: var(--prestige-shadow-gold-glow);
}

.gallery-section .gallery-item::after {
    background: rgba(200,168,85,0.4) !important;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL-TO-TOP
   ═══════════════════════════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: var(--prestige-bg-card);
    color: var(--prestige-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--prestige-shadow-card);
    transition: var(--prestige-transition);
    z-index: 999;
    border: 1px solid var(--prestige-divider);
}

.scroll-top:hover {
    background: var(--prestige-gold);
    color: var(--prestige-bg-primary);
}

@@media (max-width: 767px) {
    .scroll-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════════════ */
.product-card {
    background: var(--prestige-bg-card);
    border-radius: var(--prestige-radius-lg);
    border: 1px solid var(--prestige-border-subtle);
    transition: var(--prestige-transition);
}

.product-card:hover {
    border-color: var(--prestige-divider);
    box-shadow: var(--prestige-shadow-gold-glow);
}

.product-price { color: var(--prestige-gold); font-weight: 400; }

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════ */
*:focus-visible {
    outline: 2px solid var(--prestige-gold);
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) { outline: none; }

/* ═══════════════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════════════ */
.text-gold { color: var(--prestige-gold) !important; }
.bg-prestige-card { background-color: var(--prestige-bg-card) !important; }
.bg-prestige-secondary { background-color: var(--prestige-bg-secondary) !important; }
.border-prestige-divider { border-color: var(--prestige-divider) !important; }

/* Section label alias */
.firefly-section-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--prestige-gold);
    font-weight: 400;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding-left: 2rem;
}

.firefly-section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 1px;
    background: var(--prestige-gold);
}

/* ═══════════════════════════════════════════════════════════
   ▓▓▓ MOBILE-FIRST RESPONSIVE — COMPLETE OVERHAUL ▓▓▓
   Covers: phones (<576px), phablets (576-767px), tablets (768-1024px)
   ═══════════════════════════════════════════════════════════ */

/* ── TABLET (768px - 1024px) ── */
@@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Hero */
    .prestige-hero h1, .firefly-hero h1 {
        font-size: 3rem;
    }

    /* Service cards 2-col */
    .service-card {
        min-height: 360px !important;
    }

    /* Features 2-col */
    .prestige-features .feature-box,
    .firefly-features .feature-box {
        padding: 2rem 1.5rem;
    }

    /* Footer columns stack better */
    footer {
        padding-top: 3rem;
    }
}

/* ── PHONE + PHABLET (max 767px) ── */
@@media (max-width: 767px) {

    /* ── Global ── */
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem !important;
        letter-spacing: 0.02em !important;
    }

    h2 {
        font-size: 1.5rem !important;
        letter-spacing: 0.01em !important;
    }

    h3 {
        font-size: 1.125rem !important;
    }

    .container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    section {
        padding: 3rem 0 !important;
    }

    .section-title {
        margin-bottom: 2rem !important;
    }

    .section-title h2::after {
        margin-top: 0.75rem;
    }

    /* ── Navigation ── */
    .navbar {
        min-height: 70px !important;
        padding: 0.5rem 0 !important;
    }

    .navbar-brand img,
    .navbar-brand .website-image {
        height: 50px !important;
        max-height: 50px !important;
    }

    .navbar-collapse {
        background: rgba(6,6,6,0.98) !important;
        backdrop-filter: blur(24px) !important;
        padding: 1.5rem !important;
        margin-top: 0.5rem;
        border: 1px solid var(--prestige-divider) !important;
    }

    .navbar-nav .nav-link {
        font-size: 0.8125rem !important;
        letter-spacing: 0.1em !important;
        margin: 0 !important;
        padding: 0.875rem 0 !important;
        border-bottom: 1px solid var(--prestige-border-subtle) !important;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none !important;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    /* ── Hero ── */
    .prestige-hero, .firefly-hero {
        min-height: 100vh !important;
        min-height: 100svh !important;
    }

    .prestige-hero .hero-inner,
    .firefly-hero .hero-inner {
        padding: 0 1.25rem !important;
    }

    .prestige-hero .prestige-hero-logo img,
    .firefly-hero .firefly-hero-logo img {
        max-height: 100px !important;
    }

    .prestige-hero h1, .firefly-hero h1 {
        font-size: 2.5rem !important;
        letter-spacing: 0.04em !important;
        margin-bottom: 1.25rem !important;
    }

    .prestige-hero .hero-subtitle,
    .firefly-hero .hero-subtitle {
        font-size: 0.875rem !important;
        line-height: 1.7 !important;
        padding: 0 0.5rem;
    }

    .prestige-hero .hero-label,
    .firefly-hero .hero-label {
        font-size: 0.5625rem !important;
        letter-spacing: 0.25em !important;
    }

    .prestige-hero .hero-label::before,
    .prestige-hero .hero-label::after,
    .firefly-hero .hero-label::before,
    .firefly-hero .hero-label::after {
        width: 30px !important;
    }

    .prestige-hero .hero-buttons,
    .firefly-hero .hero-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin-top: 2rem !important;
        padding: 0 1rem;
    }

    .prestige-hero .hero-buttons a,
    .firefly-hero .hero-buttons a,
    .prestige-hero .btn-get-started,
    .firefly-hero .btn-get-started,
    .prestige-hero .btn-outline-gold,
    .firefly-hero .btn-outline-gold {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 20px !important;
        font-size: 0.6875rem !important;
    }

    .prestige-hero .hero-scroll-indicator,
    .firefly-hero .hero-scroll-indicator {
        display: none !important;
    }

    /* ── About ── */
    .prestige-about .about-image-wrapper,
    .firefly-about .about-image-wrapper {
        max-height: 250px !important;
        margin-bottom: 2rem !important;
        border-radius: var(--prestige-radius-md) !important;
    }

    .prestige-about .prestige-section-label,
    .firefly-about .firefly-section-label {
        padding-left: 0 !important;
    }

    .prestige-about .prestige-section-label::before,
    .firefly-about .firefly-section-label::before {
        display: none !important;
    }

    .prestige-about .about-accent-line,
    .firefly-about .about-accent-line {
        font-size: 1rem !important;
        padding-left: 1rem !important;
    }

    /* ── Services Cards ── */
    .service-card {
        min-height: 320px !important;
        margin-bottom: 1rem !important;
    }

    .service-card h4,
    .service-card h3 {
        font-size: 1rem !important;
        padding: 0 1.25rem !important;
        letter-spacing: 0.04em !important;
    }

    .service-card p {
        font-size: 0.75rem !important;
        padding: 0 1.25rem !important;
        -webkit-line-clamp: 2 !important;
    }

    .service-card .btn,
    .service-card .btn-outline-primary {
        margin: 0 1.25rem 1.25rem !important;
        width: calc(100% - 2.5rem) !important;
        padding: 10px 16px !important;
        font-size: 0.5625rem !important;
    }

    /* Services grid — 1 col on phone */
    .services-section .row > [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* ── Features ── */
    .prestige-features .feature-box,
    .firefly-features .feature-box {
        padding: 1.75rem 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }

    .prestige-features .feature-icon,
    .firefly-features .feature-icon {
        width: 52px !important;
        height: 52px !important;
        margin-bottom: 1.25rem !important;
    }

    .prestige-features .feature-icon i,
    .firefly-features .feature-icon i {
        font-size: 1.25rem !important;
    }

    .prestige-features .feature-box h4,
    .firefly-features .feature-box h4 {
        font-size: 0.875rem !important;
    }

    .prestige-features .feature-box p,
    .firefly-features .feature-box p {
        font-size: 0.8125rem !important;
    }

    .prestige-features .feature-box::before,
    .firefly-features .feature-box::before {
        width: 30px !important;
    }

    /* ── Offer Items / Fleet ── */
    .offerItem-card .offerItem-image img {
        height: 200px !important;
    }

    .offerItem-card .card-title {
        font-size: 1rem !important;
    }

    .offerItem-card .card-footer .btn {
        font-size: 0.625rem !important;
        padding: 0.625rem 0.75rem !important;
    }

    /* ── Testimonials ── */
    .prestige-testimonials .testimonial-item,
    .firefly-testimonials .testimonial-item {
        padding: 1.75rem 1.25rem !important;
    }

    .prestige-testimonials .testimonial-item::before,
    .firefly-testimonials .testimonial-item::before {
        font-size: 3rem !important;
        top: 0.75rem !important;
        right: 1rem !important;
    }

    .prestige-testimonials .testimonial-content,
    .firefly-testimonials .testimonial-content {
        font-size: 0.875rem !important;
        line-height: 1.7 !important;
    }

    .prestige-testimonials .client-info h4,
    .prestige-testimonials .client-info h6,
    .firefly-testimonials .client-info h4,
    .firefly-testimonials .client-info h6 {
        font-size: 0.875rem !important;
    }

    .prestige-testimonials .testimonial-avatar,
    .firefly-testimonials .testimonial-avatar,
    .prestige-testimonials .client-img,
    .firefly-testimonials .client-img {
        width: 38px !important;
        height: 38px !important;
    }

    /* ── CTA ── */
    .prestige-cta h2, .firefly-cta h2 {
        font-size: 1.5rem !important;
    }

    .prestige-cta p, .firefly-cta p {
        font-size: 0.875rem !important;
    }

    .prestige-cta .cta-buttons,
    .firefly-cta .cta-buttons {
        flex-direction: column !important;
    }

    .prestige-cta .cta-buttons a,
    .firefly-cta .cta-buttons a,
    .btn-cta-primary,
    .cta-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 20px !important;
    }

    /* ── PriceList CTA ── */
    .prestige-pricelist-cta,
    .firefly-pricelist-cta {
        padding: 2.5rem 0 !important;
        text-align: center !important;
    }

    .firefly-pricelist-subheading {
        max-width: 100% !important;
        margin: 0 auto 1.5rem !important;
    }

    .prestige-pricelist-cta .text-md-end,
    .firefly-pricelist-cta .text-md-end {
        text-align: center !important;
    }

    .firefly-pricelist-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
    }

    /* ── FAQ ── */
    .faq-section .faq-accordion .accordion-button {
        padding: 1rem 2.5rem 1rem 1rem !important;
        font-size: 0.875rem !important;
    }

    .faq-section .faq-accordion .accordion-body {
        padding: 1rem !important;
        font-size: 0.8125rem !important;
    }

    /* ── Contact ── */
    .contact-section .contact-form {
        padding: 1.5rem !important;
        border-radius: var(--prestige-radius-md) !important;
    }

    .contact-section .form-control,
    .contact-section .form-select {
        padding: 0.75rem !important;
        font-size: 0.875rem !important;
    }

    .contact-section .map-container {
        height: 250px !important;
        border-radius: var(--prestige-radius-md) !important;
    }

    /* ── Footer ── */
    footer {
        padding-top: 2.5rem !important;
        text-align: center;
    }

    footer h5, footer h6, footer .footer-heading {
        margin-bottom: 1rem !important;
        margin-top: 1.5rem;
    }

    footer .social-links {
        justify-content: center;
    }

    footer .social-links a {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }

    footer table {
        font-size: 0.8125rem !important;
    }

    footer .footer-bottom {
        text-align: center;
        font-size: 0.75rem !important;
        padding-top: 1rem !important;
    }

    /* ── Gallery ── */
    .gallery-section img {
        border-radius: var(--prestige-radius-sm) !important;
    }

    .gallery-section .gallery-caption {
        padding: 0.4rem 0.5rem !important;
    }

    .gallery-section .gallery-caption p {
        font-size: 0.75rem !important;
    }

    /* ── Blog ── */
    .blog-section .card-body,
    .portfolio-section .card-body {
        padding: 1.25rem !important;
    }

    .blog-meta, .portfolio-meta {
        font-size: 0.5625rem !important;
    }

    /* ── Service Detail Page ── */
    .service-detail .service-title {
        font-size: 1.75rem !important;
    }

    .service-detail .service-sidebar {
        margin-top: 2rem !important;
    }

    .service-detail .nav-tabs .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.6875rem !important;
    }

    /* ── Scroll to Top ── */
    .scroll-top {
        bottom: 16px !important;
        right: 16px !important;
        width: 40px !important;
        height: 40px !important;
    }

    /* ── Buttons — touch-friendly sizing ── */
    .btn {
        min-height: 44px;
        font-size: 0.6875rem !important;
    }

    .btn-primary,
    .btn-outline-primary {
        padding: 12px 24px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   ANCHOR NAVIGATION HACK
   Menu items "O nas" and "Kontakt" point to homepage.
   We add #about/#contact hash via CSS content trick + JS in preview.
   Since we can only use CSS here, we mark the nav items
   so the main.js scroll handler can pick them up.
   ═══════════════════════════════════════════════════════════ */

/* ── SMALL PHONE (max 375px) ── */
@@media (max-width: 375px) {
    .prestige-hero h1, .firefly-hero h1 {
        font-size: 2rem !important;
    }

    .prestige-hero .prestige-hero-logo img,
    .firefly-hero .firefly-hero-logo img {
        max-height: 80px !important;
    }

    .service-card {
        min-height: 280px !important;
    }

    .service-card h4, .service-card h3 {
        font-size: 0.9375rem !important;
    }

    .navbar-brand img,
    .navbar-brand .website-image {
        height: 40px !important;
        max-height: 40px !important;
    }

    footer { font-size: 0.8125rem; }
}
