/* ==========================================================================
   Service Details Page Styles
   ========================================================================== */

/* --- Utilities --- */
.mt-4 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 32px;
}

/* --- Hero Section --- */
.details-hero-section {
    background-color: var(--surface-container-lowest);
    /* Add these 3 lines for the full-width background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    /* Recommended in case you ever want to add a dark/light overlay */
}

.details-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
}

.details-hero-content .headline-hero {
    white-space: pre-line;
    margin-bottom: 32px;
}

.hero-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
}

.service-details-hero-actions {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 24px;
}

.details-hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.details-hero-img {
    width: 100%;
    max-width: 560px;
    border-radius: var(--rounded-lg);
    box-shadow: 0 12px 32px var(--shadow-color);
}

/* --- Features / Standard Section (BEM Layout) --- */
.features-section {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.standard-title {
    margin-bottom: 64px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on desktop */
    gap: 32px;
}

.features__card {
    background-color: #F0F4FF;
    /* Light primary blue */
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(15, 98, 254, 0.04);
    border: 1px solid #DCE6FF;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 98, 254, 0.08);
}

.features__card-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.features__icon-circle {
    width: 56px;
    height: 56px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0F62FE;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.features__content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.features__title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.features__description {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* --- Pricing Callout --- */
.pricing-section {
    background-color: var(--surface-container-low);
    padding: 96px 0;
}

.pricing-card {
    background-color: var(--surface-container-lowest);
    border-radius: var(--rounded-xl);
    padding: 64px 32px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px var(--shadow-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-icon {
    font-size: 40px;
    color: #0F62FE;
    /* Primary brand color */
    margin-bottom: 24px;
}

.pricing-title {
    white-space: pre-line;
    margin-bottom: 24px;
}

.pricing-desc {
    max-width: 540px;
    margin: 0 auto 32px auto;
}

/* --- FAQ Section Variants --- */
.faq-question-plus::after {
    content: '+';
    border: none;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--outline-variant);
    right: 12px;
}

.faq-item[open] .faq-question-plus::after {
    content: '−';
    transform: translateY(-50%);
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .details-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-item {
        justify-content: center;
    }

    .service-details-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .features__grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
        gap: 24px;
    }

    .features__card {
        padding: 24px;
    }
}