/* NBC Cooperative Program - Frontend Styles */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

.nbc-cp-container {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    background: #ffffff;
}

.nbc-cp-container * {
    box-sizing: border-box;
}

/* Hero */
.nbc-cp-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.nbc-cp-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='80' cy='40' r='2' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='40' cy='70' r='1' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='90' cy='80' r='1.5' fill='rgba(255,255,255,0.07)'/%3E%3Ccircle cx='10' cy='90' r='1' fill='rgba(255,255,255,0.09)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.6;
}

.nbc-cp-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a227, #d4af37, #c9a227);
}

.nbc-cp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.nbc-cp-hero-icon {
    font-size: 52px;
    color: #d4af37;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1;
}

.nbc-cp-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.nbc-cp-hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content */
.nbc-cp-main-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nbc-cp-content-area {
    padding: 60px 0 80px;
}

/* Section Headings */
.nbc-cp-section-heading {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a3a5c;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #d4af37;
    display: inline-block;
}

.nbc-cp-section-heading:first-of-type {
    margin-top: 0;
}

/* Paragraphs */
.nbc-cp-paragraph {
    margin-bottom: 18px;
    text-align: justify;
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

/* Highlight Box */
.nbc-cp-highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #d4af37;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.nbc-cp-highlight-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
}

.nbc-cp-highlight-box strong {
    color: #1a3a5c;
}

/* Percentage Cards */
.nbc-cp-percentage-cards {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.nbc-cp-pct-card {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(26,58,92,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nbc-cp-pct-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26,58,92,0.35);
}

.nbc-cp-pct-card .nbc-cp-pct-number {
    font-size: 48px;
    font-weight: 800;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 8px;
}

.nbc-cp-pct-card .nbc-cp-pct-label {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lists */
.nbc-cp-list {
    margin-left: 0;
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0;
}

.nbc-cp-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.nbc-cp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
}

/* Numbered Lists */
.nbc-cp-numbered-list {
    margin-left: 0;
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0;
    counter-reset: cp-counter;
}

.nbc-cp-numbered-list li {
    margin-bottom: 12px;
    padding-left: 45px;
    position: relative;
    line-height: 1.7;
}

.nbc-cp-numbered-list li::before {
    counter-increment: cp-counter;
    content: counter(cp-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #1a3a5c;
    font-size: 16px;
    min-width: 35px;
    text-align: right;
}

/* CTA Box */
.nbc-cp-cta-box {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nbc-cp-cta-box::before {
    content: """;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(212,175,55,0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.nbc-cp-cta-box p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin: 0;
}

.nbc-cp-cta-box strong {
    color: #d4af37;
    font-weight: 600;
}

/* Divider */
.nbc-cp-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 40px 0;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nbc-cp-hero {
        min-height: 220px;
        padding: 40px 20px;
    }
    .nbc-cp-hero-title {
        font-size: 30px;
        letter-spacing: 2px;
    }
    .nbc-cp-hero-subtitle {
        font-size: 15px;
    }
    .nbc-cp-hero-icon {
        font-size: 38px;
    }
    .nbc-cp-content-area {
        padding: 40px 0 60px;
    }
    .nbc-cp-section-heading {
        font-size: 16px;
    }
    .nbc-cp-percentage-cards {
        flex-direction: column;
    }
    .nbc-cp-pct-card {
        min-width: 100%;
    }
    .nbc-cp-cta-box {
        padding: 30px 20px;
    }
    .nbc-cp-cta-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nbc-cp-hero-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    .nbc-cp-numbered-list li {
        padding-left: 35px;
    }
    .nbc-cp-numbered-list li::before {
        min-width: 28px;
    }
}
