/* Services Page Styles - Broad Nexus */

/* Services Hero */
.bn-services-hero {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, rgba(248, 245, 242, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bn-services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M30,30 Q50,10 70,30 T90,30" fill="none" stroke="%237B9E89" stroke-width="0.5" opacity="0.05"/></svg>');
}

.bn-services-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.bn-services-hero h1.bn-services-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bn-services-hero-subtitle {
    font-size: 1.3rem;
    color: #4A5568;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.bn-services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

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

.bn-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A6FA5;
    display: block;
    margin-bottom: 0.5rem;
}

.bn-stat-label {
    font-size: 1rem;
    color: #4A5568;
    font-weight: 500;
}

/* Services Grid */
.bn-services-grid-section {
    padding: 6rem 2rem;
    background: white;
}

.bn-services-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

.bn-section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.bn-section-title h2.bn-services-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.bn-section-title h2.bn-services-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #D4A76A;
    border-radius: 2px;
}

.bn-section-title p.bn-section-subtitle {
    font-size: 1.2rem;
    color: #4A5568;
    max-width: 600px;
    margin: 1.5rem auto 0;
    opacity: 0.8;
}

/* Service Categories */
.bn-service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.bn-service-category-card {
    background: #F8F5F2;
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(123, 158, 137, 0.1);
}

.bn-service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(74, 111, 165, 0.1);
}

.bn-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A6FA5, #7B9E89);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.bn-service-category-card:hover .bn-category-icon {
    transform: rotate(5deg) scale(1.1);
}

.bn-service-category-card h3.bn-category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.bn-service-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.bn-service-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #4A5568;
}

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

.bn-service-list li::before {
    content: '✓';
    color: #7B9E89;
    font-weight: bold;
}

/* Detailed Services */
.bn-detailed-services {
    background: #F8F5F2;
    padding: 6rem 2rem;
}

.bn-detailed-service-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(74, 111, 165, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border-left: 5px solid #D4A76A;
}

.bn-detailed-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 111, 165, 0.15);
}

.bn-detailed-service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bn-detailed-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A6FA5, #7B9E89);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.bn-detailed-service-header h3.bn-service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

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

.bn-feature-item {
    background: #F8F5F2;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid #D4A76A;
}

.bn-feature-item h4.bn-feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.bn-pricing-section {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.bn-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.bn-pricing-card {
    background: #F8F5F2;
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    border: 2px solid transparent;
}

.bn-pricing-card.bn-popular {
    border-color: #D4A76A;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 167, 106, 0.15);
}

.bn-pricing-card.bn-popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4A76A;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bn-pricing-header {
    margin-bottom: 2rem;
}

.bn-pricing-header h3.bn-package-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.bn-pricing-price {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #4A6FA5;
    margin: 1rem 0;
}

.bn-pricing-price span.bn-pricing-term {
    font-size: 1rem;
    color: #4A5568;
    font-weight: 400;
}

.bn-pricing-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    text-align: left;
}

.bn-pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #4A5568;
}

.bn-pricing-features li:last-child {
    border-bottom: none;
}

.bn-pricing-features li::before {
    content: '✓';
    color: #7B9E89;
    font-weight: bold;
}

.bn-pricing-button {
    display: inline-block;
    background: linear-gradient(135deg, #4A6FA5 0%, #7B9E89 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
}

.bn-pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 111, 165, 0.2);
}

/* Process Section */
.bn-process-section {
    padding: 6rem 2rem;
    background: #F8F5F2;
}

.bn-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
}

.bn-process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #4A6FA5, #7B9E89);
    z-index: 1;
}

@media (max-width: 768px) {
    .bn-process-steps::before {
        display: none;
    }
}

.bn-process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.bn-step-number {
    width: 120px;
    height: 120px;
    background: white;
    border: 3px solid #4A6FA5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A6FA5;
    position: relative;
}

.bn-step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #F8F5F2;
    border-radius: 50%;
    z-index: -1;
}

.bn-process-step h4.bn-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

/* CTA Section */
.bn-services-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #4A6FA5 0%, #7B9E89 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bn-services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
}

.bn-services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.bn-services-cta h2.bn-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bn-services-cta p.bn-cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.bn-cta-button-primary {
    background: white;
    color: #4A6FA5;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.bn-cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.bn-cta-button-secondary {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.bn-cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bn-services-hero h1.bn-services-title {
        font-size: 3.5rem;
    }
    
    .bn-section-title h2.bn-services-section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .bn-services-hero h1.bn-services-title {
        font-size: 3rem;
    }
    
    .bn-pricing-card.bn-popular {
        transform: scale(1);
    }
    
    .bn-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bn-services-hero {
        padding: 6rem 1.5rem 4rem;
    }
    
    .bn-services-hero h1.bn-services-title {
        font-size: 2.5rem;
    }
    
    .bn-services-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .bn-section-title h2.bn-services-section-title {
        font-size: 2.2rem;
    }
    
    .bn-service-categories {
        grid-template-columns: 1fr;
    }
    
    .bn-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .bn-process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bn-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bn-cta-button-primary,
    .bn-cta-button-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .bn-services-hero h1.bn-services-title {
        font-size: 2rem;
    }
    
    .bn-detailed-service-card {
        padding: 2rem;
    }
    
    .bn-detailed-service-header {
        flex-direction: column;
        text-align: center;
    }
}

/* 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-services-hero:hover .bn-hero-img {
    transform: scale(1.02);
}