.golo-add-to-wishlist .golo-loading {
    width: 25px;
    height: 25px;
}

.golo-loading {
    display: inline-block;
    width: 32px;
    height: 32px;
}

.mapboxgl-map .mapboxgl-ctrl-geocoder--icon-search {
    display: none;
}

.golo-loading:after {
    content: " ";
    display: block;
    width: 20px;
    height: 20px;
    margin: 2px;
    border-radius: 50%;
    border: 2px solid #23d3d3;
    border-color: #23d3d3 transparent #23d3d3 transparent;
    animation: golo-loading 1.2s linear infinite;
}

@keyframes golo-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#menu_place .child_menu i.fa {
    font-size: 14px;
}

/**
 * ajax search
 */
.site-banner .site-banner__content {
    z-index: 1;
}

/*.site-banner {*/
/*background-image: url('../images/top-banner.png')*/
/*}*/

/* Newsletter Modal Styles */
.newsletter-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

.newsletter-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.newsletter-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px 12px 0 0;
    text-align: center;
    position: relative;
}

.newsletter-modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-modal-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.newsletter-modal-body {
    padding: 30px;
}

.newsletter-form-group {
    margin-bottom: 20px;
}

.newsletter-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.newsletter-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.newsletter-form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.newsletter-form-group input.error {
    border-color: #e74c3c;
}

.newsletter-form-group .error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.newsletter-form-group .error-message.show {
    display: block;
}

.newsletter-modal-footer {
    padding: 0 30px 30px;
    display: flex;
    gap: 12px;
}

.newsletter-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.newsletter-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.newsletter-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.newsletter-btn-secondary {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.newsletter-btn-secondary:hover {
    background-color: #e9ecef;
    color: #495057;
}

.newsletter-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.newsletter-close:hover {
    opacity: 1;
}

.newsletter-success {
    text-align: center;
    padding: 40px 30px;
}

.newsletter-success-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
}

.newsletter-success h4 {
    color: #28a745;
    margin-bottom: 10px;
    font-size: 20px;
}

.newsletter-success p {
    color: #6c757d;
    margin: 0;
}

.newsletter-loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.newsletter-loading.show {
    display: block;
}

.newsletter-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-modal-content {
        width: 95%;
        margin: 20px;
    }

    .newsletter-modal-header {
        padding: 20px;
    }

    .newsletter-modal-header h3 {
        font-size: 20px;
    }

    .newsletter-modal-body {
        padding: 20px;
    }

    .newsletter-modal-footer {
        padding: 0 20px 20px;
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* Comments System Styles */
.comments-section {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
}

.comments-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.comments-list {
    margin-bottom: 40px;
}

.comment-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #23d3d3;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.comment-author {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.comment-author a {
    color: #23d3d3;
    text-decoration: none;
}

.comment-author a:hover {
    text-decoration: underline;
}

.comment-date {
    font-size: 14px;
    color: #666;
}

.comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.no-comments {
    text-align: center;
    color: #666;
    font-style: italic;
    margin: 20px 0;
}

.be-first-comment {
    text-align: center;
    color: #23d3d3;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Comment Form Styles */
.comment-form-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.comment-form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.comment-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.comment-form .form-control:focus {
    outline: none;
    border-color: #23d3d3;
    box-shadow: 0 0 0 2px rgba(35, 211, 211, 0.2);
}

.comment-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.comment-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.comment-form .form-check-input {
    margin-top: 4px;
}

.comment-form .form-check-label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.btn-comment-submit {
    background-color: #23d3d3;
    border-color: #23d3d3;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-comment-submit:hover {
    background-color: #1fb8b8;
    border-color: #1fb8b8;
    transform: translateY(-1px);
}

.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
}

.alert-danger strong {
    color: #721c24;
    font-weight: 600;
}

.alert-danger ul {
    margin-top: 10px;
}

.alert-danger li {
    margin-bottom: 5px;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
    color: #dc3545;
}

.is-invalid {
    border-color: #dc3545;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comment-form-section {
        padding: 20px;
        margin: 30px 0;
    }

    .comment-item {
        padding: 15px;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .comment-form-title,
    .comments-title {
        font-size: 20px;
    }
}

/* Modal Styles */
.modal {
    z-index: 1050;
}

.modal-dialog {
    margin: 1.75rem auto;
}

.modal-content {
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background-color: #dc3545;
    color: white;
    border-radius: 8px 8px 0 0;
    border-bottom: none;
}

.modal-header .close {
    color: white;
    opacity: 0.8;
}

.modal-header .close:hover {
    opacity: 1;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 15px 20px;
}

/* Success Modal Styles */
#successModal .modal-header {
    background-color: #28a745 !important;
    border-radius: 8px 8px 0 0;
}

#successModal .modal-header .close {
    color: white;
    opacity: 0.8;
}

#successModal .modal-header .close:hover {
    opacity: 1;
}

#successModal .alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 0;
    border-left: 4px solid #28a745;
}

#successModal .alert-success strong {
    color: #155724;
    font-weight: 600;
}

/* Character Counter */
.form-text {
    font-size: 12px;
    margin-top: 5px;
}

/* Form Validation States */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Button Loading State */
.btn-comment-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/*.banner-apps {*/
/*background-image: url('../images/banner-apps.jpg');*/
/*}*/

.site-header .golo-ajax-search .search-result {
    font-weight: normal;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.site-header .golo-ajax-search .search-result ul {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    max-height: 298px;
}

.golo-ajax-search .search-result {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 2;
    margin-top: 5px;
    border-radius: 20px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;
    font-weight: 500;
}

.golo-ajax-search .search-result ul {
    list-style-type: none;
    padding: 10px 0;
    max-height: 370px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.golo-ajax-search .search-result ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f9f9f9;
    padding: 10px 20px;
}

.golo-ajax-search .search-result ul li a:last-child {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.golo-ajax-search .search-result ul li a i {
    position: relative;
    top: -2px;
    margin-right: 5px;
}

.golo-ajax-search .golo-ajax-result {
    padding: 10px 20px;
}

.golo-ajax-search .golo-loading-effect {
    opacity: 0;
    visibility: hidden;
    left: inherit;
    /*right: 20px;*/
}

.golo-loading-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.golo-ajax-search .golo-loading-effect .golo-loading {
    width: 28px;
    height: 28px;
}

.golo-ajax-search .golo-loading-effect .golo-loading:after {
    width: 24px;
    height: 24px;
    border-width: 2px;
}

/**
 * Filter in city detail
 */
.golo-menu-filter {
    padding: 30px 30px;
    background-color: #f9f9f9;
    margin-bottom: 40px;
    display: none;
}

.golo-menu-filter ul.filter-control {
    max-height: 170px;
    overflow: auto;
}

.golo-menu-filter h4 {
    font-weight: 500;
    margin-bottom: 15px;
}

.golo-menu-filter ul.filter-control li {
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
}

.golo-menu-filter ul.filter-control a {
    position: inherit;
    color: #5d5d5d;
}

.golo-menu-filter ul.filter-control a:before {
    content: "";
    position: absolute;
    height: 5px;
    background: #23d3d3;
    opacity: 0.4;
    width: 100%;
    left: 0;
    bottom: 2px;
    -webkit-transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
    -moz-transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
    -o-transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
    transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -o-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.golo-menu-filter ul.filter-control li.active a:before {
    background: #23d3d3;
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}

.golo-menu-filter ul.filter-control a:before,
.golo-menu-filter ul.filter-control li.active a:before,
.woocommerce nav.woocommerce-pagination ul li .page-numbers.current,
.posts-pagination ul li .page-numbers.current,
.woocommerce span.onsale {
    background: #d22b22;
}

.golo-menu-filter ul.filter-control li.active a:after {
    content: "";
    background-image: url(/assets/images/icon-close.svg);
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: center;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 4px;
    right: -15px;
}

.golo-clear-filter {
    margin-right: 20px;
    display: none;
}

.golo-nav-filter.active .golo-clear-filter {
    display: inline-block;
}

.golo-filter-toggle,
.golo-clear-filter {
    cursor: pointer;
    font-weight: 500;
}

/**
 * Custom scroll bar
 */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #a7a7a7;
    border-radius: 5px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    border-radius: 5px;
}

/* image size post home */
.post.hover__box img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.la-24 {
    font-size: 24px !important;
}

.la-12 {
    font-size: 12px !important;
}

.la-black {
    color: #5d5d5d;
}

.place-item__addwishlist i {
    border-radius: 50%;
    background: #fff;
    padding: 4px;
}

.place-item__addwishlist.active i {
    color: #23d3d3;
}

.maps-button .field-select i {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    right: 15px;
}

.field-select i {
    position: absolute;
    bottom: 13px;
    right: 0;
    z-index: 1;
}

.field-select .sl-icon i {
    position: static;
}

.maps-button a i {
    display: inline-block;
    vertical-align: -4px;
}

.place-04 .place-share {
    display: flex;
}

.place-share a i {
    vertical-align: -3px;
    display: inline-block;
}

.place-04 .place-share i {
    margin-right: 2px;
    margin-left: 2px;
}

.place-04 .place-share a {
    background-color: #fff;
    padding: 0 9px;
    transition: all 0.3s;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.place-share a {
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
}

.place-04 .place-gallery i {
    vertical-align: -3px;
    display: inline-block;
    margin-right: 3px;
}

.place__contact li i {
    position: absolute;
    top: 2px;
    left: 0;
    width: 14px;
    text-align: center;
}

.place-slider__item:after {
    content: "";
    opacity: 0.4;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
    position: absolute;
    /*top: 0;*/
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    height: 50%;
}

.post__info .post__title {
    opacity: unset;
    font-size: 18px;
}

.places-item .place-item__addwishlist {
    opacity: unset;
}

.cities__thumb img {
    height: 370px;
    object-fit: cover;
    width: 100%;
}

.title {
    font-size: 24px;
    margin-bottom: 30px;
}

.city-content__tabtitle__tablist li a {
    font-size: 15px;
}

.right-header__button i {
    vertical-align: -3px;
}

.slick-nav > div {
    opacity: unset;
    line-height: 59px;
}

.field-check label {
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
}

.golo-filter-toggle.active {
    color: #23d3d3;
}

.places-item .place-item__addwishlist i {
    color: #2d2d2d;
}

.slick-slider .slick-track {
    margin-left: inherit;
    margin-right: inherit;
}

.places-item .places-item__thumb img {
    width: 100%;
}

.cities__item {
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.post__thumb {
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.places-item {
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.cities__item:focus,
.post__thumb:focus,
.places-item:focus {
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.place-04 .place__box-overview .place__desc {
    height: 83px;
    /*max-height: 137px;*/
}

.shop-details__quantity span i {
    bottom: inherit;
    position: static;
}

.field-sub .shop-details__quantity span.minus {
    left: 0;
    right: inherit;
}

.field-sub .shop-details__quantity span.plus {
    left: inherit;
    right: 0;
}

.widget-shadow .btn {
    width: 100%;
}

.place-04 .place-share a:hover {
    background: #fff;
    color: #2d2d2d;
    border-color: #fff;
}

.place-04 .place-share a.active {
    background: #23d3d3;
    color: #fff;
    border-color: #23d3d3;
}

.social-share {
    position: absolute;
    right: 0;
    top: 100%;
}

.list-social-icon a {
    display: block;
    color: #fff;
    width: 48px;
    height: 48px;
    text-align: center;
    vertical-align: middle;
    border: 0;
    margin: 0;
}

.list-social-icon a + a {
    margin-top: 5px;
}

.list-social-icon a i {
    position: relative;
    top: -1px;
    font-size: 18px;
}

.list-social-icon a.facebook {
    background: #3b5998;
}

.list-social-icon a.twitter {
    background: #00c3f3;
}

.list-social-icon a.linkedin {
    background: #0067b1;
}

.list-social-icon a.pinterest {
    background: #dc0000;
}

.place-share a {
    margin-right: 0;
}

.place-share > a + a {
    margin-left: 8px;
}

.place-04 .social-share {
    display: none;
    margin-top: 10px;
}

/*.place-04 .place-share a, .place-04 .place-gallery a {*/
/*box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);*/
/*}*/

.site__search__form {
    padding-bottom: 0;
}

.site__search__form .site__search__input {
    margin-left: 35px;
    height: 35px;
}

.site__search__icon {
    top: 5px;
}

.site-header .right-header > div {
    margin-right: 0;
}

.site-header .right-header > div + div {
    margin-left: 25px;
}

.popup .popup__close {
    top: 30px;
}

.place__amenities img {
    width: auto;
    height: 36px;
    object-fit: cover;
}

.member-place-list td.Active {
    color: #28a745;
}

.member-place-list td.Pending {
    color: #ffc107;
}

.city-content__tabtitle__button.btn {
    display: flex;
    align-items: center;
}

.city-content__tabtitle__button.btn i {
    margin-right: 8px;
}

.intro__meta .col-item:first-child .intro__meta__item {
    border-left: 0;
}

.right-header__destinations ul li a {
    padding: 10px 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 23px;
}

.popup__user.logged-in {
    display: flex;
    align-items: center;
}

.popup__user.logged-in .inner-detail {
    display: flex;
    align-items: center;
}

.popup__user.logged-in .inner-detail .entry-ava {
    width: 35px;
    height: 35px;
    border-radius: 30px;
    overflow: hidden;
}

.popup__user.logged-in .inner-detail .entry-name {
    padding-left: 10px;
}

.popup__user.logged-in .logout {
    margin-left: 10px;
}

.popup .account {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.popup .account .account-sub {
    position: static;
    box-shadow: none;
    border: 0;
    width: 100%;
}

.popup .account-sub li:last-child {
    border: 0;
    padding-top: 0;
    margin-top: 0;
}

.popup .account span {
    display: inline-block;
}

.accordion a:after {
    content: "\f067";
    font-weight: 900;
    font-family: "Line Awesome Free";
}

.accordion li.open a:after {
    content: "\f068";
    font-weight: 900;
    font-family: "Line Awesome Free";
}

.city-slider .slick-nav i {
    vertical-align: 0;
}

.golo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

.golo-grid .grid-item {
    padding: 0;
    max-width: 100%;
}

.golo-grid .grid-item .places-item {
    margin-bottom: 0;
}

.search-wrap h2 {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 24px;
}

.maps-wrap {
    display: none;
}

#golo-place-map {
    width: 100%;
    height: 300px;
}

#review_error {
    display: none;
}

.alert_booking {
    margin-top: 20px;
    display: none;
}

.icon-loader {
    display: none;
}

/**
 * Google map
 * Page add new place
 */
#map {
    width: 100%;
    height: 300px;
}

/**
 * Gallery preview
 * Page add new place
 */
.media-thumb-wrap {
    padding-left: 0;
    padding-right: 0;
    margin-right: 20px;
    display: inline-block;
}

.media-thumb {
    position: relative;
    height: 100%;
}

.media-thumb img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.media-item-actions {
    position: absolute;
    padding: 5px;
    background: #fff;
    top: 0;
    right: 0;
    z-index: 2;
}

.media-item-actions a {
    line-height: 0;
    display: block;
}

.golo-d-none {
    display: none;
}

.golo-add-to-wishlist.active i {
    color: #23d3d3;
}

.place-item.layout-02 .place-thumb img {
    height: 190px;
}

.site__search.layout-02 .site-banner__search.layout-02 {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}

.place-item.layout-02 .entry-category {
    line-height: 30px;
}

@media only screen and (max-width: 1199px) {
    .cities__thumb img {
        height: 250px;
        object-fit: cover;
    }
}

@media only screen and (max-width: 991px) {
    .site__search .site__search__field input {
        height: 35px;
        line-height: 35px;
    }

    .site__search {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .golo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .site-header .right-header .account {
        display: none;
    }

    .place__amenities img {
        width: 35px;
        height: 35px;
    }
}

@media only screen and (max-width: 575px) {
    .place-04 .place-gallery a {
        display: none;
    }

    .intro__meta .intro__meta__item {
        text-align: left;
    }

    .btn-mapsview {
        font-size: 0;
    }

    .btn-mapsview i {
        font-size: 18px;
    }

    .city-content__tabtitle__button.btn i {
        margin-right: 0;
        vertical-align: -10px;
    }

    .city-content__tabtitle__button.btn {
        display: inline-block;
        text-align: center;
        padding: 0;
        width: 45px;
        flex: 0 0 45px;
        height: 45px;
        border-radius: 30px;
    }

    .maps-button {
        left: 25px;
    }

    .golo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sidebar {
    margin-bottom: 40px;
}

.sidebar.fixed {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
}

@media only screen and (max-width: 374px) {
    .golo-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.menu-tab ul {
    margin-bottom: 20px;
}
.menu-tab li {
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}
.menu-tab li a {
    color: #5d5d5d;
    text-transform: uppercase;
    position: relative;
    display: block;
}
.menu-tab li a:after {
    content: "";
    width: 100%;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #2d2d2d;
    display: block;
    position: absolute;
    display: none;
}
.menu-tab li.active a {
    color: #2d2d2d;
}
.menu-tab li.active a:after {
    display: block;
}
.menu-tab li:hover a {
    color: #2d2d2d;
}
.menu-tab li:last-child {
    margin-right: 0;
}
.menu-tab .flex {
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    max-height: 350px;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.3s;
}
.menu-tab .flex:after {
    content: "";
    position: absolute;
    object-fit: contain;
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), #fff);
    background-image: -o-linear-gradient(rgba(255, 255, 255, 0), #fff);
    background-image: linear-gradient(rgba(255, 255, 255, 0), #fff);
    height: 53px;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
}
.menu-tab .flex.open {
    height: 100%;
    max-height: 100%;
}
.menu-tab .flex.open:after {
    content: "";
    display: none;
}
.menu-wrap {
    display: none;
}
.menu-wrap > a {
    color: #23d3d3;
}
.menu-wrap.active {
    display: block;
}
.menu-item {
    width: 50%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}
.menu-item img {
    width: 70px;
}
.menu-item .menu-info {
    width: calc(100% - 70px);
    padding-right: 35px;
    margin-left: 15px;
    position: relative;
}
.menu-item .menu-info h4 {
    color: #5d5d5d;
}
.menu-item .menu-info p {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.menu-item .price {
    position: absolute;
    top: -2px;
    right: 7px;
    color: #5d5d5d;
}
.menu-item:nth-last-child(1),
.menu-item:nth-last-child(2) {
    margin-bottom: 0;
}

/* newsletter pop-up */

#list-builder {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    filter: alpha(opacity=80);
    opacity: 0.8;
    display: none;
}

#popup-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #23d3d3;
    color: #ffffff;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    border: 10px solid #ffffff;
    display: none;
}

#popup-close {
    position: absolute;
    top: -25px;
    right: -25px;
    cursor: pointer;
    width: 40px;
}

#popup-box h1 {
    margin: 0;
}

#popup-box form {
    margin-bottom: 0px;
}

#popup-box input {
    padding: 10px;
    border: 1px solid #333;
    width: 40%;
}

#popup-box button {
    padding: 10px;
    border: 1px solid #333;
}

.places-link {
    text-align: center;
    padding-top: 10px;
}

.open-signup.underline {
    text-decoration: underline;
}

.registry-message {
    padding-bottom: 10px;
}

.registry-message .message-title {
    font-size: 26px;
}

.registry-message .message-subtitle {
    font-size: 24px;
}

div.blog-content .entry-desc a {
    text-decoration: underline;
}

div.ads-block {
    margin: 5px 0 5px 0;
}

.close-newsletter-dialog:hover {
    color: #fff;
}

a.underline {
    text-decoration: underline;
}

ul.no-bullet {
    list-style-type: none;
}

div.avatar {
    width: 50px;
    border-radius: 50%;
}

img.ava {
    width: 100%;
    border-radius: 50%;
}

.place .place__box h2 {
    padding-bottom: 7px;
}

.place .place__box h3 {
    padding-top: 15px;
    padding-bottom: 5px;
    margin-bottom: 0px;
}

.place .place__left li.country {
    color: white;
}

/* Review photos indicator */
.review-photos-indicator {
    display: inline-block;
    margin-left: 8px;
    color: #23d3d3;
    font-size: 14px;
}

.review-photos-indicator i {
    margin-right: 2px;
}

/* Review comment styling */
.review-comment {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.review-comment p {
    margin: 0;
    font-style: italic;
}

/* Place Embeds Styles */
.place__embeds {
    margin-top: 20px;
}

.place__embed-item {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.place__embed-item:hover {
    border-color: #23d3d3;
    box-shadow: 0 4px 12px rgba(35, 211, 211, 0.1);
}

.place__embed-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.place__embed-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.place__embed-content {
    margin-bottom: 15px;
}

.place__embed-content iframe {
    max-width: 100%;
    border-radius: 4px;
}

.place__embed-content .tiktok-embed {
    max-width: 100% !important;
}

.place__embed-content .fb-post {
    max-width: 100% !important;
}

.place__embed-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
}

.place__embed-type {
    background-color: #23d3d3;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
}

.place__embed-link {
    color: #23d3d3;
    text-decoration: none;
    font-weight: 500;
}

.place__embed-link:hover {
    text-decoration: underline;
}

/* Lists inside embed items - respect parent padding */
.place__embed-item ol,
.place__embed-item ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.place__embed-item ol li,
.place__embed-item ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.place__embed-item ol li:last-child,
.place__embed-item ul li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for embeds */
@media only screen and (max-width: 767px) {
    .place__embed-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .place__embed-item ol,
    .place__embed-item ul {
        padding-left: 15px;
    }

    .place__embed-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .place__embed-content iframe {
        width: 100%;
        height: auto;
        min-height: 200px;
    }
}

/* Table of Contents Styles */
.table-of-contents {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.table-of-contents .toc-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #23d3d3;
}

.table-of-contents .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents .toc-list li {
    margin-bottom: 8px;
}

.table-of-contents .toc-list li:last-child {
    margin-bottom: 0;
}

.table-of-contents .toc-link {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    display: block;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
}

.table-of-contents .toc-link:before {
    content: "•";
    color: #23d3d3;
    font-weight: bold;
    position: absolute;
    left: 10px;
    top: 8px;
}

.table-of-contents .toc-link:hover {
    background-color: #23d3d3;
    color: white;
    transform: translateX(5px);
}

.table-of-contents .toc-link:hover:before {
    color: white;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments for table of contents */
@media only screen and (max-width: 767px) {
    .table-of-contents {
        padding: 15px;
        margin-bottom: 20px;
    }

    .table-of-contents .toc-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .table-of-contents .toc-link {
        font-size: 13px;
        padding: 6px 10px;
        padding-left: 20px;
    }

    .table-of-contents .toc-link:before {
        left: 8px;
        top: 6px;
    }
}

/* social-media-strip */
.social-media-strip {
    background: #23d3d3;
    color: white;
    padding: 8px 0;
    width: 100%;
    position: relative;
    z-index: 9999;
    border-top: 1px solid #007bff;
    border-bottom: 1px solid #007bff;
}

/* Mobile header overlap fix */
@media only screen and (max-width: 767px) {
    .site-main.home-main {
        padding-top: 160px; /* Increased from 120px to account for social media strip */
    }

    .site-main:not(.home-main) {
        padding-top: 40px; /* Add some top padding for non-home pages on mobile */
    }

    .site-header {
        position: relative;
        z-index: 111;
    }

    .site-header.home-header {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
    }
}

.social-media-strip .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.social-media-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.social-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
}

/* Brand specific hover colors */
.social-link.tiktok:hover {
    background: #000000;
}

.social-link.instagram:hover {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.social-link.youtube:hover {
    background: #ff0000;
}

.social-link.whatsapp:hover {
    background: #25d366;
}

@media (max-width: 768px) {
    .social-media-strip {
        padding: 6px 0;
    }

    .social-media-content {
        gap: 15px;
    }

    .social-text {
        font-size: 12px;
    }

    .social-link {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .social-icons {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .social-media-content {
        flex-direction: column;
        gap: 8px;
    }

    .social-text {
        font-size: 11px;
    }

    .social-link {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .social-icons {
        gap: 10px;
    }
}

/* Slick Slider - Show full images without cropping */
.slick-sliders img {
    height: auto !important;
    object-fit: contain !important;
    width: 100%;
    max-height: 500px;
}

.slick-slider img {
    height: auto !important;
    object-fit: contain !important;
    max-height: 500px;
}

/* Ensure place slider items maintain aspect ratio */
.place-slider__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.place-slider__item img {
    max-width: 100%;
    height: auto !important;
    object-fit: contain !important;
}

/* PhotoSwipe-style Navigation Buttons - Always Visible */
.slick-sliders .slick-prev,
.slick-sliders .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
}

.slick-sliders .slick-prev:hover,
.slick-sliders .slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.slick-sliders .slick-prev {
    left: 20px;
}

.slick-sliders .slick-next {
    right: 20px;
}

/* PhotoSwipe-style arrows using CSS */
.slick-sliders .slick-prev:before,
.slick-sliders .slick-next:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-top: 2px solid white;
    border-right: 2px solid white;
}

.slick-sliders .slick-prev:before {
    transform: translate(-25%, -50%) rotate(-135deg);
}

.slick-sliders .slick-next:before {
    transform: translate(-75%, -50%) rotate(45deg);
}

/* Alternative triangular arrows as fallback */
.slick-sliders .slick-prev:after,
.slick-sliders .slick-next:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 2;
    opacity: 0; /* Hidden by default, only show if needed */
}

.slick-sliders .slick-prev:after {
    border-left: 6px solid transparent;
    border-right: 10px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: -2px;
}

.slick-sliders .slick-next:after {
    border-left: 10px solid white;
    border-right: 6px solid transparent;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 2px;
}

/* Hide arrows when only one image */
.slick-sliders .slick-slider[data-item="1"] .slick-prev,
.slick-sliders .slick-slider[data-item="1"] .slick-next {
    display: none !important;
}

/* Responsive arrows */
@media (max-width: 768px) {
    .slick-sliders .slick-prev,
    .slick-sliders .slick-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slick-sliders .slick-prev {
        left: 10px;
    }

    .slick-sliders .slick-next {
        right: 10px;
    }
}

.attraction-slider__item {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
}

.nearest-attractions-map-container {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.nearest-map-header i {
    color: #007bff;
    margin-right: 8px;
}

.nearest-map-popup {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

.nearest-map-popup .btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}

.nearest-map-popup .btn:hover {
    background: #0056b3;
    text-decoration: none;
    color: white;
    transform: translateY(-1px);
}

/* Custom marker styles */
.main-place-marker,
.nearest-place-marker {
    background: transparent !important;
    border: none !important;
}

.main-place-marker div,
.nearest-place-marker div {
    position: relative;
    transform: translate(-50%, -50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #nearest-attractions-map {
        height: 280px !important;
    }

    .nearest-attractions-map-container {
        padding: 15px;
        margin-bottom: 20px !important;
    }

    .nearest-map-popup {
        min-width: 180px !important;
    }
}

@media (max-width: 480px) {
    #nearest-attractions-map {
        height: 250px !important;
    }

    .nearest-map-header h5 {
        font-size: 14px !important;
    }

    .nearest-map-header p {
        font-size: 12px !important;
    }
}

/* Google Reviews Section Styles */
.google-reviews-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.google-reviews-section h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #23d3d3;
}

/* Google Rating Display */
.google-rating .rating-display {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-rating .rating-number {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.google-rating .stars-container {
    display: flex;
    gap: 2px;
}

.google-rating .stars-container i {
    font-size: 20px;
    color: #ddd;
    transition: color 0.2s ease;
}

.google-rating .stars-container .star-filled {
    color: #ffc107 !important;
}

.google-rating .stars-container .star-half {
    color: #ffc107 !important;
}

.google-rating .rating-source {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Most Mentioned Words */
.most-mentions .mentions-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.most-mentions .mentions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.most-mentions .mention-tag {
    background: #23d3d3;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #23d3d3;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(35, 211, 211, 0.2);
}

.most-mentions .mention-tag:hover {
    background: #1bb3b3;
    border-color: #1bb3b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(35, 211, 211, 0.4);
}

/* Visitor Reviews */
.visitor-reviews .reviews-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.visitor-reviews .reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.visitor-reviews .review-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.visitor-reviews .review-item:hover {
    border-color: #23d3d3;
    box-shadow: 0 4px 12px rgba(35, 211, 211, 0.15);
    transform: translateY(-1px);
}

.visitor-reviews .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f8f9fa;
}

.visitor-reviews .review-author {
    color: #23d3d3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.visitor-reviews .review-author:hover {
    color: #1bb3b3;
    text-decoration: underline;
}

.visitor-reviews .review-time {
    color: #666;
    font-size: 12px;
    font-style: italic;
}

.visitor-reviews .review-text {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Leave Review Button */
.leave-review-section {
    text-align: right;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.leave-review-btn {
    background: #23d3d3;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.2;
}

.leave-review-btn:hover {
    background: #1bb3b3;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(35, 211, 211, 0.3);
}

/* Responsive adjustments for Google Reviews */
@media only screen and (max-width: 767px) {
    .google-reviews-section {
        padding: 20px;
        margin-bottom: 25px;
    }

    .google-reviews-section h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .google-rating .rating-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }

    .google-rating .rating-number {
        font-size: 24px;
    }

    .google-rating .stars-container i {
        font-size: 18px;
    }

    .most-mentions .mentions-tags {
        gap: 6px;
    }

    .most-mentions .mention-tag {
        font-size: 12px;
        padding: 5px 10px;
    }

    .visitor-reviews .reviews-list {
        gap: 12px;
    }

    .visitor-reviews .review-item {
        padding: 12px;
    }

    .visitor-reviews .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .visitor-reviews .review-author {
        font-size: 13px;
    }

    .visitor-reviews .review-text {
        font-size: 13px;
    }

    .leave-review-section {
        text-align: center;
        margin-top: 15px;
    }

    .leave-review-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .google-reviews-section {
        padding: 15px;
    }

    .google-rating .rating-display {
        padding: 12px;
    }

    .google-rating .rating-number {
        font-size: 22px;
    }

    .google-rating .stars-container i {
        font-size: 16px;
    }

    .most-mentions .mention-tag {
        font-size: 11px;
        padding: 4px 8px;
    }

    .visitor-reviews .review-author {
        font-size: 12px;
    }
}

/* Linkline Shortcode Styles */
.linkline-wrapper {
    margin: 15px 0;
    padding: 0;
}

.shortcode-linkline {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-sizing: border-box;
}

/* Default styling */
.shortcode-linkline:not(.primary):not(.secondary):not(.success):not(
        .danger
    ):not(.warning):not(.info) {
    background-color: #f8f9fa;
    color: #333;
    border-color: #dee2e6;
}

.shortcode-linkline:not(.primary):not(.secondary):not(.success):not(
        .danger
    ):not(.warning):not(.info):hover {
    background-color: #e9ecef;
    color: #333;
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Primary (blue) */
.shortcode-linkline.primary {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.shortcode-linkline.primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

/* Secondary (gray) */
.shortcode-linkline.secondary {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
}

.shortcode-linkline.secondary:hover {
    background-color: #545b62;
    border-color: #545b62;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

/* Success (green) */
.shortcode-linkline.success {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.shortcode-linkline.success:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

/* Danger (red) */
.shortcode-linkline.danger {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.shortcode-linkline.danger:hover {
    background-color: #c82333;
    border-color: #c82333;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* Warning (yellow) */
.shortcode-linkline.warning {
    background-color: #ffc107;
    color: #212529;
    border-color: #ffc107;
}

.shortcode-linkline.warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #212529;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

/* Info (light blue) */
.shortcode-linkline.info {
    background-color: #17a2b8;
    color: white;
    border-color: #17a2b8;
}

.shortcode-linkline.info:hover {
    background-color: #138496;
    border-color: #138496;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(23, 162, 184, 0.3);
}

/* Responsive adjustments */
@media only screen and (max-width: 767px) {
    .shortcode-linkline {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .shortcode-linkline {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* Countries and Cities Explore Section */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.country-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.country-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #23d3d3;
}

.country-flag {
    width: 24px;
    height: 18px;
    margin-right: 10px;
    border-radius: 2px;
    object-fit: cover;
}

.country-name {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.city-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.city-link:hover {
    color: #23d3d3;
    text-decoration: none;
}

.city-separator {
    color: #999;
    font-size: 12px;
    margin: 0 3px;
}

@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .country-card {
        padding: 15px;
    }

    .country-name {
        font-size: 16px;
    }

    .city-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cities-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .city-separator {
        display: none;
    }
}
