/* ===========================================
   Services Page Styles
   Visual, engaging, conversion-focused
   =========================================== */

/* Hero */
.service-hero {
    background: var(--primary-colour);
    padding: var(--space-16) 0;
    text-align: center;
    color: var(--color-text-inverse);
}

.service-hero_content {
    max-width: 700px;
    margin: 0 auto;
}

.service-hero_label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-inverse);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
    background: rgba(255,255,255,0.1);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
}

.service-hero_title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    color: var(--color-text-inverse);
}

.service-hero_subtitle {
    font-size: var(--text-xl);
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-8);
}

.service-hero_cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.service-hero_reassurance {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Outline light button */
.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Section utilities */
.section-sm {
    padding: var(--space-8) 0;
}

.section-subtitle {
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
}

.service-intro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-8);
    align-items: center;
}

.service-intro_content {
    text-align: left;
}

.service-intro_media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    display: block;
}

.container-narrow {
    max-width: 750px;
    margin: 0 auto;
}

/* Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.type-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.type-card_icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    line-height: 1;
}

.type-card_title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-text);
}

.type-card_desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.type-card_best {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
}

.type-card_price {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

/* Split Content */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.split-content_text h2 {
    margin-bottom: var(--space-4);
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: var(--space-8);
    margin-bottom: var(--space-4);
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Info Card */
.info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.info-card_header {
    margin-bottom: var(--space-4);
}

.info-card_badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(37, 99, 235, 0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
}

.info-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.info-card_list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-4);
}

.info-card_list li {
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.info-card_list li:last-child {
    border-bottom: none;
}

.info-card_link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
}

.info-card_link:hover {
    text-decoration: underline;
}

/* Primary CTA Section */
.bg-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1d4ed8 100%);
}

.text-white {
    color: var(--color-white);
}

.text-white-muted {
    color: rgba(255,255,255,0.8);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
}

.btn-white:hover {
    background: #f8f9fa;
}

/* Content Prose */
.content-prose {
    line-height: 1.75;
}

.content-prose p {
    margin-bottom: var(--space-4);
}

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

.content-prose ul,
.content-prose ol {
    margin: var(--space-4) 0;
    padding-left: var(--space-6);
}

.content-prose li {
    margin-bottom: var(--space-3);
    line-height: 1.6;
}

.content-prose strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Pricing Showcase */
.pricing-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.pricing-range {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    margin: var(--space-4) 0;
    letter-spacing: -0.02em;
}

.pricing-note {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    max-width: 40ch;
}

.pricing-showcase_cta {
    text-align: center;
    padding: var(--space-8);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
}

.text-sm {
    font-size: var(--text-sm);
}

/* FAQ List */
.services-page .faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.services-page .faq-item {
    border-bottom: 1px solid var(--color-border);
}

.services-page .faq-item:last-child {
    border-bottom: none;
}

.services-page .faq-question {
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) 0;
}

.services-page .faq-question::-webkit-details-marker {
    display: none;
}

.services-page .faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-primary);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.services-page .faq-item[open] .faq-question::after {
    content: '−';
}

.services-page .faq-answer {
    padding: 0 0 var(--space-5);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.services-page .faq-answer p {
    margin: 0;
}

/* CTA Section */
.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.category-cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.category-cta-actions.cta-single .btn.btn-primary {
    min-width: 260px;
    padding-left: var(--space-10);
    padding-right: var(--space-10);
}

.cta-phone {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.cta-phone-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.cta-phone-link:hover {
    text-decoration: underline;
}

/* Dark section */
.bg-dark {
    background: var(--primary-colour);
    color: var(--color-text-inverse);
}

.bg-dark h2 {
    color: var(--color-text-inverse);
}

.bg-dark .text-white,
.bg-dark .text-white-muted,
.bg-dark .pricing-note,
.bg-dark .pricing-range {
    color: var(--color-text-inverse);
}

.bg-dark .pricing-showcase_cta {
    background: rgba(255, 255, 255, 0.08);
}

.bg-dark .pricing-showcase_cta p {
    color: var(--color-text-inverse);
}

/* Large button */
.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

/* Mobile */
@media (max-width: 768px) {
    .service-hero {
        padding: var(--space-12) 0;
    }

    .service-hero_cta {
        flex-direction: column;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .service-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-intro_content {
        text-align: center;
    }

    .pricing-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-showcase_content {
        margin-bottom: var(--space-6);
    }

    .pricing-note {
        max-width: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .category-cta-actions {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }

    .services-page .card .btn {
        width: 100%;
        justify-content: center;
    }
}
