/* About Page - Complete Redesign */
/* Clean Slate to ensure no conflicts */

/* 1. Page Layout & Hero */
.about-page {
    position: relative;
    padding-bottom: 50px;
}

.about-hero {
    padding-top: 150px;
    padding-bottom: 100px;
    text-align: center;
    /* Default center alignment for hero contents */
    position: relative;
}

/* Breadcrumb: Left Aligned as requested */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* LEFT ALIGNED */
    gap: 10px;
    margin-bottom: 50px;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .separator {
    color: #475569;
    font-size: 0.8rem;
}

.breadcrumb .current {
    color: #fff;
    font-weight: 600;
}

/* Hero Content: Stacked (Alt alta) & Centered */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 25px 0;
    letter-spacing: -0.02em;
}

.hero-content .gradient-text {
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    color: #cbd5e1;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

/* 2. Story Section */
.story-section {
    margin-bottom: 140px;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Story Image - Left */
.story-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.story-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Story Text */
.story-text {
    padding-right: 20px;
}

.badge-pill {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.story-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-text .highlight-text {
    border-left: 3px solid #8b5cf6;
    padding-left: 25px;
    color: #e2e8f0;
    font-style: italic;
    margin-top: 30px;
}

/* 3. Values Section */
.values-section {
    margin-bottom: 140px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.value-card .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2e1065, #4c1d95);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #d8b4fe;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px -5px rgba(76, 29, 149, 0.4);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.value-card p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

/* 4. Mission & Vision */
.mission-vision-section {
    margin-bottom: 140px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s ease;
}

.mv-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.mv-card .small-label {
    color: #a78bfa;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.mv-card h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.mv-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    flex-grow: 1;
}

.mv-card .mini-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.mini-footer span {
    font-weight: 500;
    font-size: 0.95rem;
    color: #e2e8f0;
}

/* 5. CTA Section */
.cta-section {
    margin-bottom: 80px;
}

.cta-box {
    background: radial-gradient(circle at center, #1e1b4b 0%, #020617 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(#4c1d95 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    color: #94a3b8;
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta-primary {
    background: #7c3aed;
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.5);
}

.btn-cta-primary:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.5);
}

.btn-cta-outline {
    background: transparent;
    border: 1px solid #475569;
    color: #f1f5f9;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #cbd5e1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-hero {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .story-layout {
        gap: 50px;
    }

    .story-text h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 900px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-image {
        order: 1;
    }

    .story-text {
        order: 2;
        padding-right: 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }
}