/* Service detail page */
.service-icon-large {
    display: inline-flex;
    color: var(--accent-color-dark, var(--accent-color));
    margin-bottom: 0.75rem;
}

.service-lede {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.6rem 1.5rem;
}

.bullet-list li {
    color: var(--text-dark);
    font-size: 0.95rem;
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}

.bullet-list li::before {
    content: '\2022';
    color: var(--accent-color);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.bullet-list-check li::before {
    content: '\2713';
    color: var(--success, #27ae60);
}

.service-cta {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
}

.service-cta p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Homepage service cards: "Learn More" link */
.service-card .learn-more {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
}

.service-card .learn-more:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Services dropdown in the header nav */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    padding: 0;
}

.nav-dropdown-toggle .caret {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle .caret {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 260px;
    padding: 0.5rem;
    z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a:link,
.nav-dropdown-menu a:visited {
    display: block;
    padding: 0.65rem 0.8rem;
    border-radius: 6px;
    color: var(--text-dark, #3D3D3D);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 1;
    text-decoration: none;
}

.nav-dropdown-menu a:hover {
    background: #f0fbff;
    color: var(--secondary-color, #3A5A83);
}

@media (max-width: 768px) {
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        min-width: 0;
        margin-top: 0.5rem;
    }

    .nav-dropdown-menu a:link,
    .nav-dropdown-menu a:visited {
        color: white;
        text-align: center;
    }
}
