/* ===== ABOUT PAGE - PROFESSIONAL REDESIGN ===== */

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-left {
    animation: slideLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideRight 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-scale {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Common Elements */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.1), rgba(106, 48, 255, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 30px;
    color: var(--accent-1);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    background: linear-gradient(90deg, #fff, var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(106, 48, 255, 0.05));
    border: 2px dashed rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-placeholder:hover {
    border-color: var(--accent-1);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(106, 48, 255, 0.1));
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent-1);
    opacity: 0.5;
}

.image-placeholder p {
    margin: 0;
    font-size: 0.9rem;
}

.image-placeholder small {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Hero Section */
.about-hero-new {
    padding: 140px 0 80px;
    background: radial-gradient(ellipse at top, rgba(0, 240, 255, 0.05), transparent 60%);
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-placeholder {
    height: 500px;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.story-placeholder {
    height: 600px;
}

.story-content h2 {
    font-size: 2.5rem;
    margin: 20px 0;
    color: #fff;
}

.story-content>p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 40px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

.mv-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
}

.mv-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* Values Section */
.values-section-new {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(106, 48, 255, 0.05), transparent 60%);
}

.values-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card-new {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    opacity: 0;
}

.value-card-new:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.15);
}

.value-image-new {
    width: 100%;
    overflow: hidden;
}

.value-placeholder {
    height: 250px;
}

.value-content-new {
    padding: 35px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-content-new h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.value-content-new p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* Expertise Section */
.expertise-section-new {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.expertise-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.expertise-card-new {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
}

.expertise-image-new {
    width: 100%;
    height: 100%;
}

.expertise-placeholder {
    height: 100%;
}

.expertise-overlay-new {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.3));
    padding: 40px 30px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.expertise-card-new:hover .expertise-overlay-new {
    background: linear-gradient(to top, rgba(0, 240, 255, 0.4), rgba(0, 0, 0, 0.6));
    padding: 50px 30px;
}

.expertise-overlay-new h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.expertise-overlay-new p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 15px;
}

.expertise-arrow {
    font-size: 2rem;
    color: var(--accent-1);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.expertise-card-new:hover .expertise-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Global Section */
.global-section-new {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.05), transparent 60%);
}

.global-content-new {
    text-align: center;
}

.global-content-new h2 {
    font-size: 2.5rem;
    margin: 20px 0;
}

.global-content-new>p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.global-image-new {
    max-width: 1200px;
    margin: 0 auto;
}

.global-placeholder {
    height: 500px;
}

/* Office Section */
.office-section-new {
    padding: 100px 0;
}

.office-grid-new {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.office-placeholder {
    height: 550px;
}

.office-info-new h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--accent-1);
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.contact-details strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.contact-details a {
    color: var(--accent-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-2);
}

/* Responsive Design */
@media (max-width: 1000px) {

    .story-grid,
    .office-grid-new {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .expertise-grid-new,
    .values-grid-new {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-new {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-placeholder {
        height: 350px;
    }

    .story-placeholder {
        height: 400px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .expertise-card-new {
        height: 380px;
    }

    .values-section-new,
    .expertise-section-new,
    .global-section-new,
    .office-section-new {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .mv-card {
        padding: 20px;
    }

    .value-content-new {
        padding: 25px;
    }

    .contact-item {
        padding: 20px;
    }

    .global-placeholder,
    .office-placeholder {
        height: 300px;
    }
}