/* Recovery.com Exact Color Match */

:root {
    --navy-text: #1a365d;
    --body-text: #2d3748;
    --light-mint-bg: #e8f4f5;
    --white: #ffffff;
    --gray-text: #718096;
    --border-gray: #e2e8f0;
    --purple-light: #e9d5ff;
    --purple-text: #7c3aed;
    --purple-dark: #6d28d9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--light-mint-bg);
    color: var(--body-text);
    font-size: 16px;
    line-height: 1.6;
}

/* Header - Very Compact */
.site-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: var(--navy-text);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-text {
    font-size: 20px;
    color: var(--navy-text);
    font-weight: 600;
}

.logo-text .com {
    font-weight: 400;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.heart-icon, .menu-icon {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy-text);
    cursor: pointer;
    padding: 5px;
}

/* Search Section */
.search-section {
    background: var(--light-mint-bg);
    padding: 20px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    background: var(--white);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.search-icon {
    color: var(--gray-text);
    font-size: 20px;
}

.search-box input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
    color: var(--body-text);
}

.search-box input::placeholder {
    color: var(--gray-text);
}

/* Breadcrumbs - Small and Simple */
.breadcrumbs {
    padding: 12px 20px;
    font-size: 13px;
    color: var(--gray-text);
    background: var(--light-mint-bg);
}

.breadcrumbs a {
    color: var(--gray-text);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 6px;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Title - Large Serif */
.page-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--navy-text);
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Intro Text */
.intro-text {
    font-size: 16px;
    color: var(--body-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.intro-text a {
    color: var(--body-text);
    text-decoration: underline;
}

/* Trust Section - Collapsible */
.trust-section {
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.trust-section .trust-icon {
    width: 40px;
    height: 40px;
    background: var(--light-mint-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--navy-text);
}

.trust-content {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy-text);
}

.chevron {
    color: var(--gray-text);
    font-size: 20px;
}

/* Results Header */
.results-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
}

.results-count {
    font-weight: 500;
    color: var(--body-text);
}

.sort-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--body-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: var(--light-mint-bg);
}

.filter-btn.active {
    background: var(--purple-light);
    color: var(--purple-text);
    border-color: var(--purple-light);
}

/* Content Cards */
.content-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.content-card h2 {
    font-size: 22px;
    color: var(--navy-text);
    margin-bottom: 12px;
    font-weight: 600;
}

.content-card h3 {
    font-size: 18px;
    color: var(--navy-text);
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.content-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: 12px;
}

.content-card ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.content-card li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--body-text);
}

.content-card a {
    color: var(--body-text);
    text-decoration: underline;
}

/* CTA Buttons */
.cta-button {
    background: var(--purple-text);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
}

.phone-button {
    background: var(--navy-text);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.phone-button:hover {
    background: #2a4a62;
}

/* Facility Cards */
.facility-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.facility-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.facility-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.ad-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
}

/* Footer - Simple */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border-gray);
    padding: 30px 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: var(--gray-text);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 26px;
    }
    
    .filter-buttons {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-content {
        padding: 16px;
    }
}

/* Remove old styles */
.yellow-banner,
.old-header,
.sidebar-menu,
.overlay {
    display: none !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 20px;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.menu-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
}

.menu-header h3 {
    margin: 0;
    color: #1a365d;
    font-size: 20px;
}

.menu-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #718096;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-section {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.menu-section h4 {
    margin: 0 0 12px 0;
    color: #1a365d;
    font-size: 16px;
    font-weight: 600;
}

.menu-section a {
    display: block;
    padding: 8px 0;
    color: #2d3748;
    text-decoration: none;
    font-size: 15px;
}

.menu-section a:hover {
    color: #7c3aed;
}

@media (max-width: 768px) {
    .menu-content {
        width: 280px;
    }
}
