/* Navigation Styles - CVG Brand Colors */
.main-nav {
    background: linear-gradient(135deg, #2c5f2d, #4a7c59);
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-item {
    position: relative;
    display: inline-block;
}

.nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 18px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    border-bottom-color: #82c341;
    transform: translateY(-2px);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e1e5e9;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 16px 20px 12px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #dee2e6;
}

.dropdown-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
}

.dropdown-header p {
    margin: 4px 0 0;
    color: #6c757d;
    font-size: 12px;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-link:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #2c3e50;
    padding-left: 24px;
}

.dropdown-link .link-icon {
    margin-right: 8px;
    color: #6c757d;
}

/* Logo Styles */
.logo-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.cvg-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.cvg-logo:hover {
    transform: scale(1.05);
}

/* Basic page styling - CVG Brand Match */
body { 
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    margin: 0; 
    line-height: 1.6; 
    color: #333;
}

.hero { 
    text-align: center; 
    padding: 80px 20px; 
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 50%, #82c341 100%); 
    color: white; 
}

.hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px; 
    max-width: 800px; 
    margin: 40px auto; 
}

.stat-item { text-align: center; }

.stat-item h2 { 
    font-size: 3.5em; 
    margin: 0; 
    font-weight: 700; 
    color: #82c341;
}

.stat-item p {
    font-size: 1.1em;
    margin-top: 10px;
    font-weight: 600;
}

.cta-button { 
    display: inline-block; 
    background: linear-gradient(135deg, #ff6b35, #ff8c42); 
    color: white; 
    padding: 22px 45px; 
    text-decoration: none; 
    border-radius: 12px; 
    font-weight: 700; 
    font-size: 1.3em;
    margin-top: 30px; 
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border: 3px solid #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.live-chat-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 6px 20px rgba(255, 107, 53, 0.8); }
    100% { box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4); }
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
    padding: 60px 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.service-card { 
    background: white; 
    padding: 40px 30px; 
    border-radius: 12px; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #82c341;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon { font-size: 3.5em; margin-bottom: 20px; }

.service-icon-text {
    font-size: 0.9em;
    font-weight: 700;
    color: #82c341;
    background: linear-gradient(135deg, #2c5f2d, #4a7c59);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-card h3 {
    color: #2c5f2d;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #82c341;
}

section { padding: 60px 20px; }

.section-intro { 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto 50px; 
    color: #666; 
    font-size: 1.2em; 
    line-height: 1.6;
}

h2 { 
    text-align: center; 
    color: #2c5f2d; 
    font-size: 2.8em; 
    margin-bottom: 30px; 
    font-weight: 700;
}

.about-nexus {
    background: #f8f9fa;
}

.about-nexus h3 {
    color: #2c5f2d;
    font-size: 1.8em;
    margin: 30px 0 20px;
}

.about-nexus blockquote {
    font-style: italic;
    font-size: 1.2em;
    color: #4a7c59;
    border-left: 4px solid #82c341;
    padding-left: 20px;
    margin: 20px 0;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.contact-section {
    background: linear-gradient(135deg, #2c5f2d, #4a7c59);
    color: white;
    padding: 100px 20px;
}

.contact-section .contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section h2 {
    color: white;
    font-size: 3.5em;
    margin-bottom: 30px;
}

.contact-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 60px;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 50px;
}

.contact-form h3 {
    color: white;
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 18px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #82c341;
    background: rgba(255,255,255,0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form select {
    color: rgba(255,255,255,0.9);
}

.contact-form option {
    background: #2c5f2d;
    color: white;
}

.submit-button {
    background: linear-gradient(135deg, #82c341, #4a7c59);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(130, 195, 65, 0.4);
}

.contact-info {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
}

.contact-info p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

footer {
    background: #2c5f2d;
    color: white;
    padding: 60px 20px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: #82c341;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #82c341;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-contact-form {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.footer-contact-form h4 {
    color: #82c341;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: 700;
}

.footer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-form-row.single {
    grid-template-columns: 1fr;
}

.footer-contact-form input,
.footer-contact-form textarea,
.footer-contact-form select {
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.footer-contact-form select {
    color: rgba(255,255,255,0.9);
}

.footer-contact-form option {
    background: #2c5f2d;
    color: white;
}

.footer-submit-btn {
    background: linear-gradient(135deg, #82c341, #4a7c59);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.footer-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(130, 195, 65, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.footer-nav a {
    color: #82c341;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

/* BULLETPROOF: Widget always visible */
.cvg-chat-widget-bulletproof {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    z-index: 2147483647 !important; /* Maximum possible z-index */
    background: #10b981 !important;
    color: white !important;
    padding: 1rem 1.5rem !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    font-family: system-ui, -apple-system, sans-serif !important;
    transition: all 0.3s ease !important;
    /* Override any site styles */
    margin: 0 !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    line-height: 1 !important;
    text-decoration: none !important;
    outline: none !important;
}

.cvg-chat-widget-bulletproof:hover {
    background: #059669 !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6) !important;
}

/* BULLETPROOF: Modal that overrides everything */
.cvg-chat-window-bulletproof {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 2147483647 !important; /* Maximum z-index */
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: system-ui, -apple-system, sans-serif !important;
    /* Override everything */
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.cvg-chat-window-bulletproof.cvg-open { display: flex !important; }

/* BULLETPROOF: Modal content box */
.cvg-chat-content-bulletproof {
    width: 90vw !important;
    max-width: 500px !important;
    height: 90vh !important;
    max-height: 700px !important;
    background: white !important;
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4) !important;
    /* Override everything */
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #e5e7eb !important;
    outline: none !important;
    box-sizing: border-box !important;
}

/* BULLETPROOF: Header */
.cvg-chat-header-bulletproof {
    background: #10b981 !important;
    color: white !important;
    padding: 1rem 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-radius: 15px 15px 0 0 !important;
    flex-shrink: 0 !important;
    /* Override everything */
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.cvg-chat-title-bulletproof { 
    font-weight: 700 !important; 
    font-size: 1.1rem !important; 
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cvg-chat-close-bulletproof {
    background: rgba(255, 255, 255, 0.1) !important; 
    border: none !important; 
    color: white !important;
    font-size: 1.5rem !important; 
    cursor: pointer !important;
    padding: 0.5rem !important; 
    border-radius: 8px !important;
    width: 2.5rem !important; 
    height: 2.5rem !important;
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important;
    /* Override everything */
    margin: 0 !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.cvg-chat-close-bulletproof:hover { 
    background: rgba(255, 255, 255, 0.2) !important; 
}

/* BULLETPROOF: Form area that scrolls properly */
.cvg-chat-form-bulletproof {
    padding: 1.5rem !important;
    overflow-y: auto !important; 
    background: #f8fafc !important; 
    flex: 1 !important;
    /* Force proper scrolling */
    max-height: calc(90vh - 200px) !important;
    /* Override everything */
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

/* BULLETPROOF: Form fields that always work */
.cvg-form-field-bulletproof { 
    margin-bottom: 1rem !important; 
    /* Override everything */
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.cvg-form-field-bulletproof label { 
    display: block !important; 
    font-weight: 600 !important; 
    margin-bottom: 0.4rem !important; 
    color: #374151 !important; 
    font-size: 0.9rem !important; 
    /* Override everything */
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.cvg-form-field-bulletproof input, 
.cvg-form-field-bulletproof textarea {
    width: 100% !important; 
    padding: 0.75rem !important;
    border: 2px solid #e5e7eb !important; 
    border-radius: 8px !important;
    font-size: 0.9rem !important; 
    background: white !important;
    transition: all 0.3s ease !important; 
    font-family: system-ui, -apple-system, sans-serif !important;
    /* Override everything */
    margin: 0 !important;
    outline: none !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.cvg-form-field-bulletproof input:focus, 
.cvg-form-field-bulletproof textarea:focus {
    border-color: #10b981 !important; 
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

.cvg-form-field-bulletproof textarea { 
    min-height: 80px !important; 
    max-height: 120px !important;
    resize: vertical !important; 
}

/* BULLETPROOF: Submit button always accessible */
.cvg-chat-submit-bulletproof {
    width: 100% !important; 
    padding: 1rem !important;
    background: #10b981 !important; 
    color: white !important;
    border: none !important; 
    border-radius: 8px !important;
    font-weight: 700 !important; 
    cursor: pointer !important;
    font-size: 1rem !important; 
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    font-family: system-ui, -apple-system, sans-serif !important;
    /* Override everything */
    outline: none !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
}

.cvg-chat-submit-bulletproof:hover {
    background: #059669 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4) !important;
}

/* BULLETPROOF: Footer */
.cvg-chat-footer-bulletproof {
    padding: 0.75rem !important;
    background: #f9fafb !important; 
    font-size: 0.75rem !important;
    color: #6b7280 !important; 
    text-align: center !important; 
    border-top: 1px solid #e5e7eb !important;
    border-radius: 0 0 15px 15px !important;
    flex-shrink: 0 !important;
    /* Override everything */
    margin: 0 !important;
    outline: none !important;
    box-sizing: border-box !important;
    line-height: 1.3 !important;
}

/* BULLETPROOF: Messaging interface */
.cvg-chat-messages-bulletproof {
    flex: 1 !important; 
    padding: 1.5rem !important;
    overflow-y: auto !important; 
    background: #f8fafc !important; 
    display: none !important;
    /* Override everything */
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.cvg-message-bulletproof {
    margin-bottom: 1rem !important;
    padding: 1rem !important;
    border-radius: 12px !important;
    background: white !important; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    /* Override everything */
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.cvg-message-user-bulletproof { border-left: 4px solid #f97316 !important; }
.cvg-message-agent-bulletproof { border-left: 4px solid #10b981 !important; }
.cvg-message-system-bulletproof { border-left: 4px solid #6b7280 !important; }

.cvg-chat-input-bulletproof {
    padding: 1rem !important;
    border-top: 1px solid #e5e7eb !important; 
    background: white !important; 
    display: none !important;
    flex-shrink: 0 !important;
    /* Override everything */
    margin: 0 !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.cvg-input-container-bulletproof {
    display: flex !important; 
    gap: 0.75rem !important; 
    align-items: flex-end !important; 
    width: 100% !important;
    /* Override everything */
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.cvg-input-container-bulletproof textarea {
    flex: 1 !important;
    padding: 0.75rem !important;
    border: 2px solid #e5e7eb !important; 
    border-radius: 8px !important; 
    resize: none !important;
    min-height: 2.5rem !important; 
    font-family: system-ui !important; 
    font-size: 0.9rem !important;
    /* Override everything */
    margin: 0 !important;
    outline: none !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.cvg-input-container-bulletpr
