body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

h2 {
    font-weight: 700;
}

.card img {
    object-fit: cover;
    height: 240px;
}

.navbar-nav .nav-link.active {
    font-weight: bold;
    text-decoration: underline;
}

.management-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.brand-logo {
    max-height: 80px;
    max-width: 100%;
    height: auto;
    filter: grayscale(0);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: none;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    background-color: transparent;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}

.navbar.navbar-dark.bg-primary {
    background-image: linear-gradient(135deg, #0d6efd 0%, #0a4abf 100%);
}

section {
    scroll-margin-top: 80px;
}

#form-feedback {
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
}

.service-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.5rem 3rem rgba(13, 30, 72, 0.18);
}

#services-intro {
    line-height: 1.7;
}

.service-gallery .gallery-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 3rem rgba(13, 30, 72, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-gallery .gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: saturate(1.1);
}

.service-gallery .gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.75rem 3.25rem rgba(13, 30, 72, 0.2);
}

.gallery-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.85rem 1.1rem;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(180deg, rgba(8, 32, 66, 0) 0%, rgba(5, 24, 58, 0.8) 100%);
}
