/* ========================================
   INDEX PAGE SPECIFIC STYLES
   ======================================== */

/* Hero section with gradient background */
.hero-section {
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl) var(--spacing-xl);
    color: white;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.hero-section p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}

.hero-section .stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-section .stat-item {
    text-align: center;
}

.hero-section .stat-item .number {
    font-size: 2rem;
    font-weight: 800;
}

.hero-section .stat-item .label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Quick search card */
.quick-search {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

.quick-search .search-form {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.quick-search .search-form input {
    flex: 1;
    min-width: 200px;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card h4 {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Recent searches */
.recent-searches {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.recent-searches .search-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-200);
}

.recent-searches .search-item:last-child {
    border-bottom: none;
}

.recent-searches .search-item .inn {
    font-weight: 600;
    color: var(--primary);
}

.recent-searches .search-item .company {
    color: var(--gray-700);
}

.recent-searches .search-item .date {
    font-size: 0.8rem;
    color: var(--gray-500);
}