/*
====================================
DESIGN VISION - HOME PAGE STYLES
Specific styles for index.html only
====================================
*/

/* ========== HERO SECTION ========== */
.luxury-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.luxury-hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.luxury-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.luxury-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 25, 0.52);
}

.luxury-hero__spotlight {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(8px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(199, 161, 69, 0.8) 0%,
            rgba(199, 161, 69, 0.4) 50%,
            transparent 100%),
        radial-gradient(180px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(199, 161, 69, 0.22) 0%,
            rgba(199, 161, 69, 0.12) 20%,
            rgba(199, 161, 69, 0.05) 50%,
            transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
    z-index: 2;
    filter: blur(1px);
}

.luxury-hero:hover .luxury-hero__spotlight {
    opacity: 1;
}

.luxury-hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 60px 20px;
    text-align: center;
}

.luxury-hero__container {
    max-width: 900px;
    margin: 0 auto;
}

/* Badge */
.luxury-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 161, 69, 0.3);
    border-radius: 50px;
    margin-bottom: 40px;
    opacity: 0;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.badge-rating {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 4px;
}

/* Headline */
.luxury-hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0;
}

.gold-highlight {
    color: var(--gold);
}

/* Sub-headline */
.luxury-hero__subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
}

.luxury-hero__subheadline .gold-highlight {
    font-weight: 400;
}

/* CTA Buttons */
.luxury-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}

/* Hero Animations */
.hero-fade-up {
    animation: heroFadeIn 2s ease-out forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========== MARQUEE STATS SECTION ========== */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    display: flex;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite !important;
    will-change: transform;
}

.marquee-content:hover {
    animation-play-state: paused !important;
}

@keyframes marquee {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* ========== SERVICE CARDS ========== */
.service-card {
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Mobile slide animations for service cards */
@media (max-width: 767px) {

    .service-slide-left,
    .service-slide-right {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .service-slide-left {
        transform: translateX(-100px);
    }

    .service-slide-right {
        transform: translateX(100px);
    }

    .service-slide-left.visible,
    .service-slide-right.visible {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Desktop: Always visible */
@media (min-width: 768px) {

    .service-slide-left,
    .service-slide-right {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
}

/* ========== PORTFOLIO CARDS ========== */
.portfolio-card {
    overflow: hidden;
    position: relative;
}

.portfolio-card img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.portfolio-card:hover img {
    transform: scale(1.15);
}

/* ========== STAT COUNTERS ========== */
.stat-number {
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* ========== FAQ ACCORDION ========== */
.faq-item {
    transition: var(--transition-smooth);
    will-change: transform;
}

.faq-question {
    position: relative;
    transition: var(--transition-smooth);
}

.faq-answer {
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height, opacity;
}

.faq-item.active .faq-answer {
    max-height: 1000px !important;
    opacity: 1;
}

/* ========== ANIMATIONS ========== */
@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out forwards;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (min-width: 640px) {
    .luxury-hero__headline {
        font-size: 56px;
    }

    .luxury-hero__subheadline {
        font-size: 20px;
    }

    .badge-text,
    .badge-rating {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .luxury-hero__headline {
        font-size: 64px;
    }
}

@media (min-width: 1024px) {
    .luxury-hero__headline {
        font-size: 72px;
    }

    .luxury-hero__subheadline {
        font-size: 22px;
    }
}