/* ===== ABOUT PAGE STYLES ===== */

/* CSS Variables - Matching Product Page */
:root {
    --primary-color: #d94f04;
    --light-bg: #fff8e1;
    --text-color: #2c2f33;
    --border-color: #e0d4b8;
    --card-shadow: 0 8px 25px rgba(0,0,0,0.15);
    --card-hover-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* About Section General */
.about-section {
    background: 
        linear-gradient(135deg, rgba(255, 248, 225, 0.9) 0%, rgba(245, 240, 232, 0.9) 100%),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-color);
    min-height: 100vh;
}



/* About Hero Section */
.about-hero {
    padding: 60px 0;
    background: rgba(255,255,255,0.6);
    border-radius: 15px;
    margin: 2rem 0 3rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 60px 0;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
    padding: 20px;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.story-text:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.story-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px 15px;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.highlight-item:hover {
    background: rgba(255,255,255,0.8);
}

.highlight-item i {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 15px;
}

.highlight-item span {
    font-weight: 600;
    color: #333;
}

.story-image img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
    padding: 18px;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.mission-text:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Mission Content Styling */
.mission-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    padding-left: 15px;
    border-left: 3px solid var(--primary-color);
}

/* Certifications Content Styling */
.section-content .mission-text {
    background: rgba(255,255,255,0.75);
    border-left: 4px solid #28a745;
}

.section-content .mission-text:hover {
    background: rgba(255,255,255,0.95);
}

.mission-image img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

/* Values Grid */
.values-grid {
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.value-icon {
    margin-right: 20px;
    min-width: 50px;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.value-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.value-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: 60px 0;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 15px;
}

.certificate-card {
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.certificate-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(217, 79, 4, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.overlay-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 1.1rem;
    margin: 0;
}

.certificate-info {
    padding: 30px;
}

.cert-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d94f04;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.cert-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.cert-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 6px;
}

.cert-features li:hover {
    background: rgba(255,255,255,0.7);
}

.cert-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b0000 100%);
    color: #ffffff;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-quote {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-quote blockquote {
    margin: 0;
}

.cta-quote blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.6;
}

.cta-quote blockquote footer {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-hero,
    .story-section,
    .mission-section,
    .certifications-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .certificate-image {
        height: 250px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .certificate-info {
        padding: 20px;
    }
    
    .cta-quote {
        padding: 20px;
    }
}
