/* ------------------- */
/* ABOUT US PAGE STYLES */
/* ------------------- */

/* About Hero Section */
.about-hero {
    background-color: var(--color-bg-dark);
    color: var(--color-secondary);
    text-align: center;
    padding: 4rem 0;
}

.about-hero h1 {
    color: var(--color-secondary);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.about-hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

/* About Company Section */
.about-company {
    padding: var(--section-padding) 0;
}

.about-company__container {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.about-company__content {
    flex: 2;
}

.about-company__content h2 {
    margin-bottom: 1.5rem;
}

.about-company__map {
    flex: 1;
    position: sticky;
    top: 120px; /* Adjust based on header height */
    text-align: center;
}

.about-company__map img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-locations {
    background-color: var(--color-bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.map-locations h4 {
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.map-locations ul {
    list-style: none;
    padding: 0;
}

.map-locations li {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.map-locations strong {
    color: var(--color-text-dark);
}

/* Statement Cards (Mission/Vision) */
.about-statements {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.statement-card {
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-left: 5px solid var(--color-primary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.statement-card h3 {
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

/* Values Section */
.values {
    background-color: var(--color-bg-light);
    padding: var(--section-padding) 0;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background-color: var(--color-secondary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-company__container {
        flex-direction: column;
    }
    .about-company__map {
        position: static;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
}