/* =========================================
   DE-ADDICTION PAGE STYLES
   ========================================= */

/* --- 1. Hero Section --- */
.hero-centered {
    background-color: var(--deep-blue); /* Matches Home Page */
    color: var(--white);
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    min-height: 300px;
    
    /* UPDATED: Add padding so text clears the transparent navbar */
    padding-top: 120px; 
    padding-bottom: 80px;
}

.hero-centered h1 {
    color: var(--white);
    font-family: var(--font-serif);
    margin-bottom: 10px;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    color: #ffffff; /* White accent for subtitle */
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Subtle gradient to match home page depth */
    background: radial-gradient(circle at 50% 50%, rgba(62, 92, 154, 0.15) 0%, rgba(42, 64, 104, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content-wrapper-center { 
    z-index: 2; 
    position: relative; 
}

/* --- 2. Main Container --- */
.clinic-container {
    max-width: 1000px;
    margin: -50px auto 80px; /* Overlap hero slightly for modern look */
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 600px) {
    .clinic-container {
        margin-top: -25px;
    }
}

/* --- 3. Left Column (Info) --- */
.clinic-info {
    flex: 1;
    padding: 50px;
    border-right: 1px solid #f0f0f0;
    min-width: 300px;
}

.info-block {
    margin-bottom: 40px;
}

.info-label {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
}

.info-content {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--deep-blue);
    line-height: 1.2;
}

.info-sub {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-top: 5px;
}

/* Confidential Badge */
.confidential-badge {
    background-color: #e8f0fe;
    color: var(--deep-blue);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--deep-blue);
    margin-top: 30px;
}

.confidential-badge strong {
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* --- 4. Right Column (Motivation & Features) --- */
.clinic-features {
    flex: 1;
    padding: 50px;
    background-color: #fafbff;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.motivation-box {
    text-align: center;
    margin-bottom: 40px;
}

.motivation-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 20px;
    line-height: 1.4;
}

.motivation-title span {
    color: var(--primary-blue);
    font-style: italic;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    background: #fff;
    padding: 12px 10px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-grey);
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    text-align: center;
    border: 1px solid #eee;
    font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .clinic-container {
        flex-direction: column;
        margin-top: 20px;
        box-shadow: none;
        background: transparent;
    }
    
    .clinic-info, .clinic-features {
        min-width: 0;
        background: #fff;
        border-radius: 10px;
        margin-bottom: 20px;
        border: 1px solid #eee;
        padding: 30px;
    }
    
    .hero-centered {
        padding-top: 100px;
    }
}