/* =========================================
   ABOUT US PAGE STYLES (about.css)
   ========================================= */

/* --- PAGE HEADER BANNER --- */
.page-header { 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg.jpg') center/cover no-repeat; 
    text-align: center; 
    color: var(--white); 
    padding: 120px 20px; 
}
.page-header h1 { font-size: 3.5rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); margin-bottom: 15px; }
.page-header p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; opacity: 0.9; }

/* --- FOUNDER SECTION --- */
.about-section { 
    padding: 80px 5%; 
    background: var(--white); 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    max-width: 1200px; 
    margin: -40px auto 60px; 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
    position: relative; 
    z-index: 10;
}
.about-img { flex: 1; position: relative; }
.about-img img { width: 100%; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 8px solid var(--white); object-fit: cover; }
.about-img::before { content: ''; position: absolute; top: -15px; left: -15px; width: 100%; height: 100%; border: 3px solid var(--primary); border-radius: 20px; z-index: -1; }
.about-text { flex: 1.2; }
.about-text h2 { font-size: 2.8rem; margin-bottom: 10px; color: var(--text-dark); }
.about-text h4 { font-size: 1.3rem; color: var(--primary); margin-bottom: 25px; font-weight: 600; }
.about-text p { margin-bottom: 20px; color: var(--text-light); }

/* --- STATS SECTION --- */
.stats-section {
    background: #2C3E50; 
    padding: 60px 5%; 
    display: flex; 
    justify-content: center; 
    gap: 80px; 
    flex-wrap: wrap; 
    text-align: center; 
    margin: 40px 0;
}
.stat-box h3 { font-size: 3rem; color: #B76E79; margin-bottom: 5px; font-family: 'Playfair Display', serif; }
.stat-box p { color: #fff; font-size: 1.1rem; font-weight: 300; text-transform: uppercase; letter-spacing: 1px; }

/* --- FEATURES SECTION --- */
.features { padding: 40px 5% 80px; text-align: center; }
.features-title { font-size: 2.5rem; margin-bottom: 50px; color: var(--text-dark); }
.features-title span { color: var(--primary); font-style: italic; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.feature-card { background: var(--white); padding: 40px 30px; border-radius: 15px; box-shadow: var(--shadow); transition: 0.3s; border-bottom: 3px solid transparent; }
.feature-card:hover { transform: translateY(-10px); border-bottom-color: var(--primary); }
.feature-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 15px; color: var(--text-dark); font-size: 1.3rem; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* --- CTA SECTION --- */
.cta-section { background: #fdf8f5; padding: 80px 5%; text-align: center; border-top: 1px solid #f0e4de; }
.cta-section h2 { font-size: 2.5rem; color: #2C3E50; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.cta-section p { color: #6c7a89; margin-bottom: 30px; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn { padding: 15px 40px; background: var(--primary); color: var(--white); font-weight: 600; border-radius: 30px; transition: 0.3s; display: inline-block; box-shadow: 0 10px 20px rgba(183,110,121,0.2); border: 2px solid var(--primary); }
.btn:hover { background: transparent; color: var(--primary); box-shadow: none; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .about-section { flex-direction: column; text-align: center; padding: 40px; margin-top: -20px; }
    .about-img::before { display: none; }
}

@media (max-width: 768px) {
    .page-header h1 { font-size: 2.2rem; }
    .page-header { padding: 80px 20px; }
    .about-text h2 { font-size: 2.2rem; }
    .stats-section { gap: 40px; flex-direction: column; padding: 50px 20px; }
    .stat-box h3 { font-size: 2.5rem; }
    .cta-section h2 { font-size: 2rem; }
}