/* ==================== GLOBAL & VARIABLES ==================== */
:root {
    --primary: #198754;
    --primary-dark: #157347;
    --primary-light: #20c997;
    --secondary: #0d6efd;
    --light-bg: #f8f9fa;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --dark-text: #e0e0e0;
    --transition: 0.3s ease;
    --logo-size: 55px;
    --logo-small: 45px;
    --footer-bg: #0a1f12;
    --footer-text: #e2f0e2;
    --footer-icon: #a3d8a3;
    --b4-green: #198754;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    background-color: var(--light-bg);
    color: #333;
    line-height: 1.6;
    transition: background-color var(--transition), color var(--transition);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; }

/* ==================== B4 LOGO ==================== */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}
.logo-circle {
    width: var(--logo-size);
    height: var(--logo-size);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(25,135,84,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid white;
}
.logo-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(25,135,84,0.6);
}
.b4-logo {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}
.logo-circle-small {
    width: var(--logo-small);
    height: var(--logo-small);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}
.b4-logo-small {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    font-family: var(--font-heading);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* ==================== DARK MODE ==================== */
body.dark-mode {
    background-color: var(--dark-bg);
    color: var(--dark-text);
}
body.dark-mode .top-header,
body.dark-mode .navbar,
body.dark-mode .site-footer,
body.dark-mode .travel-card,
body.dark-mode .modal-content,
body.dark-mode .offcanvas,
body.dark-mode .dropdown-menu,
body.dark-mode .property-header,
body.dark-mode .room-card,
body.dark-mode .amenity-category,
body.dark-mode .review-item,
body.dark-mode .rules-card,
body.dark-mode .dining-card,
body.dark-mode .offer-card {
    background-color: var(--dark-card) !important;
    border-color: #333 !important;
    color: var(--dark-text) !important;
}
body.dark-mode .card-overlay { background: rgba(0,0,0,0.85) !important; }
body.dark-mode .search-section { background: linear-gradient(135deg, #1a1f1c 0%, #0f1513 100%) !important; }
body.dark-mode .section-title,
body.dark-mode .travel-section h3,
body.dark-mode .newsletter-section h3,
body.dark-mode .site-footer h6 { color: #fff !important; }
body.dark-mode .nav-btn { color: var(--dark-text) !important; border-color: #444 !important; }
body.dark-mode .nav-btn.active { background-color: var(--primary) !important; color: #fff !important; }
body.dark-mode .form-control,
body.dark-mode .search-input,
body.dark-mode .input-group-text,
body.dark-mode .dropdown-item {
    background-color: #2d2d2d !important;
    color: #fff !important;
    border-color: #444 !important;
}
body.dark-mode .footer-list a { color: #ccc !important; }
body.dark-mode .back-to-top { background: var(--primary); color: white; }
body.dark-mode .logo-text { background: linear-gradient(135deg, var(--primary-light), #6ea8fe); -webkit-background-clip: text; background-clip: text; color: transparent; }
body.dark-mode .property-tabs .nav-link { color: var(--dark-text); }
body.dark-mode .property-tabs .nav-link.active { background-color: var(--primary); color: white; }
body.dark-mode .bg-light { background-color: #2a2a2a !important; }
body.dark-mode .text-muted { color: #aaa !important; }
body.dark-mode .list-group-item { background-color: transparent; color: var(--dark-text); }

/* ==================== HEADER ==================== */
.top-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.header-controls .btn { border-radius: 20px; padding: 8px 16px; font-weight: 500; }
#darkModeBtn, #darkModeBtnMobile {
    background: transparent; border: 1px solid #dee2e6; color: #666;
    border-radius: 50%; width: 40px; height: 40px; padding: 0;
    display: flex; align-items: center; justify-content: center;
}
#darkModeBtn.dark-mode-active, #darkModeBtnMobile.dark-mode-active {
    background-color: var(--primary); border-color: var(--primary); color: white;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
    position: sticky;
    top: 76px;
    z-index: 1020;
}
.navbar .container-fluid {
    gap: 8px; overflow-x: auto; padding: 5px 10px;
    justify-content: center; flex-wrap: wrap;
}
.nav-btn {
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap; flex-shrink: 0; padding: 10px 20px;
    border-radius: 25px; transition: all 0.2s;
    border: 1px solid var(--primary); color: var(--primary);
    background: transparent; font-weight: 500;
    text-decoration: none !important;
    cursor: pointer;
}
.nav-btn:hover {
    background-color: rgba(25,135,84,0.1);
    color: var(--primary-dark);
    transform: translateY(-2px);
}
.nav-btn:active {
    transform: translateY(0);
}
.nav-btn.active {
    background-color: var(--primary) !important;
    color: #fff !important; border-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(25,135,84,0.2);
}

/* ==================== SEARCH SECTION ==================== */
.search-section {
    margin-top: 20px; padding: 30px 0;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e9 100%);
    border-radius: 0 0 20px 20px;
}
.search-box { max-width: 700px; margin: 0 auto 20px; position: relative; }
.search-icon {
    position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
    color: #6c757d; pointer-events: none; z-index: 5; font-size: 1.2rem;
}
.search-input {
    padding-left: 60px; height: 56px; font-size: 16px; border-radius: 15px;
    border: 2px solid #dee2e6; background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(25,135,84,0.25);
}
#mainSearchBtn {
    height: 50px; padding: 0 40px; font-size: 1.1rem; border-radius: 12px;
    background: var(--primary); border: none; font-weight: 600;
}
#mainSearchBtn:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(25,135,84,0.3); }

/* ==================== PROPERTY DETAILS TABS ==================== */
.property-details-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.property-header {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.property-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.property-rating .badge {
    font-size: 1.1rem;
    padding: 8px 12px;
}

.property-highlights .badge {
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 30px;
}

.property-price-box {
    border: 1px solid rgba(25,135,84,0.2);
}

.property-tabs {
    gap: 10px;
    padding-bottom: 10px;
}

.property-tabs .nav-link {
    border-radius: 30px;
    padding: 10px 20px;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.property-tabs .nav-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.property-tabs .nav-link.active {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(25,135,84,0.3);
}

.tab-content {
    padding: 30px 0;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

/* Room Cards */
.room-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

.room-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Amenity Categories */
.amenity-category {
    transition: transform 0.3s ease;
}

.amenity-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.amenity-category h5 {
    color: var(--primary);
    border-bottom: 2px solid rgba(25,135,84,0.2);
    padding-bottom: 10px;
}

/* Review Items */
.review-item {
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.review-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Calendar */
.calendar-day {
    display: inline-block;
    padding: 8px;
    border-radius: 8px;
    background-color: white;
    width: 100%;
}

.calendar-day .badge {
    font-size: 0.7rem;
    margin-left: 5px;
}

.calendar-legend .badge {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-right: 5px;
}

/* Dining Cards */
.dining-card {
    overflow: hidden;
}

.dining-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Offer Cards */
.offer-card {
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background-color: #0a1f12; color: #e2f0e2;
    padding: 60px 0 20px; margin-top: 60px;
    border-top: 5px solid var(--primary);
}
.site-footer h6 {
    font-weight: 700; margin-bottom: 25px; color: #fff;
    font-size: 1.2rem; display: flex; align-items: center;
}
.site-footer h6 i { margin-right: 10px; color: #8fdf8f; font-size: 1.4rem; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 12px; display: flex; align-items: center; transition: 0.2s; }
.footer-list li:hover { transform: translateX(5px); }
.footer-list li i { color: #b3e6b3 !important; width: 26px; margin-right: 10px; font-size: 1.2rem; }
.footer-list a { color: #e2f0e2; text-decoration: none; display: flex; align-items: center; width: 100%; }
.footer-list a:hover { color: #c0ffc0 !important; }
.social-wrap { display: flex; gap: 12px; }
.social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; background-color: #2a5a3a;
    border-radius: 50%; color: white; transition: all 0.3s;
}
.social-icon:hover { background-color: var(--primary); transform: translateY(-3px); }
.payment-methods i {
    margin-right: 12px; font-size: 2rem; color: #b3e6b3;
    transition: transform 0.2s; cursor: pointer;
}
.payment-methods i:hover { transform: scale(1.15); color: #e0ffe0; }
.footer-divider { border-color: #2a5a3a; margin: 40px 0 30px; opacity: 0.5; }
.copyright { font-size: 15px; color: #c2d6c2; }

/* ==================== BUTTONS ==================== */
.btn-business {
    background: linear-gradient(145deg, #0f4f2a, #156f3c);
    border: none; color: white; font-weight: 600; border-radius: 30px;
    padding: 8px 20px; box-shadow: 0 4px 12px rgba(25,135,84,0.3);
    transition: all 0.3s; margin-left: 8px;
}
.btn-business:hover {
    background: #0d461f; transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(25,135,84,0.4); color: #fff;
}
.business-dropdown-menu { min-width: 240px; padding: 15px; }

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
    border-radius: 50%; display: none; align-items: center; justify-content: center;
    z-index: 1000; box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    background: var(--primary); border: none; color: white; font-size: 1.2rem;
}
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-5px); }

/* ==================== LAZY LOAD ==================== */
.lazyload { opacity: 0; transition: opacity 0.3s ease; }
.lazyload.loaded { opacity: 1; }

/* ==================== SAFETY GUIDELINES MODAL STYLES ==================== */
#safetyGuidelinesModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

#safetyGuidelinesModal .modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 20px 25px;
}

#safetyGuidelinesModal .modal-header i {
    color: white;
}

#safetyGuidelinesModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#safetyGuidelinesModal .modal-header .btn-close:hover {
    opacity: 1;
}

#safetyGuidelinesModal .modal-body {
    padding: 30px 25px;
    max-height: 60vh;
    overflow-y: auto;
}

.guidelines-list {
    padding-right: 10px;
}

.guideline-item {
    background-color: rgba(25, 135, 84, 0.05);
    padding: 12px 15px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid var(--primary);
}

.guideline-item:hover {
    transform: translateX(5px);
    background-color: rgba(25, 135, 84, 0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.guideline-item .badge {
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
}

.guideline-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

body.dark-mode .guideline-item {
    background-color: rgba(25, 135, 84, 0.15);
    border-left-color: var(--primary-light);
}

body.dark-mode .guideline-item p {
    color: var(--dark-text);
}

body.dark-mode .guideline-item:hover {
    background-color: rgba(25, 135, 84, 0.25);
}

#safetyGuidelinesModal .modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 20px 25px;
    background-color: rgba(25, 135, 84, 0.02);
    border-radius: 0 0 20px 20px;
}

#safetyGuidelinesModal .btn-success {
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#safetyGuidelinesModal .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.4);
}

/* Scrollbar styling for safety guidelines modal */
#safetyGuidelinesModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#safetyGuidelinesModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#safetyGuidelinesModal .modal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

#safetyGuidelinesModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

body.dark-mode #safetyGuidelinesModal .modal-body::-webkit-scrollbar-track {
    background: #333;
}

/* Updated footer section styles */
.site-footer .footer-list li a[data-bs-toggle="modal"] {
    cursor: pointer;
}

.site-footer .footer-list li a[data-bs-toggle="modal"]:hover {
    color: #fff;
    text-decoration: none;
}
/* ==================== CUSTOMER RIGHTS MODAL STYLES ==================== */
#customerRightsModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

#customerRightsModal .modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 20px 25px;
}

#customerRightsModal .modal-header i {
    color: white;
}

#customerRightsModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#customerRightsModal .modal-header .btn-close:hover {
    opacity: 1;
}

#customerRightsModal .modal-body {
    padding: 30px 25px;
    max-height: 70vh;
    overflow-y: auto;
}

.customer-rights-content {
    padding-right: 10px;
}

.rights-item {
    background-color: rgba(25, 135, 84, 0.03);
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
    margin-bottom: 15px;
}

.rights-item:hover {
    transform: translateX(5px);
    background-color: rgba(25, 135, 84, 0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.rights-item h6 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.rights-item h6 i {
    width: 24px;
}

.rights-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-left: 34px;
}

body.dark-mode .rights-item {
    background-color: rgba(25, 135, 84, 0.1);
    border-left-color: var(--primary-light);
}

body.dark-mode .rights-item p {
    color: var(--dark-text);
}

body.dark-mode .rights-item:hover {
    background-color: rgba(25, 135, 84, 0.15);
}

#customerRightsModal .modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 20px 25px;
    background-color: rgba(25, 135, 84, 0.02);
    border-radius: 0 0 20px 20px;
}

#customerRightsModal .btn-success {
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#customerRightsModal .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.4);
}

/* Scrollbar styling for customer rights modal */
#customerRightsModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#customerRightsModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#customerRightsModal .modal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

#customerRightsModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

body.dark-mode #customerRightsModal .modal-body::-webkit-scrollbar-track {
    background: #333;
}

/* Animation for customer rights items */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#customerRightsModal.show .rights-item {
    animation: slideInLeft 0.4s ease forwards;
    opacity: 0;
}

#customerRightsModal.show .rights-item:nth-child(1) { animation-delay: 0.1s; }
#customerRightsModal.show .rights-item:nth-child(2) { animation-delay: 0.15s; }
#customerRightsModal.show .rights-item:nth-child(3) { animation-delay: 0.2s; }
#customerRightsModal.show .rights-item:nth-child(4) { animation-delay: 0.25s; }
#customerRightsModal.show .rights-item:nth-child(5) { animation-delay: 0.3s; }
#customerRightsModal.show .rights-item:nth-child(6) { animation-delay: 0.35s; }
#customerRightsModal.show .rights-item:nth-child(7) { animation-delay: 0.4s; }
#customerRightsModal.show .rights-item:nth-child(8) { animation-delay: 0.45s; }
#customerRightsModal.show .rights-item:nth-child(9) { animation-delay: 0.5s; }
#customerRightsModal.show .rights-item:nth-child(10) { animation-delay: 0.55s; }

/* Animation for safety guidelines items */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#safetyGuidelinesModal.show .guideline-item {
    animation: slideInRight 0.4s ease forwards;
    opacity: 0;
}

#safetyGuidelinesModal.show .guideline-item:nth-child(1) { animation-delay: 0.1s; }
#safetyGuidelinesModal.show .guideline-item:nth-child(2) { animation-delay: 0.15s; }
#safetyGuidelinesModal.show .guideline-item:nth-child(3) { animation-delay: 0.2s; }
#safetyGuidelinesModal.show .guideline-item:nth-child(4) { animation-delay: 0.25s; }
#safetyGuidelinesModal.show .guideline-item:nth-child(5) { animation-delay: 0.3s; }
#safetyGuidelinesModal.show .guideline-item:nth-child(6) { animation-delay: 0.35s; }
#safetyGuidelinesModal.show .guideline-item:nth-child(7) { animation-delay: 0.4s; }
#safetyGuidelinesModal.show .guideline-item:nth-child(8) { animation-delay: 0.45s; }
#safetyGuidelinesModal.show .guideline-item:nth-child(9) { animation-delay: 0.5s; }
#safetyGuidelinesModal.show .guideline-item:nth-child(10) { animation-delay: 0.55s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1199px) {
    .section-title { font-size: 1.8rem; }
    .property-title { font-size: 1.8rem; }
}
@media (max-width: 991px) {
    .section-title { font-size: 1.7rem; }
    .navbar { top: 70px; }
    .property-title { font-size: 1.6rem; }
    .property-tabs .nav-link { padding: 8px 15px; font-size: 0.9rem; }
}
@media (max-width: 767px) {
    .logo-circle { width: 45px; height: 45px; }
    .b4-logo { font-size: 1.4rem; }
    .logo-text { font-size: 1.2rem; }
    .navbar { top: 62px; }
    .nav-btn { padding: 8px 16px; font-size: 0.9rem; }
    .newsletter-section h3 { font-size: 1.8rem; }
    .newsletter-section { padding: 30px 20px; }
    .property-title { font-size: 1.4rem; }
    .property-header { padding: 15px; }
    .section-subtitle { font-size: 1.5rem; }
}
@media (max-width: 575px) {
    .logo-text { font-size: 1rem; }
    .search-input { height: 48px; padding-left: 50px; }
    .search-icon { left: 15px; }
    #mainSearchBtn { width: 100%; }
    .back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
    .property-tabs .nav-link { padding: 6px 12px; font-size: 0.8rem; }
}
@media (max-width: 375px) {
    .btn-business { padding: 6px 12px; font-size: 0.8rem; }
    .logo-circle { width: 40px; height: 40px; }
    .b4-logo { font-size: 1.2rem; }
}

/* ==================== ANIMATIONS ==================== */
.logo-circle { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(25,135,84,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(25,135,84,0); }
    100% { box-shadow: 0 0 0 0 rgba(25,135,84,0); }
}
/* Toast Notifications */
.toast-container {
    z-index: 9999;
}

.toast {
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.toast.bg-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
}

/* Loading spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}