/* ========================================
   Why Us Page - Enhanced Layout
   ======================================== */

/* Enhanced Page Header */
.page-header--why-us {
    position: relative;
    padding: 120px 0 80px;
}

.page-header--why-us .page-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.page-header--why-us .container {
    position: relative;
    z-index: 2;
}

.page-header__subtitle {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    opacity: 0.9;
}

/* About Section Enhancement */
.about-three {
    padding: 80px 0;
}

.about-three__content {
    padding-left: 40px;
}

/* What Sets Us Apart Section */
.sets-apart-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.sets-apart-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.sets-apart-section .section-title h3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.sets-apart-section .section-title p {
    font-size: 18px;
    color: #666;
}

.apart-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.apart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8bc34a 0%, #7cb342 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.apart-card:hover::before {
    transform: scaleX(1);
}

.apart-card:hover {
    transform: translateY(-10px);
    border-color: #8bc34a;
    box-shadow: 0 20px 50px rgba(139, 195, 74, 0.2);
}

.apart-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8bc34a 0%, #7cb342 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.apart-card:hover .apart-card__icon {
    transform: scale(1.1) rotate(10deg);
}

.apart-card__icon i {
    font-size: 36px;
    color: #ffffff;
}

.apart-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.apart-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* PERFECT Values Grid */
.perfect-values-section {
    padding: 80px 0;
    background: #ffffff;
}

.perfect-values-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.perfect-values-section .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.perfect-values-section .section-title p {
    font-size: 18px;
    color: #666;
}

.perfect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.perfect-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px 25px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.perfect-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 195, 74, 0.1), transparent);
    transition: left 0.5s ease;
}

.perfect-card:hover::after {
    left: 100%;
}

.perfect-card:hover {
    border-color: #8bc34a;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 195, 74, 0.15);
}

.perfect-card__letter {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8bc34a 0%, #7cb342 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
}

.perfect-card:hover .perfect-card__letter {
    transform: scale(1.1) rotate(-5deg);
}

.perfect-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.perfect-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Peak Freshness Section - Matching Our Story */
.peak-freshness-why {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.peak-freshness-why__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.peak-freshness-why__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.9) 0%, rgba(124, 179, 66, 0.9) 100%);
}

.peak-freshness-why__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.peak-icon-why {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.peak-icon-why i {
    font-size: 60px;
    color: #ffffff;
}

.peak-icon-why svg {
    width: 70px;
    height: 70px;
    fill: #ffffff;
}

.peak-freshness-why__content h4 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.peak-freshness-why__content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0.95;
}

.peak-btn-why {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #8bc34a;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.peak-btn-why:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #7cb342;
    background: #ffffff;
}

/* Quality Management Section */
.quality-management-section {
    padding: 80px 0;
    background: #ffffff;
}

.quality-management-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.quality-management-section .section-title h4 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.quality-management-section .quality-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.quality-management-section .quality-text p {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-header--why-us {
        padding: 100px 0 60px;
    }
    
    .about-three {
        padding: 60px 0;
    }
    
    .about-three__content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .sets-apart-section,
    .perfect-values-section,
    .quality-management-section {
        padding: 60px 0;
    }
    
    .peak-freshness-why {
        padding: 80px 0;
    }
    
    .peak-freshness-why__content h4 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .page-header__subtitle {
        font-size: 16px;
    }
    
    .sets-apart-section .section-title h3,
    .quality-management-section .section-title h4 {
        font-size: 28px;
    }
    
    .perfect-values-section .section-title h2 {
        font-size: 32px;
    }
    
    .perfect-grid {
        grid-template-columns: 1fr;
    }
    
    .apart-card {
        margin-bottom: 20px;
    }
    
    .peak-freshness-why__content h4 {
        font-size: 28px;
    }
    
    .peak-freshness-why__content p {
        font-size: 16px;
    }
    
    .peak-freshness-why__bg {
        background-attachment: scroll;
    }
}
