:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --dark-color: #2C3E50;
    --light-bg: #F8F9FA;
}

/* About Page Breadcrumb */
.breadcrumb_bg_about {
    background-image: url('../img/breadcrumb.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.breadcrumb_bg_about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 1;
}

.breadcrumb_bg_about .container {
    position: relative;
    z-index: 2;
}

/* Site Logo */
.site-logo {
    display: flex !important;
    align-items: center;
    gap: 0;
    text-decoration: none !important;
    padding: 0 !important;
}

.site-logo .logo-villas {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.site-logo .logo-stay {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-color);
    margin-left: 2px;
}

.site-logo:hover {
    text-decoration: none !important;
}

.site-logo:hover .logo-villas,
.site-logo:hover .logo-stay {
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .site-logo .logo-villas,
    .site-logo .logo-stay {
        font-size: 22px;
    }
}

body {
    padding-top: 130px;
}

/* Card base styles */
.top_place .single_place {
    position: relative !important;
    z-index: 1 !important;
    margin-bottom: 30px !important;
    background: #fff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.top_place .single_place::after {
    display: none !important;
}

.top_place .single_place .hover_Text {
    display: none !important;
}

/* Cool hover effect */
.top_place .single_place:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12) !important;
}

.top_place .single_place:hover .place_img img {
    transform: scale(1.1) !important;
    transition: transform 0.5s ease !important;
}

/* Ensure images are visible */
.top_place .single_place .place_img {
    position: relative !important;
    z-index: 1 !important;
    background: #f0f0f0 !important;
}

.top_place .single_place .place_img img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
    position: relative !important;
}

.single_place {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.single_place:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.single_place .place_img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.single_place .place_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.single_place .place_content {
    padding: 20px;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.single_place .place_content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1.3;
    margin-top: 0;
}

.single_place .property-details-row {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}

.single_place .property-details-row span {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.single_place .property-details-row i {
    font-size: 13px;
    color: var(--primary-color);
}

/* Location Badge on Image */
.single_place .place_img {
    position: relative;
}

/* Price Card Style */
.single_place .price-card {
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.single_place .price-card small {
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.single_place .place_img .location-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
}

.single_place .place_img .location-badge i {
    color: var(--primary-color);
    font-size: 11px;
}
    margin-top: 0;
}

.single_place .place_content p {
    margin-bottom: 0;
}

.single_place .place_content .price_review {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.single_place .place_content .price_review .price {
    margin: 0;
}

.single_place .place_content .price_review .btn_1 {
    margin: 0;
}

.single_place .place_content .price_review .price {
    margin: 0;
    flex-shrink: 0;
}

.single_place .place_content .price_review .btn_1 {
    position: relative;
    z-index: 100;
    pointer-events: auto;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 20px;
    font-size: 13px;
}

.btn_1 {
    position: relative;
    z-index: 1000 !important;
    pointer-events: auto !important;
    cursor: pointer;
}

.single_place .place_content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.single_place .place_content .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.booking_part .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.booking_part .form_colum {
    flex: 1;
    min-width: 120px;
}

.booking_part .form_colum .form-control,
.booking_part .form_colum .gj-textbox-md,
.booking_part .form_colum .nc_select,
.booking_part .form_colum .nice-select {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    background: #fff;
    color: #333;
    font-size: 14px;
}

.booking_part .form_colum input::placeholder {
    color: #999;
}

.booking_part .form_colum input[type="date"] {
    width: 100%;
    height: 50px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
    background: #fff !important;
    color: #333 !important;
    font-size: 14px !important;
    line-height: 1.5;
}

.booking_part .form_colum input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

.booking_part .form_colum input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}
    width: 100%;
}

.booking_part .form_colum .gj-datepicker .gj-textbox-md {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 15px;
    height: 50px;
}

.property-tag-large {
    background: var(--light-bg);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
}

.booking_form_card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.booking_form_card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-display span {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.booking_form_card .form-group {
    margin-bottom: 15px;
}

.booking_form_card label {
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.booking_form_card .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    height: auto;
}

.booking_form_card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.booking_form_card .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.booking_form_card .form-row > .form-group {
    padding-left: 5px;
    padding-right: 5px;
}

@media (max-width: 576px) {
    .booking_form_card .form-row > .form-group {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
    .booking_form_card .form-row {
        display: flex !important;
    }
    .booking_form_card .form-row .form-group {
        float: left;
        width: 50%;
        padding: 0 5px;
        box-sizing: border-box;
    }
    .booking_form_card .form-row .form-group label {
        display: block;
    }
    .booking_form_card .form-row .form-group .form-control {
        width: 100%;
    }
}

.btn_1 {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn_1:hover {
    background: #e55a5a;
    color: #fff;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

.filter-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.filter-info .badge {
    margin-right: 5px;
    padding: 5px 10px;
}

.badge-primary {
    background: var(--primary-color);
}

.badge-info {
    background: var(--secondary-color);
}

.badge-success {
    background: #28a745;
}

.alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-danger {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.description_text {
    line-height: 1.8;
    color: #555;
}

.description_text .description-short {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    font-size: 14px;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.description-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.description-modal-content {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.description-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.description-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.description-modal-close {
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.description-modal-close:hover {
    color: #333;
}

.description-modal-body {
    padding: 25px;
    overflow-y: auto;
    line-height: 1.8;
    color: #555;
}

.description-modal-body p {
    margin: 0;
}

.amenities_list ul {
    list-style: none;
    padding: 0;
}

.amenities_list ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.amenities_list ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.property-features {
    display: flex;
    gap: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.property-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.property-features .feature-item i {
    color: var(--primary-color);
    font-size: 28px;
}

.property-features .feature-item span {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 576px) {
    .property-features {
        gap: 15px;
        padding: 15px;
        justify-content: space-between;
    }
    
    .property-features .feature-item {
        min-width: 45%;
        gap: 8px;
    }
    
    .property-features .feature-item i {
        font-size: 22px;
    }
    
    .property-features .feature-item span {
        font-size: 14px;
    }
}

.location_map {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.location_map i {
    color: var(--primary-color);
    margin-right: 8px;
}

.location_map .map-container {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.location_map .map-container iframe {
    display: block;
}

/* View More Button */
.view-more-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin-top: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-more-btn:hover {
    background: #e55a5a;
}

/* Facilities Modal */
.facilities-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.facilities-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.facilities-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.facilities-modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--dark-color);
}

.facilities-modal-close {
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.facilities-modal-close:hover {
    color: #333;
}

.facilities-modal-body {
    padding: 20px 25px;
}

@media (max-width: 768px) {
    .view-more-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}

.facilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.facilities-list .facility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.facilities-list .facility-item i {
    color: var(--primary-color);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.facilities-list .facility-item span {
    font-size: 14px;
    color: #333;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info__icon {
    margin-right: 15px;
    font-size: 24px;
    color: var(--primary-color);
}

.section_tittle {
    margin-bottom: 25px;
}

.section_tittle h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section_tittle h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .single_place {
        margin-bottom: 20px;
    }
    
    .single_place .place_img {
        height: 180px;
    }
    
    .booking_part .form_colum {
        min-width: 100%;
    }
    
    .thumbnail-gallery .thumbnails {
        flex-wrap: wrap;
    }
    
    .thumbnail-gallery .thumbnail {
        width: calc(20% - 8px);
        height: 60px;
    }
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    margin-top: 20px;
}

.thumbnail-gallery .thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail-gallery .thumbnail {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-gallery .thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail-gallery .thumbnail.active {
    border-color: var(--primary-color);
    opacity: 0.8;
}

.main_image img {
    width: 100%;
    border-radius: 12px;
}

.main_image {
    position: relative;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.gallery-btn {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: rgba(255, 107, 107, 0.8);
    transform: scale(1.1);
}

.maximize-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 16px;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 20px;
    z-index: 100;
}

.booking_form_card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.tour_details_content .row {
    position: relative;
}

.tour_details_content .col-lg-4 {
    position: relative;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablets and smaller */
@media (max-width: 992px) {
    body {
        padding-top: 120px;
    }
    
    .main_menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }
    
    .sub_menu {
        display: none !important;
    }
    
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        flex-direction: column;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .booking_part .form-row {
        flex-direction: column;
    }
    
    .booking_part .form_colum {
        width: 100% !important;
        margin-bottom: 10px;
    }
    
    .single_place {
        margin-bottom: 20px;
    }
    
    .gallery-controls {
        display: none;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }
    
    .main_menu_iner {
        padding: 10px 0;
    }
    
    .navbar-brand img {
        max-width: 120px;
    }
    
    .banner_part {
        height: auto !important;
        padding: 60px 0;
    }
    
    .banner_text h1 {
        font-size: 28px !important;
    }
    
    .banner_text p {
        font-size: 14px !important;
    }
    
    .section_tittle h2 {
        font-size: 24px;
    }
    
    .section_tittle p {
        font-size: 14px;
    }
    
    .top_place .single_place {
        margin-bottom: 20px;
    }
    
    .single_place .place_img {
        height: 180px;
    }
    
    .single_place .place_content {
        padding: 15px;
    }
    
    .single_place .place_content h3 {
        font-size: 16px;
    }
    
    .single_place .place_content p {
        font-size: 12px;
    }
    
    .single_place .place_content .price_review {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .single_place .place_content .price {
        font-size: 16px;
    }
    
    .btn_1 {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .booking_form_card {
        padding: 15px;
        margin-top: 20px;
    }
    
    .booking_form_card h3 {
        font-size: 18px;
    }
    
    .price-display {
        font-size: 24px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-control {
        padding: 10px;
        font-size: 14px;
    }
    
    .thumbnail-gallery .thumbnail {
        width: 60px;
        height: 50px;
    }
    
    .main_image img {
        border-radius: 8px;
    }
    
    .breadcrumb_iner_item h2 {
        font-size: 24px;
    }
    
    .breadcrumb_iner_item p {
        font-size: 12px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info {
        margin-bottom: 20px;
    }
    
    .footer-area {
        padding: 40px 0;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    body {
        padding-top: 100px;
    }
    
    .banner_text h1 {
        font-size: 22px !important;
    }
    
    .section_tittle h2 {
        font-size: 20px;
    }
    
    .single_place .place_img {
        height: 150px;
    }
    
    .single_place .place_content h3 {
        font-size: 14px;
    }
    
    .thumbnail-gallery .thumbnails {
        gap: 5px;
    }
    
    .thumbnail-gallery .thumbnail {
        width: 50px;
        height: 40px;
    }
    
    .booking_form_card {
        padding: 12px;
    }
    
    .form-row .col-6 {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Fix for sticky sidebar on mobile */
@media (max-width: 992px) {
    .sticky-sidebar {
        position: static;
        margin-top: 30px;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Container max-width for mobile */
@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Mobile form controls */
.mobile-form-control {
    height: 45px !important;
    border-radius: 5px !important;
    border: 1px solid #ddd !important;
    font-size: 14px;
    padding: 0 12px;
}

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

@media (max-width: 768px) {
    .mobile-form-control {
        height: 42px !important;
        font-size: 13px;
    }
    
    .mobile-btn {
        width: 100%;
        text-align: center;
    }
    
    .form-row {
        gap: 8px !important;
    }
}

/* ============================================
   GALLERY STYLES
   ============================================ */
.gallery_section {
    background: #f8f9fa;
    padding: 30px 0;
}

.gallery_section h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-grid .col-lg-4,
.gallery-grid .col-md-6,
.gallery-grid .col-6 {
    padding: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 200px;
}

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

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
}

.gallery-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80%;
    position: relative;
}

.gallery-slider img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-nav:hover {
    background: var(--primary-color);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
    overflow-x: auto;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border: 2px solid var(--primary-color);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
}

/* Mobile Gallery */
@media (max-width: 768px) {
    .gallery-item {
        height: 150px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .gallery-nav.prev {
        left: 10px;
    }
    
    .gallery-nav.next {
        right: 10px;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 45px;
    }
}

/* Property Details - Reduced padding between gallery and content */
.tour_details_content.section_padding {
    padding: 40px 0;
}

.tour_details_content .container {
    padding-top: 0;
}

/* Property Breadcrumb */
.property-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.property-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.property-breadcrumb a:hover {
    color: var(--primary-color);
}

.property-breadcrumb .separator {
    color: #ccc;
    font-size: 10px;
}

.property-breadcrumb .current {
    color: var(--dark-color);
    font-weight: 500;
}

/* Gallery section - remove bottom padding */
.gallery-start {
    padding-bottom: 0;
}

.gallery-start .container {
    padding-bottom: 20px;
}

/* Property Overview Section */
.property-overview {
    clear: both;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .property-overview {
        margin-top: 80px;
    }
}

/* Access & Suitability */
.access-suitability {
    margin-bottom: 20px;
}

.access-suitability .row {
    margin: 0 -10px;
}

.access-suitability .col-md-6 {
    padding: 0 10px;
}

.access-info, .suitability-info {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.access-info:hover, .suitability-info:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.access-info h5, .suitability-info h5 {
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.access-info h5 i, .suitability-info h5 i {
    color: var(--primary-color);
    font-size: 18px;
}

.access-info ul, .suitability-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.access-info li, .suitability-info li {
    padding: 12px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.access-info li:hover, .suitability-info li:hover {
    padding-left: 5px;
    color: var(--dark-color);
}

.access-info li:last-child, .suitability-info li:last-child {
    border-bottom: none;
}

.access-info li i, .suitability-info li i {
    color: var(--secondary-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    font-size: 12px;
}

.access-info li i.fa-ban {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.suitability-info li.no-smoke {
    color: #c0392b;
    font-weight: 500;
}

.suitability-info li.no-smoke i {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

@media (max-width: 768px) {
    .access-info, .suitability-info {
        margin-bottom: 15px;
    }
}

/* Payment Icons */
.payment-icons {
    margin-top: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-icons span {
    font-size: 12px;
    color: #888;
}

.payment-chip {
    min-width: 42px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.payment-chip i {
    font-size: 18px;
}

.payment-chip.visa-chip {
    color: #1a1f71;
    background: #ffffff;
    border-color: rgba(26, 31, 113, 0.25);
}

.payment-chip.mastercard-chip {
    color: #eb001b;
    background: #ffffff;
    border-color: rgba(235, 0, 27, 0.25);
}

.payment-chip.stripe-chip {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #635bff;
    background: #ffffff;
    border-color: rgba(99, 91, 255, 0.25);
}

.payment-chip.paypal-chip {
    color: #003087;
    background: #ffffff;
    border-color: rgba(0, 48, 135, 0.25);
}

.payment-chip:hover {
    transform: translateY(-1px);
    filter: brightness(0.98);
}

/* Footer social icons styled like header top bar */
.footer-area .social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 15px;
}

.footer-area .social-icons a {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-area .social-icons a:hover {
    color: #fff;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
    justify-content: center;
}

.pagination .page-item a {
    display: inline-block;
    padding: 10px 16px;
    border: none;
    background: #ff6b6b;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-item a:hover {
    background: #e55a5a;
    color: #fff;
}

.pagination .page-item.active a {
    background: #191d34;
}

.pagination .page-item.disabled a {
    background: #ccc;
    cursor: not-allowed;
}
