/**
 * BC PNP Page Styles
 * Modern glassmorphism design with reusable components
 * 
 * @package FD_Immigration_Theme
 * @since 1.0.0
 */

/* ========================================
   CSS Variables & Base Setup
   ======================================== */
:root {
    --bcpnp-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bcpnp-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --bcpnp-gradient-3: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    --bcpnp-gradient-4: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --bcpnp-gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    
    --bcpnp-glass: rgba(255, 255, 255, 0.25);
    --bcpnp-glass-border: rgba(255, 255, 255, 0.18);
    --bcpnp-glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    --bcpnp-blur: blur(20px);
    
    --bcpnp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bcpnp-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Reusable Glass Components
   ======================================== */
.glass-card {
    background: var(--bcpnp-glass);
    backdrop-filter: var(--bcpnp-blur);
    -webkit-backdrop-filter: var(--bcpnp-blur);
    border: 1px solid var(--bcpnp-glass-border);
    border-radius: 20px;
    box-shadow: var(--bcpnp-glass-shadow);
    transition: var(--bcpnp-transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bcpnp-shadow-hover);
}

.glass-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #333;
    transition: var(--bcpnp-transition);
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--fd-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    outline: none;
}

/* ========================================
   Reusable Gradient Components
   ======================================== */
.gradient-text {
    background: var(--bcpnp-gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.gradient-bg {
    background: var(--bcpnp-gradient-1);
    color: white;
}

/* ========================================
   Reusable Button Styles
   ======================================== */
.btn-glossy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--bcpnp-transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    
    /* Glossy effect */
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    box-shadow: 
        inset 0 1px 1px rgba(255,255,255,0.3),
        0 10px 40px rgba(0,0,0,0.1);
}

.btn-glossy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-glossy:hover::before {
    left: 100%;
}

.btn-glossy:hover {
    transform: translateY(-3px);
    box-shadow: 
        inset 0 1px 1px rgba(255,255,255,0.3),
        0 15px 50px rgba(0,0,0,0.15);
}

.btn-primary {
    background: var(--bcpnp-gradient-3);
    color: white;
}

.btn-secondary {
    background: var(--bcpnp-glass);
    backdrop-filter: var(--bcpnp-blur);
    color: #333;
    border: 1px solid var(--bcpnp-glass-border);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Hero Section
   ======================================== */
.bcpnp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.bcpnp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bcpnp-gradient-1);
    z-index: -2;
}

.bcpnp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
    z-index: -1;
}

/* Floating shapes animation */
.bcpnp-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float-1 20s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float-2 15s infinite ease-in-out;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation: float-3 25s infinite ease-in-out;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-30px, -30px); }
    75% { transform: translate(-30px, 30px); }
}

/* Hero content */
.bcpnp-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.bcpnp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.bcpnp-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
}

.bcpnp-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.bcpnp-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.bcpnp-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    padding: 20px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fd-gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fd-blue);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--fd-gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   BC PNP Streams Section
   ======================================== */
.bcpnp-streams {
    padding: 100px 0;
    background: var(--fd-gray-light);
}

.bcpnp-streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stream-card {
    padding: 40px 30px;
    position: relative;
    transition: var(--bcpnp-transition);
    background: white;
}

.stream-card.featured {
    border: 2px solid var(--fd-gold);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--bcpnp-gradient-3);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stream-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.stream-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stream-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--fd-black);
}

.stream-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.stream-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--fd-gray-medium);
}

.stream-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--fd-gold);
    font-weight: bold;
}

.stream-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.processing-time {
    font-size: 0.9rem;
    color: var(--fd-gray-medium);
}

.stream-link {
    color: var(--fd-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--bcpnp-transition);
}

.stream-link:hover {
    color: var(--fd-purple);
    transform: translateX(5px);
}

/* ========================================
   Calculator Section
   ======================================== */
.bcpnp-calculator {
    padding: 100px 0;
    background: var(--bcpnp-gradient-4);
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.95);
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-header h2 {
    color: var(--fd-black);
    margin-bottom: 12px;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.calc-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--fd-black);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--fd-gray-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 10px;
    font-family: inherit;
}

.points-display {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: var(--fd-gold);
    font-weight: 600;
}

.calculator-result {
    padding: 30px;
    text-align: center;
    background: var(--bcpnp-gradient-1);
    color: white;
}

.result-content {
    margin-bottom: 20px;
}

.result-label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.result-score {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.result-status {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   BC PNP Program Information Section
   ======================================== */
.bcpnp-program-info {
    padding: 100px 0;
    background: var(--fd-gray-light);
}

.program-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.program-card {
    padding: 40px 30px;
    background: white;
    transition: var(--bcpnp-transition);
}

.program-card:hover {
    transform: translateY(-8px);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: var(--bcpnp-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.program-header h3 {
    flex: 1;
    font-size: 1.4rem;
    color: var(--fd-black);
    margin: 0;
}

.program-details {
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.detail-label {
    font-size: 0.95rem;
    color: var(--fd-gray-medium);
}

.detail-value {
    font-weight: 600;
    color: var(--fd-black);
}

.detail-highlight {
    margin-top: 20px;
    padding: 16px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--fd-blue);
}

.detail-highlight strong {
    display: block;
    margin-bottom: 8px;
    color: var(--fd-blue);
}

.detail-highlight p {
    margin: 0;
    color: var(--fd-gray-dark);
    font-size: 0.95rem;
}

.detail-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 8px;
    color: #4CAF50;
    font-size: 0.95rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

.program-action {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.program-link {
    color: var(--fd-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--bcpnp-transition);
}

.program-link:hover {
    color: var(--fd-purple);
    transform: translateX(5px);
}

/* Info Notice */
.info-notice {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    margin-top: 40px;
}

.notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-content h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--fd-black);
}

.notice-content p {
    color: var(--fd-gray-medium);
    line-height: 1.6;
    margin-bottom: 12px;
}

.notice-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   BC PNP Updates Section
   ======================================== */
.bcpnp-updates {
    padding: 100px 0;
    background: white;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.update-card {
    padding: 30px;
    transition: var(--bcpnp-transition);
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.update-date {
    font-size: 0.9rem;
    color: var(--fd-gray-medium);
}

.update-type {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.update-type.program {
    background: var(--bcpnp-gradient-1);
    color: white;
}

.update-type.healthcare {
    background: var(--bcpnp-gradient-5);
    color: white;
}

.update-type.tech {
    background: var(--bcpnp-gradient-4);
    color: white;
}

.update-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--fd-black);
}

.update-content {
    color: var(--fd-gray-medium);
    line-height: 1.6;
}

/* Sources Section */
.updates-sources {
    text-align: center;
}

.updates-sources h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--fd-black);
}

.sources-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.source-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--fd-gray-dark);
    transition: var(--bcpnp-transition);
    min-width: 200px;
}

.source-link:hover {
    transform: translateY(-5px);
    color: var(--fd-blue);
}

.source-icon {
    font-size: 1.5rem;
}

.source-name {
    font-weight: 600;
}

/* ========================================
   Responsive Updates
   ======================================== */
@media (max-width: 768px) {
    .program-info-grid,
    .updates-grid {
        grid-template-columns: 1fr;
    }
    
    .info-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .sources-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .source-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ========================================
   Why Choose Section
   ======================================== */
.bcpnp-why-choose {
    padding: 100px 0;
    background: var(--fd-gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--bcpnp-transition);
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--fd-black);
}

.feature-card p {
    color: var(--fd-gray-medium);
    line-height: 1.6;
}

/* ========================================
   Timeline Section
   ======================================== */
.bcpnp-timeline {
    padding: 100px 0;
    background: white;
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bcpnp-gradient-1);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 40px 0;
}

.timeline-item:nth-child(even) {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.timeline-content {
    max-width: 400px;
    padding: 30px;
    background: white;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--fd-black);
}

.timeline-content p {
    color: var(--fd-gray-medium);
    line-height: 1.6;
    margin-bottom: 12px;
}

.timeline-duration {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bcpnp-gradient-3);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========================================
   FAQ Section
   ======================================== */
.bcpnp-faq {
    padding: 100px 0;
    background: var(--fd-gray-light);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: white;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--bcpnp-transition);
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--fd-black);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--fd-gold);
    transition: var(--bcpnp-transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--fd-gray-medium);
    line-height: 1.6;
}

/* ========================================
   Contact Section
   ======================================== */
.bcpnp-contact {
    padding: 100px 0;
    background: var(--bcpnp-gradient-2);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    color: white;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-details {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.detail-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.detail-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: white;
}

.detail-content p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.detail-content a {
    color: white;
    text-decoration: none;
}

.detail-content a:hover {
    text-decoration: underline;
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
}

.badge-icon {
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--fd-gray-dark);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--fd-black);
}

.contact-form-wrapper > p {
    margin-bottom: 30px;
    color: var(--fd-gray-medium);
}

.assessment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.assessment-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.assessment-form .form-control {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: var(--bcpnp-transition);
}

.assessment-form label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--fd-gray-medium);
    font-size: 1rem;
    transition: var(--bcpnp-transition);
    pointer-events: none;
}

.assessment-form .form-control:focus + label,
.assessment-form .form-control:not(:placeholder-shown) + label {
    top: -8px;
    left: 12px;
    font-size: 0.85rem;
    background: white;
    padding: 0 6px;
    color: var(--fd-blue);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--fd-gray-medium);
}

/* ========================================
   CTA Section
   ======================================== */
.bcpnp-cta {
    padding: 80px 0;
    background: var(--fd-gray-light);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--fd-black);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--fd-gray-medium);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .timeline-line {
        left: 40px;
    }
    
    .timeline-item {
        text-align: left !important;
    }
    
    .timeline-item .timeline-content {
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-dot {
        left: 40px;
    }
}

@media (max-width: 768px) {
    /* Hero adjustments */
    .bcpnp-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .bcpnp-hero-title {
        font-size: 2rem;
    }
    
    .bcpnp-hero-subtitle {
        font-size: 1rem;
    }
    
    .bcpnp-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-glossy {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .bcpnp-hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Section paddings */
    .bcpnp-streams,
    .bcpnp-calculator,
    .bcpnp-draws,
    .bcpnp-why-choose,
    .bcpnp-timeline,
    .bcpnp-faq,
    .bcpnp-contact,
    .bcpnp-cta {
        padding: 60px 0;
    }
    
    /* Grid adjustments */
    .bcpnp-streams-grid,
    .draws-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stream-card.featured {
        transform: none;
    }
    
    /* Calculator adjustments */
    .calculator-wrapper {
        padding: 30px 20px;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Timeline mobile */
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .timeline-item .timeline-content {
        margin-left: 60px !important;
    }
    
    /* Contact section */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .assessment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Section headers */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Container padding */
    .fd-container {
        padding: 0 15px;
    }
    
    /* Smaller text adjustments */
    .bcpnp-hero-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Card paddings */
    .stream-card,
    .feature-card,
    .timeline-content,
    .contact-form-wrapper {
        padding: 20px;
    }
    
    /* Button sizes */
    .btn-glossy {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .bcpnp-hero-bg,
    .bcpnp-floating-shapes,
    .btn-glossy,
    .bcpnp-cta,
    .faq-toggle {
        display: none !important;
    }
    
    .glass-card {
        background: white !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .gradient-text {
        -webkit-text-fill-color: var(--fd-black) !important;
        color: var(--fd-black) !important;
    }
    
    .faq-answer {
        max-height: none !important;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: slideInUp 0.6s ease-out;
}

/* Pulse animation for new draws */
@keyframes pulseGlow {
    0% {
        box-shadow: var(--bcpnp-glass-shadow);
    }
    50% {
        box-shadow: 
            var(--bcpnp-glass-shadow),
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 40px rgba(255, 215, 0, 0.4);
    }
    100% {
        box-shadow: var(--bcpnp-glass-shadow);
    }
}

.draw-card.pulse {
    animation: pulseGlow 2s ease-in-out;
}

/* Counter animation */
@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}