body, p, div, article, section {
    text-align: justify;
    line-height: 1.6;
}

.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/site/img/03.jpeg');
    background-size: cover;
    background-position: center;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.gallery-item {
    transition: all 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.05);
}
.price-table tr:nth-child(even) {
    background-color: #f8fafc;
}
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.active::after {
    width: 100%;
}
#map {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .hero-bg {
        background-position: top;
    }
    .service-card {
        margin-bottom: 20px;
    }
    .price-table th, .price-table td {
        font-size: 14px;
        padding: 8px;
    }
}

.video-card:hover {
    transform: scale(1.03);
    transition: 0.3s ease-in-out;
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 50;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.video-modal iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}