html {
    scroll-behavior: smooth;
}

/* Contact Page Redesign */
.city-banner {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: sticky;
    top: 0;
    overflow: hidden;

}

@media screen and (max-width:991px) {
    .city-banner {
        padding: 0px 8px;
    }
}

.city-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    transition: all 0.3s ease;
}

.city-banner:hover .city-banner-overlay,
.city-banner-overlay.scroll-overlay {
    border-top: 1px solid #f5f5f5;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: grayscale(100%);
    -webkit-backdrop-filter: grayscale(100%);
}

.city-banner .container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.city-banner .city-name {
    font-family: 'Matiere', serif;
    font-size: 60px;
    letter-spacing: 1px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

}

@media (min-width: 1601px) {
    .city-banner .city-name {
        font-size: 100px !important;
    }
}

@media screen and (max-width: 991px) {
    .city-banner .city-name {
        font-size: 50px;
    }
}

@media screen and (max-width: 991px) {
    .contact-form-section {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

@media (min-width: 992px) {
    .city-banner {
        min-height: 450px;
    }

    /* .city-banner .city-name {
        font-size: 51px;
    } */
}

/* View Map Button */
.view-map-btn {
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 0.75rem;
    font-family: 'Graphik', sans-serif;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-map-btn:hover {
    background: #fff;
    color: #5F190C !important;
}

/* Hover Content */
.city-details {
    position: absolute;
    top: 100%;
    left: 15px;
    /* Bootstrap container padding */
    right: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    font-size: 0.95rem;
    line-height: 1.6;
}

.city-banner:hover .city-details {
    opacity: 1;
    transform: translateY(0);
}

.city-content-wrapper {
    transition: transform 0.5s ease;
}

.city-banner:hover .city-content-wrapper {
    transform: translateY(-80px);
}

.quick-links .img-block {
    height: 345px;
}

@media (max-width: 991px) {
    .city-details {
        opacity: 1;
        transform: translateY(0);
    }

    .city-content-wrapper {
        transform: translateY(-80px);
    }
}

.quick-links .img-link {
    font-family: 'Graphik', sans-serif;
    font-weight: 600;
    transform: translateY(-50%);
}

.custom-contact-form .custom-input-group .form-control {
    border: none;
    border-bottom: 1px solid #5F190C;
    background: transparent;
    border-radius: 0;
    padding: 10px 0;
    font-family: 'Graphik', sans-serif;
    font-size: 1.3rem;
    color: #5F190C;
    box-shadow: none !important;
}

.custom-contact-form .custom-input-group .form-control::placeholder {
    color: #5F190C;
    font-family: 'Graphik', sans-serif;
    font-size: 20px;
}

.custom-contact-form .custom-input-group .form-control:focus {
    outline: none;
    border-bottom-width: 2px;
}

.custom-contact-form .custom-input-group textarea.form-control {
    resize: none;
    overflow: hidden;
}

.contact-submit-btn {
    border: 1px solid #5F190C;
    color: #5F190C;
    font-family: 'Graphik', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    background: transparent;
}

.contact-submit-btn:hover {
    background: #5F190C;
    color: #fff;
}

.dark-img-block {
    transition: transform 0.3s;
}

/* .dark-img-block:hover {
    transform: translateY(-5px);
} */

.contact-hero-banner .subbanner-typo {
    max-width: 526px;
}