﻿/* --- whyus.css --- */

.why-us-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Typography & Content */
.section-title .text-gold {
    color: var(--gold);
}

.overview-text {
    color: var(--text-slate);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Premium Quote Box */
.quote-box {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    border-left: 6px solid var(--gold);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-top: 40px;
}

    .quote-box p {
        font-size: 1.2rem;
        font-style: italic;
        color: var(--primary);
        font-weight: 500;
        line-height: 1.6;
    }

/* Feature Grid Layout */
.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition); /* Uses your global 0.3s bezier */
}

    .feature-card:hover {
        transform: translateX(10px);
        border-color: var(--gold);
        box-shadow: 0 15px 40px rgba(10, 25, 47, 0.08);
    }

/* Icon Styling */
.feature-icon-wrapper {
    width: 55px;
    height: 55px;
    background: rgba(179, 147, 89, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--gold);
}

.feature-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper i {
    color: white;
}

/* Text inside cards */
.feature-text h4 {
    margin-bottom: 8px;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-slate);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

        .feature-card:hover {
            transform: translateY(-5px);
        }
}
