/* ===================================
   Why Choose Us Section Styles
   =================================== */

.why-section {
    padding: 100px 20px;
    background: #FFFFFF;
    position: relative;
}

@media (max-width: 768px) {
    .why-section {
        padding: 80px 15px;
    }
}

.why-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Why Header */
.why-header {
    text-align: center;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .why-header {
        margin-bottom: 60px;
    }
}

.why-title {
    font-size: 52px;
    font-weight: 300;
    color: var(--brand-color);
    margin-bottom: 8px;
    font-family: var(--font-family-elegant);
    line-height: 1.2;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .why-title {
        font-size: 38px;
    }
}

.why-title-accent {
    color: var(--brand-color);
}

.why-subtitle {
    font-size: 20px;
    color: #999999;
    font-weight: 300;
    font-family: var(--font-family-base);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .why-subtitle {
        font-size: 18px;
    }
}

/* Features Grid */
.why-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto;
    max-width: 1200px;
}

@media (max-width: 1024px) {
    .why-features {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .why-features {
        gap: 24px;
    }
}

/* Feature Card */
.why-feature-card {
    background: #FFFFFF;
    border: 2px solid var(--brand-color);
    border-radius: 24px;
    padding: 20px 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .why-feature-card {
        padding: 20px 25px;
        min-height: 160px;
    }
}

.why-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    background: var(--gray-50);
    border-color: var(--brand-hover);
}

/* Icon */
.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    opacity: 0.8;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

/* Feature Title */
.why-feature-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--brand-color);
    margin-bottom: 16px;
    font-family: var(--font-family-base);
    line-height: 1.3;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .why-feature-title {
        font-size: 20px;
    }
}

/* Feature Description */
.why-feature-description {
    font-size: 16px;
    color: #999999;
    line-height: 1.6;
    font-weight: 300;
    font-family: var(--font-family-base);
}

@media (max-width: 768px) {
    .why-feature-description {
        font-size: 15px;
    }
}

/* Special styling - DISABLED to remove background circles */
/*
.why-feature-card:nth-child(1) .why-icon::before,
.why-feature-card:nth-child(2) .why-icon::before,
.why-feature-card:nth-child(3) .why-icon::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--brand-color);
    opacity: 0.05;
    z-index: -1;
}
*/