/* --- ABOUT US PREMIUM STYLING --- */
:root { --oa-green: #1B4D3E; --oa-gold: #D4AF37; --oa-text: #1e293b; --oa-light: #64748b; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* 1. Hero Section */
.about-hero { 
    height: 70vh; background: linear-gradient(rgba(11,17,16,0.6), rgba(11,17,16,0.6)), 
    url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?w=1600') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}
.hero-title { font-family: 'Playfair Display', serif; font-size: 60px; line-height: 1.1; margin-bottom: 20px; }
.hero-title span { color: var(--oa-gold); font-style: italic; }
.hero-subtitle { font-size: 18px; max-width: 600px; margin: 0 auto; opacity: 0.9; }

/* 2. Story Section */
.about-content-section { padding: 100px 0; background: #fff; }
.grid-2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.content-img { position: relative; }
.content-img img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0 var(--oa-green); }
.since-badge { position: absolute; bottom: -20px; right: -20px; background: var(--oa-gold); color: #000; padding: 15px 25px; font-weight: 800; border-radius: 10px; }

.sub-label { color: var(--oa-gold); text-transform: uppercase; font-weight: 700; letter-spacing: 2px; font-size: 12px; }
.content-text h2 { font-size: 36px; margin: 15px 0 25px; font-family: 'Playfair Display', serif; color: var(--oa-green); }
.content-text p { color: var(--oa-light); line-height: 1.8; margin-bottom: 20px; font-size: 15px; }

/* 3. Values Section */
.values-section { padding: 100px 0; background: #f8fafc; }
.section-head h2 { font-size: 32px; font-family: 'Playfair Display', serif; margin-bottom: 10px; color: var(--oa-green); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.value-card { background: #fff; padding: 40px 30px; border-radius: 15px; text-align: center; transition: 0.3s; border: 1px solid #e2e8f0; }
.value-card:hover { transform: translateY(-10px); border-color: var(--oa-gold); }
.value-card i { font-size: 40px; color: var(--oa-green); margin-bottom: 20px; }
.value-card h4 { font-size: 20px; margin-bottom: 15px; color: #1e293b; }
.value-card p { font-size: 14px; color: var(--oa-light); line-height: 1.6; }

/* 4. Stats Section */
.stats-section { background: var(--oa-green); padding: 60px 0; color: #fff; }
.stats-flex { display: flex; justify-content: space-between; text-align: center; }
.stat-item strong { display: block; font-size: 40px; color: var(--oa-gold); margin-bottom: 5px; }
.stat-item span { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }

/* 5. Process Section */
.process-section { padding: 100px 0; background: #111; color: #fff; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.step { position: relative; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.step-num { position: absolute; top: -15px; left: 0; background: var(--oa-gold); color: #000; font-size: 11px; font-weight: 800; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.step h5 { font-size: 18px; margin-bottom: 10px; color: var(--oa-gold); }
.step p { font-size: 13px; color: #aaa; line-height: 1.5; }

/* 6. Mission Section */
.mission-section { padding: 120px 0; background: #fff; }
.mission-box { max-width: 800px; margin: 0 auto; position: relative; }
.mission-box i { font-size: 50px; color: #f1f5f9; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); z-index: -1; }
.mission-box h3 { font-family: 'Playfair Display', serif; font-size: 28px; line-height: 1.5; color: var(--oa-green); font-style: italic; }

@media (max-width: 992px) {
    .grid-2, .values-grid, .process-steps { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 40px; }
    .stats-flex { flex-wrap: wrap; gap: 30px; justify-content: center; }
}