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

/* === ABOUT SECTION === */
.about-section {
    background: var(--white);
}

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

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--secondary-cyan), var(--accent-teal));
    padding: 25px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.badge-content h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 0 5px 0;
    font-weight: 800;
}

.badge-content p {
    color: rgba(255,255,255,0.95);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* === MISSION & VISION === */
.mission-vision {
    background: var(--light-grey);
}

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

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: var(--transition-smooth);
    border-top: 5px solid var(--secondary-cyan);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.15);
}

.mv-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--secondary-cyan), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.mv-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mv-card p {
    line-height: 1.9;
}

/* === WHAT WE DO === */
.what-we-do {
    background: var(--white);
}

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.wwd-card {
    background: var(--light-grey);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.wwd-card:hover {
    background: var(--white);
    border-color: var(--secondary-cyan);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.15);
}

.wwd-card i {
    font-size: 3.5rem;
    color: var(--secondary-cyan);
    margin-bottom: 25px;
    display: block;
}

.wwd-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* === EXPERTISE SECTION === */
.expertise {
    background: var(--light-grey);
}

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

.expertise-item {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition-smooth);
}

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.expertise-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(26, 188, 156, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-cyan);
    border: 3px solid var(--secondary-cyan);
}

.expertise-item:hover .expertise-icon {
    background: linear-gradient(135deg, var(--secondary-cyan), var(--accent-teal));
    color: var(--white);
}

/* === SERVICE AREAS === */
.service-areas {
    background: var(--white);
}

.areas-content {
    max-width: 900px;
    margin: 0 auto;
}

.industries-served {
    margin-top: 50px;
    text-align: center;
}

.industries-served h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.industry-tag {
    background: var(--light-grey);
    padding: 20px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.industry-tag:hover {
    background: var(--secondary-cyan);
    color: var(--white);
    border-color: var(--accent-teal);
    transform: translateY(-5px);
}

.industry-tag i {
    font-size: 1.4rem;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

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

@media (max-width: 640px) {
    .mv-card {
        padding: 40px 30px;
    }

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