/* Mobile Call Popup */
.mobile-call-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    max-width: 90%;
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.popup-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.popup-content h2 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.popup-content p {
    margin-bottom: 1.5rem;
}

.popup-close {
    background: none;
    border: none;
    color: #666;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Cookie Consent Override */
.cc-window {
    font-family: 'Inter', sans-serif !important;
}

.cc-btn {
    font-weight: 600 !important;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-hero p {
    color: #666;
    font-size: 1.2rem;
}

/* Contact Form Enhancements */
.consent-group {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
}

/* Bundle Features */
.bundle-features {
    background: #0066cc;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Enhancement */
@media (max-width: 768px) {
    /* Header adjustments for mobile */
    .header {
        padding: 0;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
        min-height: 45px;
    }
    
    .nav-right {
        gap: 0.9rem;
    }
    
    .nav-cta .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
        
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-links {
        gap: 2.5rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .mobile-call-popup {
        display: block;
    }
    
    .popup-content {
        padding: 1.5rem;
    }
    
    .popup-logo {
        max-width: 150px;
    }
}
