/* === SERVICES SECTION REDESIGN — Premium Card Layout === */

/* Replace boring numbered boxes with elegant full-width alternating rows */
.services-grid, .numbered-grid, [class*="services"] .grid-2,
[class*="service"] .grid-4, [class*="service"] .grid-3 {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

/* Each service becomes a full-width alternating row */
.numbered-section, .service-item, .numbered-item {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    padding: 3rem 4rem !important;
    border-bottom: 1px solid rgba(181, 152, 90, 0.15) !important;
    align-items: center !important;
    min-height: auto !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(181, 152, 90, 0.15) !important;
}

.numbered-section:last-child, .service-item:last-child, .numbered-item:last-child {
    border-bottom: none !important;
}

/* Number styling — big elegant Italiana */
.numbered-section .number, .service-item .number,
.numbered-item .number, .numbered-label,
.numbered-section > span:first-child {
    font-family: var(--font-heading, 'Italiana', serif) !important;
    font-size: 4rem !important;
    color: rgba(181, 152, 90, 0.3) !important;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
}

/* Title and description in right column */
.numbered-section h3, .service-item h3, .numbered-item h3 {
    font-family: var(--font-heading, 'Italiana', serif) !important;
    font-size: 1.5rem !important;
    letter-spacing: 0.02em !important;
    margin-bottom: 0.75rem !important;
}

.numbered-section p, .service-item p, .numbered-item p {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    opacity: 0.8 !important;
}

/* Hover: subtle gold left border */
.numbered-section:hover, .service-item:hover, .numbered-item:hover {
    background: rgba(181, 152, 90, 0.03) !important;
    border-left: 3px solid var(--gold, #b5985a) !important;
    padding-left: calc(4rem - 3px) !important;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .numbered-section, .service-item, .numbered-item {
        grid-template-columns: 1fr !important;
        padding: 2rem 1.5rem !important;
    }
}

/* Alternative: If using reveal-scale cards, make them elegant too */
.reveal-scale, .service-card {
    border: 1px solid rgba(181, 152, 90, 0.12) !important;
    border-radius: 0 !important;
    padding: 2.5rem !important;
    background: transparent !important;
    transition: all 0.4s ease !important;
}

.reveal-scale:hover, .service-card:hover {
    border-color: var(--gold, #b5985a) !important;
    background: rgba(181, 152, 90, 0.03) !important;
}
