
/* ---- SERVICES PAGE SPECIFIC ---- */
.services-page {
    padding: 100px 0 120px;
    background: var(--light-bg);
    }

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 70px;
    }

.svc-item {
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(40px);
    }

.svc-item.visible {
    opacity: 1;
    transform: translateY(0);
    }

.svc-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    z-index: 2;
    }

.svc-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
    }

.svc-item:hover .svc-img {
    transform: scale(1.04);
    }

.svc-body {
    padding: 30px 32px 36px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
    }

.svc-item:hover .svc-body {
    border-color: var(--gold);
    }

.svc-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: rgba(0,0,0,0.06);
    line-height: 1;
    margin-bottom: -10px;
    }

.svc-body h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.2;
    }

.svc-body p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.8;
    }

.svc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-top: 18px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    }

.svc-item:hover .svc-arrow {
    opacity: 1;
    transform: translateX(0);
    }

/* CTA strip below */
.services-contact-strip {
    background: var(--dark);
    padding: 80px 0;
    text-align: center;
    }

.services-contact-strip h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
    }

.services-contact-strip h2 em {
    font-style: italic;
    color: var(--gold-light);
    }

.services-contact-strip p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    max-width: 440px;
    margin: 0 auto 32px;
    }

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    }

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    }

.contact-detail svg { color: var(--gold); }

@media (max-width: 1100px) { .services-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-list { grid-template-columns: 1fr; } }
