/* Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #eef5fc;
    color: #1a2a3a;
}

/* Header */
.site-header {
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
}

.site-header .eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #5a8fc7;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.site-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #1565c0;
    font-weight: 600;
    line-height: 1.2;
}

.site-header .tagline {
    font-size: 0.95rem;
    color: #6a8db5;
    margin-top: 0.5rem;
}

/* Banner */
.banner-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21, 101, 192, 0.35);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem 1.75rem;
}

.banner-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 600;
}

/* Services */
.our-services {
    max-width: 1000px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.our-services .sec-eyebrow {
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #5a8fc7;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.our-services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: #1565c0;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.our-services ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.25rem;
}

.our-services li {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 0.5px solid #c5dcf5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.our-services li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(21, 101, 192, 0.12);
}

.our-services li img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 1.1rem 1rem 1.3rem;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #1565c0;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.card-body p {
    font-size: 0.875rem;
    color: #5a7a9e;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1565c0;
    padding: 2rem 1.5rem 1.5rem;
    margin-top: 1rem;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.footer-col h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.6rem;
}

.footer-item svg {
    width: 15px;
    height: 15px;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

.footer-item a {
    color: #90caf9;
    text-decoration: none;
}

.footer-item a:hover {
    text-decoration: underline;
}

.footer-copy {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    padding-top: 1rem;
    border-top: 0.5px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.32);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}


.whatsapp-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(37, 211, 102, 0.38);
    filter: brightness(1.03);
}

.whatsapp-fab svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}
/* Responsive */
@media (max-width: 700px) {
    .site-header h1 {
        font-size: 1.8rem;
    }

    .banner-wrap {
        height: 140px;
    }

    .banner-overlay span {
        font-size: 1.1rem;
    }

    .our-services ul {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}
