/* ========================================
   KAR Home - Modern Landing Page Styles
   ======================================== */

:root {
    --hero-gradient: linear-gradient(135deg, #D32F2F 0%, #1a1a1a 100%);
    --card-hover-transform: translateY(-10px);
    --primary-color: #D32F2F;
    --secondary-color: #1a1a1a;
}

/* Hero Section */
.hero-section {
    background: var(--hero-gradient);
    color: white;
    padding: 6rem 1rem;
    text-align: center;
    border-radius: 0 0 50% 50% / 2rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    color: #ffffff !important;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f0f4ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.feature-text {
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 2rem 0;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #718096;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 4rem 1rem;
        border-radius: 0 0 20% 20% / 1rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }
}