/* Modern About Page Styles */

/* Modern Header Styles */
.about-header.modern-header {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 0 120px;
}

.about-header.modern-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.about-header.modern-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.about-header .gradient-text {
    background: linear-gradient(135deg, #74ebd5 0%, #ACB6E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.header-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.header-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.header-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.header-badge i {
    font-size: 1rem;
}

.about-header .ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.about-header .particle {
    position: absolute;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.about-header .particle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.about-header .particle-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.about-header .particle-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.about-header .particle-4 {
    width: 50px;
    height: 50px;
    top: 80%;
    left: 70%;
    animation-delay: 6s;
    animation-duration: 15s;
}

.about-header .particle-5 {
    width: 70px;
    height: 70px;
    top: 30%;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 25s;
}

.about-header .particle-6 {
    width: 90px;
    height: 90px;
    top: 60%;
    left: 30%;
    animation-delay: 10s;
    animation-duration: 19s;
}

@media (max-width: 768px) {
    .about-header.modern-header {
        padding: 60px 0 80px;
    }
    
    .about-header.modern-header h1 {
        font-size: 2rem;
    }
    
    .about-header.modern-header p {
        font-size: 1rem;
    }
    
    .header-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* About Intro Section */
.about-intro {
    padding: 80px 0;
    background-color: #fff;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-text {
    order: 1;
}

.mission-image {
    order: 2;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 350px;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mission-image:hover img {
    transform: scale(1.05);
}

.mission-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 106, 240, 0.3) 0%, rgba(0, 210, 255, 0.3) 100%);
    z-index: 1;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.mission-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.mission-stats .stat-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    border-bottom: 3px solid transparent;
}

.mission-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-color);
}

.mission-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.mission-stats .stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .mission-stats {
        flex-direction: column;
        gap: 15px;
    }
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
}

.value-icon i {
    font-size: 24px;
    color: #fff;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.member-social {
    display: flex;
    gap: 10px;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px) rotate(10deg);
}

/* Global Offices About Section */
.global-offices-about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 247, 250, 1) 0%, rgba(240, 242, 247, 1) 100%);
}

.offices-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto 0;
    max-width: 1200px;
}

@media (max-width: 992px) {
    .offices-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offices-about-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.office-about-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.office-about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-color);
}

.office-landmark {
    margin-bottom: 20px;
    display: block;
    position: relative;
    text-align: center;
}

.landmark-sketch {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.office-about-card:hover .landmark-sketch {
    transform: scale(1.05);
}

.office-flag {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.office-about-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
}

.office-about-card h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.office-about-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.office-about-card p:first-of-type {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.office-about-card p i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
}

.office-about-card:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 50%;
    right: -30px;
    bottom: -30px;
    z-index: 0;
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background-color: #fff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.expertise-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-color);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    border-radius: 50%;
    transform: rotate(10deg);
}

.expertise-icon i {
    font-size: 24px;
    color: #fff;
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.expertise-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 247, 250, 1) 0%, rgba(240, 242, 247, 1) 100%);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-content {
    padding-right: 20px;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.cta-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cta-image:hover img {
    transform: scale(1.05);
}

/* Section Header Styling */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mission-content,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-text,
    .mission-image {
        order: 0;
    }
    
    .mission-image,
    .cta-image {
        height: 300px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .team-grid,
    .offices-about-grid,
    .expertise-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .mission-image,
    .cta-image {
        height: 250px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .values-grid,
    .team-grid,
    .offices-about-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}
