/* Services Page Styles */

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--accent-gold);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-gold);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-card-text {
    color: var(--text-body);
    line-height: 1.6;
    flex-grow: 1;
}

/* Service Page Styles */
.page-title-section {
    background: linear-gradient(135deg, #0a1628 0%, #132042 35%, #1a2d5a 65%, #162445 100%);
    padding: 32px 0 20px;
    color: white;
}

.page-title-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.page-title-section .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.page-title-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.page-title-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-title-section .breadcrumb-item a:hover {
    color: var(--accent-gold);
}

.page-title-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.55);
}

.page-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    background: none;
    padding: 0;
    border: none;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-bottom: 0;
}

.page-title-section .page-badge {
    background: linear-gradient(135deg, #e8d5a3 0%, #d4a843 100%);
    color: #0d2b4e;
    border-color: rgba(212, 168, 67, 0.6);
    box-shadow: 0 4px 18px rgba(212, 168, 67, 0.3);
}

.page-title-section .page-badge i {
    color: #0d2b4e;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(200, 168, 75, 0.12) 0%, rgba(200, 168, 75, 0.22) 100%);
    color: #a08830;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(200, 168, 75, 0.35);
    box-shadow: 0 2px 8px rgba(200, 168, 75, 0.12);
}

/* Service Content */
.service-overview h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.service-overview p.lead {
    font-size: 1.25rem;
    color: var(--text-charcoal);
    line-height: 1.7;
}

/* Checklist Box - bordered container for each checklist item */
.checklist-box {
    border: 1px solid var(--accent-gold);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
}

.checklist-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 168, 75, 0.15);
    border-color: var(--accent-gold);
}

.checklist-icon-circle {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 8px;
}

.checklist-icon-circle i {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 700;
    vertical-align: middle;
}

.checklist-heading {
    display: inline;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-navy);
    vertical-align: middle;
}

.checklist-desc {
    display: inline;
    margin: 0;
    color: var(--text-body);
    line-height: 1.6;
    font-size: 1rem;
    vertical-align: middle;
}

/* Why Choose Box */
.why-box {
    border: 1px solid var(--accent-gold);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
}

.why-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 168, 75, 0.15);
    border-color: var(--accent-gold);
}

.why-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.why-box p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Section Overrides */
.cta-section .row.justify-content-center .col-lg-8.text-center p {
    color: #fff !important;
    font-size: 17px;
}

/* FAQ Styles */
.faq-accordion .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-accordion .accordion-header {
    background-color: rgba(248, 249, 250, 0.5);
    /* Reset theme .accordion-header bleed (margin: 0 -5px,
       padding & dotted border-top) that made headers stick out
       beyond the accordion body on the left/right. */
    margin: 0;
    padding: 0;
    border-top: 0;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--primary-navy);
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--accent-gold);
    color: white;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed):after {
    transform: rotate(-180deg);
}

.faq-accordion .accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* Pathway Cards */
.pathway-card {
    transition: all 0.3s ease;
}

.pathway-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

/* Related Service Card */
.related-service-card {
    border: 1px solid var(--accent-gold);
    border-radius: 10px;
    padding: 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
}

.related-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 168, 75, 0.15);
    border-color: var(--accent-gold);
}

.related-service-card i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
    display: block;
}

.related-service-card h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.related-service-card p {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Process Step Card */
.process-step-card {
    transition: all 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12) !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .page-title-section {
        padding: 2rem 0 0 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .service-overview h2 {
        font-size: 1.75rem;
    }
    
    .service-why h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .service-card-icon i {
        font-size: 1.25rem;
    }
    
    .service-card-title {
        font-size: 1.125rem;
    }
}