
/* CVG Nexus Comprehensive CSS Framework */
* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
    line-height: 1.6;
    color: #333;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem; 
}

.header { 
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%); 
    color: white; 
    padding: 1rem 0; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo { height: 45px; width: auto; }

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link { 
    color: white; 
    text-decoration: none; 
    font-weight: 500; 
    padding: 0.5rem 1rem; 
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover { 
    background: rgba(255,255,255,0.1); 
}

.btn { 
    display: inline-block; 
    padding: 1rem 2rem; 
    background: #f97316; 
    color: white; 
    text-decoration: none; 
    border-radius: 6px; 
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover { 
    background: #ea580c; 
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316;
}

.btn-secondary:hover {
    background: #f97316;
    color: white;
}

.btn-contact {
    background: #f97316;
}

.hero { 
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%); 
    color: white; 
    padding: 5rem 0; 
    text-align: center; 
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-actions {
    margin-top: 2rem;
}

.services {
    background: white;
    padding: 4rem 0;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.services p {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.footer { 
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%); 
    color: white; 
    padding: 3rem 0 1rem; 
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive design */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .header .container { flex-direction: column; text-align: center; }
    .main-nav { flex-direction: column; gap: 0.5rem; }
    .hero { padding: 3rem 0; }
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
}
