:root {
    --brand: #2f7a6f;
    --brand-dark: #1f544c;
    --cream: #faf7f2;
}

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #333;
}

.navbar-brand {
    font-weight: 700;
    color: var(--brand-dark) !important;
}

.btn-brand {
    background-color: var(--brand);
    border-color: var(--brand);
    color: #fff;
}
.btn-brand:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.text-brand { color: var(--brand) !important; }
.bg-brand { background-color: var(--brand) !important; }
.bg-cream { background-color: var(--cream) !important; }

.hero {
    background: linear-gradient(135deg, rgba(31,84,76,0.92), rgba(47,122,111,0.85)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1600&q=60') center/cover no-repeat;
    color: #fff;
    padding: 6rem 0;
}

.service-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.service-card .service-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    background-color: #e9ecef;
}

.section-title {
    font-weight: 700;
    color: var(--brand-dark);
}

footer.site-footer {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.85);
}
footer.site-footer a {
    color: #fff;
    text-decoration: none;
}
footer.site-footer a:hover {
    text-decoration: underline;
}
