/* ============================================
   PRODAIRY HOMEPAGE - CLEAN MINIMAL DESIGN
   ============================================ */

/* About Section */
.about-intro {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.info-card {
    background-color: #f8f9fa;
    padding: 40px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.products-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 32px;
}

.product-card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.product-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.link-arrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.vision-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.vision-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.vision-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.value-card {
    background-color: #f8f9fa;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    background-color: #ffffff;
}

.value-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .info-cards,
    .product-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-intro,
    .products-section,
    .values-section {
        padding: 60px 0;
    }

    .section-center h2,
    .products-section h2,
    .values-section h2 {
        font-size: 2rem;
    }

    .info-card,
    .vision-card {
        padding: 32px 24px;
    }

    .product-card-content {
        padding: 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}
