/* common-updates.css - Add to all pages */

/* ====== 2026 NEXT-GEN MSP BRANDING ====== */

/* 1. MENU FIXES */
.c-mega-menu .nav.navbar-nav {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

.c-mega-menu .nav.navbar-nav > li > a {
    padding: 15px 14px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

@media (max-width: 1100px) {
    .c-mega-menu .nav.navbar-nav > li > a {
        padding: 15px 12px !important;
        font-size: 13px !important;
    }
}

/* Active menu state */
.c-theme-nav li.c-active > a:not(.btn) {
    color: #20b7fe !important;
    border-bottom: 3px solid #20b7fe !important;
}

/* Dropdown menu styling */
.dropdown-menu > li > a {
    padding: 10px 20px !important;
    font-size: 13px !important;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu > li > a:hover {
    background: #20b7fe !important;
    color: white !important;
}

.dropdown-menu > li.divider {
    margin: 5px 0 !important;
    border-top: 1px solid #eaeaea !important;
}

/* 2. FOOTER STYLING - Light Corporate */
.c-layout-footer-3.c-bg-dark {
    background-color: #f8f9fa !important;
    border-top: 1px solid #eaeaea;
}

.c-layout-footer-3 .c-prefooter {
    background-color: #ffffff !important;
    padding: 60px 0 40px 0;
}

.c-layout-footer-3 .c-postfooter {
    background-color: #f1f3f5 !important;
    padding: 20px 0;
    border-top: 1px solid #eaeaea;
}

/* Footer text colors */
.c-layout-footer-3 .c-font-white,
.c-layout-footer-3 .c-font-grey-3,
.c-layout-footer-3 .c-font-grey-4 {
    color: #333333 !important;
}

.c-layout-footer-3 h3,
.c-layout-footer-3 .c-font-bold {
    color: #2c3e50 !important;
}

.c-layout-footer-3 .c-address li,
.c-layout-footer-3 .c-links li a {
    color: #555555 !important;
    line-height: 1.8 !important;
}

.c-layout-footer-3 .c-links li a:hover {
    color: #20b7fe !important;
    padding-left: 5px !important;
    transition: all 0.3s ease !important;
}

/* 3. NEXT-GEN MSP BADGES */
.next-gen-badge {
    background: linear-gradient(135deg, #20b7fe 0%, #1a9ee0 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
}

.purple-badge {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

/* 4. STANDARD BOX STYLING */
.standard-box {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 30px 25px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.standard-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.standard-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    min-height: 56px;
    display: flex;
    align-items: center;
}

.standard-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

/* 5. CTA BUTTONS */
.cta-button {
    background: linear-gradient(135deg, #20b7fe 0%, #1a9ee0 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(32, 183, 254, 0.3);
    color: white;
    text-decoration: none;
}

.cta-button-white {
    background: white;
    color: #20b7fe;
}

.cta-button-white:hover {
    background: #f8f9fa;
    color: #20b7fe;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 6. RESPONSIVE IMPROVEMENTS */
@media (max-width: 768px) {
    .c-content-title-1 h3 {
        font-size: 24px !important;
    }
    
    .standard-box {
        padding: 25px 20px;
    }
    
    .standard-box h4 {
        font-size: 16px;
        min-height: auto;
    }
    
    .c-layout-footer-3 .c-prefooter {
        padding: 40px 0 30px 0;
    }
}

/* 7. ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* 8. PARTNER LOGOS */
.partner-logo {
    text-align: center;
    padding: 20px 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.partner-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* 9. FORM STYLING */
.form-control {
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
    padding: 15px !important;
    font-size: 14px !important;
}

.form-control:focus {
    border-color: #20b7fe !important;
    box-shadow: 0 0 0 0.2rem rgba(32, 183, 254, 0.25) !important;
}

/* 10. PURPLE PARTNERSHIP SPECIAL */
.purple-highlight {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(142, 68, 173, 0.1) 100%);
    border-left: 4px solid #9b59b6;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.purple-partner-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.1);
    border: 2px solid #9b59b6;
    position: relative;
    overflow: hidden;
}

.purple-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #9b59b6, #8e44ad, #20b7fe);
}