:root {
    --main: #2c4e6a;
    --secondary: #4B5860;
    --dark-gray: #333333;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    transition: transform 0.3s ease-in-out;
    margin: 0;
    padding: 0;
}

.special-promo {
    background-color: var(--secondary);
    color: white;
    position: relative;

    max-height: 1000px;
    opacity: 1;
    overflow: visible;
    z-index: 1100;

    transition: max-height 0.8s cubic-bezier(0.65, 0, 0.35, 1),
        opacity 0.6s ease,
        padding 0.8s ease;
}

.special-promo.collapsed {
    max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    pointer-events: none;
}

.special-promo .star-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.special-promo p {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.btn-promo-learn {
    border: 1px solid white;
    color: white;
    padding: 8px 40px;
    text-transform: none;
    font-weight: 400;
    border-radius: 4px;
}

.btn-promo-learn:hover {
    background-color: white;
    color: var(--secondary);
}

.promo-close-tab {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
    color: #ccc;
    border: none;
    padding: 4px 15px;
    font-size: 0.65rem;
    cursor: pointer;
    border-radius: 0 0 4px 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    font-weight: bold;
}

.top-utility-row {
    font-size: 0.75rem;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    background-color: #EFECE7;
}

.top-utility-row a {
    color: var(--secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

.top-utility-row a:hover {
    color: var(--main);
}

.navbar {
    padding: 1.2rem 0;
    background: #fff;
}

.navbar-brand img {
    max-height: 75px;
}

.nav-link {
    font-weight: 500;
    font-size: 1.05rem;
    text-transform: uppercase;
    color: #282828 !important;
    letter-spacing: 0.5px;
}

.secondary-nav .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: #757575 !important;
    text-transform: none !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none !important;
}

.border-main {
    border-color: var(--main) !important;
}

.hamburger-icon {
    width: 25px;
    height: 20px;
    position: relative;
    display: inline-block;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--main);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.navbar-toggler.open .hamburger-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.navbar-toggler.open .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -40px;
}

.navbar-toggler.open .hamburger-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

#hero-slider {
    background-color: var(--main);
}

.splide__slide {
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    max-width: 500px;
    padding: 3rem;
    color: white;
    margin-left: 10%;
}

.announcement {
    background-color: var(--secondary);
    color: white;
    text-align: center;
    padding: 15px 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    color: var(--main);
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.feature-card img {
    height: 400px;
    object-fit: cover;
}

.btn-outline-custom {
    border: 1px solid var(--main);
    color: var(--main);
    padding: 12px 30px;
    font-weight: 700;
}

.btn-outline-custom:hover {
    background: var(--main);
    color: white;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

footer {
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
    padding: 60px 0 30px;
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.75rem;
    color: #555;
}

.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.offcanvas {
    width: 300px !important;
}

@media (max-width: 991px) {
    .hero-content {
        margin: 0 5%;
        width: 90%;
        padding: 2rem;
    }

    .splide__slide {
        height: 60vh;
    }
}

.offcanvas.offcanvas-end.show {
    z-index: 10000;

}

.navbar-expand-lg ul.navbar-nav li+li:before {
    content: " |";
}

.navbar-expand-lg ul.navbar-nav li {
    display: flex;
    align-items: center;
}

.btn-primary {
    background-color: var(--main);
    border: 2px solid color-mix(in srgb, var(--main) 80%, black);
}

.btn-primary:hover {
    background-color: color-mix(in srgb, var(--main) 90%, white);
    border: 2px solid color-mix(in srgb, var(--main) 80%, black);
}

#hero-slider h1,
#hero-slider h2 {
    font-weight: bold;
    text-shadow: 0 0 15px #000000;
}

#hero-slider .subtitle {
    text-shadow: 0 0 15px #000000;
    font-size: 1.3rem;
}

.btn {
    border-radius: 4px;
    min-width: 251px !important;
    min-height: 50px;
    align-content: center;
}

.btn-style-small {
    width: 170px !important;
    height: 34px !important;
    font-size: 0.6rem !important;
}

#hero-slider p {
    text-shadow: 0 0 15px #000000;
    font-size: 1.3rem;
}

.join-community-cta {
    position: relative;
    padding: 100px 0;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.join-community-cta .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.join-community-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.join-community-cta h2 {
    font-weight: 700;
    font-size: 2.75rem;
    margin-bottom: 10px;
}

.join-community-cta p {
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.card-body p {
    min-height: 138px;
}

.neighborhood-attractions {
    position: relative;
    padding: 120px 0;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
}

.neighborhood-attractions .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.neighborhood-attractions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
}

.neighborhood-attractions h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.neighborhood-attractions .divider {
    width: 60px;
    height: 3px;
    background-color: #fff;
    margin: 0 auto 30px;
    opacity: 1;
}

.neighborhood-attractions p {
    font-size: 1.05rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.on-site-list {
    font-size: 1.1rem;
    margin: 25px 0;
}

ul.on-site-list,
.on-site-list ul {
    list-style-type: none;
    padding-left: 0;
}

ul.on-site-list a,
.on-site-list ul a {
    color: #afd4e7
}

ul.on-site-list a:hover,
.on-site-list ul a:hover {
    color: #337ab7
}

@media (max-width: 768px) {
    .neighborhood-attractions h2 {
        font-size: 1.8rem;
    }

    .neighborhood-attractions {
        padding: 80px 0;
    }
}

@media (min-width: 768px) {
    .on-site-list li::after {
        content: "|";
        padding: 0 1rem;
    }

    .on-site-list li:last-child::after {
        display: none;
        content: none;
        padding: 0 1rem;
    }

    ul.on-site-list,
    .on-site-list ul {
        display: flex;
        justify-content: center;

    }
}

.testimonial-container {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.testimonial-stars {
    color: #ffcc00;
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.testimonial-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-quote-icon {
    font-size: 6rem;
    color: #8397A2;
    font-family: serif;
    line-height: 1;
    position: absolute;
    top: -20px;
    opacity: 0.8;
}

.testimonial-quote-icon.left {
    left: -10px;
}

.testimonial-quote-icon.right {
    right: -10px;
    top: auto;
    bottom: -40px;
    transform: rotate(180deg);
}

.testimonial-body {
    font-size: 1.75rem;
    color: #a5d8eb;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
}

.testimonial-footer {
    color: #999;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .testimonial-body {
        font-size: 1.25rem;
    }

    .testimonial-quote-icon {
        font-size: 2.5rem;
    }

    .testimonial-container {
        padding: 60px 0;
    }
}

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-header h2 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.faq-section .accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px !important;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: linear-gradient(to bottom, #f9f9f9 0%, #f1f1f1 100%);
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 20px;
    box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #f1f1f1;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    font-size: 0.9rem;
    color: #666;
    padding: 20px;
    background-color: #fff;
}

.map-section-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    background-color: #e5e3df;
}

.map-iframe-container {
    width: 100%;
    height: 100%;
}

.map-info-card {
    position: absolute;
    top: 40px;
    right: 5%;
    width: 340px;
    background: #fff;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-radius: 2px;
    text-align: center;
}

.map-info-card h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: #333;
}

.map-info-card .address {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.map-info-card .phone {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
}

.map-info-card h5 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #333;
}

.map-info-card .office-hours {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: #666;
}

.map-info-card .office-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.map-info-card .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.1rem;
    color: #999;
}

.map-info-card .social-icons a {
    color: inherit;
    transition: color 0.3s;
}

.map-info-card .social-icons a:hover {
    color: var(--main);
}

@media (max-width: 991px) {
    .map-section-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .map-iframe-container {
        height: 400px;
        order: 2;
    }

    .map-info-card {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        box-shadow: none;
        order: 1;
        padding: 40px 20px;
    }
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--main);
    margin: 0 auto 30px;
    opacity: 1;
}

.btn-style-2 {
    background-color: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-style-2:hover {
    background-color: #fff !important;
    color: var(--main) !important;
}

.search-filters {
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-results-table thead th {
    font-size: 0.85rem;
    color: var(--dark-gray);
    border-bottom: 2px solid #ddd;
}

.search-results-table tbody td {
    color: var(--secondary);
}

.search-results-table img {
    border: 1px solid #ddd;
    padding: 2px;
}

.btn-sm.text-uppercase {
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }
}

.submit-btn {
    width: 164px !important;
    height: 50px !important;
}

.floorplan-card {
    border: 1px solid #eee;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.floorplan-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.bedroom-header {
    background-color: #4a5568;
    color: #fff;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.floorplan-image {
    max-width: 100%;
    height: auto;
}

.benefit-item {
    margin-bottom: 0.5rem;
}

.benefit-item i {
    color: #2d3748;
    margin-right: 0.5rem;
}

.contact-cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    color: #fff;
}

.contact-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.contact-cta-banner .container {
    position: relative;
    z-index: 1;
}

.view-toggle-btn {
    min-width: 120px;
}

.view-toggle-btn.active {
    background-color: var(--main);
    color: #fff;
    border-color: var(--main);
}

/* Lightbox Styles */
.cursor-pointer {
    cursor: pointer;
}

#bottom-caption {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}

.modal-lightbox .modal-content {
    background-color: transparent;
    border: none;
}

.modal-lightbox .modal-body {
    padding: 0;
    position: relative;
}

.modal-lightbox .btn-close-custom {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 1060;
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    opacity: 1;
    transition: transform 0.2s;
}

.modal-lightbox .btn-close-custom:hover {
    transform: scale(1.1);
}

.modal-lightbox .img-container {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--main) !important;
    color: #fff !important;
    border-color: var(--main) !important;
}

.nav-link.view-toggle-btn {
    min-width: 170px;
    min-height: 45px;
    border-radius: 4px;
}

/* Pet Friendly Page */
.pet-highlight-img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.deposit-rent-box {
    background-color: #eee;
    padding: 5px 15px;
    font-weight: bold;
    min-width: 80px;
    display: inline-block;
    text-align: center;
}

.deposit-rent-row {
    border-bottom: 1px solid #dee2e6;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deposit-rent-row:last-child {
    border-bottom: none;
}

.breadcrumb-custom {
    font-size: 0.9rem;
    color: var(--main);
    margin-bottom: 2rem;
}

.breadcrumb-custom a {
    color: var(--main);
    text-decoration: none;
}

.unit-info-card {
    background-color: #f8f9fa;
    border: none;
}

.unit-table thead th {
    background-color: #e9ecef;
    text-transform: none;
    font-weight: bold;
    padding: 1rem;
    border: none;
}

.unit-table tbody td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
}

.btn-apply-now {
    background-color: #1a4366;
    color: white;
    border: none;
    padding: 8px 25px;
    text-transform: none;
    font-weight: 500;
    width: 100%;
    margin-bottom: 5px;
}

.btn-apply-now:hover {
    background-color: #12314d;
    color: white;
}

.btn-request-info {
    background-color: white;
    border: 1px solid #1a4366;
    color: #1a4366;
    padding: 8px 25px;
    text-transform: none;
    font-weight: 500;
    width: 100%;
}

.btn-request-info:hover {
    background-color: #f8f9fa;
    color: #1a4366;
}

.review-hero {
    height: 480px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.review-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.rating-summary {
    text-align: right;
    width: 100%;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d93c02;
    line-height: 1;
}

.rating-stars {
    color: #d93c02;
    font-size: 1.25rem;
    line-height: 48px;
    margin-right: 125px;
}

@media (max-width: 767px) {
    .rating-stars {
        height: 50px;
    }
}

@media (min-width: 768px) {
    .rating-summary {
        text-align: right;
        width: 50%;
    }
}

.reviews-star-block .ratingBorder::after,
.reviews-star-block .rating::before {
    font-size: 30px !important;
}

.review-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.review-author {
    font-size: 1.25rem;
    font-weight: 600;
    color: #8397a2;
    margin-bottom: 5px;
}

.review-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-meta .review-verified {
    color: #d93c02;
}

.review-meta .google-icon {
    color: #4285F4;
    font-weight: bold;
}

.review-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.btn-leave-review {
    background-color: #1a4366;
    color: white;
    padding: 12px 40px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    margin-bottom: 40px;
}

.btn-leave-review:hover {
    background-color: #12314d;
    color: white;
}

/* Modal Styles */
.modal-leave-review .modal-header {
    background-color: #f8f9fa;
    border-bottom: none;
    padding: 20px 30px;
}

.modal-leave-review .modal-title {
    width: 100%;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.modal-leave-review .modal-body {
    padding: 30px;
}

.rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 20px;
}

.rating-select input {
    display: none;
}

.rating-select label {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='%23ddd' viewBox='0 0 16 16'%3E%3Cpath d='M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.rating-select input:checked~label,
.rating-select input:hover~label {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='%23ffcc00' viewBox='0 0 16 16'%3E%3Cpath d='M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z'/%3E%3C/svg%3E");
}

.modal-leave-review .form-control {
    border-radius: 0;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.modal-leave-review .btn-submit-review {
    background-color: #1a4366;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    font-weight: 600;
    text-transform: none;
    margin-top: 10px;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Modal Fade Effect */
.modal-leave-review.fade .modal-dialog {
    transform: scale(0.9);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-leave-review.show .modal-dialog {
    transform: scale(1);
}

.floating-book-tour {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1a4366;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.floating-book-tour:hover {
    background-color: #12314d;
    color: white;
}

.bi.bi-google {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='gray' viewBox='0 0 16 16'%3E%3Cpath d='M15.545 6.558a9.4 9.4 0 0 1 .139 1.626c0 2.434-.87 4.492-2.384 5.885h.002C11.978 15.292 10.158 16 8 16A8 8 0 1 1 8 0a7.7 7.7 0 0 1 5.352 2.082l-2.284 2.284A4.35 4.35 0 0 0 8 3.166c-2.087 0-3.86 1.408-4.492 3.304a4.8 4.8 0 0 0 0 3.063h.003c.635 1.893 2.405 3.301 4.492 3.301 1.078 0 2.004-.276 2.722-.764h-.003a3.7 3.7 0 0 0 1.599-2.431H8v-3.08z'/%3E%3C/svg%3E");
    display: inline-block;
    vertical-align: middle;
}

.bi.bi-yelp {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='gray' viewBox='0 0 16 16'%3E%3Cpath d='m4.188 10.095.736-.17.073-.02A.813.813 0 0 0 5.45 8.65a1 1 0 0 0-.3-.258 3 3 0 0 0-.428-.198l-.808-.295a76 76 0 0 0-1.364-.493C2.253 7.3 2 7.208 1.783 7.14c-.041-.013-.087-.025-.124-.038a2.1 2.1 0 0 0-.606-.116.72.72 0 0 0-.572.245 2 2 0 0 0-.105.132 1.6 1.6 0 0 0-.155.309c-.15.443-.225.908-.22 1.376.002.423.013.966.246 1.334a.8.8 0 0 0 .22.24c.166.114.333.129.507.141.26.019.513-.045.764-.103l2.447-.566zm8.219-3.911a4.2 4.2 0 0 0-.8-1.14 1.6 1.6 0 0 0-.275-.21 2 2 0 0 0-.15-.073.72.72 0 0 0-.621.031c-.142.07-.294.182-.496.37-.028.028-.063.06-.094.089-.167.156-.353.35-.574.575q-.51.516-1.01 1.042l-.598.62a3 3 0 0 0-.298.365 1 1 0 0 0-.157.364.8.8 0 0 0 .007.301q0 .007.003.013a.81.81 0 0 0 .945.616l.074-.014 3.185-.736c.251-.058.506-.112.732-.242.151-.088.295-.175.394-.35a.8.8 0 0 0 .093-.313c.05-.434-.178-.927-.36-1.308M6.706 7.523c.23-.29.23-.722.25-1.075.07-1.181.143-2.362.201-3.543.022-.448.07-.89.044-1.34-.022-.372-.025-.799-.26-1.104C6.528-.077 5.644-.033 5.04.05q-.278.038-.553.104a8 8 0 0 0-.543.149c-.58.19-1.393.537-1.53 1.204-.078.377.106.763.249 1.107.173.417.41.792.625 1.185.57 1.036 1.15 2.066 1.728 3.097.172.308.36.697.695.857q.033.015.068.025c.15.057.313.068.469.032l.028-.007a.8.8 0 0 0 .377-.226zm-.276 3.161a.74.74 0 0 0-.923-.234 1 1 0 0 0-.145.09 2 2 0 0 0-.346.354c-.026.033-.05.077-.08.104l-.512.705q-.435.591-.861 1.193c-.185.26-.346.479-.472.673l-.072.11c-.152.235-.238.406-.282.559a.7.7 0 0 0-.03.314c.013.11.05.217.108.312q.046.07.1.138a1.6 1.6 0 0 0 .257.237 4.5 4.5 0 0 0 2.196.76 1.6 1.6 0 0 0 .349-.027 2 2 0 0 0 .163-.048.8.8 0 0 0 .278-.178.7.7 0 0 0 .17-.266c.059-.147.098-.335.123-.613l.012-.13c.02-.231.03-.502.045-.821q.037-.735.06-1.469l.033-.87a2.1 2.1 0 0 0-.055-.623 1 1 0 0 0-.117-.27Zm5.783 1.362a2.2 2.2 0 0 0-.498-.378l-.112-.067c-.199-.12-.438-.246-.719-.398q-.644-.353-1.295-.695l-.767-.407c-.04-.012-.08-.04-.118-.059a2 2 0 0 0-.466-.166 1 1 0 0 0-.17-.018.74.74 0 0 0-.725.616 1 1 0 0 0 .01.293c.038.204.13.406.224.583l.41.768q.341.65.696 1.294c.152.28.28.52.398.719q.036.057.068.112c.145.239.261.39.379.497a.73.73 0 0 0 .596.201 2 2 0 0 0 .168-.029 1.6 1.6 0 0 0 .325-.129 4 4 0 0 0 .855-.64c.306-.3.577-.63.788-1.006q.045-.08.076-.165a2 2 0 0 0 .051-.161q.019-.083.029-.168a.8.8 0 0 0-.038-.327.7.7 0 0 0-.165-.27'/%3E%3C/svg%3E");
    display: inline-block;
    vertical-align: middle;
}

.bi.bi-facebook {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='gray' viewBox='0 0 16 16'%3E%3Cpath d='M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951'/%3E%3C/svg%3E");
    display: inline-block;
    vertical-align: middle;
}