/* ==========================================================================
   LUXURY UI LAYER — Yar Ahmadi Fight Club
   Loaded after style.css. Pure enhancement layer (no theme overrides broken).
   ========================================================================== */

:root {
    --lux-gold: #d4af37;
    --lux-gold-light: #f3d67e;
    --lux-gold-dark: #9a7b1e;
    --lux-ink: #0b0b0d;
    --lux-ink-2: #131316;
    --lux-line: rgba(212, 175, 55, 0.25);
    --lux-glass: rgba(11, 11, 13, 0.72);
    --lux-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    --lux-radius: 18px;
    --lux-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Scroll progress bar ---------- */
#lux-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    z-index: 10000;
    pointer-events: none;
    transform-origin: right center;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--lux-gold-dark), var(--lux-gold), var(--lux-gold-light), var(--lux-gold));
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.55);
}

/* ---------- Back to top ---------- */
#lux-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9990;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all 0.45s var(--lux-ease);
    color: var(--lux-ink);
    background: linear-gradient(135deg, var(--lux-gold-light), var(--lux-gold) 55%, var(--lux-gold-dark));
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}
#lux-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#lux-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(212, 175, 55, 0.5);
}
#lux-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.4;
    fill: none;
}

/* ---------- Glass navbar ---------- */
#header {
    transition: background 0.5s var(--lux-ease), backdrop-filter 0.5s var(--lux-ease), box-shadow 0.5s var(--lux-ease);
}
#header.lux-glass {
    background: var(--lux-glass);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 1px 0 var(--lux-line), 0 14px 40px rgba(0, 0, 0, 0.35);
}
.navbar-brand img {
    transition: transform 0.5s var(--lux-ease);
}
#header.lux-glass .navbar-brand img {
    transform: scale(1.04);
}
.navbar-nav .nav-link {
    position: relative;
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light));
    transition: width 0.4s var(--lux-ease);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* ---------- Gold gradient headline accents ---------- */
.section-title span,
.hero-content .title span {
    background: linear-gradient(100deg, var(--lux-gold-light) 0%, var(--lux-gold) 45%, var(--lux-gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ---------- Buttons: gold luxury finish ---------- */
.btn.magnetic-button,
.content-btn,
.btn-outline {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--lux-ease), box-shadow 0.4s var(--lux-ease), border-color 0.4s var(--lux-ease), color 0.4s var(--lux-ease);
    will-change: transform;
}
.btn.magnetic-button:hover,
.content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(212, 175, 55, 0.28);
    border-color: var(--lux-gold);
}
.btn.magnetic-button::before,
.content-btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
    right: -60%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-18deg);
    transition: right 0.75s var(--lux-ease);
    pointer-events: none;
}
.btn.magnetic-button:hover::before,
.content-btn:hover::before {
    right: 130%;
}

/* ---------- Cards / portfolio items ---------- */
.card.has-shadow,
.portfolio-item {
    transition: transform 0.6s var(--lux-ease), box-shadow 0.6s var(--lux-ease);
}
.card.has-shadow:hover,
.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--lux-shadow), 0 0 0 1px var(--lux-line);
}
.portfolio-item .image-holder {
    overflow: hidden;
    border-radius: var(--lux-radius);
}
.portfolio-item .card-thumb img {
    transition: transform 1.1s var(--lux-ease), filter 0.6s var(--lux-ease);
}
.portfolio-item:hover .card-thumb img {
    transform: scale(1.07);
    filter: brightness(1.06) saturate(1.05);
}
.card-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(11, 11, 13, 0.85) 100%);
}

/* ---------- Service items ---------- */
.services .item {
    padding: 1.4rem;
    border-radius: var(--lux-radius);
    transition: background 0.5s var(--lux-ease), transform 0.5s var(--lux-ease), box-shadow 0.5s var(--lux-ease);
}
.services .item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 1px var(--lux-line);
}
.services .item .item-count {
    color: var(--lux-gold);
    opacity: 0.55;
    font-weight: 700;
}

/* ---------- Testimonials ---------- */
.testimonial {
    transition: border-color 0.5s var(--lux-ease), box-shadow 0.5s var(--lux-ease), transform 0.5s var(--lux-ease);
}
.testimonial:hover {
    border-color: var(--lux-line) !important;
    box-shadow: var(--lux-shadow);
    transform: translateY(-4px);
}
.testimonial .rating i {
    color: var(--lux-gold) !important;
}

/* ---------- Footer ---------- */
.footer-area .footer-title {
    position: relative;
    padding-bottom: 0.6rem;
    margin-bottom: 1.1rem;
}
.footer-area .footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 42px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lux-gold), transparent);
}
.footer-links ul li a,
.footer-area a {
    transition: color 0.35s var(--lux-ease), padding-right 0.35s var(--lux-ease);
}
.footer-links ul li a:hover {
    color: var(--lux-gold) !important;
    padding-right: 6px;
}
.social-icons-footer .social-icon {
    transition: transform 0.4s var(--lux-ease), background 0.4s var(--lux-ease), box-shadow 0.4s var(--lux-ease);
}
.social-icons-footer .social-icon:hover {
    transform: translateY(-4px);
    background: var(--lux-gold);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
}
.footer-area .contact-item:hover i {
    color: var(--lux-gold);
}

/* ---------- Forms & inputs ---------- */
input.form-control,
textarea.form-control,
select.form-control {
    transition: border-color 0.4s var(--lux-ease), box-shadow 0.4s var(--lux-ease);
}
input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

/* ---------- Marquee sponsors ---------- */
.marquee-item {
    transition: transform 0.45s var(--lux-ease), box-shadow 0.45s var(--lux-ease), filter 0.45s var(--lux-ease);
}
.marquee-item:hover {
    transform: translateY(-3px);
    filter: none;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

/* ---------- Accessibility & polish ---------- */
::selection {
    background: rgba(212, 175, 55, 0.85);
    color: var(--lux-ink);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--lux-gold);
    outline-offset: 3px;
    border-radius: 4px;
}
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.7s var(--lux-ease);
}
img[loading="lazy"].lux-loaded,
img[loading="lazy"]:not([data-lux-pending]) {
    opacity: 1;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--lux-ink);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--lux-gold-dark), var(--lux-gold));
    border-radius: 6px;
}

/* Skip link */
.lux-skip-link {
    position: fixed;
    top: -60px;
    right: 16px;
    z-index: 10001;
    padding: 10px 18px;
    border-radius: 10px;
    background: var(--lux-gold);
    color: var(--lux-ink);
    font-weight: 700;
    transition: top 0.3s var(--lux-ease);
}
.lux-skip-link:focus {
    top: 14px;
}

/* Reveal-on-scroll */
.lux-reveal-init {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--lux-ease), transform 0.8s var(--lux-ease);
}
.lux-reveal-init.lux-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    #lux-progress,
    .btn.magnetic-button::before,
    .content-btn::before {
        display: none !important;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    img[loading="lazy"] {
        opacity: 1;
    }
    .lux-reveal-init {
        opacity: 1;
        transform: none;
    }
}

/* ---------- Mobile refinements ---------- */
@media (max-width: 767.98px) {
    #lux-top {
        bottom: 18px;
        left: 18px;
        width: 42px;
        height: 42px;
    }
    .services .item {
        padding: 1rem;
    }
}

/* ==========================================================================
   PRELOADER V2 — Fight Club Arena
   Keeps .preloader / .preloader-inner hooks used by GSAP in main.js
   ========================================================================== */
.preloader {
    background:
        radial-gradient(ellipse 60% 45% at 50% 38%, rgba(196, 30, 30, 0.16) 0%, transparent 70%),
        radial-gradient(ellipse 45% 35% at 50% 110%, rgba(212, 175, 55, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
        #07070b !important;
}
.preloader::before {
    display: none; /* replaced by richer arena layers */
}
.preloader-arena {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.preloader-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.75) 100%);
}
/* Spotlights sweeping from top corners */
.spotlight {
    position: absolute;
    top: -12%;
    width: 46%;
    height: 85%;
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0.02) 55%, transparent 100%);
    clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
    filter: blur(2px);
    animation: luxSpotlight 5s ease-in-out infinite alternate;
}
.spotlight-left {
    right: -6%;
    transform: rotate(-14deg);
    transform-origin: top center;
}
.spotlight-right {
    left: -6%;
    transform: rotate(14deg);
    transform-origin: top center;
    animation-delay: -2.5s;
    background: linear-gradient(180deg, rgba(196, 30, 30, 0.15) 0%, rgba(196, 30, 30, 0.02) 55%, transparent 100%);
}
@keyframes luxSpotlight {
    from { opacity: 0.25; }
    to   { opacity: 0.6; }
}
/* Ring ropes */
.ring-rope {
    position: absolute;
    right: 0;
    left: 0;
    height: 2px;
    opacity: 0.35;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55) 18%, rgba(212, 175, 55, 0.75) 50%, rgba(212, 175, 55, 0.55) 82%, transparent);
}
.ring-rope-top    { top: 18%; }
.ring-rope-middle { top: 50%; opacity: 0.18; }
.ring-rope-bottom { top: 82%; }
/* Corner tape (red/gold diagonal stripes) */
.corner-tape {
    position: absolute;
    right: 0;
    left: 0;
    height: 6px;
    background: repeating-linear-gradient(-45deg, #C41E1E 0 14px, #0b0b0d 14px 22px, #d4af37 22px 36px, #0b0b0d 36px 44px);
    opacity: 0.8;
}
.corner-tape-top    { top: 0; }
.corner-tape-bottom { bottom: 0; }
/* ROUND 1 badge */
.round-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 999px;
    background: rgba(196, 30, 30, 0.08);
    color: #f3d67e;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.round-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C41E1E;
    box-shadow: 0 0 10px rgba(196, 30, 30, 0.9);
    animation: luxDotPulse 1.4s ease-in-out infinite;
}
@keyframes luxDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.7); }
}
/* Impact ring flash (synced to 1.4s punch cycle) */
.impact-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    margin: -45px 0 0 -45px;
    border: 2px solid rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    animation: luxImpactRing 1.4s ease-out infinite;
    pointer-events: none;
}
@keyframes luxImpactRing {
    0%, 28% { opacity: 0; transform: scale(0.4); }
    36%     { opacity: 0.9; transform: scale(0.85); }
    55%     { opacity: 0; transform: scale(1.6); }
    100%    { opacity: 0; transform: scale(1.6); }
}
/* Club name — gold gradient on "FC" */
.preloader .club-name .gold {
    background: linear-gradient(100deg, #f3d67e 0%, #d4af37 50%, #9a7b1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.preloader .club-name {
    text-shadow: 0 0 24px rgba(196, 30, 30, 0.45), 0 2px 18px rgba(0, 0, 0, 0.6);
}
.preloader .club-sub {
    color: rgba(243, 214, 126, 0.55);
}
/* Persian tagline */
.preloader-tag {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.5px;
    animation: luxTagFade 2.8s ease-in-out infinite;
}
@keyframes luxTagFade {
    0%, 100% { opacity: 0.35; }
    50%      { opacity: 0.75; }
}
/* Loading bar — gold/red glow */
.preloader .loading-bar {
    width: 240px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}
.preloader .loading-bar-fill {
    background: linear-gradient(90deg, #9a7b1e, #d4af37, #C41E1E, #d4af37, #9a7b1e);
    background-size: 200% 100%;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    animation: loadingBarFill 2s ease-in-out infinite, luxBarShimmer 1.2s linear infinite;
}
@keyframes luxBarShimmer {
    from { background-position: 0% 0; }
    to   { background-position: 200% 0; }
}
/* Glove glow polish */
.preloader .glove {
    filter: drop-shadow(0 10px 26px rgba(196, 30, 30, 0.45)) drop-shadow(0 0 18px rgba(212, 175, 55, 0.15));
}

/* ==========================================================================
   FIGHT CLUB PAGE STYLES — red / gold / dark kickboxing identity
   ========================================================================== */
:root {
    --lux-red: #c41e1e;
    --lux-red-light: #f04343;
    --lux-tape: repeating-linear-gradient(-45deg, #c41e1e 0 12px, #0b0b0d 12px 19px, #d4af37 19px 31px, #0b0b0d 31px 38px);
}

/* --- Section titles: punch-slash accent --- */
.intro .title,
.section-heading .section-title {
    position: relative;
}
.intro .title::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 4px;
    margin-left: 14px;
    vertical-align: middle;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lux-red), var(--lux-gold));
    transform: skewX(-25deg);
}
.section-heading .sub-heading span {
    color: var(--lux-gold) !important;
    font-weight: 900;
}
/* Eyebrow label */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f3d67e;
    margin-bottom: 0.6rem;
}
.section-eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--lux-red), transparent);
}

/* --- Awards list: championship table --- */
.awards .list-group-item {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    position: relative;
    overflow: hidden;
    transition: background 0.5s var(--lux-ease), padding 0.5s var(--lux-ease);
}
.awards .list-group-item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--lux-gold), var(--lux-red));
    opacity: 0;
    transition: opacity 0.4s var(--lux-ease);
}
.awards .list-group-item:hover {
    background: rgba(212, 175, 55, 0.05) !important;
    padding-right: 1.4rem;
}
.awards .list-group-item:hover::before {
    opacity: 1;
}
.awards .list-group-item .title {
    position: relative;
    padding-right: 30px;
}
.awards .list-group-item .title::before {
    content: "\F1E3"; /* bootstrap-icons trophy */
    font-family: "bootstrap-icons" !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--lux-gold);
}
.awards .list-group-item .tags {
    color: var(--lux-red-light) !important;
    font-weight: 600;
}
.awards .award-btn {
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--lux-gold) !important;
    transition: all 0.4s var(--lux-ease);
}
.awards .award-btn:hover {
    background: var(--lux-gold);
    color: var(--lux-ink) !important;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35);
}

/* --- Blog cards (home) --- */
.blog .card .terms.badge,
.terms.badge.outlined {
    border-color: rgba(212, 175, 55, 0.4) !important;
    color: #f3d67e !important;
    background: rgba(196, 30, 30, 0.12) !important;
    transition: all 0.4s var(--lux-ease);
}
.blog .card .terms.badge:hover,
.terms.badge.outlined:hover {
    background: var(--lux-gold) !important;
    color: var(--lux-ink) !important;
}
.blog-item .post-date i {
    color: var(--lux-gold);
}
.blog-item .title a {
    transition: color 0.35s var(--lux-ease);
}
.blog-item:hover .title a {
    color: var(--lux-gold);
}
/* --- CTA: fight-night block --- */
section.cta {
    position: relative;
    overflow: hidden;
}
section.cta::before,
section.cta::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--lux-tape);
    opacity: 0.75;
}
section.cta::before { top: 0; }
section.cta::after  { bottom: 0; }
section.cta .title {
    background: linear-gradient(100deg, #ffffff 30%, #f3d67e 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
section.cta .line-item {
    color: var(--lux-red-light) !important;
    font-weight: 700;
}
section.cta .line {
    background: linear-gradient(90deg, var(--lux-red), var(--lux-gold)) !important;
}
section.cta .socials .nav-link {
    position: relative;
    transition: color 0.35s var(--lux-ease);
}
section.cta .socials .nav-link:hover {
    color: var(--lux-gold) !important;
}

/* --- Breadcrumb / page headers --- */
.breadcrumb-section {
    position: relative;
    overflow: hidden;
}
.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 55%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(196, 30, 30, 0.12) 0%, transparent 65%);
    pointer-events: none;
}
.breadcrumb-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--lux-red) 30%, var(--lux-gold) 70%, transparent);
    opacity: 0.6;
}
.breadcrumb-section .animate-line {
    background: linear-gradient(90deg, var(--lux-red), var(--lux-gold)) !important;
}
/* --- Contact page --- */
.contact-area .contact-info h3 {
    position: relative;
    padding-bottom: 0.7rem;
}
.contact-area .contact-info h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lux-red), var(--lux-gold));
}
.contact-area .list-group-item {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
.contact-area .list-group-item .icon {
    color: var(--lux-gold) !important;
}
.contact-area .list-group-item a {
    transition: color 0.35s var(--lux-ease);
}
.contact-area .list-group-item a:hover {
    color: var(--lux-gold) !important;
}
.contact-area .form-floating > .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}
.contact-area .form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.06);
}

/* --- About page --- */
.about-counter {
    border: 1px solid var(--lux-line);
    border-radius: var(--lux-radius);
    background: linear-gradient(160deg, rgba(196, 30, 30, 0.10), rgba(212, 175, 55, 0.05));
    transition: transform 0.5s var(--lux-ease), box-shadow 0.5s var(--lux-ease);
}
.about-counter:hover {
    transform: translateY(-6px);
    box-shadow: var(--lux-shadow);
}
.about-counter .title .odometer {
    color: var(--lux-gold);
}
.about-item {
    border-right: 3px solid;
    border-image: linear-gradient(180deg, var(--lux-red), var(--lux-gold)) 1;
    padding-right: 1rem;
}

/* --- Blog index page --- */
.blog-section .post-card-2 {
    border-radius: var(--lux-radius);
    overflow: hidden;
    transition: transform 0.6s var(--lux-ease), box-shadow 0.6s var(--lux-ease);
}
.blog-section .post-card-2:hover {
    transform: translateY(-6px);
    box-shadow: var(--lux-shadow);
}
.blog-section .date-box {
    background: linear-gradient(135deg, var(--lux-red), #8f1414) !important;
    box-shadow: 0 8px 20px rgba(196, 30, 30, 0.4);
}
.blog-section .post-meta li i {
    color: var(--lux-gold);
}
.blog-section .inner-blog-btn {
    position: relative;
    font-weight: 700;
    transition: color 0.35s var(--lux-ease), padding-left 0.35s var(--lux-ease);
}
.blog-section .inner-blog-btn::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lux-red), var(--lux-gold));
    transition: width 0.4s var(--lux-ease);
}
.blog-section .inner-blog-btn:hover::after {
    width: 100%;
}
.blog-section .widget-title {
    position: relative;
    padding-bottom: 0.6rem;
    margin-bottom: 1.2rem;
}
.blog-section .widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--lux-red), var(--lux-gold));
}
.blog-section .category-list li a {
    transition: color 0.35s var(--lux-ease), padding 0.35s var(--lux-ease);
}
.blog-section .category-list li a:hover {
    color: var(--lux-gold) !important;
    padding-right: 6px;
}
.blog-section .sidebar-post {
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.4s var(--lux-ease);
}
.blog-section .sidebar-post:hover {
    background: rgba(212, 175, 55, 0.05);
}
.blog-section .pagination-wrap li a {
    transition: all 0.35s var(--lux-ease);
}
.blog-section .pagination-wrap li a.active,
.blog-section .pagination-wrap li a:hover {
    background: linear-gradient(135deg, var(--lux-red), var(--lux-gold));
    color: #fff !important;
    border-color: transparent;
}

/* --- Detail pages (blog single / project single / service single) --- */
.post-thumbnail img {
    border-radius: var(--lux-radius);
    box-shadow: var(--lux-shadow);
}
.blog-single .content,
.portfolio-content {
    line-height: 2.1;
}
.blog-single blockquote,
.portfolio-content blockquote {
    border-right: 3px solid;
    border-image: linear-gradient(180deg, var(--lux-red), var(--lux-gold)) 1;
    background: rgba(212, 175, 55, 0.04);
    border-radius: 8px 12px 12px 8px;
    padding: 1rem 1.4rem;
}
.blog-single .title,
.content .heading h2 {
    position: relative;
}
.terms {
    transition: all 0.35s var(--lux-ease);
}
.terms:hover {
    border-color: var(--lux-gold);
    color: var(--lux-gold);
}

/* --- Hero backdrop polish --- */
.hero-section {
    position: relative;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: -20%;
    right: 20%;
    width: 60%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(196, 30, 30, 0.10) 0%, transparent 65%);
    pointer-events: none;
}
.hero-section .hero-bg img {
    opacity: 0.55;
    transition: opacity 0.8s var(--lux-ease);
}

/* --- Project filter pills --- */
.project-filter li {
    transition: all 0.35s var(--lux-ease);
}
.project-filter li.active {
    background: linear-gradient(135deg, var(--lux-red), var(--lux-gold)) !important;
    border-color: transparent !important;
    color: #fff !important;
}

/* --- Reduced motion (new animations) --- */
@media (prefers-reduced-motion: reduce) {
    .spotlight,
    .impact-ring,
    .round-badge .dot,
    .preloader-tag,
    .preloader .loading-bar-fill {
        animation: none !important;
    }
}

/* ==========================================================================
   V1.2 — MODERN UI PASS: navbar CTA, search, auth, details, 404, gallery
   ========================================================================== */

/* --- Navbar CTA button --- */
.navbar-cta .lux-cta {
    padding: 0.55rem 1.5rem;
    border-radius: 999px;
    border: none;
    color: #fff !important;
    font-weight: 700;
    background: linear-gradient(135deg, var(--lux-red) 0%, #8f1414 60%, var(--lux-gold-dark) 130%);
    box-shadow: 0 6px 20px rgba(196, 30, 30, 0.35);
}
.navbar-cta .lux-cta:hover {
    box-shadow: 0 10px 28px rgba(196, 30, 30, 0.5), 0 0 0 1px var(--lux-gold);
    transform: translateY(-2px);
}

/* --- Search modal --- */
.lux-search-modal {
    background: rgba(11, 11, 13, 0.96) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
.lux-search-modal .modal-header {
    border-bottom: 1px solid var(--lux-line);
    color: #f3d67e;
    font-weight: 700;
    letter-spacing: 2px;
}
.lux-search-modal .search-title {
    color: #fff;
}
.lux-search-modal p {
    color: var(--secondary-t-color-2, #a6abb4);
}
.lux-search-modal input[type="text"] {
    width: 100%;
    padding: 1rem 1.3rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: border-color 0.4s var(--lux-ease), box-shadow 0.4s var(--lux-ease);
}
.lux-search-modal input[type="text"]:focus {
    outline: none;
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}
.lux-search-modal .content-btn {
    background: linear-gradient(135deg, var(--lux-red), #8f1414);
    border: none;
    color: #fff;
    padding: 0.8rem 2.6rem;
    border-radius: 999px;
}

/* --- Auth pages (login / register / verify / reset): dark fight theme --- */
.track-area {
    background: var(--lux-ink) !important;
}
.track-area .tptrack__product .tptrack__content {
    background: linear-gradient(165deg, #141418, #0c0c10) !important;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--lux-radius) !important;
    box-shadow: var(--lux-shadow) !important;
    position: relative;
    overflow: hidden;
}
.track-area .tptrack__content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lux-red), var(--lux-gold));
}
.track-area .tptrack__item-icon {
    color: var(--lux-gold) !important;
}
.track-area .tptrack__item-icon i {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}
.track-area .tptrack__item-title {
    color: #fff !important;
}
.track-area .tptrack__item-content {
    flex: 1;
    justify-content: center;
}
.track-area .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: #fff !important;
    border-radius: 12px !important;
}
.track-area .form-control:focus {
    border-color: var(--lux-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18) !important;
}
.track-area .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.track-area .tptrack__submition {
    background: linear-gradient(135deg, var(--lux-red), #8f1414) !important;
    border-radius: 999px !important;
    font-weight: 700;
    transition: transform 0.4s var(--lux-ease), box-shadow 0.4s var(--lux-ease);
}
.track-area .tptrack__submition:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(196, 30, 30, 0.45);
}
.track-area .form-check-label,
.track-area a {
    color: var(--secondary-t-color-2, #a6abb4) !important;
}
.track-area a:hover {
    color: var(--lux-gold) !important;
}
.track-area .btn-refresh-captcha {
    color: var(--lux-gold) !important;
}
.track-area .tptrack__id .input-item span,
.track-area .tptrack__id .input-item i {
    color: var(--lux-gold) !important;
}
.track-area .toggle-password {
    color: var(--secondary-t-color-2, #a6abb4) !important;
}
/* --- Service details page --- */
.service-details .service-details-img img {
    border-radius: var(--lux-radius);
    box-shadow: var(--lux-shadow);
    margin-bottom: 2rem;
}
.service-details .title {
    position: relative;
    padding-bottom: 0.8rem;
    margin-bottom: 1.4rem;
}
.service-details .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 56px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lux-red), var(--lux-gold));
}
.service-details p {
    line-height: 2.1;
    color: var(--secondary-t-color-2, #a6abb4);
}

/* --- Blog single author --- */
.author .author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--lux-gold);
    background: linear-gradient(140deg, rgba(196, 30, 30, 0.25), rgba(212, 175, 55, 0.12));
    border: 1px solid var(--lux-line);
    flex-shrink: 0;
}
.author .title {
    color: #f3d67e !important;
}

/* --- Gallery grid page --- */
.lux-gallery-grid .portfolio-item {
    animation: luxGalleryIn 0.7s var(--lux-ease) both;
}
.lux-gallery-grid .item:nth-child(2) { animation-delay: 0.08s; }
.lux-gallery-grid .item:nth-child(3) { animation-delay: 0.16s; }
.lux-gallery-grid .item:nth-child(4) { animation-delay: 0.24s; }
.lux-gallery-grid .item:nth-child(5) { animation-delay: 0.32s; }
.lux-gallery-grid .item:nth-child(6) { animation-delay: 0.4s; }
@keyframes luxGalleryIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- 404 page --- */
.lux-404 {
    min-height: 100vh;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 40% at 50% 30%, rgba(196, 30, 30, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 50% 110%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
        var(--lux-ink);
}
.lux-404::before,
.lux-404::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--lux-tape);
    opacity: 0.8;
}
.lux-404::before { top: 0; }
.lux-404::after  { bottom: 0; }
.lux-404-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 999px;
    color: #f3d67e;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}
.lux-404-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lux-red);
    box-shadow: 0 0 10px rgba(196, 30, 30, 0.9);
}
.lux-404-title {
    font-size: clamp(6rem, 18vw, 13rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    color: #fff;
}
.lux-404-title span {
    background: linear-gradient(100deg, var(--lux-red-light), var(--lux-red) 50%, var(--lux-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    transform: rotate(-6deg);
}
.lux-404-sub {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.lux-404-text {
    color: var(--secondary-t-color-2, #a6abb4);
    max-width: 480px;
    margin: 0 auto 2rem;
}
.lux-404-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Footer link columns polish --- */
.footer-links ul {
    columns: 2;
    column-gap: 2rem;
}
@media (max-width: 767.98px) {
    .footer-links ul {
        columns: 1;
    }
}








