/* ===== ABOUT US PAGE STYLES ===== */

/* Breadcrumb */
.breadcrumb-wrapper {
    padding: 15px 0;
    background: rgba(8, 20, 43, 0.5);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    opacity: 0.5;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--blue-grad);
}

.breadcrumb .active {
    color: var(--blue-grad);
}

/* Page Hero */
.page-hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin: 20px 0;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-trust i {
    color: var(--green-grad);
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 15px 0 25px;
    font-weight: 500;
}

.story-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.story-text strong {
    color: var(--blue-grad);
}

.story-highlights {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.highlight {
    text-align: center;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-grad);
    display: block;
    line-height: 1.2;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Story Image */
.story-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.image-blob {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,174,239,0.2), transparent);
    border-radius: 50%;
    z-index: 1;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.floating-card i {
    color: #FFD700;
    font-size: 1.5rem;
}

.floating-card span {
    font-weight: 600;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue-grad);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 2.2rem;
    color: var(--blue-grad);
}

.mv-card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Founders Section */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.founder-card {
    background: var(--card-bg);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue-grad);
    box-shadow: 0 20px 40px -15px rgba(0,174,239,0.2);
}

.founder-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-card:hover .founder-img {
    transform: scale(1.05);
}

.founder-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    background: rgba(8, 20, 43, 0.9);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 40px;
    border: 1px solid var(--border-light);
}

.founder-card:hover .founder-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.founder-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.founder-social a:hover {
    background: var(--blue-grad);
    transform: translateY(-3px);
}

.founder-info {
    padding: 30px;
}

.founder-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #fff;
}

.founder-title {
    display: block;
    color: var(--blue-grad);
    font-weight: 500;
    margin-bottom: 15px;
}

.founder-bio {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.founder-expertise span {
    background: rgba(0, 174, 239, 0.1);
    color: var(--blue-grad);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Core Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--border-light);
    transition: border-color 0.3s;
}

.team-member:hover img {
    border-color: var(--blue-grad);
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.team-member span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.member-social a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.2s;
}

.member-social a:hover {
    color: var(--blue-grad);
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.achievement-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.achievement-card:hover {
    border-color: var(--blue-grad);
}

.achievement-card i {
    font-size: 2.5rem;
    color: var(--blue-grad);
    margin-bottom: 20px;
}

.achievement-card h4 {
    margin-bottom: 10px;
    color: #fff;
}

.achievement-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.about-cta .cta-card {
    background: linear-gradient(145deg, #102a4a, #07152b);
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid,
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founders-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 50px 0 40px;
    }
    
    .story-highlights {
        justify-content: center;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        justify-content: center;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-image-wrapper {
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-cta .cta-card {
        padding: 40px 25px;
    }
}

@media (max-width: 576px) {
    .mv-grid,
    .achievements-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-trust {
        gap: 15px;
    }
    
    .story-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-member img {
        max-width: 150px;
        height: 150px;
    }
    
    .breadcrumb {
        justify-content: center;
    }
}

/* Print Styles for SEO */
@media print {
    .site-header,
    .site-footer,
    .about-cta,
    .founder-social,
    .breadcrumb-wrapper {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
}