/**
 * ASC Region Importer - Shortcode Styles
 * Only loaded on pages where shortcodes are used.
 */

:root {
    --regional-teal: #1a4d4d;
    --regional-teal-light: #2a5d5d;
}

/* Services Loop */
.regional-services-loop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;

    @media (max-width: 768px) {
        grid-template-columns: repeat(1, 1fr);
    }
}

.regional-service-item {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    font-family: "Basis Grotesque", sans-serif;
}

.regional-service-item h3 {
    margin: 0;
    margin-bottom: 20px;
    color: #14463a;
    font-size: 1.5rem;
    font-weight: 600;
}

.regional-service-description {
    color: #14463a;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

/* Why Choose Loop */
.regional-why-choose-list {
    list-style: disc;
    margin: 0;
    font-size: 18px;
    font-family: "Basis Grotesque", sans-serif;
}

.regional-why-choose-list li {
    margin-bottom: 0;
    line-height: 1.7;
    color: #333;
}

.regional-why-choose-list li:last-child {
    margin-bottom: 0;
}

.regional-why-choose-list li::marker {
    color: #14463a;
}

.regional-why-choose-list li strong {
    color: #14463a;
    font-weight: 700;
}

.regional-why-choose-list li span {
    color: #14463a;
}

/* FAQ Accordion */
.regional-faq-accordion {
    font-family: "Basis Grotesque", sans-serif;
}

.regional-faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.regional-faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.regional-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.regional-faq-question:hover {
    color: #14463a;
}

.regional-faq-question-text {
    color: #14463a;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding-right: 20px;
}

.regional-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14463a;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.regional-faq-icon::before {
    content: '+';
}

.regional-faq-item.is-open .regional-faq-icon::before {
    content: '−';
}

.regional-faq-answer {
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    max-height: 0;
    opacity: 0;
}

.regional-faq-answer-inner {
    padding: 0 0 20px 0;
    color: #14463a;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.regional-faq-answer-inner p {
    margin: 0 0 1em 0;
}

.regional-faq-answer-inner p:last-child {
    margin-bottom: 0;
}
