/* Stat Card Box Styling */
.stat-card-box {
    background: linear-gradient(135deg, rgba(44, 10, 7, 0.75) 0%, rgba(24, 5, 4, 0.95) 100%);
    border: 1px solid rgba(200, 162, 90, 0.25);
    border-radius: 14px;
    padding: 35px 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card-box:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 162, 90, 0.55);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(200, 162, 90, 0.2);
}

.stat-card-box .stat-num-text {
    color: var(--gold-secondary, #C8A25A);
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(200, 162, 90, 0.2);
}

.stat-card-box .stat-label-text {
    color: rgba(231, 212, 170, 0.85);
    font-size: 0.825rem;
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 0;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
}

/* Luxury Collection Cards Redesign */
.collection-sec {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--light-beige) 100%) !important;
    position: relative;
    overflow: hidden;
}

.collection-card {
    background: #1C0605 !important;
    border: 1px solid rgba(200, 162, 90, 0.15) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
    transition: var(--transition-lux) !important;
    overflow: hidden;
    position: relative;
    height: 480px;
    display: block;
    text-decoration: none !important;
    transform-style: preserve-3d;
    perspective: 1000px;
}
@media (max-width: 991px) {
    .collection-card {
        height: 380px;
    }
}
@media (max-width: 576px) {
    .collection-card {
        height: 340px;
    }
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(200, 162, 90, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-lux);
    z-index: 2;
    pointer-events: none;
}

.collection-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 162, 90, 0.6) !important;
    box-shadow: 0 20px 45px rgba(200, 162, 90, 0.2), 0 10px 20px rgba(0, 0, 0, 0.7) !important;
}

.collection-card:hover::before {
    opacity: 1;
}

.collection-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
    z-index: 1;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Floating animation for jewelry */
@keyframes floatJewelry {

    0%,
    100% {
        transform: translateY(0) translateZ(30px);
    }

    50% {
        transform: translateY(-8px) translateZ(30px);
    }
}

.float-item-1 {
    animation: floatJewelry 5s ease-in-out infinite;
}

.float-item-2 {
    animation: floatJewelry 6s ease-in-out infinite 0.5s;
}

.float-item-3 {
    animation: floatJewelry 5.5s ease-in-out infinite 1s;
}

.float-item-4 {
    animation: floatJewelry 6.5s ease-in-out infinite 1.5s;
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 24px 24px 24px;
    text-align: center;
    z-index: 3;
    background: linear-gradient(to top, rgba(28, 6, 5, 0.95) 0%, rgba(28, 6, 5, 0.6) 60%, transparent 100%);
    border-top: none;
    transition: var(--transition-lux);
    transform: translateZ(20px);
}

.collection-card:hover .collection-info {
    background: linear-gradient(to top, rgba(28, 6, 5, 1) 0%, rgba(28, 6, 5, 0.7) 70%, transparent 100%);
}

.collection-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-charcoal) !important;
    margin-bottom: 8px;
    transition: var(--transition-fast);
    letter-spacing: 0.03em;
}

.collection-card:hover .collection-title {
    color: var(--gold-secondary) !important;
}

.collection-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--gold-accent) !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition-fast);
}

.collection-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--gold-accent);
    transform-origin: bottom center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-link::after {
    transform: scaleX(1);
}

.collection-card:hover .collection-link {
    color: var(--gold-secondary) !important;
}

/* Why Choose Us Section */
.why-section {
    background-color: var(--bg-white) !important;
    color: var(--text-charcoal) !important;
}

.why-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

.why-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 400;
    color: var(--text-charcoal) !important;
    line-height: 1.25;
}

.why-desc-top {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-charcoal) !important;
    opacity: 0.75;
    font-weight: 300;
    line-height: 1.75;
}

.why-item {
    border-bottom: 1px solid rgba(247, 244, 239, 0.12);
    padding-top: 1rem;
    padding-bottom: 2.2rem;
    transition: all 0.4s ease;
}

.why-item:hover {
    border-bottom-color: var(--gold-accent);
}

.why-number {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold-accent);
    font-weight: 500;
    display: block;
    margin-bottom: 0.8rem;
}

.why-item-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-charcoal) !important;
    margin-bottom: 0.6rem;
}

.why-item-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-charcoal) !important;
    opacity: 0.65;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-item {
        padding-top: 1.2rem;
        padding-bottom: 1.5rem;
    }
}

/* General Layout & Animation Helpers */
.main-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

#heroStaticWrapper {
    position: relative !important;
    overflow: hidden !important;
    height: 100vh !important;
    width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
    top: 0 !important;
    left: 0 !important;
    background-color: #000 !important;
}

/* YouTube Responsive Hero Background Video */
.hero-youtube-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-youtube-container video,
.hero-youtube-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio (9/16) */
    min-height: 100vh;
    min-width: 177.78vh;
    /* 16:9 Aspect Ratio (16/9) */
    transform: translate(-50%, -50%) scale(1.35);
    pointer-events: none;
    border: none;
    object-fit: cover;
}

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

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover) !important;
}

.bento-card:hover img {
    transform: scale(1.06);
}

/* Scroll downward animation line */
@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Magnetic button and ripple effects */
.magnetic-btn {
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-arrow {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-lux:hover .btn-arrow {
    transform: translateX(6px);
}

.ripple-effect {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.5;
    }

    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* Cinematic Stage Pieces setup */
.stage-piece {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    background-color: var(--dark-neutral);
    border: 1px solid rgba(200, 162, 90, 0.05);
    transition: border-color 0.3s;
}

.stage-piece img {
    transition: transform 0.1s linear;
}

/* Infinite horizontal marquee styling */
.lux-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

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

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

    100% {
        transform: translateX(-50%);
    }
}

/* Editorial Brand Showcase Button */
.btn-outline-lux {
    border: 1px solid #ffffff;
    border-radius: 0;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 2.4rem;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-lux:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}