/* ============================================
   Luxen Tiling — Frontend Theme
   Dark Luxury + Gold Accents
   ============================================ */

/* --- Variables --- */
:root {
    --lx-black: #0a0a0a;
    --lx-dark: #111111;
    --lx-dark-2: #1a1a1a;
    --lx-dark-3: #222222;
    --lx-dark-4: #2a2a2a;
    --lx-gold: #D4AF37;
    --lx-gold-light: #F5D77A;
    --lx-gold-dark: #B8962E;
    --lx-gold-gradient: linear-gradient(135deg, #F5D77A, #D4AF37, #B8962E);
    --lx-gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    --lx-gold-glow-strong: 0 0 40px rgba(212, 175, 55, 0.5);
    --lx-text: #f0f0f0;
    --lx-text-muted: #999999;
    --lx-text-dim: #666666;
    --lx-white: #ffffff;
    --lx-border: rgba(255, 255, 255, 0.08);
    --lx-overlay: rgba(0, 0, 0, 0.7);
    --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);
}

/* --- 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;
    line-height: 1.3;
    color: var(--lx-white);
}

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

img { max-width: 100%; height: auto; }

::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--lx-white);
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--lx-dark); }
::-webkit-scrollbar-thumb { background: var(--lx-dark-4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--lx-gold-dark); }

/* --- 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(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lx-border);
}

.navbar-brand .brand-text {
    font-family: var(--lx-font-display);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--lx-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

#mainNav .nav-link {
    color: rgba(255, 255, 255, 0.75);
    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-gold-gradient);
    transition: all var(--lx-transition);
    transform: translateX(-50%);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--lx-white); }
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: 60%; }

.navbar-toggler { border-color: rgba(212,175,55,0.5); padding: 0.4rem 0.6rem; background: rgba(212,175,55,0.1); }
.navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(212,175,55,0.3); }
.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(212,175,55,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); filter: none; }

/* --- Gold Button --- */
.btn-gold {
    background: var(--lx-gold-gradient);
    color: var(--lx-white);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--lx-radius);
    padding: 0.65rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: all var(--lx-transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.btn-gold:hover {
    color: var(--lx-white);
    transform: translateY(-2px);
    box-shadow: var(--lx-gold-glow-strong);
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}
.btn-gold:hover::before { left: 100%; }

/* --- Outline Gold Button --- */
.btn-outline-gold {
    background: transparent;
    color: var(--lx-gold);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--lx-gold);
    border-radius: var(--lx-radius);
    padding: 0.6rem 1.8rem;
    transition: all var(--lx-transition);
}
.btn-outline-gold:hover {
    background: var(--lx-gold-gradient);
    color: var(--lx-white);
    border-color: transparent;
    box-shadow: var(--lx-gold-glow);
}

/* --- Section Styles --- */
.section { padding: 6rem 0; position: relative; }
.section-dark { background: var(--lx-dark); }
.section-darker { background: var(--lx-black); }
.section-accent {
    background: var(--lx-dark-2);
    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 {
    font-family: var(--lx-font-display);
    font-style: italic;
    color: var(--lx-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}
.section-header p { color: var(--lx-text-muted); max-width: 600px; margin: 0 auto; }

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

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-content h1 { font-size: 3.8rem; font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; }
.hero-content h1 .text-gold {
    background: var(--lx-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p { font-size: 1rem; color: #eee; margin-bottom: 2rem; line-height: 1.8; border: 1px solid rgba(255,255,255,0.4); padding: 1rem; border-radius: 8px; display: inline-block; backdrop-filter: blur(2px); background: rgba(0,0,0,0.15); text-shadow: 0 1px 1px rgba(0,0,0,0.3); }

/* --- Hero Before/After Slider --- */
.hero-ba-slider {
    position: absolute; inset: 0;
    overflow: hidden;
    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.6);
}
.hero-ba-handle-knob {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--lx-gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lx-white);
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(212,175,55,0.5), 0 4px 12px rgba(0,0,0,0.3);
    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-gold-gradient);
    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.9;
}
.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-dark-2);
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    overflow: hidden;
    transition: all var(--lx-transition);
}
.lx-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.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.08); }
.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;
    cursor: pointer;
}
.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.8), transparent);
    display: flex; align-items: flex-end; padding: 1.5rem;
    opacity: 0; transition: opacity var(--lx-transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-label {
    display: inline-block;
    background: var(--lx-gold-gradient);
    color: var(--lx-white);
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0.25rem 0.7rem; border-radius: 2px;
}

/* --- Testimonial --- */
.testimonial-card {
    background: var(--lx-dark-2);
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    padding: 2rem;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: var(--lx-font-display);
    font-size: 5rem; color: var(--lx-gold); opacity: 0.2;
    position: absolute; top: -10px; left: 20px; line-height: 1;
}
.testimonial-card p { color: var(--lx-text-muted); font-style: italic; line-height: 1.8; margin-bottom: 1.5rem; }
.testimonial-author { font-weight: 600; color: var(--lx-white); }
.testimonial-role { color: var(--lx-gold); font-size: 0.85rem; }
.testimonial-stars { color: var(--lx-gold); font-size: 0.9rem; margin-bottom: 1rem; }

/* --- Feature Box --- */
.feature-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    background: var(--lx-dark-2);
    transition: all var(--lx-transition);
}
.feature-box:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--lx-gold-glow);
    transform: translateY(-5px);
}
.feature-box .feature-icon {
    width: 70px; height: 70px;
    margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--lx-transition);
}
.feature-box:hover .feature-icon { background: var(--lx-gold-gradient); border-color: transparent; }
.feature-box .feature-icon i {
    font-size: 1.6rem;
    background: var(--lx-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--lx-transition);
}
.feature-box:hover .feature-icon i {
    -webkit-text-fill-color: var(--lx-white);
    background: none; color: var(--lx-white);
}
.feature-box h5 { font-family: var(--lx-font-display); font-size: 1.1rem; margin-bottom: 0.8rem; }
.feature-box p { color: var(--lx-text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* --- Partner Logo --- */
.partner-logo {
    filter: grayscale(1) brightness(0.6);
    opacity: 0.5; max-height: 50px;
    transition: all var(--lx-transition);
}
.partner-logo:hover { filter: grayscale(0) brightness(1); opacity: 1; }

/* --- Team Card --- */
.team-card { text-align: center; }
.team-card .team-img {
    width: 160px; height: 160px;
    border-radius: 50%; object-fit: cover;
    border: 3px solid var(--lx-border);
    margin-bottom: 1.2rem;
    transition: border-color var(--lx-transition);
}
.team-card:hover .team-img { border-color: var(--lx-gold); }
.team-card h5 { font-family: var(--lx-font-display); margin-bottom: 0.3rem; }
.team-card .team-role { color: var(--lx-gold); font-size: 0.85rem; font-weight: 500; }

/* --- Skill Bar --- */
.skill-bar { margin-bottom: 1.5rem; }
.skill-bar .skill-label { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 500; }
.skill-bar .skill-label span:last-child { color: var(--lx-gold); }
.skill-bar .skill-track { height: 6px; background: var(--lx-dark-4); border-radius: 3px; overflow: hidden; }
.skill-bar .skill-fill {
    height: 100%; background: var(--lx-gold-gradient);
    border-radius: 3px; width: 0;
    transition: width 1.5s ease;
}

/* --- Forms --- */
.lx-form .form-control,
.lx-form .form-select {
    background: var(--lx-dark-2);
    border: 1px solid var(--lx-border);
    color: var(--lx-text);
    border-radius: var(--lx-radius);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color var(--lx-transition), box-shadow var(--lx-transition);
}
.lx-form .form-control:focus,
.lx-form .form-select:focus {
    background: var(--lx-dark-3);
    border-color: var(--lx-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    color: var(--lx-white);
}
.lx-form .form-control::placeholder { color: var(--lx-text-dim); }
.lx-form .form-label {
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: var(--lx-text-muted); margin-bottom: 0.5rem;
}
.lx-form textarea.form-control { min-height: 140px; resize: vertical; }

/* --- Page Header Banner --- */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: var(--lx-dark);
    position: relative;
    overflow: hidden;
}
/* aurora replaces old static glow */
.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: var(--lx-dark);
    border-top: 1px solid var(--lx-border);
    padding: 4rem 0 2rem;
}
.footer-brand {
    font-family: var(--lx-font-display);
    font-weight: 700;
    background: var(--lx-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    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-white); 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-gold); }
.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-gold);
    border-radius: 50%;
    animation: lxSpin 0.8s linear infinite;
}
@keyframes lxSpin { to { transform: rotate(360deg); } }

/* --- Utility --- */
.text-gold {
    background: var(--lx-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bg-dark-2 { background: var(--lx-dark-2); }
.border-gold { border-color: var(--lx-gold) !important; }

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

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .hero-content h1 { font-size: 2.6rem; }
    .section-header h2 { font-size: 2.2rem; }
    .section { padding: 4rem 0; }
    .page-header { padding: 8rem 0 3rem; }
    .page-header h1 { font-size: 2.4rem; }
    #navbarNav {
        background: rgba(10, 10, 10, 0.98);
        padding: 1rem; margin-top: 0.5rem;
        border-radius: var(--lx-radius-lg);
        border: 1px solid var(--lx-border);
    }
}
@media (max-width: 575.98px) {
    .hero-content h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .section { padding: 3rem 0; }
    .lx-card .card-img-wrap img { height: 220px; }
    .gallery-card img { height: 250px; }
}

/* --- Social Icons --- */
.social-icon {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--lx-border);
    color: var(--lx-text-muted);
    font-size: 1rem;
    transition: all var(--lx-transition);
}
.social-icon:hover {
    background: var(--lx-gold-gradient);
    border-color: transparent;
    color: var(--lx-white);
    transform: translateY(-2px);
    box-shadow: var(--lx-gold-glow);
}
.social-icon-lg {
    width: 46px; height: 46px;
    font-size: 1.2rem;
}


/* --- Gallery Before/After Slider --- */
.gallery-slider-card {
    background: var(--lx-dark-2);
    border: 1px solid var(--lx-border);
    border-radius: var(--lx-radius-lg);
    overflow: hidden;
    transition: all var(--lx-transition);
}
.gallery-slider-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.gallery-slider {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}
.gallery-slider-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gallery-slider-before {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}
.gallery-slider-after {
    z-index: 1;
}
.gallery-slider-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;
}
.gallery-slider-handle-line {
    flex: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.6);
}
.gallery-slider-handle-knob {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--lx-gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lx-white);
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    pointer-events: auto;
    cursor: ew-resize;
}
.gallery-slider-label {
    position: absolute;
    bottom: 15px;
    z-index: 5;
    background: var(--lx-gold-gradient);
    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.9;
}
.gallery-slider-label-before { left: 15px; }
.gallery-slider-label-after { right: 15px; }
.gallery-slider-info {
    padding: 1.2rem 1.5rem;
}
.gallery-slider-info h5 {
    font-family: var(--lx-font-display);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.gallery-slider-info p {
    color: var(--lx-text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}
@media (max-width: 767.98px) {
    .gallery-slider { height: 280px; }
    .gallery-slider-handle-knob { width: 34px; height: 34px; font-size: 0.85rem; }
    .gallery-slider-label { font-size: 0.6rem; padding: 0.2rem 0.6rem; }
}


/* --- Gallery Pagination --- */
.gallery-pagination .gp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--lx-dark-2);
    border: 1px solid var(--lx-border);
    color: var(--lx-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--lx-transition);
}
.gallery-pagination a.gp-btn:hover {
    background: var(--lx-gold-gradient);
    border-color: transparent;
    color: var(--lx-white);
    transform: translateY(-2px);
    box-shadow: var(--lx-gold-glow);
}
.gallery-pagination .gp-active {
    background: var(--lx-gold-gradient);
    border-color: transparent;
    color: var(--lx-white);
    box-shadow: var(--lx-gold-glow);
}
.gallery-pagination .gp-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.gallery-pagination .gp-dots {
    color: var(--lx-text-dim);
    font-size: 1rem;
    padding: 0 4px;
}
@media (max-width: 575.98px) {
    .gallery-pagination .gp-btn { width: 34px; height: 34px; font-size: 0.75rem; }
}


/* --- Logo --- */
.brand-logo {
    max-height: 45px;
    width: auto;
    transition: all var(--lx-transition);
}
#mainNav.scrolled .brand-logo {
    max-height: 38px;
}
.footer-logo {
    max-height: 50px;
    width: auto;
}
.page-header .container {
    position: relative;
    z-index: 1;
}


50% { filter: brightness(1.4); }
    100% { opacity: 1; transform: translateY(0); filter: brightness(1); }
}

/* --- Hero H1 Animation --- */
.hero-content h1 {
    animation: heroTextReveal 1.2s ease forwards;
    opacity: 0;
}
.hero-content h1 .text-gold {
    display: inline-block;
    opacity: 0;
    animation: heroGoldIn 1s ease 0.6s forwards, heroGoldPulse 4s ease-in-out 2s infinite;
}
@keyframes heroTextReveal {
    0% { opacity: 0; transform: translateY(30px); letter-spacing: 8px; }
    60% { letter-spacing: 1px; }
    100% { opacity: 1; transform: translateY(0); letter-spacing: normal; }
}
@keyframes heroGoldIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroGoldPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}


/* --- Brand Logo Slider --- */
.brand-slider-section { padding: 3rem 0; background: var(--lx-dark); border-top: 1px solid var(--lx-border); overflow: hidden; }
.brand-slider-track-wrapper { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.brand-slider-track { display: flex; align-items: center; gap: 4rem; width: max-content; animation: brandScroll 30s linear infinite; }
.brand-slider-track:hover { animation-play-state: paused; }
.brand-slider-item { flex-shrink: 0; display: flex; align-items: center; justify-content: center; height: 50px; min-width: 120px; opacity: 0.4; filter: grayscale(1) brightness(0.8); transition: all 0.4s ease; text-decoration: none; }
.brand-slider-item:hover { opacity: 1; filter: grayscale(0) brightness(1); transform: scale(1.05); }
.brand-slider-item img { max-height: 50px; max-width: 150px; width: auto; object-fit: contain; }
@keyframes brandScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 767.98px) { .brand-slider-track { gap: 2.5rem; } .brand-slider-item { height: 35px; min-width: 80px; } .brand-slider-item img { max-height: 35px; max-width: 100px; } }


/* --- Hero Floating Tiles Background --- */
.hero-tiles-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-tile {
    position: absolute;
    border: 1px solid rgba(212,175,55,0.08);
    border-radius: 4px;
    background: rgba(212,175,55,0.02);
    animation: heroTileFloat 12s ease-in-out infinite;
}
.hero-tile:nth-child(even) { animation-duration: 15s; }
.hero-tile:nth-child(3n) { animation-duration: 18s; }
@keyframes heroTileFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-25px) rotate(12deg); opacity: 0.6; }
}
.page-header { position: relative; overflow: hidden; }
.page-header .container { position: relative; z-index: 1; }
