/* Make image cover and responsive */
.banner-img {
    height: 350px;
    object-fit: cover;
}

/* Title overlay at bottom with gradient */
.banner-title-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 0.5rem 1rem;
    text-align: center;
}

.banner-title-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Floating buttons on top-right */
.ad-actions-floating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.ad-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.ad-btn:hover {
    transform: scale(1.2);
    opacity: 1;
}

.ad-btn.whatsapp {
    background-color: #25d366;
}

.ad-btn.call {
    background-color: #007bff;
}
