/* 손해보험 방문고객센터 - 통합 디자인 시스템 */

/* ===== CSS 변수 ===== */
:root {
    /* 메인 색상 - 고객센터 테마 (블루 계열) */
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --accent-color: #1d4ed8;
    
    /* 그라디언트 */
    --callcenter-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --glass-gradient: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    
    /* 배경 */
    --bg-primary: #f8fafc;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --bg-card: rgba(255, 255, 255, 0.9);
    
    /* 텍스트 */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    /* 그림자 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    
    /* 레이아웃 */
    --sidebar-width: 380px;
    --border-radius: 12px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 32px;
}

/* ===== 기본 리셋 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.unified-search-page {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== 글래스모피즘 배경 ===== */
.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.glass-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #60a5fa, #3b82f6);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.blob-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

/* ===== 메인 래퍼 ===== */
.main-wrapper {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.main-content {
    padding: 35px 0 20px 0;
    margin-top: 34px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== 히어로 섹션 ===== */
.hero-section {
    text-align: center;
    padding: 10px 0px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--callcenter-gradient);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary); /* 검정색으로 변경 (글래스모피즘 대비) */
    margin-bottom: 12px;
    text-shadow: none; /* 텍스트 그림자 제거 */
    line-height: 1.2;
}

.gradient-text {
    background: var(--callcenter-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary); /* 검정색으로 변경 (글래스모피즘 대비) */
    line-height: 1.5;
    margin: 0;
}

body.visit-centers-search-active .statistics-content {
    margin-top: var(--spacing-md);
}

/* ===== 메인 컨텐츠 ===== */
.statistics-content {
    margin-top: var(--spacing-lg);
}

.pc-search-interface {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    gap: var(--spacing-lg);
    min-height: 600px;
}

/* ===== 검색 사이드바 ===== */
.search-sidebar {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: fit-content;
    max-height: 80vh;
    overflow-y: auto;
    position: sticky;
    top: var(--spacing-md);
}

.search-sidebar-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-with-back {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--callcenter-gradient);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.header-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.search-form-container {
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-label i {
    color: var(--primary-color);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control:disabled {
    background: #f1f5f9;
    cursor: not-allowed;
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-hint i {
    color: var(--primary-color);
    font-size: 12px;
}

.form-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.btn-search,
.btn-reset {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-search {
    background: var(--callcenter-gradient);
    color: white;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-reset {
    background: white;
    color: var(--text-secondary);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-reset:hover {
    background: #f1f5f9;
    border-color: var(--text-muted);
}

/* ===== 정보 섹션 ===== */
.info-section {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.info-card {
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.info-icon {
    margin-bottom: 12px;
}

.info-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.info-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== 검색 결과 영역 ===== */
.search-results-area {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.results-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.results-title-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mobile-back-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-card);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.results-title-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-count {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.results-content {
    min-height: 400px;
}

/* ===== 센터 그리드 ===== */
.center-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.company-divider {
    margin: 0px;    
    padding: 0px;
}

.divider-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: space-between;
}

.company-logo-small {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.company-name-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: gray;
    margin-right: 20px;
}


.center-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.center-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.center-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.center-type-badge {
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-body {
    margin-top: var(--spacing-sm);
}

.center-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
}

.info-row i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-text {
    flex: 1;
    line-height: 1.6;
    display: inline-block;
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-show-map-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    background: var(--callcenter-gradient);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 8px;
    margin-top: 0;
    vertical-align: middle;
}

.btn-show-map-icon:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.btn-show-map-icon i {
    font-size: 0.9rem;
}

/* ===== 지도 모달 (PC) ===== */
.map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.map-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.map-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.map-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.map-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.map-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.map-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

/* ===== 지도 하단 시트 (모바일) ===== */
.map-bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.map-bottom-sheet.active {
    transform: translateY(0);
}

.map-bottom-sheet-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-bottom-sheet-drag-handle {
    width: 40px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    margin-bottom: 12px;
}

.map-bottom-sheet-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
    flex: 1;
}

.map-bottom-sheet-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.map-bottom-sheet-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.map-bottom-sheet-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .main-content {
        padding: 0;
        margin-top: 50px;
    }

    .container {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0 !important;
    }

    .statistics-content {
        margin-top: var(--spacing-sm);
    }

    .pc-search-interface {
        display: block;
        min-height: auto;
    }
    
    /* 좌측 검색 사이드바 숨기기 */
    .search-sidebar {
        display: none;
    }
    
    /* 검색 결과 영역 기본적으로 숨김 (첫 화면에는 히어로 섹션만 표시) */
    .search-results-area {
        display: none;
    }
    
    /* 검색이 활성화되었을 때만 검색 결과 영역 표시 */
    body.visit-centers-search-active .search-results-area {
        display: block;
        width: 100%;
        padding: 20px;
        margin: 0;
        box-shadow: none;
        border-radius: 0;
        border: none;
    }

    .results-content {
        margin: 0;
    }
    
    /* 트리거 버튼 표시 */
    .mobile-search-trigger {
        display: flex;
    }
    
    .map-modal {
        padding: 0;
    }
    
    .map-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .map-modal-header {
        padding: 16px 20px;
    }
    
    .map-modal-body {
        padding: 20px;
    }
    
    #mapContainer {
        height: calc(100vh - 120px) !important;
    }
    
    /* 히어로 섹션 모바일 최적화 */
    .hero-section {
        padding: 20px 0 16px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }

    body.visit-centers-search-active .hero-section {
        display: none;
    }
    
    /* 모바일에서 히어로 섹션 텍스트 색상 검정색으로 강제 적용 (글래스모피즘 대비) */
    .hero-title {
        color: var(--text-primary) !important;
    }
    
    .hero-description {
        color: var(--text-secondary) !important;
    }
    
    .hero-badge {
        background: rgba(255, 255, 255, 0.95) !important;
        color: var(--text-primary) !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
    }
    
    /* 모바일에서 초기 상태 메시지 숨기기 */
    .initial-state {
        display: none !important;
    }
}

/* ===== 빈 상태 ===== */
.no-results {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.empty-state {
    text-align: center;
    padding: var(--spacing-lg);
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.empty-state h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.empty-state p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.initial-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    text-align: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
}

.initial-state i {
    font-size: 3rem;
    color: var(--primary-color);
}

.initial-state h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== 모바일 검색 트리거 ===== */
.mobile-search-trigger {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--callcenter-gradient);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.mobile-search-trigger:hover {
    transform: scale(1.1);
}

.mobile-search-trigger:active {
    transform: scale(0.95);
}

/* ===== 모바일 하단 검색 시트 ===== */
.mobile-bottom-search-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.mobile-bottom-search-sheet.active {
    transform: translateY(0);
}

.mobile-bottom-search-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.mobile-bottom-search-drag-handle {
    width: 40px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    margin-bottom: 12px;
}

.mobile-bottom-search-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
    flex: 1;
}

.mobile-bottom-search-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.mobile-bottom-search-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.mobile-bottom-search-content {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.mobile-bottom-search-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-form-group {
    margin-bottom: var(--spacing-md);
}

.mobile-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.mobile-search-input,
.mobile-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: var(--text-primary);
}

.mobile-search-input:focus,
.mobile-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mobile-form-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.mobile-btn-search,
.mobile-btn-reset {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-btn-search {
    background: var(--callcenter-gradient);
    color: white;
}

.mobile-btn-reset {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 2px solid #e2e8f0;
}

/* ===== 반응형 디자인 ===== */
@media (max-width: 1200px) {
    .pc-search-interface {
        grid-template-columns: 1fr;
    }
    
    .search-sidebar {
        position: static;
        max-height: none;
    }
    
    .mobile-search-trigger {
        display: flex;
    }
    
    .mobile-back-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .main-wrapper {
        padding: 0px;
    }
    
    .center-card {
        padding: var(--spacing-sm);
    }
    
    .center-name {
        font-size: 1rem;
    }
}

