/* ==============================================
   CarClean — Premium Public Website Design System
   Agency-tier: taste-skill (8,6,4) + soft-skill + redesign-skill
   ============================================== */

/* ===== Custom Properties ===== */
:root {
    --pub-dark: #0A0A0A;
    --pub-dark-soft: #111111;
    --pub-dark-card: #161616;
    --pub-dark-shell: #1C1C1C;
    --pub-white: #FFFFFF;
    --pub-off-white: #F7F6F3;
    --pub-cream: #FDFBF7;
    --pub-gold: #C9A94E;
    --pub-gold-hover: #B8982F;
    --pub-gold-light: rgba(201, 169, 78, 0.10);
    --pub-gold-glow: rgba(201, 169, 78, 0.25);
    --pub-grey: #6B7280;
    --pub-grey-light: #9CA3AF;
    --pub-grey-border: #222222;
    --pub-grey-bg: #F5F4F0;
    --pub-success: #22C55E;

    --pub-radius: 16px;
    --pub-radius-md: 12px;
    --pub-radius-lg: 24px;
    --pub-radius-xl: 32px;
    --pub-radius-full: 999px;

    --pub-ease: cubic-bezier(0.32, 0.72, 0, 1);
    --pub-transition: 500ms var(--pub-ease);
    --pub-transition-fast: 300ms var(--pub-ease);

    --pub-container: 1200px;
    --pub-header-h: 72px;
    --pub-font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--pub-header-h) + 24px); }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== Grain/Noise Overlay ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== Container ===== */
.pub-container {
    max-width: var(--pub-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Floating Island Header ===== */
.pub-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 900px;
    height: 56px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--pub-radius-full);
    z-index: 1000;
    transition: all 600ms var(--pub-ease);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.pub-header.scrolled {
    top: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.pub-header.hero-dark {
    background: rgba(10, 10, 10, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
}

.pub-header.hero-dark.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(0, 0, 0, 0.06);
}

.pub-header .pub-container {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 1rem;
    padding: 0 8px 0 20px;
    max-width: 100%;
}

.pub-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.15rem;
    color: var(--pub-dark);
    font-weight: 400;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.hero-dark .pub-logo { color: var(--pub-white); }
.hero-dark.scrolled .pub-logo { color: var(--pub-dark); }

.pub-logo i { font-size: 1.25rem; color: var(--pub-gold); }
.pub-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.pub-logo strong { font-weight: 800; }

.pub-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-left: auto;
}

.pub-nav a {
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--pub-grey);
    border-radius: var(--pub-radius-full);
    transition: all var(--pub-transition-fast);
    white-space: nowrap;
}

.hero-dark .pub-nav a { color: rgba(255,255,255,0.6); }
.hero-dark.scrolled .pub-nav a { color: var(--pub-grey); }

.pub-nav a:hover { color: var(--pub-dark); background: rgba(0, 0, 0, 0.04); }
.hero-dark .pub-nav a:hover { color: var(--pub-white); background: rgba(255,255,255,0.1); }
.hero-dark.scrolled .pub-nav a:hover { color: var(--pub-dark); background: rgba(0,0,0,0.04); }

.pub-nav-login { color: var(--pub-gold) !important; font-weight: 600 !important; }

.pub-cta-header {
    padding: 0.45rem 1.25rem;
    background: var(--pub-dark);
    color: var(--pub-white);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--pub-radius-full);
    transition: all var(--pub-transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-dark .pub-cta-header { background: var(--pub-gold); color: var(--pub-dark); }
.hero-dark.scrolled .pub-cta-header { background: var(--pub-dark); color: var(--pub-white); }

.pub-cta-header:hover {
    background: var(--pub-gold);
    color: var(--pub-dark);
    transform: scale(1.03);
}
.pub-cta-header:active { transform: scale(0.97); }

/* Hamburger */
.pub-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.pub-hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--pub-dark);
    border-radius: 2px;
    transition: all 400ms var(--pub-ease);
    transform-origin: center;
}

.hero-dark .pub-hamburger span { background: var(--pub-white); }
.hero-dark.scrolled .pub-hamburger span { background: var(--pub-dark); }

.pub-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.pub-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pub-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===== HERO — Full Viewport Immersive ===== */
.pub-hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: calc(var(--pub-header-h) + 24px) 0 0;
}

/* Compact hero for sub-pages — accounts for floating fixed header */
.pub-hero-compact {
    min-height: 380px;
    max-height: none;
    align-items: flex-end;
    padding-bottom: 3rem;
    padding-top: calc(var(--pub-header-h) + 32px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.7) 80%, var(--pub-dark) 100%),
        radial-gradient(ellipse at 50% 40%, rgba(201,169,78,0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: rgba(201,169,78,0.12);
    border: 1px solid rgba(201,169,78,0.2);
    color: var(--pub-gold);
    border-radius: var(--pub-radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--pub-white);
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.hero-title .gold { color: var(--pub-gold); }
.hero-title .thin { font-weight: 300; opacity: 0.7; }

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin: 0 auto 2.5rem;
    max-width: 520px;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* --- Primary CTA (Double-shell) --- */
.btn-pub-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    background: var(--pub-gold);
    color: var(--pub-dark);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--pub-radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--pub-transition);
    letter-spacing: -0.01em;
    position: relative;
}

.btn-pub-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px var(--pub-gold-glow);
}
.btn-pub-primary:active { transform: scale(0.97); }

.btn-pub-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    background: rgba(255,255,255,0.06);
    color: var(--pub-white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--pub-radius-full);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all var(--pub-transition);
    backdrop-filter: blur(8px);
}

.btn-pub-outline:hover {
    border-color: var(--pub-gold);
    color: var(--pub-gold);
    background: rgba(201,169,78,0.08);
    transform: translateY(-2px);
}
.btn-pub-outline:active { transform: scale(0.97); }

/* Hero trust row */
.hero-trust {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item { text-align: center; }
.trust-item .trust-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pub-white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.trust-item .trust-number .gold { color: var(--pub-gold); font-weight: 400; font-size: 0.85rem; }
.trust-item .trust-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Hero scroll indicator */
.hero-scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-cue .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pub-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Section Base ===== */
.pub-section { padding: 7rem 0; }
.pub-section-dark { background: var(--pub-dark); color: var(--pub-white); }
.pub-section-grey { background: var(--pub-grey-bg); }
.pub-section-cream { background: var(--pub-cream); }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    background: var(--pub-gold-light);
    border: 1px solid rgba(201,169,78,0.15);
    color: var(--pub-gold);
    border-radius: var(--pub-radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.pub-section-dark .section-tag {
    background: rgba(201,169,78,0.1);
    border-color: rgba(201,169,78,0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 0.85rem;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--pub-grey);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}
.pub-section-dark .section-subtitle { color: rgba(255,255,255,0.45); }

/* ===== Kinetic Marquee Trust Bar ===== */
.marquee-section {
    overflow: hidden;
    padding: 1.5rem 0;
    background: var(--pub-dark);
    border-top: 1px solid var(--pub-grey-border);
    border-bottom: 1px solid var(--pub-grey-border);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 2.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-item .marquee-icon {
    color: var(--pub-gold);
    font-size: 1rem;
}

.marquee-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--pub-gold);
    opacity: 0.4;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Service Cards — Double-Bezel ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Outer Shell */
.service-card-shell {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--pub-radius-xl);
    padding: 6px;
    transition: all var(--pub-transition);
}

.service-card-shell:hover {
    border-color: rgba(201, 169, 78, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

/* Inner Core */
.service-card {
    background: var(--pub-white);
    border-radius: calc(var(--pub-radius-xl) - 6px);
    padding: 2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--pub-radius);
    background: var(--pub-gold-light);
    border: 1px solid rgba(201,169,78,0.12);
    color: var(--pub-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pub-dark);
    letter-spacing: -0.02em;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--pub-grey);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-card-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pub-gold);
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.service-card-price small { font-size: 0.72rem; color: var(--pub-grey); font-weight: 500; }

.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--pub-radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--pub-dark);
    transition: all var(--pub-transition-fast);
    align-self: flex-start;
}

.service-card-cta:hover {
    border-color: var(--pub-gold);
    color: var(--pub-gold);
    background: var(--pub-gold-light);
    transform: translateX(4px);
}

/* ===== Why Us ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Double-bezel dark */
.why-item-shell {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--pub-radius-xl);
    padding: 5px;
    transition: all var(--pub-transition);
}

.why-item-shell:hover {
    border-color: rgba(201, 169, 78, 0.25);
    transform: translateY(-4px);
}

.why-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: calc(var(--pub-radius-xl) - 5px);
    background: var(--pub-dark-card);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04);
}

.why-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201,169,78,0.1);
    border: 1px solid rgba(201,169,78,0.15);
    color: var(--pub-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1.5rem;
}

.why-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pub-white);
    letter-spacing: -0.01em;
}

.why-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    max-width: 260px;
    margin: 0 auto;
}

/* ===== Gallery — Parallax Tilt ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--pub-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--pub-off-white);
    cursor: pointer;
    transition: transform 600ms var(--pub-ease), box-shadow 600ms var(--pub-ease);
    transform-style: preserve-3d;
    perspective: 600px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms var(--pub-ease);
}

.gallery-item:hover {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, transparent 30%, rgba(10,10,10,0.85) 90%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--pub-transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: var(--pub-white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.gallery-overlay small {
    color: var(--pub-gold);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===== Process — Premium Numbered Timeline ===== */
.proc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 32px;
}

.proc-header-left { flex: 0 0 50%; }
.proc-header-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding-bottom: 8px;
}

.proc-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--pub-dark);
}

.proc-title-accent {
    font-weight: 300;
    color: var(--pub-gold);
}

.proc-desc {
    font-size: 0.92rem;
    color: var(--pub-grey);
    line-height: 1.75;
    max-width: 440px;
}

.proc-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.06);
    margin-bottom: 48px;
    position: relative;
}

.proc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.proc-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 32px 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.proc-item:nth-child(even) {
    padding-left: 32px;
    padding-right: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.proc-item:hover {
    transform: translateY(-2px);
}

.proc-item:hover .proc-num {
    color: var(--pub-gold);
}

.proc-num {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    min-width: 56px;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    font-variant-numeric: tabular-nums;
}

.proc-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--pub-dark);
    letter-spacing: -0.01em;
}

.proc-content p {
    font-size: 0.85rem;
    color: var(--pub-grey);
    line-height: 1.7;
    max-width: 320px;
}

/* ===== Testimonials — Asymmetric ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.25rem;
}

.testimonials-grid .testimonial-shell:first-child { grid-row: span 2; }

.testimonial-shell {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--pub-radius-xl);
    padding: 5px;
    transition: all var(--pub-transition);
}

.testimonial-shell:hover {
    border-color: rgba(201, 169, 78, 0.2);
    transform: translateY(-3px);
}

.testimonial-card {
    background: var(--pub-white);
    border-radius: calc(var(--pub-radius-xl) - 5px);
    padding: 2.5rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: var(--pub-gold);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    letter-spacing: 3px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--pub-dark);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: normal;
    font-weight: 400;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--pub-gold-light);
    border: 1px solid rgba(201,169,78,0.15);
    color: var(--pub-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pub-dark);
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.testimonial-author-info p {
    font-size: 0.72rem;
    color: var(--pub-grey);
    margin: 0;
}

/* ===== Voucher Cards ===== */
.voucher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

.voucher-shell {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--pub-radius-xl);
    padding: 5px;
    transition: all var(--pub-transition);
}

.voucher-shell:hover {
    border-color: rgba(201,169,78,0.3);
    transform: translateY(-4px);
}

.voucher-card {
    background: linear-gradient(145deg, var(--pub-dark-card) 0%, #1A1A18 100%);
    border-radius: calc(var(--pub-radius-xl) - 5px);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.04);
}

.voucher-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,78,0.12) 0%, transparent 70%);
}

.voucher-discount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--pub-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.voucher-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--pub-white); margin-bottom: 0.25rem; }
.voucher-card .voucher-desc { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }

.voucher-code {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(201,169,78,0.08);
    border: 1px dashed rgba(201,169,78,0.25);
    border-radius: var(--pub-radius);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--pub-gold);
    letter-spacing: 0.12em;
    font-family: 'Courier New', monospace;
}

.voucher-expiry { font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-top: 0.75rem; }

/* ===== Contact & Booking ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-shell {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--pub-radius-xl);
    padding: 5px;
    height: 100%;
}

.contact-info-card {
    background: var(--pub-dark-card);
    border-radius: calc(var(--pub-radius-xl) - 5px);
    padding: 2.5rem;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.04);
    height: 100%;
}

.contact-info-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--pub-white); margin-bottom: 1.75rem; letter-spacing: -0.02em; }

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--pub-radius);
    background: rgba(201,169,78,0.1);
    border: 1px solid rgba(201,169,78,0.12);
    color: var(--pub-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-item-text h4 { font-size: 0.8rem; font-weight: 600; color: var(--pub-white); margin-bottom: 0.1rem; }
.contact-item-text p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }
.contact-item-text a { color: var(--pub-gold); }

.contact-map {
    margin-top: 1.5rem;
    border-radius: var(--pub-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid var(--pub-grey-border);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* Booking Form — Double-bezel */
.booking-form-shell {
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--pub-radius-xl);
    padding: 6px;
}

.pub-section-dark .booking-form-shell {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}

.booking-form-card {
    background: var(--pub-white);
    border-radius: calc(var(--pub-radius-xl) - 6px);
    padding: 2.5rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.booking-form-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--pub-dark); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.booking-form-card .form-hint { font-size: 0.82rem; color: var(--pub-grey); margin-bottom: 1.75rem; }

.pub-form-group { margin-bottom: 1rem; }
.pub-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pub-dark);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}
.pub-form-group label .required { color: #EF4444; }

.pub-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: var(--pub-radius);
    font-family: var(--pub-font);
    font-size: 0.85rem;
    color: var(--pub-dark);
    background: var(--pub-cream);
    transition: all var(--pub-transition-fast);
    outline: none;
}

.pub-input:focus {
    border-color: var(--pub-gold);
    box-shadow: 0 0 0 3px var(--pub-gold-light);
    background: var(--pub-white);
}

.pub-input::placeholder { color: var(--pub-grey-light); }
textarea.pub-input { resize: vertical; min-height: 80px; }

.pub-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-pub-submit {
    width: 100%;
    padding: 0.85rem;
    background: var(--pub-gold);
    color: var(--pub-dark);
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: var(--pub-radius);
    cursor: pointer;
    transition: all var(--pub-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-pub-submit:hover { background: var(--pub-gold-hover); transform: translateY(-1px); box-shadow: 0 8px 30px var(--pub-gold-glow); }
.btn-pub-submit:active { transform: scale(0.98); }
.btn-pub-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.booking-success { text-align: center; padding: 2rem; }
.booking-success i { font-size: 3rem; color: var(--pub-success); margin-bottom: 1rem; }
.booking-success h4 { font-size: 1.05rem; font-weight: 700; color: var(--pub-dark); margin-bottom: 0.5rem; }
.booking-success p { color: var(--pub-grey); font-size: 0.85rem; }

/* ===== Footer ===== */
.pub-footer {
    background: var(--pub-dark);
    padding: 5rem 0 0;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid var(--pub-grey-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--pub-grey-border);
}

.footer-logo { margin-bottom: 1.25rem; }
.footer-logo i { color: var(--pub-gold); }
.footer-logo span { color: var(--pub-white); }

.footer-brand p { font-size: 0.82rem; line-height: 1.75; margin-bottom: 1.5rem; max-width: 300px; }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: var(--pub-radius);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--pub-grey-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    transition: all var(--pub-transition-fast);
}
.footer-social a:hover { background: var(--pub-gold-light); border-color: var(--pub-gold); color: var(--pub-gold); }

.footer-links h4, .footer-contact h4 {
    font-size: 0.75rem; font-weight: 700; color: var(--pub-white);
    margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.1em;
}

.footer-links a {
    display: block; font-size: 0.82rem; color: rgba(255,255,255,0.45);
    padding: 0.35rem 0; transition: color var(--pub-transition-fast);
}
.footer-links a:hover { color: var(--pub-gold); }

.footer-contact p { font-size: 0.82rem; margin-bottom: 0.6rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact p i { color: var(--pub-gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: var(--pub-gold); }

.footer-bottom { padding: 1.75rem 0; text-align: center; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ===== Floating CTA ===== */
.pub-floating-cta {
    display: none;
    position: fixed; bottom: 24px; right: 24px;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--pub-gold);
    color: var(--pub-dark);
    font-size: 1.2rem;
    align-items: center; justify-content: center;
    box-shadow: 0 8px 30px var(--pub-gold-glow);
    z-index: 998;
    transition: all var(--pub-transition-fast);
}
.pub-floating-cta:hover { transform: scale(1.1); }
.pub-floating-cta:active { transform: scale(0.95); }

/* ===== Card Hover Utilities ===== */
.card-img-hover {
    transition: transform 0.6s ease;
}
.service-card-shell:hover .card-img-hover {
    transform: scale(1.08);
}

.card-arrow-btn {
    transition: all 0.3s ease;
}
.card-arrow-btn:hover {
    background: var(--pub-gold) !important;
    border-color: var(--pub-gold) !important;
    color: var(--pub-dark) !important;
}

/* ===== Detail Pages ===== */
.detail-hero {
    position: relative;
    padding-top: calc(var(--pub-header-h) + 60px);
    padding-bottom: 60px;
    background: var(--pub-cream);
}

/* Fix breadcrumb showing numbered list */
.detail-hero .breadcrumb {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}

.product-gallery-main {
    width: 100%;
    border-radius: var(--pub-radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--pub-grey-bg);
    margin-bottom: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar { display: none; }

.thumb-item {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--pub-radius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.thumb-item:hover, .thumb-item.active {
    opacity: 1;
    border-color: var(--pub-gold);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-block {
    padding-left: 2rem;
}

.prod-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pub-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.prod-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--pub-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.prod-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pub-dark);
    margin-bottom: 2rem;
    font-variant-numeric: tabular-nums;
}

.prod-desc-short {
    font-size: 1.05rem;
    color: var(--pub-grey);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.spec-table {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.spec-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.spec-table td {
    padding: 1rem 0;
    vertical-align: top;
}
.spec-label {
    font-weight: 600;
    color: var(--pub-dark);
    width: 40%;
}
.spec-value {
    color: var(--pub-grey);
}

.prod-long-desc {
    background: var(--pub-white);
    border-radius: var(--pub-radius-xl);
    padding: 4rem;
    margin-top: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.prod-long-desc h2 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.prod-long-desc p {
    color: var(--pub-grey);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    white-space: pre-line;
}

@media (max-width: 991px) {
    .product-info-block { padding-left: 0; margin-top: 3rem; }
    .prod-long-desc { padding: 2rem; }
}

/* ===== Mobile Sticky CTA Bar ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.mobile-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--pub-radius);
    transition: all var(--pub-transition-fast);
    text-decoration: none;
}

.mobile-sticky-btn-primary {
    background: var(--pub-gold);
    color: var(--pub-dark);
}

.mobile-sticky-btn-primary:hover {
    background: var(--pub-gold-hover);
}

.mobile-sticky-btn-outline {
    background: var(--pub-white);
    color: var(--pub-dark);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
}

.mobile-sticky-btn-outline:hover {
    border-color: var(--pub-dark);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }
    /* Add bottom padding to body so content isn't hidden behind sticky bar */
    body:has(.mobile-sticky-cta) {
        padding-bottom: 80px;
    }
    /* Move floating CTA up to avoid overlap */
    .pub-floating-cta {
        bottom: 90px;
    }
}

/* ===== PREMIUM REDESIGN (Taste-Skill) ===== */

/* 1. Double Bezel Architecture */
.double-bezel {
    border-radius: 2rem;
    padding: 0.375rem;
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}
.double-bezel-inner {
    border-radius: calc(2rem - 0.375rem);
    background: var(--pub-white);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.7), 0 20px 40px -15px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.double-bezel-dark {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.double-bezel-dark .double-bezel-inner {
    background: var(--pub-dark-card);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 20px 40px -15px rgba(0,0,0,0.3);
}

/* 2. Button-in-Button (Tactile CTA) */
.btn-in-btn {
    border-radius: 9999px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.32,0.72,0,1);
}
.btn-in-btn:active {
    transform: scale(0.98);
}
.btn-in-btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.32,0.72,0,1);
}
.btn-in-btn:hover .btn-in-btn-icon {
    transform: translateX(2px) scale(1.05);
    background: rgba(0,0,0,0.2);
}

/* 3. Masonry Bento Grid (Asymmetric) */
.masonry-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}
.masonry-bento .bento-item {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    background: var(--pub-grey-bg);
}
.masonry-bento .bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.masonry-bento .bento-item:hover img {
    transform: scale(1.05);
}
/* Grid spanning rules */
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }

@media (max-width: 768px) {
    .masonry-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    .bento-large { grid-column: span 2; }
    .bento-tall { grid-row: span 1; grid-column: span 2; }
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(4px);
    transition: opacity 800ms var(--pub-ease), transform 800ms var(--pub-ease), filter 800ms var(--pub-ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .proc-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-shell:first-child { grid-row: span 1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pub-header {
        width: calc(100% - 32px);
        top: 12px;
    }

    /* Off-canvas drawer from right */
    .pub-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 85vw;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 400ms var(--pub-ease);
        visibility: hidden;
    }
    .pub-nav.open {
        transform: translateX(0);
        visibility: visible;
    }

    /* Backdrop overlay */
    .pub-nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 400ms var(--pub-ease);
    }
    .pub-nav-backdrop.active {
        display: block;
        opacity: 1;
    }

    .pub-nav a {
        font-size: 1.4rem;
        padding: 0.75rem 1.5rem;
        color: rgba(255,255,255,0.6) !important;
        font-weight: 500;
        transform: translateX(20px);
        opacity: 0;
        transition: all 400ms var(--pub-ease);
    }
    .pub-nav.open a {
        transform: translateX(0);
        opacity: 1;
    }
    .pub-nav.open a:nth-child(1) { transition-delay: 80ms; }
    .pub-nav.open a:nth-child(2) { transition-delay: 120ms; }
    .pub-nav.open a:nth-child(3) { transition-delay: 160ms; }
    .pub-nav.open a:nth-child(4) { transition-delay: 200ms; }
    .pub-nav.open a:nth-child(5) { transition-delay: 240ms; }
    .pub-nav.open a:nth-child(6) { transition-delay: 280ms; }

    .pub-nav a:hover { color: var(--pub-white) !important; background: rgba(255,255,255,0.05); }
    .pub-cta-header { display: none; }
    .pub-hamburger { display: flex; }
    .pub-floating-cta { display: flex; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .proc-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .proc-grid { grid-template-columns: 1fr; }
    .proc-item:nth-child(even) { padding-left: 0; border-left: none; }
    .proc-item { padding: 24px 0; gap: 16px; }
    .proc-num { font-size: 1.75rem; min-width: 40px; }
    .voucher-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .pub-section { padding: 4.5rem 0; }
    .section-title { font-size: 1.75rem; }
    .pub-form-row { grid-template-columns: 1fr; }

    .hero-title { letter-spacing: -0.04em; }
}

@media (max-width: 480px) {
    .hero-trust { flex-direction: column; gap: 1.5rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-pub-primary,
    .hero-ctas .btn-pub-outline { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== NEW CONTACT SECTION: CAR CLEAN DALAT ===== */
.ccd-contact-section {
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--pub-cream);
    color: var(--pub-dark);
}

.ccd-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.ccd-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.ccd-col-left { width: 48%; padding-right: 48px; }
.ccd-col-right { width: 52%; }

.ccd-heading {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--pub-dark);
}

.ccd-heading-accent {
    font-weight: 300;
    color: var(--pub-gold);
}

.ccd-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--pub-gold);
    margin-bottom: 20px;
}

.ccd-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pub-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 78, 0.15);
    animation: ccd-pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes ccd-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(201, 169, 78, 0.15); }
    50% { box-shadow: 0 0 0 7px rgba(201, 169, 78, 0.05); }
}

.ccd-heading-desc {
    font-size: 0.92rem;
    color: var(--pub-grey);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 440px;
    font-weight: 400;
}

.ccd-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.06);
    margin-bottom: 48px;
    position: relative;
}

.ccd-divider-accent {
    position: absolute;
    left: 0;
    top: -1px;
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--pub-gold) 0%, rgba(201, 169, 78, 0.2) 100%);
    border-radius: 2px;
}

.ccd-body-row {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.ccd-col-left-body { width: 48%; }
.ccd-col-right-body { width: 52%; }
.ccd-col-map-full { width: 100%; }

.ccd-visual-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: var(--pub-radius-lg);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-color: #e5e5e5;
}

.ccd-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ccd-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 60%);
}

.ccd-contact-card {
    position: relative;
    background-color: var(--pub-white);
    margin: 32px;
    padding: 32px;
    border-radius: var(--pub-radius);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
    width: calc(100% - 64px);
    z-index: 2;
}

.ccd-brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ccd-brand-desc {
    font-size: 0.95rem;
    color: var(--pub-grey);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.5;
}

.ccd-info-list { list-style: none; margin-bottom: 32px; }

.ccd-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--pub-dark);
    line-height: 1.5;
}

.ccd-info-item svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    color: var(--pub-dark-soft);
    margin-top: 2px;
}

.ccd-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.ccd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--pub-radius);
    transition: all var(--pub-transition-fast);
    cursor: pointer;
}

.ccd-btn svg { width: 18px; height: 18px; margin-right: 8px; }

.ccd-btn-primary {
    background-color: var(--pub-dark);
    color: var(--pub-white);
    border: 1px solid var(--pub-dark);
}

.ccd-btn-primary:hover {
    background-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ccd-btn-secondary {
    background-color: #F1F5F9;
    color: var(--pub-dark);
    border: 1px solid #F1F5F9;
}

.ccd-btn-secondary:hover { background-color: #E2E8F0; }

.ccd-btn-outline {
    background-color: transparent;
    color: var(--pub-dark);
    border: 1px solid rgba(0,0,0,0.15);
}

.ccd-btn-outline:hover {
    border-color: var(--pub-dark);
    background-color: #F8FAFC;
}

.ccd-trust-points {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--pub-grey);
    font-weight: 400;
    padding-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.ccd-trust-points span { display: flex; align-items: center; }
.ccd-trust-points span::before {
    content: "✓";
    color: var(--pub-dark);
    font-weight: 600;
    margin-right: 6px;
}

.ccd-map-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: var(--pub-radius-lg);
    overflow: hidden;
    background-color: #eaeaea; 
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.ccd-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.ccd-map-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: var(--pub-radius);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
    max-width: 320px;
    z-index: 10;
}

.ccd-map-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--pub-dark);
}

.ccd-map-overlay p {
    font-size: 0.85rem;
    color: var(--pub-grey);
    line-height: 1.5;
}

.contact-grid.booking-center {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .ccd-heading { font-size: clamp(2rem, 4vw, 2.75rem); }
    .ccd-visual-wrapper, .ccd-map-wrapper { min-height: 540px; }
    .ccd-col-left, .ccd-col-left-body { width: 45%; }
    .ccd-col-right, .ccd-col-right-body { width: 55%; }
}

@media (max-width: 768px) {
    .ccd-contact-section { padding: 60px 0; }
    .ccd-header-row { flex-direction: column; align-items: flex-start; margin-bottom: 16px; gap: 8px; }
    .ccd-col-left, .ccd-col-right { width: 100%; padding-right: 0; }
    .ccd-header-row .ccd-col-right { display: none; }
    .ccd-heading-desc { max-width: 100%; }
    .ccd-divider { margin-bottom: 32px; }
    .ccd-body-row { flex-direction: column; gap: 32px; }
    .ccd-col-left-body, .ccd-col-right-body { width: 100%; }
    .ccd-visual-wrapper { min-height: auto; border-radius: var(--pub-radius); align-items: stretch; background: transparent; flex-direction: column; }
    .ccd-visual-bg { position: relative; height: 320px; border-radius: var(--pub-radius); }
    .ccd-visual-overlay { display: none; }
    .ccd-contact-card { margin: -60px 16px 0 16px; width: calc(100% - 32px); padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .ccd-cta-group { flex-direction: column; }
    .ccd-btn { width: 100%; padding: 14px 20px; }
    .ccd-trust-points { flex-direction: column; gap: 12px; padding-top: 16px; }
    .ccd-map-wrapper { min-height: 400px; border-radius: var(--pub-radius); }
    .ccd-map-overlay { display: none; }
}

/* ===== Shared Product/Service Card ===== */
.shared-card-shell {
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    height: 100%;
}

.shared-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    height: 100%;
}

.shared-card:hover {
    transform: translateY(-6px);
    border-color: var(--pub-gold);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.shared-card-img-wrap {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
}

.shared-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shared-card:hover .shared-card-img-wrap img {
    transform: scale(1.08);
}

.shared-card-badge {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0.75rem;
    padding: 2px 12px;
    background: #fff;
    color: var(--pub-dark);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-weight: 700;
    border-radius: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    z-index: 2;
}

.shared-card-body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.shared-card-category {
    color: var(--pub-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.shared-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.shared-card-title a {
    color: var(--pub-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.shared-card-title a:hover {
    color: var(--pub-gold);
}

.shared-card-desc {
    color: var(--pub-grey);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.shared-card-price {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--pub-gold);
    font-variant-numeric: tabular-nums;
    margin-top: auto;
    margin-bottom: 1rem;
}

.shared-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pub-gold) 0%, #d49f00 100%);
    color: var(--pub-dark);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(212,175,55,0.2);
    text-decoration: none;
}

.shared-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212,175,55,0.4);
    color: #000;
}

/* Sidebar Utilities */
.pub-sidebar-wrapper {
    width: 100%;
    max-width: 260px;
    flex-shrink: 0;
}

.pub-sidebar-inner {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-menu-item {
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    color: var(--pub-dark);
}

.sidebar-menu-item.active {
    background: var(--pub-gold-light);
    font-weight: 700;
    color: var(--pub-gold);
}

.sidebar-menu-item i {
    font-size: 0.8rem;
    margin-right: 0.75rem;
}

.sidebar-menu-item.active i {
    color: var(--pub-gold);
}
.sidebar-menu-item:not(.active) i {
    color: var(--pub-grey-light);
}

/* Details Information Blocks */
.detail-summary-block {
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.15);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.detail-trust-badge {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
}

.gallery-thumbs-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.gallery-thumb-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb-item.active {
    border-color: var(--pub-gold);
}

/* Pagination Styles extracted from _PublicPagination.cshtml */
.pub-pagination {
    width: 100%;
}

.pub-pagination .pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.pub-pagination .page-item {
    display: inline-flex;
}

.pub-pagination .page-link {
    color: var(--pub-dark);
    background-color: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    margin: 0 2px;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    padding: 0;
}

.pub-pagination .page-link:hover {
    background-color: var(--pub-gold-light);
    color: var(--pub-gold);
    border-color: var(--pub-gold);
}

.pub-pagination .page-item.active .page-link {
    background-color: var(--pub-dark);
    border-color: var(--pub-dark);
    color: #fff;
}

.pub-pagination .page-item.disabled .page-link {
    color: #adb5bd;
    background-color: transparent;
    border-color: rgba(0,0,0,0.05);
}

/* ============================================================
   SERVICE LISTING PAGE — Banner + Sidebar + Grid
   ============================================================ */

/* ===== Banner Carousel ===== */
.svc-banner-section {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    background: var(--pub-dark);
}

.svc-banner-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.svc-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 800ms var(--pub-ease), transform 800ms var(--pub-ease);
    pointer-events: none;
}

.svc-banner-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.svc-banner-bg {
    position: absolute;
    inset: 0;
}

.svc-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 55%, transparent 100%),
        linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 40%);
}

.svc-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 600px;
    padding-top: calc(var(--pub-header-h) + 64px);
    padding-bottom: 60px;
}

.svc-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    background: rgba(201,169,78,0.15);
    border: 1px solid rgba(201,169,78,0.25);
    color: var(--pub-gold);
    border-radius: var(--pub-radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    width: fit-content;
    backdrop-filter: blur(8px);
}

.svc-banner-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--pub-white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    text-wrap: balance;
}

.svc-banner-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 460px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.svc-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.svc-banner-actions .btn-pub-primary {
    font-size: 0.82rem;
    padding: 0.65rem 1.5rem;
}
.svc-banner-actions .btn-pub-outline {
    font-size: 0.82rem;
    padding: 0.65rem 1.5rem;
}

/* Banner Controls */
.svc-banner-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.svc-banner-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.svc-dot {
    width: 28px;
    height: 3px;
    border: none;
    border-radius: 2px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 400ms var(--pub-ease);
    padding: 0;
}

.svc-dot.active {
    width: 44px;
    background: var(--pub-gold);
}

.svc-dot:hover:not(.active) {
    background: rgba(255,255,255,0.5);
}

.svc-banner-arrows {
    display: flex;
    gap: 8px;
}

.svc-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--pub-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 300ms var(--pub-ease);
    backdrop-filter: blur(8px);
}

.svc-arrow:hover {
    background: var(--pub-gold);
    color: var(--pub-dark);
    border-color: var(--pub-gold);
    transform: scale(1.05);
}

/* ===== Sidebar + Grid Layout ===== */
.svc-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar */
.svc-sidebar {
    position: sticky;
    top: calc(var(--pub-header-h) + 24px);
}

.svc-filter-toggle {
    display: none; /* shown on mobile */
}

.svc-sidebar-body {
    background: var(--pub-white);
    border-radius: var(--pub-radius);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    padding: 1.5rem;
}

.svc-sidebar-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pub-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}

.svc-sidebar-heading i {
    color: var(--pub-gold);
    font-size: 0.9rem;
}

.svc-category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.svc-cat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pub-dark);
    transition: all 200ms ease;
    text-decoration: none;
}

.svc-cat-item:hover {
    background: rgba(0,0,0,0.03);
    color: var(--pub-gold);
}

.svc-cat-item.active {
    background: var(--pub-gold-light);
    color: var(--pub-gold);
    font-weight: 700;
}

.svc-cat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--pub-grey-light);
    flex-shrink: 0;
    transition: all 200ms ease;
}

.svc-cat-item.active .svc-cat-icon {
    background: rgba(201,169,78,0.15);
    color: var(--pub-gold);
}

.svc-cat-item:hover .svc-cat-icon {
    color: var(--pub-gold);
}

.svc-cat-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.svc-cat-count {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--pub-grey-light);
    background: rgba(0,0,0,0.04);
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}

.svc-cat-item.active .svc-cat-count {
    color: var(--pub-gold);
    background: rgba(201,169,78,0.12);
}

/* Sidebar CTA */
.svc-sidebar-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(201,169,78,0.06) 0%, rgba(201,169,78,0.12) 100%);
    border: 1px solid rgba(201,169,78,0.12);
    border-radius: 12px;
}

.svc-sidebar-cta-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pub-gold);
    color: var(--pub-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.svc-sidebar-cta-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--pub-grey);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1px;
}

.svc-sidebar-cta-phone {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--pub-dark);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

.svc-sidebar-cta-phone:hover {
    color: var(--pub-gold);
}

/* ===== Main Content ===== */
.svc-main {
    min-width: 0;
}

.svc-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.svc-results-info {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.svc-results-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pub-dark);
    letter-spacing: -0.02em;
    margin: 0;
}

.svc-results-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pub-grey-light);
    background: rgba(0,0,0,0.04);
    padding: 3px 12px;
    border-radius: 20px;
}

/* Service Grid */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
}

/* Empty State */
.svc-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--pub-white);
    border-radius: var(--pub-radius);
    border: 1px dashed rgba(0,0,0,0.1);
}

.svc-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--pub-grey-light);
    margin: 0 auto 1.5rem;
}

.svc-empty-state h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pub-dark);
    margin-bottom: 0.5rem;
}

.svc-empty-state p {
    font-size: 0.9rem;
    color: var(--pub-grey);
    margin-bottom: 1.5rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
    .svc-layout {
        grid-template-columns: 220px 1fr;
        gap: 1.5rem;
    }

    .svc-banner-section {
        height: 460px;
    }

    .pub-hero-compact {
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .svc-banner-section {
        height: 420px;
    }

    .pub-hero-compact {
        min-height: 320px;
        padding-bottom: 2rem;
    }

    .svc-banner-content {
        padding-bottom: 50px;
    }

    .svc-banner-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .svc-banner-desc {
        font-size: 0.85rem;
    }

    .svc-banner-actions .btn-pub-primary,
    .svc-banner-actions .btn-pub-outline {
        font-size: 0.78rem;
        padding: 0.55rem 1.1rem;
    }

    .svc-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .svc-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 1.5rem;
    }

    /* Mobile filter toggle */
    .svc-filter-toggle {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.75rem 1rem;
        background: var(--pub-white);
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 12px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--pub-dark);
        cursor: pointer;
        transition: all 200ms ease;
    }

    .svc-filter-toggle:hover {
        border-color: var(--pub-gold);
    }

    .svc-filter-chevron {
        margin-left: auto;
        font-size: 0.75rem;
        transition: transform 300ms ease;
    }

    .svc-filter-toggle.open .svc-filter-chevron {
        transform: rotate(180deg);
    }

    .svc-sidebar-body {
        display: none;
        margin-top: 0.75rem;
    }

    .svc-sidebar-body.open {
        display: block;
        animation: svcSlideDown 300ms ease forwards;
    }

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

    .svc-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .svc-banner-section {
        height: 380px;
    }

    .pub-hero-compact {
        min-height: 300px;
        padding-top: calc(var(--pub-header-h) + 24px);
    }

    .svc-banner-actions {
        flex-direction: column;
    }

    .svc-banner-actions .btn-pub-primary,
    .svc-banner-actions .btn-pub-outline {
        width: 100%;
        justify-content: center;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-results-info {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */

/* Breadcrumb */
.svc-breadcrumb {
    margin-bottom: 2rem;
}

.svc-breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 500;
}

.svc-breadcrumb ol li {
    display: inline-flex;
    align-items: center;
    color: var(--pub-grey);
}

.svc-breadcrumb ol li + li::before {
    content: "›";
    margin: 0 0.6rem;
    color: var(--pub-grey-light);
    font-size: 1rem;
}

.svc-breadcrumb ol li a {
    color: var(--pub-grey);
    text-decoration: none;
    transition: color 0.2s;
}

.svc-breadcrumb ol li a:hover {
    color: var(--pub-gold);
}

.svc-breadcrumb ol li a i {
    font-size: 0.75rem;
    margin-right: 0.2rem;
}

.svc-breadcrumb ol li.active {
    color: var(--pub-dark);
    font-weight: 700;
}

/* Detail Grid */
.svc-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Image */
.svc-detail-gallery {
    position: sticky;
    top: calc(var(--pub-header-h) + 24px);
}

.svc-detail-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--pub-grey-bg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.svc-detail-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.svc-detail-img-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.8rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--pub-radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--pub-gold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Thumbnail Strip */
.svc-detail-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.svc-detail-thumbs::-webkit-scrollbar { display: none; }

.svc-thumb {
    width: 72px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0;
    background: none;
    opacity: 0.55;
    transition: all 0.25s ease;
}

.svc-thumb:hover {
    opacity: 0.85;
}

.svc-thumb.active {
    opacity: 1;
    border-color: var(--pub-gold);
    box-shadow: 0 2px 8px rgba(201,169,78,0.25);
}

.svc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#mainImage {
    transition: opacity 0.2s ease;
}

/* Info Section */
.svc-detail-info {
    display: flex;
    flex-direction: column;
}

.svc-detail-cat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--pub-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.svc-detail-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--pub-dark);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.svc-detail-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.svc-detail-price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pub-gold);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

.svc-detail-price-contact {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pub-grey);
}

/* Trust Badges */
.svc-detail-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.svc-detail-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: var(--pub-grey-bg);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--pub-dark);
}

.svc-detail-badge i {
    font-size: 1rem;
    color: var(--pub-gold);
    flex-shrink: 0;
}

/* Description Box */
.svc-detail-desc-box {
    padding: 1.25rem;
    background: var(--pub-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.svc-detail-desc-box h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pub-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.svc-detail-desc-box h3 i {
    color: var(--pub-gold);
}

.svc-detail-desc-box p {
    font-size: 0.92rem;
    color: var(--pub-grey);
    line-height: 1.7;
    margin: 0;
}

/* CTA Actions */
.svc-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.svc-detail-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: var(--pub-gold);
    color: var(--pub-dark);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--pub-ease);
    cursor: pointer;
}

.svc-detail-btn-primary:hover {
    background: var(--pub-dark);
    color: var(--pub-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.svc-detail-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: transparent;
    color: var(--pub-dark);
    border: 2px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--pub-ease);
    cursor: pointer;
}

.svc-detail-btn-outline:hover {
    border-color: var(--pub-gold);
    color: var(--pub-gold);
    transform: translateY(-2px);
}

/* Long Description */
.svc-detail-long {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--pub-white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.svc-detail-long h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pub-dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.svc-detail-long h2 i {
    color: var(--pub-gold);
}

.svc-detail-long-content {
    font-size: 0.95rem;
    color: var(--pub-grey);
    line-height: 1.8;
}

.svc-detail-long-content p {
    margin: 0;
}

/* Customer Gallery Section */
.svc-gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.svc-gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: rgba(0,0,0,0.04);
    border-radius: var(--pub-radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--pub-grey);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.svc-gallery-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--pub-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.svc-gallery-subtitle {
    font-size: 0.9rem;
    color: var(--pub-grey);
    max-width: 480px;
    margin: 0 auto;
}

.svc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.svc-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.svc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--pub-ease);
}

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

.svc-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.svc-gallery-overlay i {
    color: var(--pub-white);
    font-size: 1.5rem;
}

.svc-gallery-item:hover .svc-gallery-overlay {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .svc-detail-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .svc-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .svc-detail-gallery {
        position: relative;
        top: 0;
    }

    .svc-detail-badges {
        grid-template-columns: 1fr;
    }

    .svc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-detail-actions {
        flex-direction: column;
    }

    .svc-detail-title {
        font-size: 1.5rem;
    }

    .svc-detail-price-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .svc-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .svc-breadcrumb ol {
        font-size: 0.75rem;
    }
}


