/* ============================================
   About Us Page Styles - Shifrah Foods
   ============================================ */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(193, 123, 75, 0.95) 0%, rgba(140, 80, 40, 0.95) 100%), url('../image/about/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    text-align: center;
    color: white;
    position: relative;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero-content h1 span {
    color: #ffd966;
    position: relative;
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #ffd966;
}

.hero-breadcrumb i {
    font-size: 0.7rem;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    background: rgba(193, 123, 75, 0.15);
    color: #c17b4b;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-center h2 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.section-title-center h2 span {
    color: #c17b4b;
}

.section-title-center p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
}

.story-content h2 span {
    color: #c17b4b;
}

.story-lead {
    font-size: 1.2rem;
    color: #c17b4b;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-image {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-grid img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #c17b4b;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 60px 0;
    background: #fef9f2;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(193, 123, 75, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon i {
    font-size: 2rem;
    color: #c17b4b;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mv-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.mv-highlight i {
    color: #c17b4b;
    font-size: 1rem;
}

/* Values Section */
.our-values {
    padding: 80px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #fef9f2;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(193, 123, 75, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2.5rem;
    color: #c17b4b;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* FITnSIP Story Section */
.fitnsip-story {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c1810 0%, #3d2a1f 100%);
    color: white;
}

.fitnsip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fitnsip-content .section-tag {
    background: rgba(255,255,255,0.2);
    color: #ffd966;
}

.fitnsip-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.fitnsip-content h2 span {
    color: #ffd966;
}

.fitnsip-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.fitnsip-variants {
    list-style: none;
    margin: 1.5rem 0;
}

.fitnsip-variants li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.fitnsip-variants li i {
    font-size: 1.2rem;
    color: #ffd966;
}

.fitnsip-image {
    position: relative;
}

.fitnsip-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ffd966;
    color: #2c1810;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.floating-badge i {
    font-size: 1.2rem;
}

/* Quality Process Section */
.quality-process {
    padding: 80px 0;
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: #fef9f2;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #c17b4b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(193, 123, 75, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.8rem;
    color: #c17b4b;
}

.step h3 {
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Certifications Section */
.certifications {
    padding: 50px 0;
    background: #fef9f2;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cert-item i {
    color: #c17b4b;
    font-size: 1.2rem;
}

.cert-item span {
    color: #333;
    font-weight: 500;
}

/* Team Section */
.our-team {
    padding: 80px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-card {
    text-align: center;
    background: #fef9f2;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.team-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-card h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin: 1rem 0 0.25rem;
}

.team-role {
    color: #c17b4b;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: #666;
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Impact Numbers Section */
.impact-numbers {
    padding: 60px 0;
    background: linear-gradient(135deg, #c17b4b 0%, #a05e35 100%);
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.impact-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials Highlight */
.testimonials-highlight {
    padding: 80px 0;
    background: #fff;
}

.testimonial-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: #fef9f2;
    border-radius: 30px;
    position: relative;
}

.testimonial-quote i {
    font-size: 3rem;
    color: #c17b4b;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-quote p {
    font-size: 1.3rem;
    color: #2c1810;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.customer-info {
    display: flex;
    flex-direction: column;
}

.customer-info strong {
    font-size: 1rem;
    color: #c17b4b;
}

.customer-info span {
    font-size: 0.85rem;
    color: #888;
}

/* CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c1810 0%, #1f120b 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #c17b4b;
    color: white;
}

.primary-btn:hover {
    background: #a05e35;
    transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: #2c1810;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-grid,
    .mv-grid,
    .fitnsip-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title-center h2 {
        font-size: 2rem;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0 50px;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-content h2 {
        font-size: 1.8rem;
    }
    
    .mv-card h3 {
        font-size: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        gap: 1rem;
    }
    
    .cert-item {
        padding: 0.5rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 1.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}