.jmt-search-layout {
    min-height: 100vh;
}

.jmt-search-hero {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(99, 102, 241, 0.1));
}

.jmt-search-panel {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jmt-search-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(6, 182, 212, 0.15);
}

.jmt-search-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 1s ease;
    animation: jmtSearchGlow 3s ease-in-out infinite;
}

@keyframes jmtSearchGlow {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.jmt-search-form input:focus {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.jmt-search-tips span {
    transition: all 0.3s ease;
}

.jmt-search-tips span:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .jmt-search-form {
        flex-direction: column;
    }
    
    .jmt-search-form > div {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .jmt-search-form select,
    .jmt-search-form button {
        width: 100%;
    }
    
    .jmt-search-tips {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}