body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-section {
    background: radial-gradient(circle at top left, #b68b57 0, #1b1b1b 55%);
}

.hero-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.gallery-item {
    height: 180px;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.floating-btn {
    position: fixed;
    right: 16px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.phone-btn {
    bottom: 90px;
    background: #f7bc3c;
}

.whatsapp-btn {
    bottom: 24px;
    background: #25d366;
}

.floating-btn i {
    font-size: 22px;
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
    }
}

