.hero-subtitle {
    font-size: 1.25rem;
    color: #555555;
    margin-bottom: 2.5rem;
    font-weight: 400;
}


.section-padding {
    padding: 80px 0;
}


.categories-premium {
    background: var(--bg-main, #f8f9fc);
    border-top: 1px solid var(--border-color, #e2e5ec);
    padding-top: 60px;
    padding-bottom: 60px;
}

.category-list-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 28px 28px 22px;
    background: var(--bg-card, #fff);
    border: 1.5px solid var(--border-color, #e2e5ec);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary, #1a1a1a);
    box-shadow: 0 2px 12px rgba(47,40,77,0.04);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
    position: relative;
    overflow: hidden;
}
.category-list-card:hover {
    border-color: var(--accent, #f87d00);
    box-shadow: 0 8px 32px rgba(248,125,0,0.10);
    transform: translateY(-2px) scale(1.025);
    z-index: 2;
}
.cat-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-light, #ffa94d) 0%, var(--accent, #f87d00) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(248,125,0,0.10);
    margin-right: 0;
    margin-left: 2px;
    transition: background 0.2s, box-shadow 0.2s;
}
.category-list-card:hover .cat-icon {
    background: linear-gradient(135deg, var(--accent, #f87d00) 0%, var(--accent-dark, #c25e00) 100%);
    box-shadow: 0 4px 16px rgba(248,125,0,0.18);
}
.cat-content h3 {
    margin: 0 0 4px 0;
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--primary, #2f284d);
    letter-spacing: -0.5px;
}
.cat-content span {
    font-size: 0.97rem;
    color: var(--text-secondary, #6b7280);
    font-weight: 600;
}
.cat-arrow {
    margin-left: auto;
    color: var(--accent, #f87d00);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: color 0.2s, opacity 0.2s;
}
.category-list-card:hover .cat-arrow {
    color: var(--accent-dark, #c25e00);
    opacity: 1;
}


@media (max-width: 991px) {
    .categories-premium { padding-top: 40px; padding-bottom: 40px; }
    .category-list-card { padding: 20px 16px; border-radius: 12px; }
    .cat-icon { width: 40px; height: 40px; font-size: 1.3rem; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .section-padding { padding: 50px 0; }
    .categories-premium { padding-top: 24px; padding-bottom: 24px; }
    .category-list-card { flex-direction: row; padding: 14px 10px; }
    .cat-content h3 { font-size: 1rem; }
    .cat-content span { font-size: 0.85rem; }
    .cat-arrow { font-size: 1.1rem; }
}



.hero-search-wrapper {
    position: relative;
    z-index: 1000;
}

.search-results-floating {
    position: absolute;
    top: 105%; 
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInSlide 0.2s ease-out;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #2f284d;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f1f1;
}

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

.result-item:hover {
    background: #f8f9fa;
    color: #d97706;
    padding-left: 25px;
}

.result-item i.arrow-icon {
    opacity: 0;
    transition: 0.2s;
    font-size: 0.9rem;
}

.result-item:hover i.arrow-icon {
    opacity: 1;
    transform: translateX(5px);
}

.no-result {
    padding: 20px;
    color: #666;
    font-style: italic;
}

.skeleton {
    background: #e0e0e0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 8px;
    display: inline-block;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-card {
    height: 180px;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.skeleton-text {
    height: 12px;
    margin-bottom: 8px;
    width: 80%;
}

.skeleton-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
}