/* Services Page Styles */

/* Service Card (Top List?) */
.service-card {
    background: white;
    padding: 2.5rem;
    border-top: 4px solid var(--color-gold);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.service-card li::before {
    content: "•";
    color: var(--color-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Service Tab Container */
.service-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-selection-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    max-width: 400px;
}

.service-btn {
    background: #e2e8f0;
    border: none;
    padding: 1rem;
    text-align: left;
    cursor: pointer;
    font-family: serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--color-navy);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.service-btn:hover {
    background: #cbd5e1;
}

.service-btn.active {
    background: var(--color-navy);
    color: white;
    border-left-color: var(--color-gold);
}

.service-info-box {
    flex: 2;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.service-info-box p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--color-slate);
}

@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
    }

    .service-selection-box {
        width: 100%;
        max-width: 100%;
    }
}

/* Dark Mode Overrides (if any logic needed beyond variables) */
/* The extraction logic preserves existing styles which use variables, so dark mode should work if variables are correct. */