/* ========== ABOUT PAGE SPECIFIC STYLES ========== */

/* ========== HERO SECTION ========== */
.about-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(45deg, rgba(67, 97, 238, 0.8), rgba(100, 216, 243, 0.8), rgba(64, 224, 208, 0.8), rgba(147, 197, 253, 0.8), rgba(52, 219, 216, 0.8)) 0 0 / 1000% no-repeat;
    animation: gradientAnimation 40s ease infinite;
}

.about-hero-content {
    text-align: center;
    color: #fff;
}

.about-hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ========== MISSION SECTION ========== */
.about-mission-section {
    background: #ffffff;
    padding: 8rem 0 6rem 0;
    margin-top: 5rem;
}

.mission-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.mission-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00bcd4 0%, #26c6da 50%, #4dd0e1 100%);
}

.mission-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #06b6d4;
    margin: 0 0 2.5rem 0;
    line-height: 1.3;
}

.mission-description {
    font-size: 1.3rem;
    line-height: 2;
    color: #374151;
    margin: 0 0 2rem 0;
    font-weight: 700;
}

.mission-sub-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4b5563;
    margin: 0;
    padding: 2rem;
    background: #e0f7fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
    font-weight: 700;
}

/* ========== CEO SECTION ========== */
.ceo-section {
    padding: 6rem 0;
}

.ceo-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.ceo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00bcd4 0%, #26c6da 50%, #4dd0e1 100%);
}

.ceo-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.ceo-image-side {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ceo-photo {
    width: 100%;
    height: 550px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center top;
}

.ceo-message {
    flex: 1;
    padding: 0;
}

.ceo-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #374151;
    margin: 0;
    font-weight: 400;
}

.ceo-text strong {
    color: #000000;
    font-weight: 700;
}

/* ========== COMPANY INFO SECTION ========== */
.company-info-section {
    background: #ffffff;
    padding: 6rem 0;
}

.company-info-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.company-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00bcd4 0%, #26c6da 50%, #4dd0e1 100%);
}

.info-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-row {
    display: flex;
    border-bottom: 1px solid var(--bg-color);
    padding: 2rem 0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label-col {
    flex: 0 0 200px;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 1.2rem;
    padding-right: 3rem;
}

.info-value-col {
    flex: 1;
}

.info-value-col p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.business-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-list li {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-dark);
    padding-left: 1.5rem;
    position: relative;
    font-weight: 600;
}

.business-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ========== BUSINESS SECTION ========== */
.business-section {
    padding: 6rem 0;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.business-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 188, 212, 0.3);
}

.business-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.business-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.business-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: #ffffff;
    padding: 6rem 0;
}

.cta-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00bcd4 0%, #26c6da 50%, #4dd0e1 100%);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.cta-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 3rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 3.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.4rem;
    }

    .mission-main-title {
        font-size: 2rem;
    }

    .mission-description {
        font-size: 1.1rem;
    }

    .mission-sub-description {
        font-size: 1.05rem;
        padding: 1.5rem;
    }

    .mission-section-title {
        font-size: 2rem;
    }

    .ceo-content {
        flex-direction: column;
        gap: 2rem;
    }

    .ceo-image-side {
        flex: 1;
        width: 100%;
    }

    .ceo-photo {
        height: 400px;
    }

    .ceo-text {
        font-size: 1.05rem;
    }

    .info-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .info-label-col {
        flex: none;
        padding-right: 0;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .mission-main-title {
        font-size: 1.7rem;
    }

    .mission-description {
        font-size: 1rem;
    }

    .mission-sub-description {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .mission-section-title {
        font-size: 1.8rem;
    }

    .ceo-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .ceo-image-side {
        flex: 1;
        width: 100%;
    }

    .ceo-photo {
        height: 350px;
    }

    .ceo-text {
        font-size: 1rem;
    }

    .info-label-col {
        font-size: 1rem;
    }

    .info-value-col p,
    .business-list li {
        font-size: 1rem;
    }

    .business-icon {
        font-size: 3rem;
    }

    .business-title {
        font-size: 1.3rem;
    }

    .business-description {
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}
