/* Bless Web Solution - Public styles */

body {
    padding-top: 56px;
}

.navbar-brand {
    font-weight: 700;
}

.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.page-content ul,
.service-content ul {
    margin-bottom: 1rem;
}

.page-content h2,
.service-content h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-content h3,
.service-content h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* WhatsApp float button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.05);
}

/* Sticky call button - mobile only */
.call-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    padding: 12px 20px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
    z-index: 998;
    transition: transform 0.2s;
}

.call-float:hover {
    color: #fff;
    transform: scale(1.05);
}

@media (min-width: 992px) {
    .call-float {
        display: none !important;
    }
}

.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}
