/* ===== CANADA HERO SECTION IMPROVEMENTS ===== */
/* Following home page structure with Canadian content adjustments */

/* Canada-specific styling for hero content */
.section-main .hero-content .main-text {
    font-size: 1.3rem !important;
    color: #ff6b6b !important;
    font-weight: 600 !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5) !important;
}

.section-main .hero-content .hero-headline {
    font-size: clamp(2.5rem, 6vw, 3.5rem) !important;
    line-height: 1.2 !important;
    color: white !important;
    font-weight: 700 !important;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7) !important;
    margin-bottom: 20px !important;
}

.section-main .hero-content .hero-headline .highlight {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52) !important;
    color: white !important;
    padding: 4px 12px !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
    display: inline-block !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
    -webkit-text-fill-color: white !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    text-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
}

.section-main .hero-content .hero-subheadline {
    font-size: 1.4rem !important;
    color: #ff6b6b !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

.section-main .hero-content .hero-intro {
    font-size: 1.1rem !important;
    color: #e6e6e6 !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    max-width: 600px !important;
}

.section-main .hero-content .hero-cta {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52) !important;
    color: white !important;
    padding: 18px 35px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.section-main .hero-content .hero-cta:hover {
    background: linear-gradient(45deg, #ee5a52, #d63031) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6) !important;
}

/* Enhance the worked box for Canada */
.worked-box {
    background: rgba(26, 35, 50, 0.8) !important;
    border: 2px solid rgba(255, 107, 107, 0.3) !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
}

.worked-more {
    color: #ff6b6b !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.worked-more2 {
    color: white !important;
    font-weight: 500 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .section-main .hero-content .hero-headline {
        font-size: 2.2rem !important;
    }
    
    .section-main .hero-content .main-text {
        font-size: 1.1rem !important;
    }
    
    .section-main .hero-content .hero-subheadline {
        font-size: 1.2rem !important;
    }
    
    .section-main .hero-content .hero-intro {
        font-size: 1rem !important;
    }
    
    .section-main .hero-content .hero-cta {
        padding: 16px 28px !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .section-main .hero-content .hero-headline {
        font-size: 1.9rem !important;
    }
    
    .section-main .hero-content .hero-cta {
        padding: 14px 24px !important;
        font-size: 1rem !important;
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
    }
}