/* Service Modes Section (New) */
.modes-section {
    position: relative;
    margin: -60px auto 40px;
    /* Overlap hero slightly */
    max-width: 1100px;
    z-index: 10;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    /* High opacity for legibility */
}

/* Dark mode adjustment for modes section */
[data-theme="dark"] .modes-section {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modes-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mode-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: transform 0.3s ease;
}

.mode-item:hover {
    transform: translateY(-5px);
}

.mode-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    background: var(--bg-gradient);
    /* Subtle bg for icon */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mode-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.mode-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.mode-divider {
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .mode-divider {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modes-section {
        margin: 20px 20px;
    }

    .modes-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .mode-divider {
        width: 100%;
        height: 1px;
    }

    .mode-item {
        width: 100%;
    }
}