/* About Page Styles - Broad Nexus */

/* Base Styles */
.broad-nexus-about {
    font-family: 'Inter', sans-serif;
    color: #4A5568;
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.bn-about-hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(248, 245, 242, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 8px;
    margin-top: 2rem;
}

.bn-about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.bn-about-subtitle {
    font-size: 1.6rem;
    color: #4A6FA5;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bn-about-tagline {
    font-size: 1.2rem;
    color: #7B9E89;
    font-style: italic;
    margin-bottom: 0;
}

/* Content Sections */
.bn-content-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.bn-content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.bn-section-description {
    text-align: center;
    color: #718096;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Intro Section */
.bn-intro-section {
    background: #F8F5F2;
    border-radius: 8px;
    padding: 2rem;
}

.bn-intro-section h3 {
    font-family: 'Playfair Display', serif;
    color: #4A6FA5;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bn-intro-section p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Phase Boxes */
.bn-phases-section {
    background: white;
}

.bn-phase-box {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #D4A76A;
    box-shadow: 0 4px 12px rgba(74, 111, 165, 0.1);
    transition: all 0.3s ease;
}

.bn-phase-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 111, 165, 0.15);
}

.bn-phase-illuminate { border-left-color: #4A6FA5; }
.bn-phase-build { border-left-color: #7B9E89; }
.bn-phase-grow { border-left-color: #D4A76A; }

.bn-phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bn-phase-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #718096;
    opacity: 0.5;
}

.bn-phase-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #2C3E50;
    margin: 0;
}

.bn-phase-box > p {
    color: #4A5568;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.bn-phase-list h4 {
    color: #2C3E50;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.bn-phase-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bn-phase-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(123, 158, 137, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.bn-phase-list li:before {
    content: "→";
    color: #4A6FA5;
    position: absolute;
    left: 0;
}

.bn-phase-list li:last-child {
    border-bottom: none;
}

/* Why Section */
.bn-why-section {
    background: #F8F5F2;
    border-radius: 8px;
    padding: 2rem;
}

.bn-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bn-reason-box {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(123, 158, 137, 0.2);
    transition: all 0.3s ease;
}

.bn-reason-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(74, 111, 165, 0.15);
}

.bn-reason-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bn-reason-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 0.8rem;
}

.bn-reason-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.bn-reason-features li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.bn-reason-features li:before {
    content: "✓";
    color: #4A6FA5;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Services Section */
.bn-services-section {
    background: white;
}

.bn-services-categories {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.bn-service-category {
    background: #F8F5F2;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(123, 158, 137, 0.2);
}

.bn-service-category h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bn-service-icon {
    font-size: 1.5rem;
}

.bn-service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bn-service-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: 1.5rem;
}

.bn-service-category li:before {
    content: "•";
    color: #4A6FA5;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.bn-service-category li:last-child {
    border-bottom: none;
}

/* Stats Section */
.bn-stats-section {
    background: #F8F5F2;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(123, 158, 137, 0.2);
}

.bn-stats-section h2 {
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.bn-stats-section .bn-section-description {
    color: #4A5568;
    margin-bottom: 2rem;
}

.bn-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bn-stat-item {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 8px;
    border: 2px solid rgba(74, 111, 165, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bn-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(74, 111, 165, 0.15);
    border-color: #4A6FA5;
}

.bn-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4A6FA5 0%, #7B9E89 100%);
}

.bn-stat-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
    color: #4A6FA5;
    line-height: 1;
}

.bn-stat-label {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.4;
}

/* CTA Section */
.bn-cta-section {
    text-align: center;
    background: #F8F5F2;
    border-radius: 8px;
    padding: 3rem 2rem;
}

.bn-cta-section h2 {
    margin-bottom: 1rem;
}

.bn-cta-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.bn-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bn-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.bn-cta-button.bn-primary {
    background: linear-gradient(135deg, #4A6FA5 0%, #7B9E89 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(74, 111, 165, 0.2);
}

.bn-cta-button.bn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(74, 111, 165, 0.3);
    background: linear-gradient(135deg, #3A5A8C 0%, #5A7E69 100%);
}

.bn-cta-button.bn-secondary {
    background: transparent;
    color: #4A6FA5;
    border-color: #4A6FA5;
}

.bn-cta-button.bn-secondary:hover {
    background: rgba(74, 111, 165, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .broad-nexus-about {
        padding: 0 15px;
    }
    
    .bn-about-title {
        font-size: 2.2rem;
    }
    
    .bn-about-subtitle {
        font-size: 1.3rem;
    }
    
    .bn-content-section h2 {
        font-size: 1.8rem;
    }
    
    .bn-phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bn-phase-number {
        font-size: 1.5rem;
    }
    
    .bn-reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .bn-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bn-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bn-cta-button {
        width: 100%;
        max-width: 300px;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .bn-stats-container {
        grid-template-columns: 1fr;
    }
    
    .bn-about-hero {
        padding: 2rem 0;
    }
    
    .bn-phase-box {
        padding: 1.5rem;
    }
    
    .bn-stat-value {
        font-size: 2.5rem;
    }
}
/* Hero Image Styles */
.bn-hero-image {
    max-width: 900px;
    margin: 2rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bn-hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.bn-about-hero:hover .bn-hero-img {
    transform: scale(1.02);
}
