/* ============================================
   재난배상책임보험 시설조회 - 공통 글래스모피즘 디자인
   ============================================ */

/* CSS 변수 */
:root {
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --disaster-gradient: linear-gradient(135deg, #ef4444 0%, #dc2626 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);
    --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(239, 68, 68, 0.1);
}

.blob-2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 5%;
    animation-delay: 3s;
    background: rgba(59, 130, 246, 0.1);
}

.blob-3 {
    width: 150px;
    height: 150px;
    bottom: 5%;
    left: 40%;
    animation-delay: 6s;
    background: rgba(220, 38, 38, 0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(3deg); }
    66% { transform: translateY(8px) rotate(-3deg); }
}

/* 히어로 섹션 */
.hero-section {
    padding: 10px 0 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: var(--glass-blur);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #ef4444;
}

.hero-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.4;
}

/* 메인 컨텐츠 */
.main-content {
    position: relative;
    min-height: 100vh;
    padding-top: 70px;
}

.main-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.disaster-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* PC 검색 인터페이스 - 2열 레이아웃 */
.pc-search-interface {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 20px;
    height: calc(100vh - 180px);
    align-items: start;
}

/* ============================================
   검색 사이드바
   ============================================ */

.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;
    position: sticky;
    top: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.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;
}

.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;
}

/* 검색 타입 그룹 */
.search-type-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.search-type-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.search-type-label:hover {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.05);
    transform: translateY(-1px);
}

.search-type-label input[type="radio"] {
    display: none;
}

.search-type-label input[type="radio"]:checked + .radio-custom {
    background: #ef4444;
    border-color: #ef4444;
}

.search-type-label input[type="radio"]:checked + .radio-custom::after {
    opacity: 1;
    transform: scale(1);
}

.search-type-label:has(input[type="radio"]:checked) {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #dc2626;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    background: var(--white);
    position: relative;
    transition: all var(--transition-fast);
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition-fast);
}

.search-type-label i {
    font-size: 16px;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.search-type-label:has(input[type="radio"]:checked) i {
    color: #ef4444;
}

/* 라디오 버튼 커스텀 스타일 */
.search-filters-badge {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.filter-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--disaster-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.filter-badge:hover {
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.filter-badge:hover::before {
    opacity: 0.05;
}

.filter-badge.active {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.filter-badge.active::before {
    opacity: 0.1;
}

.filter-badge input[type="radio"] {
    display: none;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    position: relative;
    z-index: 2;
    transition: color var(--transition-fast);
}

.filter-badge.active .badge-text {
    color: #dc2626;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all var(--transition-fast);
}

.filter-badge.active .badge-icon {
    background: rgba(239, 68, 68, 0.2);
}

.badge-icon i {
    font-size: 0.8rem;
    color: #dc2626;
}

/* 검색 입력 필드 */
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

/* 검색 입력 래퍼 */
.search-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.search-input-wrapper .form-control {
    padding-right: 45px;
}

.search-btn-primary {
    width: 100%;
    background: var(--disaster-gradient);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.search-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
}

.search-btn-primary:active {
    transform: translateY(0);
}

/* 폼 힌트 */
.form-hint {
    margin-top: 8px;
    font-size: 13px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-hint i {
    color: #fbbf24;
    font-size: 12px;
}

/* 정보 섹션 */
.info-section {
    margin-bottom: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 16px;
}

.info-content h5 {
    color: var(--gray-800);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-content p {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content li {
    color: var(--gray-600);
    font-size: 13px;
    padding: 2px 0;
    position: relative;
    padding-left: 15px;
}

.info-content li::before {
    content: "•";
    color: #ef4444;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ============================================
   검색 결과 영역
   ============================================ */

.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: #6b7280;
    margin-bottom: 24px;
    display: block;
    opacity: 0.8;
}

.empty-state h4 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.empty-state p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.6;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* 🎨 검색 예시 박스 - 시각적으로 잘 보이는 스타일 */
.search-examples {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.search-examples h5 {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.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(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 25px;
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.example-tag:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
    color: #b91c1c;
}

.example-tag:active {
    transform: translateY(0);
}

.example-tag i {
    font-size: 14px;
}

/* ❌ 중복된 .results-grid 제거 - .search-results로 통합됨 */

/* 🎨 검색결과를 아름다운 그리드로 배치 */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    width: 100%;
    padding: 20px 0;
}

/* 반응형 그리드 - 화면 크기별 최적화 */
@media (min-width: 1600px) {
    .search-results {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .search-results {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .search-results {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .search-results {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .search-results {
        gap: 20px;
        padding: 10px 0;
    }
}

/* 🎨 현대적이고 컴팩트한 검색결과 카드 */
.facility-result-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    height: auto;
    min-height: auto;
}

.facility-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.02) 0%, 
        rgba(251, 113, 133, 0.02) 50%, 
        rgba(252, 165, 165, 0.02) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.facility-result-card:hover::before {
    opacity: 1;
}

.facility-result-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(239, 68, 68, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

/* 카드 내용 - 모든 요소를 상대적 위치로 */
.facility-result-card > * {
    position: relative;
    z-index: 1;
}

/* 시설 카드 헤더 */
.facility-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

.facility-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.facility-brno {
    font-size: 13px;
    color: #718096;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    background: rgba(113, 128, 150, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 2px;
}

.facility-status {
    text-align: right;
    flex-shrink: 0;
}

.status-required {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.status-optional {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* 카드 바디 - 컴팩트한 2열 그리드 */
.facility-card-body {
    margin-bottom: 16px;
}

.facility-info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    align-items: start;
}

.facility-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    min-height: 32px;
}

.facility-info-item:last-child {
    border-bottom: none;
}

.facility-info-item i {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 12px;
    flex-shrink: 0;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    padding: 2px;
}

.facility-info-text {
    font-size: 13px;
    color: #2d3748;
    line-height: 1.4;
    flex: 1;
    font-weight: 500;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 카드 푸터 - 상세정보 버튼 제거로 인한 레이아웃 단순화 */
.facility-card-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(239, 68, 68, 0.1);
    margin-top: auto;
}

.facility-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.facility-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.badge-industry {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
}

.badge-size {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(6, 182, 212, 0.2);
}

.badge-active {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
}

.badge-expired {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

/* ❌ detail-btn 제거됨 - 상세정보 기능 불필요 */

/* 로딩 상태 */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.loading-spinner {
    margin-bottom: 16px;
}

.loading-spinner i {
    font-size: 32px;
    color: #627eea;
}

.loading-state p {
    font-size: 16px;
    margin: 0;
}

/* 검색 결과 없음 */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-600);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.no-results i {
    font-size: 3rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.no-results p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.search-suggestions {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: left;
    max-width: 400px;
    width: 100%;
}

.search-suggestions h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    position: relative;
    padding-left: 20px;
}

.search-suggestions li::before {
    content: '•';
    color: #ef4444;
    position: absolute;
    left: 0;
}

.search-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-600);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.search-placeholder i {
    font-size: 3rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.search-placeholder h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.search-placeholder p {
    font-size: 1rem;
    margin-bottom: 30px;
}

/* 오류 메시지 */
.error-message {
    text-align: center;
    padding: 60px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    margin: 20px;
    color: #dc2626;
}

.error-message i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ef4444;
}

.error-message h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #dc2626;
    font-weight: 600;
}

.error-message p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #991b1b;
}

.retry-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.retry-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-1px);
}

/* 보험 기간 스타일 */
.insurance-period {
    font-size: 12px !important;
    color: #6b7280 !important;
}

/* 🚫 페이지네이션 완전 제거 (시설조회는 모든 결과를 한 페이지에 표시) */
.pagination,
.pagination-wrapper,
.pagination-nav,
.pagination-container,
#pagination {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 페이지네이션 관련 모든 요소 강제 숨김 */
.pagination a,
.pagination span,
.page-link,
.page-button,
.prev-link,
.next-link,
.pagination-info {
    display: none !important;
}

/* 모달 스타일 */
/* ❌ 모든 모달 관련 스타일 완전 제거됨 - 가입여부 확인용 페이지이므로 불필요 */

/* 🎨 부드러운 카드 페이드인 애니메이션 - 레이아웃에 영향 없음 */
.facility-result-card {
    opacity: 0;
    animation: cardFadeIn 0.6s ease-out forwards;
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 🎭 부드러운 순차 등장 효과 */
.facility-result-card:nth-child(1) { animation-delay: 0.1s; }
.facility-result-card:nth-child(2) { animation-delay: 0.2s; }
.facility-result-card:nth-child(3) { animation-delay: 0.3s; }
.facility-result-card:nth-child(4) { animation-delay: 0.4s; }
.facility-result-card:nth-child(5) { animation-delay: 0.5s; }
.facility-result-card:nth-child(6) { animation-delay: 0.6s; }
.facility-result-card:nth-child(7) { animation-delay: 0.7s; }
.facility-result-card:nth-child(8) { animation-delay: 0.8s; }
.facility-result-card:nth-child(9) { animation-delay: 0.9s; }
.facility-result-card:nth-child(n+10) { animation-delay: 1.0s; }

/* 반응형 디자인 */
/* ============================================
   반응형 디자인
   ============================================ */

@media (max-width: 1200px) {
    .pc-search-interface {
        margin: 0 20px;
    }
    
    .search-sidebar {
        flex: 0 0 350px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .pc-search-interface {
        flex-direction: column;
        margin: 0 15px;
    }
    
    .search-sidebar {
        flex: none;
    }
    
    .search-results-area {
        min-height: 400px;
    }
    
    .results-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 10px 0 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .main-content {
        padding-top: 70px;
    }

    .disaster-content {
        padding: 15px 15px 30px 15px;
    }
    
    .pc-search-interface {
        gap: 12px;
        padding: 0;
    }
    
    .search-sidebar-header {
        padding: 20px;
    }
    
    .search-form-container {
        padding: 20px;
    }
    
    .info-section {
        padding: 20px;
    }
    
    .results-header {
        padding: 20px;
    }
    
    .results-content {
        padding: 15px;
    }
    
    .empty-state h4 {
        font-size: 20px;
    }

    .empty-state p {
        font-size: 14px;
    }
    
    .empty-state i {
        font-size: 48px;
    }

    .example-tags {
        flex-direction: column;
        gap: 10px;
    }
    
    .example-tag {
        justify-content: center;
    }

    .search-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .search-btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .search-type-group {
        gap: 10px;
    }
    
    .search-type-label {
        padding: 12px 15px;
    }

    /* ❌ .results-grid 제거됨 - .search-results 사용 */

    .facility-result-card {
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 16px;
    }

    .facility-card-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .facility-status {
        align-self: flex-end;
        margin-top: -8px;
    }
    
    .facility-info-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .facility-info-item {
        min-height: 24px;
        padding: 4px 0;
    }

    .facility-info-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .facility-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .facility-badges {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    /* ❌ detail-btn 제거됨 */

    /* ❌ modal 관련 스타일 제거됨 */

    /* 페이지네이션 관련 스타일 제거됨 */
    
    .facility-detail-table th,
    .facility-detail-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .search-sidebar-header {
        padding: 15px;
    }
    
    .header-text h3 {
        font-size: 20px;
    }
    
    .search-form-container {
        padding: 15px;
    }
    
    .info-section {
        padding: 15px;
    }
    
    .info-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .results-header {
        padding: 15px;
    }
    
    .results-title-section {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .results-content {
        padding: 10px;
    }
    
    .results-grid {
        gap: 12px;
    }

    .facility-result-card {
        padding: 18px;
        border-radius: 14px;
    }

    .facility-card-header {
        margin-bottom: 14px;
    }
    
    .facility-name {
        font-size: 17px;
        line-height: 1.4;
    }

    .facility-brno {
        font-size: 12px;
        padding: 2px 6px;
    }

    .facility-info-list {
        gap: 6px;
    }

    .facility-info-item {
        min-height: 20px;
        padding: 3px 0;
    }

    .facility-info-item i {
        width: 14px;
        height: 14px;
        font-size: 11px;
    }

    .facility-info-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .facility-card-footer {
        padding-top: 12px;
    }
    
    .facility-badges {
        justify-content: flex-start;
        gap: 4px;
    }

    .facility-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    /* ❌ detail-btn 제거됨 */
    
    /* 페이지네이션 page-link 스타일 제거됨 */
    
    /* ❌ modal 관련 스타일 제거됨 */
    
    .search-examples {
        padding: 20px;
    }
    
    .search-examples h5 {
        font-size: 16px;
    }
}

/* 컨테이너 최대 너비 조정 */
@media (min-width: 1400px) {
    .pc-search-interface {
        max-width: 1600px;
    }
}

/* 고해상도 디스플레이 대응 */
@media (min-resolution: 2dppx) {
    .glass-blob {
        backdrop-filter: blur(15px);
    }
    
    .search-sidebar {
        backdrop-filter: blur(25px);
    }
    
    /* ❌ modal 관련 스타일 제거됨 */
}

/* ============================================
   추가 애니메이션 및 상태
   ============================================ */

.example-tag {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.example-tag:active {
    transform: translateY(0) scale(0.95);
}

/* 알림 메시지 */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(72, 187, 120, 0.15);
    color: #2f855a;
    border-color: rgba(72, 187, 120, 0.3);
}

.alert-error {
    background: rgba(245, 101, 101, 0.15);
    color: #c53030;
    border-color: rgba(245, 101, 101, 0.3);
}

.alert-info {
    background: rgba(66, 153, 225, 0.15);
    color: #2b6cb0;
    border-color: rgba(66, 153, 225, 0.3);
}

/* 검색 결과 카운트 개선 */
.result-count {
    background: rgba(66, 153, 225, 0.15);
    color: #2b6cb0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(66, 153, 225, 0.2);
}

/* 추가 유틸리티 클래스 */
.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: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 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(220, 38, 38, 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-search-type-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-search-type-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.mobile-search-type-label:hover {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.mobile-search-type-label input[type="radio"] {
    display: none;
}

.mobile-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}

.mobile-search-type-label input[type="radio"]:checked + .mobile-radio-custom {
    border-color: #dc2626;
    background: #dc2626;
}

.mobile-search-type-label input[type="radio"]:checked + .mobile-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.mobile-search-type-label i {
    font-size: 16px;
    color: #666;
}

.mobile-search-type-label input[type="radio"]:checked ~ i {
    color: #dc2626;
}

.mobile-search-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;
    -webkit-appearance: none;
}

.mobile-form-control:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.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: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    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(220, 38, 38, 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: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    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-disaster-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-disaster-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-disaster-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mobile-disaster-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.mobile-disaster-info {
    flex: 1;
    min-width: 0;
}

.mobile-disaster-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.mobile-disaster-address {
    font-size: 14px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-disaster-card-body {
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.mobile-disaster-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.mobile-disaster-detail:last-child {
    margin-bottom: 0;
}

.mobile-disaster-detail-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.mobile-disaster-detail-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.mobile-disaster-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.mobile-disaster-status.required {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.mobile-disaster-status.optional {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 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;
    }
    
    .disaster-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-disaster-result-card {
        margin-bottom: 10px;
        padding: 14px;
    }
    
    .mobile-disaster-card-header {
        gap: 10px;
    }
    
    .mobile-disaster-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .mobile-disaster-name {
        font-size: 16px;
    }
    
    .mobile-disaster-address {
        font-size: 13px;
    }
} 