/* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    color: var(--white);
}

.about-hero .lead {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.statement-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.statement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
}

.statement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.statement-card .icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.statement-card .icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.statement-card h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-size: 2rem;
}

.statement-card p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Promises Section */
.promises-section {
    background: var(--bg-darker);
    padding: var(--section-padding);
}

.promises-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.promise-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.promise-card h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--heading-font);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promise-card h3 i {
    font-size: 1.5rem;
}

.promise-list {
    list-style: none;
    padding: 0;
}

.promise-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.promise-list li:last-child {
    border-bottom: none;
}

.promise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Values Section */
.values-section {
    background: var(--bg-dark);
    padding: var(--section-padding);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.values-grid .value-item:nth-child(5) {
    grid-column: 2 / 4;
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .values-grid .value-item:nth-child(5) {
        grid-column: auto;
    }
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-item h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.value-item p {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Section Utilities */
.section-title {
    text-align: center;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--white);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.cta-section p {
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: bold;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision-grid,
    .promises-container {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
}