/* Venture Finance Solutions - Professional Brand Color Scheme */

:root {
    /* Primary brand colors */
    --primary-green: #2E9E1F;
    --primary-green-hover: #258A18;
    --primary-green-light: #3DB82D;

    /* Secondary colors */
    --dark-blue: #0B1A51;
    --dark-blue-light: #142866;
    --accent-blue: #1863DC;
    --accent-blue-hover: #1250B3;

    /* Neutrals */
    --header-bg: #FFFFFF;
    --footer-bg: #0B1A51;
    --footer-text: #FFFFFF;
    --text-dark: #2C3E50;
    --text-muted: #6C757D;

    /* Gradients */
    --gradient-green: linear-gradient(135deg, #3DB82D 0%, #2E9E1F 100%);
    --gradient-blue: linear-gradient(135deg, #1863DC 0%, #0B1A51 100%);
}

/* Primary Buttons - Refined green with subtle gradient */
.btn-primary,
.btn-submit {
    background: var(--gradient-green) !important;
    border: none !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(46, 158, 31, 0.35) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover,
.btn-submit:hover,
.btn-primary:focus,
.btn-submit:focus {
    background: linear-gradient(135deg, #2E9E1F 0%, #258A18 100%) !important;
    box-shadow: 0 6px 20px rgba(46, 158, 31, 0.45) !important;
    transform: translateY(-2px) !important;
    color: #FFFFFF !important;
}

.btn-primary:active,
.btn-submit:active {
    transform: translateY(0) !important;
}

/* Call Button - Blue accent for phone CTAs */
.btn-call {
    background: var(--gradient-blue) !important;
    border: none !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(24, 99, 220, 0.35) !important;
    transition: all 0.3s ease !important;
}

.btn-call:hover,
.btn-call:focus {
    background: linear-gradient(135deg, #1250B3 0%, #091340 100%) !important;
    box-shadow: 0 6px 20px rgba(24, 99, 220, 0.45) !important;
    transform: translateY(-2px) !important;
}

/* Navigation */
nav.navbar {
    background-color: var(--header-bg) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--primary-green);
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    background: rgba(46, 158, 31, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer - VFS Style */
.vfs-footer,
footer,
.footer-section {
    background: var(--dark-blue) !important;
    color: var(--footer-text) !important;
}

.vfs-footer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-heading {
    color: var(--primary-green-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
footer a,
.footer-section a {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-links a:hover,
footer a:hover,
.footer-section a:hover {
    color: var(--primary-green-light) !important;
    text-decoration: none;
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-green-light);
    transform: translateY(-3px);
    color: #FFFFFF !important;
}

.social-icon i {
    font-size: 1rem;
}

/* Footer Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

/* Disclaimer */
.disclaimer-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.6;
    text-align: center;
}

/* Copyright */
.copyright-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* BBB Badge */
.bbb-badge {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.bbb-badge:hover {
    opacity: 1;
}

@media (max-width: 991px) {
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-links {
        text-align: center;
    }
}

/* Form Styling */
.form-header,
.card-header.bg-primary,
.form-head {
    background: var(--gradient-green) !important;
    color: #FFFFFF !important;
    border-radius: 6px 6px 0 0;
}

.form-head label {
    color: var(--dark-blue) !important;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid #E0E6ED !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.form-control:focus {
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 3px rgba(46, 158, 31, 0.15) !important;
    outline: none !important;
}

/* VFS State Select - Enhanced Native Styling */
.vfs-state-select {
    color: #2C3E50 !important;
    background-color: #FFFFFF !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    height: 48px !important;
    line-height: 1.5 !important;
    padding: 10px 16px !important;
    box-sizing: border-box !important;
}

.vfs-state-select option {
    color: #2C3E50 !important;
    background-color: #FFFFFF !important;
    padding: 10px !important;
    font-size: 1rem !important;
}

.vfs-state-select option[value=""] {
    color: #999999 !important;
}

.form-label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 6px;
}

/* Custom form background */
.custom-bg-top {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 40px rgba(11, 26, 81, 0.15) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(46, 158, 31, 0.1);
}

/* Accent Elements */
.text-primary {
    color: var(--primary-green) !important;
}

.text-secondary {
    color: var(--dark-blue) !important;
}

.link-accent {
    color: var(--accent-blue) !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.link-accent:hover {
    color: var(--accent-blue-hover) !important;
}

/* Phone Number Styling */
.phone-link {
    color: var(--primary-green) !important;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.phone-link:hover {
    color: var(--primary-green-hover) !important;
    text-decoration: none;
}

/* Success checkmark */
.fa-check-circle.text-success {
    color: var(--primary-green) !important;
}

/* Headlines and text */
h2.text-uppercase {
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
}

/* Hero Title - VFS Style */
.hero-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
}

.hero-title .highlight-green {
    color: var(--primary-green-light);
    text-shadow: 0 0 20px rgba(61, 184, 45, 0.5);
}

.hero-sub {
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Responsive hero text */
@media (max-width: 991px) {
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }
    .hero-sub {
        font-size: 1.2rem !important;
        text-align: center;
    }
    h2.text-uppercase {
        text-align: center;
    }
}


/* Required field indicator */
.required {
    color: #DC3545;
    font-weight: bold;
    margin-left: 2px;
}

/* Thank you page specific */
.lead {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-primary,
    .btn-submit {
        width: 100%;
        padding: 14px 20px !important;
    }

    .custom-bg-top {
        margin: 0 10px;
    }
}
