/* Digital Marketing Page Styles - Broad Nexus */

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

/* Hero Section */
.bn-digital-hero {
    text-align: center;
    padding: 3rem 0 2rem;
    margin-bottom: 1rem;
}

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

.bn-digital-subtitle {
    font-size: 1.5rem;
    color: #4A6FA5;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bn-digital-tagline {
    font-size: 1.1rem;
    color: #7B9E89;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Hero Image */
.bn-hero-image {
    max-width: 1000px;
    margin: 2rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

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

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

.bn-digital-intro {
    text-align: center;
    color: #4A5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 20px;
    font-size: 1.1rem;
}

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

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

.bn-section-description {
    text-align: center;
    color: #718096;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.bn-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bn-service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(123, 158, 137, 0.2);
    position: relative;
    overflow: hidden;
}

.bn-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

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

.bn-seo-card::before { background: linear-gradient(135deg, #4A6FA5, #7B9E89); }
.bn-content-card::before { background: linear-gradient(135deg, #7B9E89, #D4A76A); }
.bn-social-card::before { background: linear-gradient(135deg, #D4A76A, #4A6FA5); }

.bn-service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.bn-service-card > p {
    color: #4A5568;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

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

.bn-service-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: 1.8rem;
    color: #4A5568;
}

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

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

.bn-service-link {
    display: inline-block;
    color: #4A6FA5;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.bn-service-link:hover {
    color: #7B9E89;
    transform: translateX(5px);
}

/* SEO Section */
.bn-seo-section {
    background: linear-gradient(135deg, rgba(248, 245, 242, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
}

.bn-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bn-seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bn-seo-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bn-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

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

.bn-seo-process {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(123, 158, 137, 0.2);
}

.bn-seo-process h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.bn-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.bn-process-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 2px solid rgba(74, 111, 165, 0.1);
    transition: all 0.3s ease;
}

.bn-process-step:hover {
    border-color: #4A6FA5;
    transform: translateY(-5px);
}

.bn-step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #4A6FA5;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 1rem;
}

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

/* Content Strategy */
.bn-content-strategy {
    background: white;
}

.bn-strategy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bn-content-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.bn-content-type {
    padding: 2rem;
    background: #F8F5F2;
    border-radius: 12px;
    border-left: 4px solid #D4A76A;
}

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

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

.bn-content-type > p {
    color: #4A5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.bn-content-type li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: 1.5rem;
    color: #4A5568;
}

.bn-content-type li:last-child {
    border-bottom: none;
}

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

/* Social Media */
.bn-social-media {
    background: linear-gradient(135deg, rgba(248, 245, 242, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
}

.bn-social-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bn-social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bn-platform-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.bn-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.bn-platform-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

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

.bn-platform-card > p {
    color: #4A5568;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.bn-platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.bn-platform-features span {
    background: rgba(74, 111, 165, 0.1);
    color: #4A6FA5;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.bn-social-approach {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(123, 158, 137, 0.2);
}

.bn-social-approach h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.bn-approach-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bn-approach-point {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(123, 158, 137, 0.2);
}

.bn-approach-point h4 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

/* Results Section */
.bn-results-section {
    background: white;
    text-align: center;
}

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

.bn-result-card {
    padding: 2rem;
    background: #F8F5F2;
    border-radius: 12px;
    border: 2px solid rgba(123, 158, 137, 0.1);
    transition: all 0.3s ease;
}

.bn-result-card:hover {
    border-color: #4A6FA5;
    transform: translateY(-5px);
}

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

.bn-result-title {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bn-result-card p {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Packages Section */
.bn-packages-section {
    background: linear-gradient(135deg, rgba(248, 245, 242, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
}

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

.bn-package-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    border: 2px solid rgba(123, 158, 137, 0.2);
    transition: all 0.3s ease;
}

.bn-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.bn-package-card.bn-popular {
    border-color: #D4A76A;
    transform: scale(1.05);
}

.bn-package-card.bn-popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.bn-package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4A76A;
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bn-package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.bn-package-header p {
    color: #718096;
    font-size: 0.95rem;
}

.bn-package-price {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #4A6FA5;
    margin: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
}

.bn-package-price span {
    font-size: 1rem;
    color: #718096;
    font-weight: 400;
}

.bn-package-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

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

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

.bn-package-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #4A6FA5 0%, #7B9E89 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.bn-package-button.bn-popular-btn {
    background: linear-gradient(135deg, #D4A76A 0%, #7B9E89 100%);
}

.bn-package-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* CTA Section */
.bn-digital-cta {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 4rem 2rem;
    border: 2px solid rgba(123, 158, 137, 0.2);
}

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

.bn-digital-cta > p {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #4A5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

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

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

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

.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(-3px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    /* Base container */
    .broad-nexus-digital-marketing {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Hero section */
    .bn-digital-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .bn-digital-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .bn-digital-subtitle {
        font-size: 1.2rem;
    }
    
    .bn-digital-tagline {
        font-size: 1rem;
    }
    
    .bn-hero-image {
        margin: 1.5rem auto 0;
        border-radius: 12px;
    }
    
    .bn-digital-intro {
        padding: 0;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Content sections */
    .bn-content-section {
        padding: 1.5rem 0;
        margin-bottom: 2.5rem;
    }
    
    .bn-content-section h2 {
        font-size: 1.8rem;
    }
    
    .bn-section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Services grid */
    .bn-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .bn-service-card {
        padding: 2rem 1.5rem;
    }
    
    .bn-service-icon {
        font-size: 2.5rem;
    }
    
    /* SEO section */
    .bn-seo-section,
    .bn-social-media,
    .bn-packages-section {
        padding: 2rem 1rem;
        border-radius: 12px;
    }
    
    .bn-seo-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bn-process-steps {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    /* Content types */
    .bn-content-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Social platforms */
    .bn-social-platforms {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bn-approach-points {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    /* Results grid */
    .bn-results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Packages grid */
    .bn-packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bn-package-card.bn-popular {
        transform: scale(1);
    }
    
    .bn-package-card.bn-popular:hover {
        transform: translateY(-10px);
    }
    
    /* CTA */
    .bn-digital-cta {
        padding: 2.5rem 1.5rem;
        border-radius: 12px;
    }
    
    .bn-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .bn-cta-button {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 2rem;
    }
}

@media screen and (max-width: 480px) {
    .broad-nexus-digital-marketing {
        padding: 0 10px;
    }
    
    .bn-digital-title {
        font-size: 1.8rem;
    }
    
    .bn-digital-subtitle {
        font-size: 1.1rem;
    }
    
    .bn-service-card h3,
    .bn-package-header h3 {
        font-size: 1.3rem;
    }
    
    .bn-package-price {
        font-size: 2.8rem;
    }
    
    .bn-result-number {
        font-size: 2.5rem;
    }
}