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

/* Our Story Section */
.about-story-section {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--hover-blue) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-card h3 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.reason-item {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
}

.reason-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(42, 197, 250, 0.15);
}

.reason-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--hover-blue) 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-main-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-box {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    height: fit-content;
}

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-text p,
.info-text a {
    color: var(--text-light);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--primary-blue);
}

.map-section {
    padding: 0;
    background: var(--light-gray);
}

.map-container {
    width: 100%;
    height: 450px;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .story-text h2 {
        font-size: 32px;
    }

    .story-image {
        height: 300px;
    }

    .stat-card h3 {
        font-size: 42px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-info-box {
        padding: 25px;
    }
}
