/* About Page Specific Styles */

/* Page Header with Photo Background */
.page-header {
    position: relative;
    padding: 200px 0 120px;
    text-align: center;
    color: var(--white);
    margin-top: 75px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-with-photo {
    background: var(--primary-color);
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomInHeader 1.2s ease-out;
}

@keyframes zoomInHeader {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(37, 115, 150, 0.85) 0%,
        rgba(137, 213, 246, 0.75) 100%
    );
    z-index: 2;
}

.header-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.page-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Remove old styles */
.team-photo-hero {
    display: none;
}

.team-photo-hero-wrapper {
    display: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Detail Section */
.about-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.about-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-text);
    margin-bottom: 25px;
    text-align: justify;
}

.about-commitment {
    margin-top: 30px !important;
    font-weight: 500;
}

.about-values-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 40px !important;
}

.about-values-intro strong {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Business Models Cards */
.business-models {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.business-card {
    background: var(--light-blue);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
    background: var(--white);
}

.business-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.business-card:hover .business-icon {
    transform: scale(1.1) rotate(10deg);
}

.business-icon i {
    font-size: 35px;
    color: var(--white);
}

.business-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.business-card p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--light-blue);
}

.values-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.values-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.values-image:hover img {
    transform: scale(1.05);
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background: var(--white);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.vm-card {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon {
    transform: scale(1.1) rotate(10deg);
}

.vm-icon i {
    font-size: 45px;
    color: var(--white);
}

.vm-card h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.vm-content p {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--dark-text);
    font-weight: 500;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-text);
}

.mission-list li:last-child {
    margin-bottom: 0;
}

.mission-list i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.mission-list span {
    flex: 1;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: var(--light-blue);
}

.history-content {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.history-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Career Path Section */
.career-path-section {
    padding: 80px 0;
    background: var(--white);
}

.career-path-content {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.career-path-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--light-blue);
}

.org-chart {
    max-width: 1200px;
    margin: 0 auto;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
}

.org-level::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 25px;
    background: var(--primary-color);
}

.org-level:last-child::after {
    display: none;
}

.ceo-level {
    margin-bottom: 60px;
}

.team-member {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    width: 280px;
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 25px;
    background: var(--primary-color);
}

.ceo-level .team-member::before {
    display: none;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-member.ceo {
    width: 320px;
    padding: 45px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.team-member.ceo h3,
.team-member.ceo .member-position {
    color: var(--white);
}

.member-photo {
    width: 180px;
    height: 180px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-member.ceo .member-photo {
    width: 200px;
    height: 200px;
    background: var(--white);
    border-color: var(--white);
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-photo i {
    font-size: 55px;
    color: var(--primary-color);
}

.team-member.ceo .member-photo i {
    font-size: 65px;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.member-position {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-quote {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid var(--light-blue);
}

.team-member.ceo .member-quote {
    color: var(--white);
    border-top-color: rgba(255, 255, 255, 0.3);
}

/* Team Photo Section */
.team-photo-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.team-photo-wrapper {
    max-width: 1100px;
    margin: 0 auto 50px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.team-photo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Join Us CTA */
.join-us-cta {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
    animation: fadeInUp 0.8s ease-out;
}

.join-us-cta h2 {
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.join-us-cta p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Company Profile Download Section */
.company-profile-download {
    padding: 60px 0 80px;
    background: var(--light-blue);
}

.download-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 60px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 115, 150, 0.25);
}

.download-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.download-card:hover .download-icon {
    transform: scale(1.1) rotate(5deg);
}

.download-icon i {
    font-size: 50px;
    color: var(--white);
}

.download-content {
    flex: 1;
}

.download-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.download-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin: 0;
    line-height: 1.6;
}

.btn-download {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.btn-download:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 115, 150, 0.3);
}

.btn-download i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-header {
        padding: 180px 0 100px;
        min-height: 450px;
    }

    .page-title {
        font-size: 3rem;
    }

    .page-subtitle {
        font-size: 1.3rem;
    }

    .business-models {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .org-level {
        gap: 20px;
    }

    .team-member {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 150px 0 80px;
        min-height: 400px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    .about-intro h2 {
        font-size: 2rem;
    }

    .about-intro p {
        font-size: 1rem;
    }

    .vm-card {
        padding: 35px 25px;
    }

    .vm-card h2 {
        font-size: 1.7rem;
    }

    .manager-level,
    .supervisor-level,
    .staff-level {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 100%;
        max-width: 350px;
    }

    .team-member.ceo {
        width: 100%;
        max-width: 380px;
    }

    .join-us-cta h2 {
        font-size: 2.2rem;
    }

    .join-us-cta p {
        font-size: 1.1rem;
    }

    .download-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .download-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 130px 0 70px;
        min-height: 350px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .business-card {
        padding: 30px 20px;
    }

    .vm-card {
        padding: 30px 20px;
    }

    .mission-list li {
        font-size: 0.95rem;
    }

    .team-member {
        padding: 25px 20px;
    }

    .member-photo {
        width: 120px;
        height: 120px;
    }

    .team-member.ceo .member-photo {
        width: 140px;
        height: 140px;
    }

    .member-photo i {
        font-size: 45px;
    }

    .team-member.ceo .member-photo i {
        font-size: 55px;
    }

    .team-member h3 {
        font-size: 1.3rem;
    }

    .join-us-cta {
        padding: 40px 20px;
    }

    .join-us-cta h2 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .join-us-cta p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 15px 40px;
        font-size: 1rem;
    }

    .download-card {
        padding: 35px 25px;
        gap: 25px;
    }

    .download-icon {
        width: 80px;
        height: 80px;
    }

    .download-icon i {
        font-size: 40px;
    }

    .download-content h3 {
        font-size: 1.5rem;
    }

    .download-content p {
        font-size: 1rem;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 1rem;
    }
}
