/* ============================================
   승강기보험 조회 - 공통 글래스모피즘 디자인
   ============================================ */

/* CSS 변수 */
:root {
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --elevator-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    --glass-blur: blur(12px);
    --glass-alpha: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-2xl: 24px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 전역 리셋 및 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.5;
    color: var(--gray-700);
    background: var(--gray-50);
    overflow-x: hidden;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.unified-search-page {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 컬러풀 배경 */
.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-gradient);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glass-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--glass-blur);
    animation: float 8s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    background: rgba(16, 185, 129, 0.1);
}

.blob-2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 5%;
    animation-delay: 3s;
    background: rgba(5, 150, 105, 0.1);
}

.blob-3 {
    width: 150px;
    height: 150px;
    bottom: 5%;
    left: 40%;
    animation-delay: 6s;
    background: rgba(52, 211, 153, 0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(3deg); }
    66% { transform: translateY(8px) rotate(-3deg); }
}

/* 메인 컨텐츠 */
.main-content {
    position: relative;
    min-height: 100vh;
    padding-top: 70px;
}

/* 메인 래퍼 */
.main-wrapper {
    position: relative;
    backdrop-filter: var(--glass-blur);
}

/* 히어로 섹션 */
.hero-section {
    padding: 20px 0 15px;
    text-align: center;
    background: var(--glass-alpha);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 0;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 12px;
    border: 1px solid var(--glass-border);
}

.hero-badge i {
    color: #10b981;
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gray-100);
    margin-bottom: 6px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--elevator-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 14px;
    color: var(--gray-200);
    margin-bottom: 0;
    opacity: 0.9;
}

/* 메인 컨텐츠 */
.lift-content {
    padding: 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* PC 검색 인터페이스 - 2열 레이아웃 */
.pc-search-interface {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

/* 검색 사이드바 */
.search-sidebar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 25px;
    height: fit-content;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    position: sticky;
    top: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.search-sidebar-header {
    margin-bottom: 25px;
}

.header-with-back {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(156, 163, 175, 0.2);
    border-radius: var(--radius-md);
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 16px;
    cursor: pointer;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--gray-800);
    transform: translateX(-2px);
}

.back-btn i {
    font-size: 14px;
}

.header-text {
    flex: 1;
}

.header-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.header-text p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

.search-form-container {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

/* 승강기 번호 입력 스타일 */
.elevator-input-wrapper {
    position: relative;
}

.elevator-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-800);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    font-family: 'Courier New', monospace;
    transition: all var(--transition-normal);
}

.elevator-input:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.05);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.elevator-input::placeholder {
    color: var(--gray-400);
    font-size: 16px;
}

.input-format-guide {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.format-example {
    font-size: 12px;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray-600);
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.form-hint i {
    color: #10b981;
    font-size: 12px;
}

.search-btn-primary {
    width: 100%;
    background: var(--elevator-gradient);
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 20px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.search-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.search-btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.info-section {
    padding: 0;
    border-top: none;
    background: none;
}

.info-card {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 12px;
    transition: var(--transition-normal);
    backdrop-filter: var(--glass-blur);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    margin-bottom: 8px;
}

.info-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.info-content p {
    font-size: 12px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.4;
}

.info-content ul {
    margin: 6px 0 0 0;
    padding-left: 16px;
    color: var(--gray-600);
    font-size: 12px;
}

.info-content li {
    margin-bottom: 2px;
    line-height: 1.4;
}

.info-content li::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 8px;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* 검색 결과 영역 */
.search-results-area {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 30px;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    position: sticky;
    top: 20px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.6s var(--bounce);
}

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

.results-header {
    margin-bottom: 25px;
    background: none;
    border: none;
    padding: 0;
    position: static;
}

.results-title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.results-title-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
}

.results-summary {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-item .label {
    font-size: 13px;
    color: var(--gray-600);
}

.summary-item .value {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.results-content {
    padding: 0;
    overflow: visible;
}

/* 초기 상태 */
.initial-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 40px 20px;
}

.empty-state {
    text-align: center;
    max-width: 500px;
}

.empty-state i {
    font-size: 64px;
    color: rgba(16, 185, 129, 0.4);
    margin-bottom: 24px;
    display: block;
}

.empty-state h4 {
    font-size: 24px;
    color: var(--gray-800);
    margin-bottom: 12px;
    font-weight: 600;
}

.empty-state p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* 검색 예시 */
.search-examples {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.search-examples h5 {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.example-tags {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.example-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 25px;
    color: #059669;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.example-tag:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
    color: #047857;
}

.example-tag:active {
    transform: translateY(0);
}

.example-tag i {
    font-size: 10px;
}

.results-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    flex: 1;
    align-content: start;
    overflow-y: auto;
    padding-right: 5px;
}

/* 검색 결과 스타일 */
.search-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insurance-result-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    height: auto;
    animation: cardFadeIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.insurance-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--elevator-gradient);
    opacity: 0.8;
    transition: var(--transition-normal);
}

.insurance-result-card:hover::before {
    height: 4px;
    opacity: 1;
}

.insurance-result-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.insurance-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 16px;
}

.elevator-info {
    flex: 1;
}

.elevator-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0 0 6px 0;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    line-height: 1.2;
}

.elevator-location {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.elevator-type {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
}

.insurance-status {
    text-align: right;
    flex-shrink: 0;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
}

.badge-active {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #059669;
}

.badge-expired {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #dc2626;
}

.insurance-validity {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.3;
}

.insurance-card-body {
    margin-bottom: 16px;
}

.insurance-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.insurance-info-item {
    background: var(--gray-50);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.info-label {
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 13px;
    color: var(--gray-800);
    font-weight: 600;
    line-height: 1.3;
}

.insurance-company {
    color: #059669;
    font-weight: 700;
}

.insurance-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    gap: 12px;
    margin-top: auto;
}

.coverage-info {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.coverage-badge {
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.detail-btn {
    background: var(--elevator-gradient);
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.detail-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* 로딩 상태 */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    gap: 16px;
}

.loading-spinner {
    position: relative;
}

.loading-spinner i {
    font-size: 32px;
    color: #10b981;
    animation: spin 1s linear infinite;
}

.loading-state p {
    font-size: 14px;
    color: var(--gray-600);
}

/* 결과 없음 */
.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    padding: 40px 20px;
}

.no-results i {
    font-size: 48px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.no-results h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.no-results p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.5;
}

.no-results-suggestions {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: left;
    max-width: 300px;
}

.no-results-suggestions h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.no-results-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-results-suggestions li {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.no-results-suggestions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* 애니메이션 */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.insurance-result-card:nth-child(1) { animation-delay: 0.1s; }
.insurance-result-card:nth-child(2) { animation-delay: 0.2s; }
.insurance-result-card:nth-child(3) { animation-delay: 0.3s; }
.insurance-result-card:nth-child(4) { animation-delay: 0.4s; }
.insurance-result-card:nth-child(5) { animation-delay: 0.5s; }

/* 입력 검증 스타일 */
.elevator-input.valid {
    border-color: rgba(16, 185, 129, 0.6);
    background: rgba(16, 185, 129, 0.1);
}

.elevator-input.invalid {
    border-color: rgba(239, 68, 68, 0.6);
    background: rgba(239, 68, 68, 0.1);
}

/* 포커스 시 가이드 강조 */
.elevator-input:focus + .input-format-guide .format-example {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .pc-search-interface {
        grid-template-columns: 360px 1fr;
        gap: 16px;
    }

    .search-sidebar {
        position: static;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 13px;
    }

    .pc-search-interface {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .search-sidebar {
        position: static;
    }

    .search-results-area {
        min-height: 400px;
    }

    .results-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0 10px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .lift-content {
        padding: 20px 0;
    }

    .pc-search-interface {
        gap: 12px;
        padding: 0 15px;
    }

    .search-sidebar-header {
        padding: 16px;
    }

    .search-form-container {
        padding: 16px;
    }

    .info-section {
        padding: 16px;
    }

    .results-header {
        padding: 16px;
    }

    .results-content {
        padding: 16px;
    }

    .empty-state h4 {
        font-size: 18px;
    }

    .empty-state p {
        font-size: 13px;
    }

    .empty-state i {
        font-size: 40px;
    }

    .example-tags {
        flex-direction: column;
        align-items: center;
    }

    .example-tag {
        padding: 8px 16px;
    }

    .insurance-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .insurance-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .insurance-status {
        text-align: left;
        width: 100%;
    }

    .insurance-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .detail-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-content {
        padding: 0 15px;
    }

    .search-sidebar-header {
        padding: 12px;
    }

    .header-text h3 {
        font-size: 16px;
    }

    .search-form-container {
        padding: 12px;
    }

    .info-section {
        padding: 12px;
    }

    .info-card {
        padding: 12px;
        margin-bottom: 8px;
    }

    .results-header {
        padding: 12px;
    }

    .results-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .results-content {
        padding: 12px;
    }

    .insurance-result-card {
        padding: 16px;
    }

    .elevator-number {
        font-size: 18px;
    }

    .coverage-info {
        justify-content: flex-start;
    }

    .search-examples {
        padding: 12px;
    }

    .search-examples h5 {
        font-size: 13px;
    }
}

@media (min-width: 1400px) {
    .pc-search-interface {
        max-width: 1600px;
    }
}

/* 고해상도 디스플레이 최적화 */
@media (min-resolution: 2dppx) {
    .glass-blob {
        backdrop-filter: blur(16px);
    }

    .search-sidebar {
        backdrop-filter: blur(16px);
    }

    .search-results-area {
        backdrop-filter: blur(16px);
    }
}

/* 유틸리티 클래스 */
.result-count {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; } 

/* =====================================================
   모바일 검색 인터페이스 스타일
   ===================================================== */

/* 모바일 검색 트리거 버튼 (플로팅 버튼) */
.mobile-search-trigger {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--elevator-gradient);
    border: none;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--bounce);
}

.mobile-search-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.mobile-search-trigger:active {
    transform: scale(0.95);
}

/* 모바일 검색 인터페이스 */
.mobile-search-interface {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-search-interface.active {
    opacity: 1;
    visibility: visible;
}

.mobile-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.mobile-search-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 85vh;
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s var(--bounce);
    overflow-y: auto;
}

.mobile-search-interface.active .mobile-search-content {
    transform: translateY(0);
}

.mobile-search-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.mobile-search-close {
    position: absolute;
    top: -10px;
    right: 0;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-search-close:hover {
    background: #f0f0f0;
    color: #333;
}

.mobile-search-header h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    color: #333;
    font-weight: 600;
}

.mobile-search-header p {
    margin: 0;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.mobile-search-form {
    margin-bottom: 20px;
}

.mobile-form-group {
    margin-bottom: 20px;
}

.mobile-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.mobile-elevator-input-wrapper {
    position: relative;
    margin-bottom: 8px;
}

.mobile-form-control {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    transition: all 0.2s ease;
    appearance: none;
}

.mobile-form-control:focus {
    outline: none;
    border-color: var(--elevator-gradient);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.mobile-input-format-guide {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    pointer-events: none;
}

.mobile-format-example {
    font-size: 12px;
    color: #999;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.mobile-form-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

.mobile-form-hint i {
    color: #fbbf24;
}

.mobile-search-btn {
    width: 100%;
    padding: 16px;
    background: var(--elevator-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.mobile-search-btn:active {
    transform: translateY(0);
}

.mobile-search-info {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.mobile-info-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.mobile-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--elevator-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.mobile-info-content h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.mobile-info-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* =====================================================
   모바일 검색 결과 스타일
   ===================================================== */

.mobile-search-results {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 8000;
    display: none;
    flex-direction: column;
    padding: 10px;
    overflow-y: auto;
    width: 100vw;
    height: calc(100vh - 50px);
}

.mobile-search-results.active {
    display: flex;
}

.mobile-results-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 10px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.mobile-back-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.mobile-back-btn:hover {
    background: #e9ecef;
}

.mobile-results-title {
    flex: 1;
}

.mobile-results-title h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.mobile-result-count {
    font-size: 14px;
    color: #666;
}

.mobile-results-content {
    flex: 1;
    overflow-y: auto;
}

.mobile-results-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 모바일 승강기 보험 결과 카드 */
.mobile-lift-result-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.mobile-lift-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-lift-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mobile-lift-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--elevator-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.mobile-lift-info {
    flex: 1;
    min-width: 0;
}

.mobile-lift-number {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.mobile-lift-location {
    font-size: 14px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-lift-card-body {
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.mobile-lift-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.mobile-lift-detail:last-child {
    margin-bottom: 0;
}

.mobile-lift-detail-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.mobile-lift-detail-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.mobile-lift-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.mobile-lift-status.active {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mobile-lift-status.expired {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* =====================================================
   모바일 반응형 디자인 (768px 이하)
   ===================================================== */
@media (max-width: 768px) {
    /* 모바일 검색 인터페이스 활성화 */
    .mobile-search-interface {
        display: block;
    }
    
    /* 모바일 검색 트리거 버튼 표시 */
    .mobile-search-trigger {
        display: flex;
    }
    
    /* PC 검색 인터페이스 숨김 */
    .pc-search-interface {
        display: none;
    }
    
    /* 메인 컨테이너 조정 */
    .main-wrapper {
        padding: 0;
    }
    
    .lift-content {
        padding: 0;
        max-width: 100%;
    }
    
    /* 히어로 섹션 모바일 조정 */
    .hero-section {
        padding: 60px 20px 40px 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* 모바일에서 검색 결과가 있을 때 히어로 섹션 높이 줄이기 */
    .hero-section.search-active {
        padding: 40px 20px 20px 20px;
    }
    
    /* 모바일 검색 결과 영역 강화 */
    .mobile-search-results {
        position: fixed !important;
        top: 50px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 50px) !important;
        z-index: 8000 !important;
        background: white !important;
        overflow-y: auto !important;
        padding: 10px !important;
    }
    
    /* 모바일 검색 결과 헤더 스타일 강화 */
    .mobile-results-header {
        position: sticky !important;
        top: 0 !important;
        background: white !important;
        z-index: 8001 !important;
        padding: 15px 10px !important;
        margin-bottom: 15px !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }
    
    /* 모바일 검색 결과 컨텐츠 영역 */
    .mobile-results-content {
        flex: 1 !important;
        overflow-y: auto !important;
        padding-bottom: 80px !important; /* 하단 여백 추가 */
    }
}

/* 소형 모바일 (480px 이하) */
@media (max-width: 480px) {
    .mobile-search-trigger {
        bottom: 25px;
        right: 15px;
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
    
    .hero-section {
        padding: 50px 15px 30px 15px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .mobile-search-results {
        padding: 8px;
        position: fixed !important;
        top: 50px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: calc(100vh - 50px) !important;
    }
    
    .mobile-lift-result-card {
        margin-bottom: 10px;
        padding: 14px;
    }
    
    .mobile-lift-card-header {
        gap: 10px;
    }
    
    .mobile-lift-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .mobile-lift-number {
        font-size: 16px;
    }
    
    .mobile-lift-location {
        font-size: 13px;
    }
} 


/* 모바일 승강기 보험 결과 카드 */
.lift-result-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.lift-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lift-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.lift-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--elevator-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.lift-info {
    flex: 1;
    min-width: 0;
}

.lift-number {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.lift-location {
    font-size: 14px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lift-card-body {
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.lift-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.lift-detail:last-child {
    margin-bottom: 0;
}

.lift-detail-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.lift-detail-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.lift-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.lift-status.active {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.lift-status.expired {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
