/* ---------------------------------- */
/* Trusted By Section Component Styles*/
/* ---------------------------------- */

.trusted-by-section {
    background-color: #FAF8F5;
    /* Soft warm cream light background */
    color: var(--color-black);
    padding: 40px 0 30px 0;
    /* Reduced top and bottom padding for compact spacing */
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 30;
    width: 100%;
    overflow: hidden;
}

.trusted-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Replicated Header with dots and fading lines */
.trusted-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.title-text {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #8c8f94;
    /* Light charcoal/grey text as in mockup */
    margin: 0 16px;
    white-space: nowrap;
}

.title-dot {
    width: 5px;
    height: 5px;
    background-color: var(--color-gold-start);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.title-line {
    height: 1.5px;
    width: 100px;
    display: inline-block;
    flex-shrink: 0;
}

/* Fading gradients for dividers */
.title-line-left {
    background: linear-gradient(to right, transparent 0%, var(--color-gold-start) 100%);
    margin-right: 12px;
}

.title-line-right {
    background: linear-gradient(to left, transparent 0%, var(--color-gold-start) 100%);
    margin-left: 12px;
}

/* Marquee Track */
.marquee-track {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

/* Fade gradients on viewport sides */
.marquee-track::before,
.marquee-track::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.marquee-track::before {
    left: 0;
    background: linear-gradient(to right, #F9F6F0 0%, transparent 100%);
}

.marquee-track::after {
    right: 0;
    background: linear-gradient(to left, #F9F6F0 0%, transparent 100%);
}

/* Continuous scrolling marquee */
.marquee-slide {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-marquee 28s linear infinite;
}

/* Brand Logos styling */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 50px;
    color: #2c2e30;
    /* Charcoal unified logo colors */
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    opacity: 0.75;
    transition: var(--transition-smooth);
    user-select: none;
}

.brand-logo:hover {
    opacity: 1;
    color: var(--color-gold-end);
    transform: scale(1.05);
}

.brand-icon {
    height: 20px;
    width: auto;
    color: inherit;
}

/* Specific Logo customizations */
.dlf-logo span {
    font-weight: 900;
}

.dlf-logo .brand-icon {
    height: 16px;
}

.hyundai-logo span {
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.gaurs-logo {
    font-family: 'Times New Roman', Georgia, serif;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.inox-logo {
    font-weight: 900;
    letter-spacing: 0.1em;
}

.inox-o {
    color: var(--color-gold-end);
}

.radisson-logo {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

.amity-logo {
    font-family: Georgia, serif;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.more-logo {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

/* Marquee Scroll animation keyframes */
@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

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