/* ========================================
   DARK CONTENT SECTION - WITH IMAGES
   ======================================== */

.dark-content-section {
    background: linear-gradient(135deg, #2D1F26 0%, #1F1418 50%, #1A1015 100%);
    padding: 4rem 0;
}

/* Split Block - Text + Image */
.dc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.dc-block-reverse {
    direction: rtl;
}

.dc-block-reverse > * {
    direction: ltr;
}

@media (max-width: 968px) {
    .dc-block,
    .dc-block-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .dc-block-reverse > * {
        direction: ltr;
    }
}

/* Text Side */
.dc-text {
    padding: 1rem 0;
}

.dc-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem;
    line-height: 1.3;
}

.dc-text h2 span {
    color: #C77D8F;
}

.dc-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
}

/* CTA Button */
.dc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.dc-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    color: #fff;
}

.dc-btn-alt {
    background: linear-gradient(135deg, #C77D8F, #8B4558);
}

.dc-btn-alt:hover {
    background: linear-gradient(135deg, #8B4558, #6d3545);
}

/* Image Side */
.dc-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.dc-image img {
    max-height: 450px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 968px) {
    .dc-image {
        order: -1;
    }

    .dc-image img {
        max-height: 350px;
    }
}

/* Card Style Block */
.dc-card {
    background: linear-gradient(135deg, rgba(139, 69, 88, 0.1) 0%, rgba(45, 31, 38, 0.8) 100%);
    border: 1px solid rgba(199, 125, 143, 0.4);
    border-left: 4px solid #C77D8F;
    border-radius: 8px;
    padding: 2.5rem 3rem;
    margin: 4rem auto;
    max-width: 1000px;
}

.dc-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 1rem;
}

.dc-card-line {
    width: 80px;
    height: 3px;
    background: #C77D8F;
    margin: 0 auto 2rem;
}

.dc-card-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}

.dc-card-content p:last-child {
    margin-bottom: 0;
}

.dc-card-content a {
    color: #C77D8F;
    text-decoration: underline;
}

.dc-card-content a:hover {
    color: #fff;
}

.dc-card-content strong {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .dark-content-section {
        padding: 3rem 0;
    }

    .dc-block {
        margin-bottom: 3rem;
    }

    .dc-text h2 {
        font-size: 1.6rem;
    }

    .dc-text p {
        font-size: 0.95rem;
    }

    .dc-card {
        padding: 2rem 1.5rem;
        margin: 3rem auto;
    }

    .dc-card h2 {
        font-size: 1.5rem;
    }

    .dc-card-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .dark-content-section {
        padding: 2rem 0;
    }

    .dc-text h2 {
        font-size: 1.4rem;
    }

    .dc-btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }

    .dc-image img {
        max-height: 280px;
    }

    .dc-card {
        padding: 1.5rem 1rem;
        border-radius: 6px;
    }

    .dc-card h2 {
        font-size: 1.3rem;
    }
}
