:root {
    --primary-color: #000000;
    --text-color: #333333;
    --light-gray: #666666;
    --border-color: #E5E5E5;
    --background: #FFFFFF;
    --accent: #0066CC;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--background);
}

/* Navigation */
.navbar {
    background: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: var(--background);
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #F8F8F8;
}

.services h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--light-gray);
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #F8F8F8;
}

.contact h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent);
    width: 24px;
}

.contact-item span {
    color: var(--text-color);
    line-height: 1.5;
}

/* Remove old form styles */
.form-control {
    display: none;
}

/* Buttons */
.btn-primary {
    background: var(--accent);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #0052A3;
    transform: translateY(-1px);
}

/* Footer */
footer {
    padding: 2rem 0;
    background: #F8F8F8;
    border-top: 1px solid var(--border-color);
}

.social-icons a {
    color: var(--light-gray);
    margin-left: 1rem;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services h2, .contact h2 {
        font-size: 1.75rem;
    }
}

/* Base styles */
* {
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection only where needed */
p, span, h1, h2, h3 {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

a, button, input[type="submit"] {
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    animation: fadeIn 0.8s ease-out;
}

.hero p {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.btn-primary {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.service-item {
    animation: fadeIn 0.8s ease-out;
}

.service-item:nth-child(1) { animation-delay: 0.2s; }
.service-item:nth-child(2) { animation-delay: 0.4s; }
.service-item:nth-child(3) { animation-delay: 0.6s; }

.contact-item {
    animation: fadeIn 0.8s ease-out;
}

.contact-item:nth-child(1) { animation-delay: 0.2s; }
.contact-item:nth-child(2) { animation-delay: 0.3s; }
.contact-item:nth-child(3) { animation-delay: 0.4s; }

/* Hover animations */
.service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-link {
    transition: color 0.3s ease;
}

.social-icons a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    padding-right: 2rem;
}

.about-content h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.vendor-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

.benefit-item span {
    color: var(--text-color);
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: #F8F8F8;
    border-radius: 8px;
}

.vendor-stat {
    text-align: center;
}

.vendor-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.vendor-stat .stat-label {
    color: var(--text-color);
    font-size: 1rem;
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .vendor-benefits {
        align-items: center;
    }

    .vendor-grid {
        padding: 1.5rem;
    }

    .vendor-stat .stat-number {
        font-size: 2rem;
    }
}