/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f5f9;
    /* Light gray-blue background */
    color: #1f2937;
    /* Gray-800 */
    overflow-x: hidden;
}

/* Badge Style */
.status-badge {
    background-color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    /* Emerald-500 */
    border-radius: 50%;
}

/* Stats Cards */
.stat-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

/* Content Cards */
.content-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}

/* Form Styles */
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #1f2937;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #111827;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}

.submit-btn {
    background-color: #111827;
    /* Gray-900 */
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    width: 100%;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #000000;
}

/* Sidebar List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
    font-size: 0.95rem;
}

.feature-item:last-child {
    border-bottom: none;
}

/* Contact Info Box */
.contact-info-box {
    background-color: #f3f4f6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #111827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* Navbar (Dark Floating) */
.modern-navbar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    /* Slightly higher */
    width: auto;
    min-width: 320px;
    height: 60px;
    background: #1f2937;
    /* Dark gray */
    border-radius: 30px;
    /* More rounded */
    display: flex;
    align-items: center;
    padding: 0 6px;
    z-index: 100;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-item {
    list-style: none;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    padding: 0 1.25rem;
    height: 100%;
    font-size: 0.7rem;
    transition: color 0.2s;
}

.nav-link i {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.nav-link:hover {
    color: #ffffff;
}

.free-quote-badge {
    background-color: #ffffff;
    color: #111827;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
    margin-left: 0.5rem;
    margin-right: 4px;
    transition: transform 0.2s;
}

.free-quote-badge:hover {
    transform: scale(1.05);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}