
/* Hero Section */
.about-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 53, 0.9) 0%, rgba(10, 25, 53, 0.6) 100%);
}

.about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.about-hero__label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    font-weight: 400;
}


.about-hero__title {
     font-family: "SangBleu Sunrise", serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 32px;
    letter-spacing: -1px;
    max-width: 900px;
}

.about-hero__subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    font-weight: 300;
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background: #0f1f3f;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-item__number {
     font-family: "SangBleu Sunrise", serif;
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

/* Philosophy Section */
.philosophy-section {
    padding: 140px 0;

}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.philosophy__content h2 {
     font-family: "SangBleu Sunrise", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.philosophy__text {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-weight: 300;
}

.philosophy__image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.philosophy__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.philosophy__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Values Section */
.values-section {
    padding: 140px 0;

    position: relative;
}

.values-section::before,
.values-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.values-section::before { top: 0; }
.values-section::after { bottom: 0; }

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header__title {
     font-family: "SangBleu Sunrise", serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-header__subtitle {
    font-size: 25px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.value-card {
    background: #0a1935;
    padding: 60px 40px;
    transition: all 0.4s ease;
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    background: #0d1b3a;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.value-card:hover .value-card__icon {
    border-color: rgba(0, 102, 255, 0.5);
    background: rgba(0, 102, 255, 0.1);
}

.value-card__title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.value-card__text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Team Section */
.team-section {
    padding: 140px 0;
    background: #0a1935;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 100px;
    text-align: center;
}

.team-intro h2 {
     font-family: "SangBleu Sunrise", serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item__content {
    width: 45%;
    padding: 40px;
    background: rgba(15, 31, 63, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.timeline-item__year {
     font-family: "SangBleu Sunrise", serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #0066ff;
}

.timeline-item__title {
    font-size: 20px;
    padding-left: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.timeline-item__text {
    font-size: 17px;
    line-height: 1.8;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.timeline-item__dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #0066ff;
    border: 4px solid #0a1935;
    border-radius: 50%;
    z-index: 2;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f1f3f 0%, #0a1935 100%);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.cta-section h2 {
     font-family: "SangBleu Sunrise", serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 18px 48px;
    background: #0066ff;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 1px solid #0066ff;
}

.btn-primary:hover {
    background: transparent;
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .philosophy-grid {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .about-hero__title {
        font-size: 42px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }

    .timeline-item__content {
        width: 70%;
    }

    .timeline-item__dot {
        left: 20px;
        top: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero__content {
        padding: 0 30px;
    }

    .about-hero__title {
        font-size: 42px;
    }

    .about-hero__subtitle {
        font-size: 16px;
    }

    .container {
        padding: 0 30px;
    }

    .stats-section {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-section,
    .values-section,
    .team-section {
        padding: 80px 0;
    }

    .philosophy__content h2,
    .section-header__title {
        font-size: 36px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .about-hero__title {
        font-size: 32px;
    }

    .stat-item__number {
        font-size: 48px;
    }

    .cta-section h2 {
        font-size: 36px;
    }
}
