/* =========================================
   LOISTE STUDIO - PREMIUM COMPONENTS
   ========================================= */

/* 1. Strategic Insights Section */
.strategic-insights-section {
    background-color: var(--white-beige);
    padding: 12rem 0;
}

.strategic-insights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: center;
}

.insights-header {
    margin-bottom: 8rem;
}



.insights-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 6vw, 7.2rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.insights-title em {
    font-style: italic;
    color: var(--neutral-dark);
    font-family: inherit;
}

.insights-description {
    color: var(--black);
    font-size: 1.8rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.insights-cards {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 6rem;
}

.insight-card {
    flex: 0 1 45rem;
    cursor: pointer;
    transition: var(--transition-slow);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.05);
}

.insight-card:hover {
    transform: translateY(-1.5rem);
    box-shadow: 0 4rem 8rem rgba(0, 0, 0, 0.1);
}

.insight-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

@media (max-width: 768px) {
    .strategic-insights-section {
        padding: 8rem 0;
    }

    .strategic-insights-container {
        padding: 0 2rem;
    }

    .insights-header {
        margin-bottom: 4rem;
    }

    .insights-cards {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-top: 4rem;
    }

    .insight-card {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
    }

    .insight-card img {
        border-radius: var(--border-radius);
    }
}

/* 2. Luxury Typography Section */
.luxury-typography-section {
    position: relative;
    width: 100%;
    padding: 15rem 2rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white-beige) 0%, #EFE7DA 50%, var(--white-beige) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxury-typography-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.luxury-line {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 9rem);
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 700;
    white-space: nowrap;
}

.luxury-line.animated-wave span {
    display: inline-block;
    animation: luxuryWave 5s ease-in-out infinite;
    will-change: transform;
}

@keyframes luxuryWave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Staggered animation delays for the wave */
.luxury-line.animated-wave span:nth-child(even) {
    animation-delay: 0.2s;
}

/* 3. Brands Marquee */
.home__recog__section {
    padding: 10rem 0;
    background-color: var(--white-beige);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}



.marquee-row {
    display: flex;
    width: 200%;
    gap: 6rem;
    margin-bottom: 2rem;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 8rem;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-row.marquee-reverse .marquee-content {
    animation-direction: reverse;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    height: 6rem;
    width: auto;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--transition-normal);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* 4. Floating Interaction Elements */
.floating-controls {
    position: fixed;
    bottom: 4rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 1000;
}

.whatsapp-float {
    width: 6rem;
    height: 6rem;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 1rem 3rem rgba(37, 211, 102, 0.3);
    transition: var(--transition-normal);
}

.back-to-top {
    width: 6rem;
    height: 6rem;
    background-color: transparent;
    border: 1.5px solid var(--color-bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg path {
    stroke: var(--black);
    transition: stroke 0.3s ease;
}

.whatsapp-float:hover,
.back-to-top:hover {
    transform: scale(1.1) translateY(-0.5rem);
    background-color: var(--color-bronze);
    color: var(--white-beige);
}

.back-to-top:hover svg path {
    stroke: var(--white-beige);
}

.float-icon {
    width: 2.4rem;
    height: 2.4rem;
    fill: currentColor;
}