/* ========================================
   The White Rehab - Drug Rehab Details Stylesheet
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #4a7c59;
    --dark-green: #2d5a3d;
    --light-green: #6b9b7a;
    --accent-red: #d32f2f;
    --gold: #c9a961;
    --cream: #f5f1e8;
    --brown: #8b6914;
    --text-dark: #333;
    --text-gray: #666;
}

body {
    font-family: 'DB Heavent', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Page Title Section
   ======================================== */
.drd-page-title {
    background-color: var(--cream);
    padding: 40px 0 30px;
    text-align: center;
}

.drd-page-title__text {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ========================================
   Hero Section
   ======================================== */
.drd-hero {
    display: flex;
    min-height: 340px;
}

.drd-hero__image {
    width: 55%;
    flex-shrink: 0;
    overflow: hidden;
}

.drd-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.drd-hero__info {
    flex: 1;
    background-color: #4c7b5a;
    padding: 44px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    color: #fff;
}

.drd-hero__info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    padding: 14px 28px;
    border: 2px solid #fff;
    display: inline-block;
}

.drd-hero__info-body {
    font-size: 1.5rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
}

.drd-hero__info-body strong {
    color: #fff;
    font-weight: 700;
}

/* ========================================
   Content Section
   ======================================== */
.drd-content-section {
    background-color: #f7f4eb;
    padding: 52px 0 64px;
}

.drd-block {
    margin-bottom: 44px;
}

.drd-block:last-child {
    margin-bottom: 0;
}

.drd-block__title {
    font-size: 2.225rem;
    font-weight: 700;
    color: #4c7b5a;
    margin-bottom: 12px;
}

.drd-block p {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Bullet List */
.drd-bullet-list {
    list-style: none;
    padding-left: 8px;
    margin: 10px 0 16px;
}

.drd-bullet-list li {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    padding-left: 22px;
    position: relative;
    margin-bottom: 4px;
}

.drd-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: var(--text-dark);
    line-height: 1.8;
}

.drd-bullet-list--sub {
    margin: 8px 0 4px;
    padding-left: 16px;
}

/* Numbered List */
.drd-numbered-list {
    list-style: none;
    padding-left: 0;
    counter-reset: drd-counter;
    margin-top: 8px;
}

.drd-numbered-list > li {
    counter-increment: drd-counter;
    padding-left: 38px;
    position: relative;
    margin-bottom: 22px;
}

.drd-numbered-list > li::before {
    content: counter(drd-counter) ".";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1.8;
}

.drd-numbered-list__heading {
    font-size: 1.55rem !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}

/* ========================================
   CTA Section
   ======================================== */
.drd-cta-section {
    background-color: var(--cream);
    padding: 52px 0 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.drd-cta__actions {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.drd-cta__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}   

.drd-cta__label {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-dark);
}

.drd-cta__phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(180deg, #f9e8bbc9 0%, #e8d7a1 100%);
    color: var(--text-dark);
    padding: 14px 100px;
    /* border-radius: 50px; */
    font-size: 3.5rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.2s;
}

.drd-cta__phone-btn:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.drd-cta__phone-btn i {
    font-size: 1.7rem;
    color: var(--text-dark);
}

.drd-btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #f5ad68 0%, #fd8818 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.2s;
    margin-bottom: 1rem;
}

.drd-btn-orange:hover {
    opacity: 0.88;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .drd-hero {
        flex-direction: column;
    }

    .drd-hero__image {
        width: 100%;
        height: 260px;
    }

    .drd-hero__info {
        padding: 28px 24px;
    }

    .drd-hero__info-title {
        font-size: 2rem;
    }

    .drd-page-title__text {
        font-size: 2.2rem;
    }

    .drd-cta__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .drd-cta__phone-btn {
        font-size: 1.9rem;
    }
}