/* ============================================
   CPSA1 — Frontend Theme
   Bright Clean Modern / Painting Services
   ============================================ */

/* --- Variables --- */
:root {
    --lx-black: #ffffff;
    --lx-dark: #f8f9fa;
    --lx-dark-2: #ffffff;
    --lx-dark-3: #f3f5f7;
    --lx-dark-4: #eaeef2;
    --lx-gold: #7cbf00;
    --lx-gold-light: #a4d62e;
    --lx-gold-dark: #5e9400;
    --lx-gold-gradient: linear-gradient(135deg, #a4d62e, #7cbf00, #5e9400);
    --lx-gold-glow: 0 4px 12px rgba(0,0,0,0.08);
    --lx-gold-glow-strong: 0 8px 20px rgba(0,0,0,0.08);
    --lx-text: #222222;
    --lx-text-muted: #555555;
    --lx-text-dim: #888888;
    --lx-white: #ffffff;
    --lx-border: rgba(0, 0, 0, 0.08);
    --lx-overlay: rgba(255, 255, 255, 0.85);
    --lx-font-display: 'Playfair Display', Georgia, serif;
    --lx-font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --lx-radius: 4px;
    --lx-radius-lg: 8px;
    --lx-transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Semantic primary aliases */
    --lx-primary: #7cbf00;
    --lx-primary-hover: #5e9400;
    --lx-primary-light: #a4d62e;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--lx-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--lx-text);
    background-color: var(--lx-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--lx-font-display);
    font-weight: 600;
    color: var(--lx-text);
    letter-spacing: 0.5px;
}

a { color: var(--lx-primary); text-decoration: none; transition: color var(--lx-transition); }
a:hover { color: var(--lx-primary-hover); }

::selection { background: var(--lx-primary); color: var(--lx-white); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--lx-dark-3); }
::-webkit-scrollbar-thumb { background: rgba(124,191,0,0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--lx-primary); }

/* --- Navbar --- */
#mainNav {
    padding: 1.2rem 0;
    transition: all var(--lx-transition);
    background: transparent;
    border-bottom: 1px solid transparent;
}
#mainNav.scrolled {
    padding: 0.7rem 0;
    background: rgba(124, 191, 0, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lx-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.navbar-brand .brand-text {
    font-family: var(--lx-font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--lx-primary);
    letter-spacing: 1px;
}

#mainNav .nav-link {
    color: var(--lx-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color var(--lx-transition);
}
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--lx-primary);
    transition: all var(--lx-transition);
    transform: translateX(-50%);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--lx-primary); }
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: 60%; }

.navbar-toggler { border-color: rgba(124,191,0,0.4); padding: 0.4rem 0.6rem; background: rgba(124,191,0,0.08); }
.navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(124,191,0,0.25); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(124,191,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); filter: none; }


/* --- Primary Button (kept class .btn-gold for structural compat) --- */
.btn-gold {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--lx-primary);
    color: var(--lx-white);
    border: 1px solid var(--lx-primary);
    border-radius: var(--lx-radius-lg);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--lx-transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.btn-gold:hover {
    background: var(--lx-primary-hover);
    border-color: var(--lx-primary-hover);
    color: var(--lx-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* --- Outline Primary Button --- */
.btn-outline-gold {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--lx-primary);
    border: 1px solid var(--lx-primary);
    border-radius: var(--lx-radius-lg);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--lx-transition);
    cursor: pointer;
}
.btn-outline-gold:hover {
    background: var(--lx-primary);
    color: var(--lx-white);
    border-color: var(--lx-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* --- Section Styles --- */
.section { padding: 6rem 0; }
.section-dark { background: var(--lx-dark); }
.section-darker { background: var(--lx-white); }
.section-accent {
    background: var(--lx-white);
    border-top: 1px solid var(--lx-border);
    border-bottom: 1px solid var(--lx-border);
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 0.5rem; }
.section-header .section-subtitle {
    display: inline-block;
    color: var(--lx-primary);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.section-header p { color: var(--lx-text-muted); max-width: 600px; margin: 0 auto; }

.gold-line {
    width: 60px; height: 2px;
    background: var(--lx-primary);
    margin: 1rem auto;
}

/* --- Hero Section (keeps dark overlay for image readability) --- */
.hero-bg {
    position: absolute; inset: 0; z-index: 1;
    background-size: cover; background-position: center;
}
.hero-section { position: relative; min-height: 95vh; display: flex; align-items: center; padding-top: 8rem; overflow: hidden; }
.hero-content { position: relative; z-index: 2; max-width: 700px; color: #fff; }
.hero-content h1 { font-size: 3.8rem; font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; color: #fff; }
.hero-content h1 .text-gold {
    color: var(--lx-primary-light);
    display: inline-block;
}
.hero-content p { font-size: 1rem; color: #f0f0f0; margin-bottom: 2rem; line-height: 1.8; border: 1px solid rgba(255,255,255,0.35); padding: 1rem; border-radius: 8px; display: inline-block; backdrop-filter: blur(2px); background: rgba(0,0,0,0.25); text-shadow: 0 1px 2px rgba(0,0,0,0.4); }

/* --- Hero Before/After Slider --- */
.hero-ba-slider {
    position: absolute; inset: 0; z-index: 1;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}
.hero-ba-layer {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-ba-before {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}
.hero-ba-after { z-index: 1; }
.hero-ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px; z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}
.hero-ba-handle-line {
    flex: 1;
    width: 2px;
    background: rgba(255,255,255,0.7);
}
.hero-ba-handle-knob {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--lx-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lx-white);
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    flex-shrink: 0;
    pointer-events: auto;
    cursor: ew-resize;
}
.hero-ba-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: var(--lx-primary);
    color: var(--lx-white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 3px;
    pointer-events: none;
    opacity: 0.95;
}
.hero-ba-label-before { left: 20px; }
.hero-ba-label-after { right: 20px; }
@media (max-width: 575.98px) {
    .hero-ba-handle-knob { width: 38px; height: 38px; font-size: 0.9rem; }
    .hero-ba-label { font-size: 0.6rem; padding: 0.25rem 0.6rem; }
}

/* --- Cards --- */
.lx-card {
    background: var(--lx-white);
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    overflow: hidden;
    transition: all var(--lx-transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.lx-card:hover {
    border-color: rgba(124,191,0,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.lx-card .card-img-wrap { overflow: hidden; position: relative; }
.lx-card .card-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.lx-card:hover .card-img-wrap img { transform: scale(1.05); }
.lx-card .card-body { padding: 1.5rem; }
.lx-card .card-body h5 { font-family: var(--lx-font-display); font-size: 1.2rem; margin-bottom: 0.5rem; }
.lx-card .card-body p { color: var(--lx-text-muted); font-size: 0.9rem; }

/* --- Gallery Card (Before/After) --- */
.gallery-card {
    position: relative;
    border-radius: var(--lx-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lx-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.gallery-card img { width: 100%; height: 350px; object-fit: cover; transition: transform 0.6s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity var(--lx-transition);
    display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(124,191,0,0.12);
    border: 1px solid rgba(124,191,0,0.25);
    border-radius: 3px;
    color: var(--lx-primary-hover);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Testimonial --- */
.testimonial-card {
    background: var(--lx-white);
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    padding: 2rem;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.testimonial-quote { color: var(--lx-text-muted); font-style: italic; margin-bottom: 1rem; }
.testimonial-name { color: var(--lx-text); font-weight: 600; font-size: 0.95rem; }
.testimonial-role { color: var(--lx-text-dim); font-size: 0.8rem; }
.testimonial-stars { color: var(--lx-primary); font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 2px; }

/* --- Feature Box --- */
.feature-box {
    background: var(--lx-white);
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    padding: 2rem;
    transition: all var(--lx-transition);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.feature-box:hover {
    border-color: rgba(124,191,0,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(124,191,0,0.1);
    border: 1px solid rgba(124,191,0,0.25);
    color: var(--lx-primary);
    font-size: 2rem;
    margin-bottom: 1.25rem;
    transition: all var(--lx-transition);
}
.feature-box:hover .feature-icon {
    background: var(--lx-primary);
    color: var(--lx-white);
    border-color: var(--lx-primary);
}
.feature-box h5 {
    font-family: var(--lx-font-display);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.feature-box p { color: var(--lx-text-muted); font-size: 0.9rem; }

/* --- Partner Logo --- */
.partner-logo {
    max-height: 60px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(0.2);
    transition: all var(--lx-transition);
}
.partner-logo:hover { opacity: 1; filter: grayscale(0); }

/* --- Team Card --- */
.team-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--lx-white);
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.team-img {
    width: 140px; height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--lx-primary);
}
.team-card h5 { font-family: var(--lx-font-display); font-size: 1.15rem; margin-bottom: 0.2rem; }
.team-role {
    color: var(--lx-primary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Skill Bar --- */
.skill-bar { margin-bottom: 1.5rem; }
.skill-label { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 500; }
.skill-track { height: 6px; background: var(--lx-dark-4); border-radius: 3px; overflow: hidden; }
.skill-fill {
    height: 100%;
    background: var(--lx-primary);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Forms --- */
.form-control, .form-select {
    background: var(--lx-white);
    border: 1px solid var(--lx-border);
    color: var(--lx-text);
    padding: 0.85rem 1rem;
    border-radius: var(--lx-radius);
    transition: all var(--lx-transition);
}
.form-control:focus, .form-select:focus {
    background: var(--lx-white);
    border-color: var(--lx-primary);
    color: var(--lx-text);
    box-shadow: 0 0 0 3px rgba(124,191,0,0.15);
}
.form-control::placeholder { color: var(--lx-text-dim); }
.form-label { color: var(--lx-text); font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }

/* --- Page Header Banner --- */
.page-header {
    position: relative;
    padding: 6rem 0 5rem;
    text-align: center;
    background: var(--lx-white);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-header > .container { width: 100%; }
.page-header h1 { font-size: 3rem; font-weight: 700; position: relative; }
.page-header p { color: var(--lx-text-muted); max-width: 500px; margin: 1rem auto 0; }

/* --- Footer --- */
.site-footer {
    background: rgba(124, 191, 0, 0.06);
    border-top: 1px solid var(--lx-border);
    padding: 4rem 0 2rem;
}
.footer-brand {
    font-family: var(--lx-font-display);
    font-weight: 700;
    color: var(--lx-primary);
    font-size: 1.4rem; margin-bottom: 1rem;
}
.footer-heading {
    font-family: var(--lx-font-body);
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--lx-text); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--lx-text-muted); }
.footer-links a { color: var(--lx-text-muted); transition: color var(--lx-transition); }
.footer-links a:hover { color: var(--lx-primary); }
.footer-divider { border-color: var(--lx-border); margin: 2rem 0 1.5rem; }
.text-muted-light { color: var(--lx-text-dim); font-size: 0.85rem; }

/* --- Spinner --- */
.lx-spinner {
    width: 40px; height: 40px;
    border: 3px solid var(--lx-border);
    border-top-color: var(--lx-primary);
    border-radius: 50%;
    animation: lxSpin 1s linear infinite;
}
@keyframes lxSpin { to { transform: rotate(360deg); } }

/* --- Utility --- */
.bg-dark-1 { background: var(--lx-white) !important; }
.bg-dark-2 { background: var(--lx-dark-3) !important; }
.bg-dark-3 { background: var(--lx-dark-4) !important; }
.text-gold {
    color: var(--lx-primary);
}
.text-muted-light { color: var(--lx-text-dim); }
.border-gold { border-color: var(--lx-primary) !important; }

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp 0.8s ease forwards; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 3rem; }
    .section-header h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 2.6rem; }
    .page-header { padding: 6rem 0 5rem; }
    .page-header h1 { font-size: 2.4rem; }
}
@media (max-width: 575.98px) {
    .btn-gold, .btn-outline-gold { padding: 0.7rem 1.5rem; font-size: 0.75rem; width: 100%; }
    .hero-content h1 { font-size: 2rem; }
    .section { padding: 3rem 0; }
}
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem 1.5rem;
        margin-top: 0.75rem;
        border-radius: var(--lx-radius-lg);
        border: 1px solid var(--lx-border);
    }
}

/* --- Social Icons --- */
.social-icons { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(124,191,0,0.08);
    border: 1px solid rgba(124,191,0,0.2);
    color: var(--lx-primary);
    transition: all var(--lx-transition);
    font-size: 0.95rem;
}
.social-icons a:hover {
    background: var(--lx-primary);
    color: var(--lx-white);
    border-color: var(--lx-primary);
    transform: translateY(-2px);
}

/* --- Gallery Before/After Slider --- */
.gallery-slider-card {
    background: var(--lx-white);
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    overflow: hidden;
    transition: all var(--lx-transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.gallery-slider-card:hover {
    border-color: rgba(124,191,0,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.gallery-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    background: var(--lx-dark-3);
}
.gallery-slider-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gallery-slider-after {
    z-index: 1;
}
.gallery-slider-before {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}
.gallery-slider-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}
.gallery-slider-handle-line {
    flex: 1;
    width: 2px;
    background: rgba(255,255,255,0.7);
}
.gallery-slider-handle-knob {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--lx-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lx-white);
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    pointer-events: auto;
}
.gallery-slider-label {
    position: absolute;
    top: 20px;
    z-index: 4;
    background: var(--lx-primary);
    color: var(--lx-white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    pointer-events: none;
    opacity: 0.95;
}
.gallery-slider-label-before { left: 20px; }
.gallery-slider-label-after { right: 20px; }
.gallery-slider-info {
    padding: 1.25rem 1.5rem;
}
.gallery-slider-info h5 {
    font-family: var(--lx-font-display);
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    color: var(--lx-text);
}
.gallery-slider-info p {
    color: var(--lx-text-muted);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 767.98px) {
    .gallery-slider { height: 320px; }
    .gallery-slider-handle-knob { width: 36px; height: 36px; font-size: 0.85rem; }
}

/* --- Gallery Pagination --- */
.gallery-pagination { margin-top: 3rem; }
.gp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 .65rem;
    border-radius: var(--lx-radius);
    border: 1px solid var(--lx-border);
    background: var(--lx-white);
    color: var(--lx-text-muted);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--lx-transition);
    cursor: pointer;
    user-select: none;
}
.gp-btn:hover:not(.gp-active):not(.gp-disabled) {
    border-color: var(--lx-primary);
    color: var(--lx-primary);
    background: rgba(124,191,0,0.05);
}
.gp-active {
    background: var(--lx-primary);
    color: var(--lx-white);
    border-color: var(--lx-primary);
    font-weight: 700;
    cursor: default;
}
.gp-disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: not-allowed;
}
.gp-dots {
    display: inline-flex;
    align-items: center;
    color: var(--lx-text-dim);
    padding: 0 .4rem;
    font-size: .9rem;
    letter-spacing: 2px;
    user-select: none;
}
@media (max-width: 575.98px) {
    .gp-btn { min-width: 34px; height: 34px; font-size: .8rem; padding: 0 .5rem; }
}

/* --- Logo --- */
.nav-logo { max-height: 42px; width: auto; transition: max-height var(--lx-transition); }
#mainNav.scrolled .nav-logo { max-height: 36px; }
.footer-logo { max-height: 56px; width: auto; margin-bottom: 0.75rem; }

/* --- Hero H1 Animation --- */
.hero-content h1 {
    opacity: 0;
    animation: heroTitleIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
}
@keyframes heroTitleIn {
    0%   { opacity: 0; transform: translateY(40px) scale(0.96); filter: blur(6px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.hero-content h1 .text-gold {
    background: linear-gradient(90deg, var(--lx-primary-light), var(--lx-primary), var(--lx-primary-hover), var(--lx-primary-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
}
@keyframes goldShimmer {
    to { background-position: -200% center; }
}

/* --- Brand Logo Slider --- */
.brand-slider-card {
    background: var(--lx-white);
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    padding: 1.75rem 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.brand-slider { overflow: hidden; position: relative; }
.brand-track { display: flex; align-items: center; gap: 3rem; width: max-content; animation: brandScroll 30s linear infinite; }
.brand-item { flex-shrink: 0; min-width: 160px; text-align: center; opacity: 0.65; transition: opacity var(--lx-transition); }
.brand-item:hover { opacity: 1; }
.brand-item img { max-height: 55px; max-width: 140px; filter: grayscale(0.2); }
@keyframes brandScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Hero Floating Tiles Background (reused as floating dots) --- */
.page-header .hero-paints-bg { display: none; }
.hero-paints-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.hero-paint {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
    animation: heroTileFloat 12s ease-in-out infinite;
}
.hero-paint:nth-child(even) { animation-duration: 15s; }
.hero-paint:nth-child(3n) { animation-duration: 18s; }
@keyframes heroTileFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50%      { transform: translateY(-20px) rotate(10deg); opacity: 0.55; }
}
