/* ============================================
   ABOUT.CSS - ABOUT US PAGE
   Atlassian-Inspired Design
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    color: #172B4D;
    line-height: 1.6;
    background: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
        .logo {
            width: auto;
            height: 38px;
        }

        .logo-icon {
            width: auto;
            height: 32px;
        }

/* Navbar */
        .navbar {
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        /* Logo */
        .logo {
            width: auto;
            height: 38px;
        }

        .logo-icon {
            width: auto;
            height: 32px;
        }

        /* Nav Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            color: #172B4D;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .nav-link:hover {
            background: #F4F5F7;
            color: #0052CC;
        }

        .nav-link.active {
            background: #E9F2FF;
            color: #0052CC;
        }

        .chevron {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .chevron {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            min-width: 280px;
            margin-top: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 12px;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-section {
            padding: 8px 0;
        }

        .dropdown-title {
            font-size: 12px;
            font-weight: 600;
            color: #5E6C84;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 12px;
            margin-bottom: 4px;
        }

        .dropdown-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            border-radius: 8px;
            text-decoration: none;
            color: #172B4D;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background: #F4F5F7;
        }

        .dropdown-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: #E9F2FF;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0052CC;
        }

        .dropdown-content {
            flex: 1;
        }

        .dropdown-item-title {
            font-size: 15px;
            font-weight: 600;
            color: #172B4D;
            margin-bottom: 4px;
        }

        .dropdown-item-desc {
            font-size: 13px;
            color: #5E6C84;
            line-height: 1.4;
        }

        .dropdown-divider {
            height: 1px;
            background: #E0E0E0;
            margin: 8px 0;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            width: 40px;
            height: 40px;
            background: #F4F5F7;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            color: #172B4D;
        }

        /* Mega Menu (for More +) */
        .mega-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            width: 600px;
            margin-top: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 24px;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .mega-menu-column {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .nav-container {
                padding: 0 20px;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background: white;
            border-top: 1px solid #E0E0E0;
            padding: 16px;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav-item {
            margin-bottom: 8px;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: #F4F5F7;
            border-radius: 8px;
            text-decoration: none;
            color: #172B4D;
            font-weight: 500;
        }

        .mobile-dropdown {
            display: none;
            padding: 12px 0 12px 16px;
        }

        .mobile-dropdown.active {
            display: block;
        }

        .mobile-dropdown-item {
            display: block;
            padding: 10px 16px;
            color: #5E6C84;
            text-decoration: none;
            border-radius: 6px;
            margin-bottom: 4px;
        }

        .mobile-dropdown-item:hover {
            background: #F4F5F7;
            color: #172B4D;
        }
        /* ---------------------------------------------------------------------- */

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F7F8F9 0%, #FFFFFF 100%);
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #E9F2FF;
    color: #0052CC;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    color: #172B4D;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    color: #42526E;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.text-large {
    font-size: 22px;
    color: #172B4D;
    line-height: 1.5;
    margin-bottom: 24px;
    font-weight: 500;
}

.text-regular {
    font-size: 16px;
    color: #42526E;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image {
    width: 100%;
}

.image-placeholder {
    background: #F4F5F7;
    border: 2px dashed #C1C7D0;
    border-radius: 8px;
    padding: 100px 40px;
    text-align: center;
    color: #6B778C;
    font-size: 16px;
    font-weight: 500;
}

.image-placeholder small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */
.mission-vision-section {
    padding: 100px 0;
    background: #F7F8F9;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #FFFFFF;
    border: 1px solid #EBECF0;
    border-radius: 8px;
    padding: 48px 40px;
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: #0052CC;
    box-shadow: 0 12px 32px rgba(9, 30, 66, 0.15);
    transform: translateY(-4px);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0052CC 0%, #0065FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.mv-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

.mv-title {
    font-size: 28px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 16px;
}

.mv-description {
    font-size: 16px;
    color: #42526E;
    line-height: 1.7;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: #42526E;
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: #F7F8F9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #E9F2FF;
    transform: translateY(-4px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 12px;
}

.value-description {
    font-size: 15px;
    color: #42526E;
    line-height: 1.6;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 100px 0;
    background: #F7F8F9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-card {
    background: #FFFFFF;
    border: 1px solid #EBECF0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: #C1C7D0;
    box-shadow: 0 12px 32px rgba(9, 30, 66, 0.12);
    transform: translateY(-4px);
}

.team-image {
    width: 100%;
    height: 300px;
}

.team-image .image-placeholder {
    height: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #EBECF0;
    padding: 80px 40px;
}

.team-info {
    padding: 32px;
}

.team-name {
    font-size: 24px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 4px;
}

.team-role {
    font-size: 16px;
    color: #0052CC;
    font-weight: 500;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 15px;
    color: #42526E;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #F4F5F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #42526E;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #0052CC;
    color: white;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #EBECF0;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 24px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: #0052CC;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 4px #E9F2FF;
}

.timeline-year {
    display: inline-block;
    padding: 4px 16px;
    background: #E9F2FF;
    color: #0052CC;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 8px;
}

.timeline-description {
    font-size: 15px;
    color: #42526E;
    line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0052CC 0%, #0065FF 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: #F7F8F9;
    text-align: center;
}

.cta-title {
    font-size: 40px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: #42526E;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #0052CC 0%, #0065FF 100%);
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 82, 204, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #0052CC;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #0052CC;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #F4F5F7;
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #172B4D;
    color: #f6f6f6;
    padding: 80px 20px 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
    color: #f6f6f6;
}

.footer-logo .brand {
    font-size: 24px;
    font-weight: bold;
    color: #f6f6f6;
}

.footer-tagline {
    color: #f6f6f6;
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6f6f6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #5865f2;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #f6f6f6;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #f6f6f6;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f6f6f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #f6f6f6;
}

.footer-language {
    display: flex;
    align-items: center;
}

.language-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f6f6f6;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.15);
}

.language-selector svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .story-grid,
    .mv-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .text-large {
        font-size: 18px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-item {
        padding-left: 48px;
    }

    .timeline-marker {
        left: 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .stat-number {
        font-size: 42px;
    }
}