/* =============================
   GLOBAL FONT FIX
============================= */
body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
}

/* =============================
   SERVICES HERO
============================= */
.services-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    background: url("/assets/img/13.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.services-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
    color: #fff;
    text-align: center;
}

.services-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.services-lead {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e5e7eb;
}

.services-sub {
    font-size: 15px;
    color: #cbd5e1;
}

/* =============================
   SERVICE CARDS
============================= */
.services-areas {
    padding: 100px 20px;
    background: #ffffff;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.service-card {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #0b3d2e;
}

/* Title */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

/* Text */
.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Link */
.service-link {
    font-size: 14px;
    font-weight: 600;
    color: #0b3d2e;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: underline;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-content h1 {
        font-size: 30px;
    }
}

@media (max-width: 500px) {
    .services-areas {
        padding: 70px 15px;
    }
}