﻿/* ── Section wrapper ───────────────────── */
.why_us {
    padding: 5rem 0 6rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(107, 44, 62, 0.08);
    border-bottom: 1px solid rgba(107, 44, 62, 0.08);
}

    /* Subtle top gold line */
    .why_us::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }


/* ── Section label ──────────────────────── */
.sp-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sp-label__text {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--burgundy);
    white-space: nowrap;
}

.sp-label__line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--burgundy));
}

.sp-label:first-child .sp-label__line:last-child {
    background: linear-gradient(90deg, var(--burgundy), transparent);
}


/* ── Heading ────────────────────────────── */
.sp-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-burgundy);
    margin-bottom: 3.5rem;
    line-height: 1.2;
}

.sp-heading__count {
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ── Metrics row ────────────────────────── */
.sp-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.sp-metric {
    text-align: center;
}

.sp-metric__value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.sp-metric__label {
    font-size: 0.78rem;
    color: var(--luxury-gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.sp-metric-divider {
    width: 1px;
    height: 48px;
    background: rgba(107, 44, 62, 0.15);
    flex-shrink: 0;
}


/* ── Marquee ────────────────────────────── */
.sp-marquee-wrapper {
    position: relative;
    margin-bottom: 4rem;
    overflow: hidden;
}

/* Left and right gradient fade */
.sp-marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.sp-marquee-fade--left {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.sp-marquee-fade--right {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.sp-marquee {
    padding: 10px 0;
    overflow: hidden;
    width: 100%;
}

.sp-marquee__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: sp-scroll 28s linear infinite;
}

    .sp-marquee__track:hover {
        animation-play-state: paused;
    }

@keyframes sp-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sp-logo-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 2.2rem;
    margin: 0 0.5rem;
    border: 1px solid rgba(107, 44, 62, 0.1);
    border-radius: 50px;
    background: var(--white);
    color: var(--luxury-gray);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
}

    .sp-logo-item:hover {
        border-color: var(--burgundy);
        color: var(--burgundy);
        background: rgba(107, 44, 62, 0.03);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(107, 44, 62, 0.1);
    }

    .sp-logo-item i {
        color: var(--gold);
        font-size: 0.85rem;
        flex-shrink: 0;
    }


/* ── Trust badges row ───────────────────── */
.sp-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(107, 44, 62, 0.03), rgba(212, 175, 55, 0.04));
    border: 1px solid rgba(107, 44, 62, 0.1);
    border-radius: 20px;
    padding: 1.8rem 2rem;
}

.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 2.5rem;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.sp-trust-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--burgundy), var(--wine));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(107, 44, 62, 0.2);
}

.sp-trust-item__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sp-trust-item__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-burgundy);
    line-height: 1;
}

.sp-trust-item__sub {
    font-size: 0.75rem;
    color: var(--luxury-gray);
    line-height: 1;
}

.sp-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(107, 44, 62, 0.12);
    flex-shrink: 0;
}


@media (max-width: 968px) {
    .sp-heading {
        font-size: 2rem;
    }

    .sp-metrics {
        gap: 1.5rem;
    }

    .sp-metric__value {
        font-size: 1.9rem;
    }

    .sp-trust-row {
        gap: 1rem;
        padding: 1.5rem;
    }

    .sp-trust-divider {
        display: none;
    }

    .sp-trust-item {
        padding: 0.5rem 1rem;
        flex: 0 0 calc(50% - 1rem);
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .why_us {
        padding: 4rem 0 5rem;
    }

    .sp-heading {
        font-size: 1.8rem;
    }

    .sp-metrics {
        gap: 1rem;
    }

    .sp-metric-divider {
        display: none;
    }

    .sp-metric {
        flex: 0 0 calc(50% - 1rem);
    }

    .sp-marquee-fade {
        width: 60px;
    }

    /* 2 columns on mobile instead of full-width stacking */
    .sp-trust-row {
        padding: 1.2rem 1rem;
        gap: 0.8rem;
        border-radius: 16px;
    }

    .sp-trust-item {
        flex: 0 0 calc(50% - 0.8rem);
        justify-content: flex-start;
        padding: 0.6rem 0.8rem;
        gap: 0.7rem;
    }

    .sp-trust-item__icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .sp-trust-item__title {
        font-size: 0.82rem;
    }

    .sp-trust-item__sub {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .sp-heading {
        font-size: 1.6rem;
    }

    .sp-logo-item {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Single column only on very small screens */
    .sp-trust-item {
        flex: 0 0 100%;
        justify-content: flex-start;
        padding: 0.5rem 0.5rem;
    }

    .sp-trust-row {
        padding: 1rem;
        gap: 0.6rem;
    }
}
