/* Reset and Base Styles */
* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-bottom: 80px; /* Space for mobile bottom nav */
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Utility Classes */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

.mobile-hidden {
    display: none;
}

/* Header Styles */
.header {
    background: white;
    color: #333;
    padding: 16px 0;
    position: fixed;
    width:100%;
    top: 0;
    z-index: 1000;
/*    box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
/*    border-bottom: 1px solid #e9ecef;*/
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    font-size: 18px;
}

.logo-box {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* Mobile Logo - Hidden on desktop, shown on mobile */
.mobile-logo {
    display: none;
}

/* Desktop Logo - Shown on desktop, hidden on mobile */
.desktop-logo {
    display: flex;
}

/* Mobile responsive - Show mobile logo, hide desktop logo */
@media (max-width: 768px) {
    .mobile-logo {
        display: flex;
    }
    
    .desktop-logo {
        display: none;
    }
}

.logo-letters {
    font-family: serif;
    font-weight: bold;
}

.logo-text {
    color: white;
    font-weight: bold;
    line-height: 1.2;
}

.logo-text small {
    font-size: 12px;
    font-weight: normal;
    opacity: 0.9;
}

.search-container {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #333;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #d4911e;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #b8801a;
}

.desktop-nav {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4px;
}

.category-btn-header {
    padding: 8px 20px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
}

/* Desktop category buttons - white background with underline */
@media (min-width: 769px) {
    .category-btn-header {
        color: #333;
    }
    
    .category-btn-header.active {
        background: none;
        color: #333;
        text-decoration: underline;
        text-decoration-thickness: 2px;
        text-underline-offset: 4px;
    }
}

/* Mobile category buttons - keep original styling */
@media (max-width: 768px) {
    .category-btn-header {
        color: white;
    }
    
    .category-btn-header.active {
        background: white;
        color: #333;
    }
}

/* This rule is now handled in the responsive sections above */

.menu-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide menu toggle on mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: none !important;
    }
}

/* Menu Dropdown */
.menu-dropdown {
    position: fixed;
    top: 70px;
    right: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.menu-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s;
    color: #333;
    font-size: 14px;
}

.menu-item:hover {
    background: #f5f5f5;
}

.menu-item:last-child {
    border-bottom: none;
}

/* Fix for menu dropdown visibility */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-dropdown.active {
    animation: slideDown 0.3s ease forwards;
}

/* Category Navigation */
.category-nav {
    background: linear-gradient(135deg, #7a9b7e 0%, #6b8e70 100%);
    padding: 0 0 0px 0;
}

.category-nav .container {
    display: flex;
    gap: 0;
}

.category-btn {
    flex: 1;
    padding: 12px 24px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: opacity 0.3s;
}

.category-btn:hover {
    opacity: 0.8;
}

.category-btn.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: white;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    padding: 24px 0;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.section {
    margin-bottom: 48px;
}

.section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #333;
}

/* Section Headers - Airbnb Style */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}


/* Property Container - Airbnb Style */
.property-container {
    position: relative;
    overflow: hidden;
}

.property-scroll-container {
    display: flex;
    gap: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 8px 0;
    transition: transform 0.3s ease;
}

/* Airbnb Style Property Cards - Smaller and Compact */
.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
   /* min-width: 280px;
    max-width: 280px;*/
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.property-card:hover {
    transform: scale(1.04);
}

/* Property Image Container - Compact */
.property-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.property-images {
    display: flex;
    height: 184px;
    transition: transform 0.3s ease;
    scroll-snap-type: x mandatory;
}

.property-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* Image Navigation - Airbnb Style */
.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #333;
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
}

.property-card:hover .image-nav {
    opacity: 1;
}

.image-nav.prev {
    left: 8px;
}

.image-nav.next {
    right: 8px;
}

.image-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

/* Image Dots - Smaller */
.image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 2;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Property Info - Compact */
.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
    z-index: 2;
}

.favorite-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.favorite-btn.liked {
    color: #ff385c;
}

.guest-favorite {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    z-index: 2;
}

.property-info {
    padding: 12px 4px 8px 4px;
}

.property-info h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price {
    font-size: 14px;
    color: #717171;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rating {
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Navigation Wrapper */
.section-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 48px;
}

.section-nav-left,
.section-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-nav-left:hover,
.section-nav-right:hover {
    border-color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.section-nav-left:disabled,
.section-nav-right:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.section-nav-left {
    left: -40px;
}

.section-nav-right {
    right: -40px;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-modal.active {
    display: flex;
}

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

.modal-header {
    padding: 12px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.destination-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.tab-btn {
    padding: 8px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-btn.active {
    background: #553513;
    color: white;
}

.search-form {
    padding: 12px;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
}

.suggestions h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s;
}

.suggestion-item:hover {
    background: #f9f9f9;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item i {
    width: 20px;
    color: #666;
}

.suggestion-item strong {
    display: block;
    margin-bottom: 2px;
}

.suggestion-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.add-text {
    color: #666;
    font-size: 14px;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 8px;
    cursor: pointer;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.clear-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    text-decoration: underline;
}

.search-btn-primary {
    background: #553513;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.search-btn-primary:hover {
    transform: translateY(-1px);
}



.author-logo {
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: serif;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-size: 16px;
}

.author-type {
    color: #666;
    margin: 0 0 4px 0;
    font-size: 14px;
}

.via-text {
    color: #007acc;
    margin: 0;
    font-size: 14px;
}

.testimonial-nav {
    background: #fff;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s;
    flex-shrink: 0;
}

.testimonial-nav:hover {
    background: #f0f0f0;
    color: #333;
}

.testimonial-nav.prev {
    margin-right: 20px;
}

.testimonial-nav.next {
    margin-left: 20px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: white;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4911e;
}

.social-icon.facebook:hover {
    color: #1877f2;
}

.social-icon.whatsapp:hover {
    color: #25d366;
}

.social-icon.twitter:hover {
    color: #1da1f2;
}

.social-icon.instagram:hover {
    color: #e4405f;
}



/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-item.active {
    color: #333;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 12px;
}

/* Map Toggle Button */
.map-toggle-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.map-toggle-btn:hover {
    background: #f7f7f7;
    border-color: #333;
}

.map-toggle-btn i {
    font-size: 12px;
}

/* Map View */
.map-view {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 2000;
    display: none;
}

.map-view.active {
    display: block;
}

.map-container {
    display: flex;
    height: 100vh;
    margin-top: 88px; /* Account for header height */
}

.properties-sidebar {
    width: 40%;
    background: white;
    overflow-y: auto;
    padding: 20px;
    border-right: 1px solid #eee;
}

.properties-header {
    margin-bottom: 20px;
}

.properties-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.properties-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.properties-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-property-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.map-property-card:hover {
    background: #f7f7f7;
}

.map-property-image {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.map-property-info {
    flex: 1;
}

.map-property-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}

.map-property-info p {
    font-size: 12px;
    color: #666;
    margin: 2px 0;
}

.map-property-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.map-section {
    width: 60%;
    position: relative;
}

.leaflet-map {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Custom Leaflet Marker Styles */
.custom-marker {
    background: white;
    border: 1px solid #ddd;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 28px;
}

.custom-marker:hover {
    background: #333;
    color: white;
    transform: scale(1.1);
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 8px 12px;
    font-size: 12px;
}

.map-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-close-btn:hover {
    background: #f5f5f5;
    border-color: #333;
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .desktop-only {
        display: block;
    }
    
    .mobile-only {
        display: none;
    }
    
    .container {
        padding: 0 24px;
    }
    
    /* Show 7 cards on desktop with proper scrolling */
    .property-scroll-container {
        display: flex;
        gap: 16px;
        overflow: hidden;
        width: calc(7 * 260px + 6 * 16px);
        max-width: 100%;
    }
    
    .property-card {
       min-width: 260px;
        max-width: 260px;
        flex-shrink: 0;
    }
    
    .section-nav-left,
    .section-nav-right {
        display: block;
    }
    
    body {
        padding-bottom: 0;
    }
}

/* Responsive Design - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .mobile-hidden {
        display: block;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .property-card {
        min-width: 240px;
        max-width: 240px;
    }
    
    .property-scroll-container {
        width: calc(4 * 240px + 3 * 16px);
        max-width: 100%;
    }
    
    .section-nav-left,
    .section-nav-right {
        display: block;
    }
    
    body {
        padding-bottom: 0;
    }
}

/* Mobile Specific */
@media (max-width: 767px) {
    /* Hide desktop category buttons in header on mobile */
    .desktop-nav {
        display: none !important;
    }
    
    .property-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .property-image-container {
        height: 180px;
    }
        
    .suggestions{

        max-height: 450px;
        overflow-y: scroll;
    }

    .guest-favorite {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .section-nav-left,
    .section-nav-right {
        display: none;
    }
    
    .section-wrapper {
        margin: 0;
        overflow: visible;
    }
    
    .property-scroll-container {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
    }
    
    .property-scroll-container::-webkit-scrollbar {
        display: none;
    }
}


   .form-group {
            position: relative;
            cursor: pointer;
        }
        
        .date-picker-popup,
        .guest-selector-popup {
            position: absolute;
            bottom: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 20px;
            margin-bottom: 8px;
        }
        
        .date-picker-header,
        .guest-picker-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .date-picker-header h4,
        .guest-picker-header h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
        }
        
        .close-picker {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #717171;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .close-picker:hover {
            background: #f7f7f7;
        }
        
        .date-inputs {
            display: flex;
            gap: 15px;
        }
        
        .date-input-group {
            flex: 1;
        }
        
        .date-input-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }
        
        .date-input-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
        }
        
        .guest-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .guest-option:last-child {
            border-bottom: none;
        }
        
        .guest-info strong {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
        }
        
        .guest-info p {
            font-size: 12px;
            color: #717171;
            margin: 0;
        }
        
        .guest-controls {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .guest-btn {
            width: 32px;
            height: 32px;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: #717171;
        }
        
        .guest-btn:hover {
            border-color: #333;
        }
        
        .guest-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .guest-controls span {
            font-size: 16px;
            font-weight: 600;
            min-width: 20px;
            text-align: center;
        }

        /* Bottom navigation hide/show animation */
        .bottom-nav {
            transition: transform 0.3s ease;
        }
        
        .bottom-nav.hidden {
            transform: translateY(100%);
        }

        /* Reduce margins and spacing */
        .section {
            margin-bottom: 20px !important;
        }
        
        .property-card {
            margin-bottom: 15px !important;
        }
        
        .property-image-container {
            margin-bottom: 8px !important;
        }
        
        .section-header {
            margin-bottom: 15px !important;
        }
        
        .section-wrapper {
            padding: 0 10px !important;
        }
        
        .property-container {
            gap: 15px !important;
            padding-top:20px;
        }

        /* Section header with arrows */
        .section-header {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
        }
        
        .section-nav-arrows {
            display: flex;
            gap: 8px;
        }
        
        .scroll-arrow {
            width: 36px;
            height: 36px;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            transition: all 0.2s ease;
        }
        
        .scroll-arrow:hover {
            border-color: #333;
            background: #f7f7f7;
        }
        
        .scroll-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        @media (max-width: 768px) {
            .section-nav-arrows {
                display: none;
            }
            .guest-option{display:inline !important;
                padding:0;
            }
        }

        /* Footer social media icons */
        .footer-content {
            flex-direction: column !important;
            text-align: center !important;
            gap: 15px !important;
        }
        
        .social-media-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 10px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 18px;
            transition: transform 0.2s ease;
        }
        
        .social-icon:hover {
            transform: scale(1.1);
        }
        
        .social-icon.facebook {
            background: #1877f2;
        }
        
        .social-icon.twitter {
            background: #000000;
        }
        
        .social-icon.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }
        
        .footer-brand h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }
        
        .footer-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
        }
        
        .footer-separator {
            color: #717171;
        }
        
        .footer-link {
            color: #333;
            text-decoration: none;
        }
        
        .footer-link:hover {
            color: #ff385c;
        }

        /* Updated Testimonials Section */
        .testimonials {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .section-separator {
            display: block;
            width: 60px;
            height: 3px;
            background: #ff385c;
            margin: 0 auto 20px;
        }
        
        .section-title p {
            font-size: 16px;
            color: #777;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        
        .testimonilas-carousel-wrap {
            position: relative;
            
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .listing-carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border: 2px solid #ff385c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .listing-carousel-button:hover {
            background: #ff385c;
            color: white;
        }
        
        .listing-carousel-button-prev {
            left: -25px;
        }
        
        .listing-carousel-button-next {
            right: -25px;
        }
        
        .listing-carousel-button i {
            font-size: 18px;
            color: #fff;
        }
        
        .listing-carousel-button:hover i {
            color: white;
        }
        
        .testimonilas-carousel .swiper-container {
            overflow: hidden;
            position: relative;
        }
        
        .testimonilas-carousel .swiper-wrapper {
            display: flex;
            transition: transform 0.5s ease;
            align-items: center;
        }
        
        .testimonilas-carousel .swiper-slide {
            flex: 0 0 calc(33.333% - 20px);
            width: calc(33.333% - 20px);
            margin-right: 30px;
            padding: 15px;
            text-align: center;
            box-sizing: border-box;
        }
        
        .tc-pagination {
            text-align: center;
            margin-top: 30px;
        }
        
        .tc-pagination .testimonial-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: #ddd;
            border-radius: 50%;
            margin: 0 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .tc-pagination .testimonial-dot.active {
            background: #ff385c;
            transform: scale(1.2);
        }
        
        .testi-item {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 25px 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            text-align: center;
            width: 100%;
            box-sizing: border-box;
            position: relative;
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .testimonilas-text p {
            font-size: 14px;
            line-height: 1.4;
            color: #333;
            margin: 10px 0 15px 0;
            font-style: italic;
            position: relative;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .testi-item:before {
            content: "“";
            position: absolute;
            top: 8px;
            left: 8px;
            font-size: 25px;
            color: #007acc;
            font-family: serif;
            line-height: 1;
        }
        
        .testi-item:after {
           
        }
        
        .testimonilas-avatar {
            margin-top: auto;
        }
        
        .testimonilas-avatar h3 {
            font-size: 15px;
            font-weight: 600;
            color: #222;
            margin-bottom: 3px;
            margin-top: 10px;
        }
        
        .testimonilas-avatar h4 {
            font-size: 12px;
            color: #666;
            font-weight: 400;
            margin: 0 0 5px 0;
        }
        
        .testi-link {
            color: #007acc;
            text-decoration: none;
            font-size: 11px;
            font-weight: 500;
            display: inline-block;
        }
        
        .listing-rating {
            margin-bottom: 10px;
            text-align: center;
        }
        
        .listing-rating i {
            color: #ffc107;
            font-size: 12px;
            margin: 0 1px;
        }
        
        .testimonials-text p {
            font-size: 18px;
            line-height: 1.7;
            color: #666;
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .testi-link {
            display: inline-block;
            color: #ff385c;
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 14px;
        }
        
        .testi-link:hover {
            color: #e73c50;
        }
        
        .testimonials-avatar h3 {
            font-size: 22px;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }
        
        .testimonials-avatar h4 {
            font-size: 16px;
            color: #999;
            font-weight: 400;
            margin: 0;
        }
        
        .tc-pagination {
            text-align: center;
            margin-top: 30px;
        }
        
        @media (max-width: 768px) {
            .testimonials {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .listing-carousel-button {
                display: none;
            }
            
            .testi-item {
                padding: 30px 20px;
            }
            
            .testimonials-text p {
                font-size: 16px;
            }

            .swiper-slide .swiper-slide-active {
                width: 100% !important;
            }
        }

        
        /* Mobile Header - Green Background */
        @media (max-width: 768px) {
            .header {
                background: #553513 !important;
                color: white !important;
                padding: 10px 0 !important;
            }
        }
        
        /* Desktop Header - White Background */
        @media (min-width: 769px) {
            .header {
                background: white !important;
                color: #333 !important;
                border-bottom: 1px solid #e9ecef !important;
            }
        }
        
        /* Mobile logo and menu colors */
        .mobile-logo .logo-letters {
            color: white !important;
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                color: white !important;
            }
            
            .search-input {
                background: white !important;
                border: none !important;
                color: #333 !important;
            }
        }

        /* Mobile Category Navigation */
        .category-nav {
            background: #553513 !important;
            margin-top: 70px;
        }


        /* Mobile Menu and Search Fixes */
        @media (max-width: 768px) {
            .search-container {
                max-width: none !important;
                flex: 1 !important;
            }
        }

        /* Search Icon Color Fix */
        .search-btn {
            background: transparent !important;
            color: #b46c37 !important;
        }

        .search-btn:hover {
            background: transparent !important;
            color: #b46c37 !important;
        }

        .search-btn i {
            color: #b46c37 !important;
            background: transparent !important;
        }

        /* Section Wrapper Horizontal Scroll */
        .property-scroll-container {
            display: flex !important;
            overflow-x: auto !important;
            overflow-y: hidden !important;
            scroll-behavior: smooth !important;
            gap: 20px !important;
            padding-bottom: 10px !important;
        }

        .property-scroll-container::-webkit-scrollbar {
            display: none !important; /* Hide scrollbar */
        }

        .property-scroll-container {
            -ms-overflow-style: none !important; /* IE and Edge */
            scrollbar-width: none !important; /* Firefox */
        }

        /* Ensure property cards don't shrink */
        .property-scroll-container .property-card,
        .property-scroll-container .listing-card {
            flex: 0 0 auto !important;
            min-width: 280px !important;
        }


        /* Testimonials Section - Original Design */
        .testimonials {
            background: #f9f9f9 !important;
            padding: 60px 0 !important;
            margin: 60px 0 0 0 !important;
        }
        
        .testimonials h2 {
            text-align: center !important;
            font-size: 32px !important;
            margin-bottom: 40px !important;
            color: #333 !important;
        }
        
        .testimonials-container {
            position: relative !important;
            max-width: 1200px !important;
            margin: 0 auto !important;
        }
        
        .testimonials-wrapper {
            overflow: hidden !important;
        }
        
        .testimonial-item {
            max-width: 800px !important;
            margin: 0 auto !important;
            text-align: center !important;
            display: none !important;
        }
        
        .testimonial-item.active {
            display: block !important;
        }
        
        .testimonial-item blockquote {
            font-size: 18px !important;
            line-height: 1.8 !important;
            color: #666 !important;
            font-style: italic !important;
            margin-bottom: 30px !important;
            border: none !important;
            padding: 0 !important;
        }
        
        .testimonial-author {
            display: flex !important;
            align-items: center !important;
            justify-content: left !important;
            gap: 16px !important;
        }
        
        .author-logo {
            width: 50px !important;
            height: 50px !important;
            background: #333 !important;
            color: white !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-weight: 600 !important;
            font-size: 16px !important;
        }
        
        .author-info {
            text-align: left !important;
        }
        
        .testimonial-author strong {
            display: block !important;
            margin-bottom: 4px !important;
            color: #333 !important;
        }
        
        .via-text {
            color: #007acc !important;
            margin: 0 !important;
            font-size: 14px !important;
        }
        
        .testimonial-nav {
            position: absolute !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            background: white !important;
            border: 2px solid #ddd !important;
            border-radius: 50% !important;
            width: 50px !important;
            height: 50px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            cursor: pointer !important;
            font-size: 20px !important;
            color: #666 !important;
            transition: all 0.3s ease !important;
        }
        
        .testimonial-nav:hover {
            border-color: #333 !important;
            color: #333 !important;
        }
        
        .testimonial-nav.prev {
            left: 20px !important;
        }
        
        .testimonial-nav.next {
            right: 20px !important;
        }

       



        .no-list-style {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* Bootstrap Grid for Footer */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }

        .col-md-2, .col-md-3, .col-md-4 {
            position: relative;
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
        }

        @media (min-width: 768px) {
            .col-md-2 {
                flex: 0 0 16.666667%;
                max-width: 16.666667%;
            }
            .col-md-3 {
                flex: 0 0 25%;
                max-width: 25%;
            }
            .col-md-4 {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }
            
            .search-container{
                margin-left:10%;
            }
        }

        
        .mtop65{margin-top:65px;}
        .footer-links-bg{background-color:#ffefd5;}

@media screen and (min-width: 1024px) {

    .top100{
                 top:100px;
            }
            .top75{
                margin-top:75px;
            }   


}
        
        .social-links {
            display: flex !important;
            gap: 15px !important;
        }
        
        .social-icon {
            width: 40px !important;
            height: 40px !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            text-decoration: none !important;
            color: white !important;
            transition: background-color 0.3s ease !important;
        }
        
        .social-icon.facebook {
            background: #3b5998 !important;
        }
        
        .social-icon.whatsapp {
            background: #25d366 !important;
        }
        
        .social-icon.twitter {
            background: #1da1f2 !important;
        }
        
        .social-icon.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
        }
        
        .social-icon:hover {
            transform: scale(1.1) !important;
        }
        

   
        
      
        /* Testimonials from index.html */
        .testimonials {
            background: #f9f9f9;
            padding: 60px 0;
            margin: 60px 0 0 0;
        }
        
        .testimonials h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            color: #333;
        }
        
        .testimonials-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .testimonials-wrapper {
            display: flex;
            gap: 40px;
            overflow: hidden;
            align-items: center;
            width: 800px;
            position: relative;
        }
        
        .testimonial-item {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            display: none;
            width: 100%;
        }
        
        .testimonial-item.active {
            display: block;
        }
        
        .testimonial-item blockquote {
            font-size: 18px;
            line-height: 1.8;
            color: #666;
            font-style: italic;
            margin-bottom: 30px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }
        
        .author-logo {
            width: 50px;
            height: 50px;
            background: #333;
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .author-info {
            text-align: left;
        }
        
        .testimonial-author strong {
            display: block;
            margin-bottom: 4px;
        }
        
        .testimonial-author p {
            color: #007acc;
            margin: 0;
            font-size: 14px;
        }
        
        .testimonial-nav {
            background: #fff;
            border: 1px solid #ddd;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            color: #666;
            transition: all 0.3s;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .testimonial-nav:hover {
            background: #f0f0f0;
            color: #333;
        }
        
        .testimonial-nav.prev {
            left: -60px;
        }
        
        .testimonial-nav.next {
            right: -60px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: #333;
            font-weight: 400;
            letter-spacing: 1px;
        }

        

        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }

        .testimonilas-carousel-wrap {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 80px;
        }

        .listing-carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #563513;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            color: #fff;
        }

        .listing-carousel-button:hover {
            background: #8b6f47;
        }

        .listing-carousel-button-prev {
            left: 20px;
        }

        .listing-carousel-button-next {
            right: 20px;
        }

        

        .testi-item {
            background: #fff;
            padding: 20px 20px;
            border-radius: 12px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            position: relative;
        }

        .testi-item:before {
            content: "99";
            position: absolute;
            top: 30px;
            left: 40px;
            font-size: 80px;
            color: rgba(139, 111, 71, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonilas-text {
            text-align: center;
            position: relative;
        }

        .listing-rating {
            margin-bottom: 25px;
        }

        .listing-rating:before {
            content: "★★★★★";
            color: #d4af37;
            font-size: 16px;
        }

        .testimonilas-text p {
            font-size: 15px;
            line-height: 1.8;
            color: #666;
            font-style: italic;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .testi-link {
            display: inline-block;
            color: #c8a165;
            text-decoration: none;
            margin-bottom: 30px;
            font-size: 13px;
            text-transform: capitalize;
        }

        .testi-link:hover {
            color: #8b6f47;
        }

        .testimonilas-avatar h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .testimonilas-avatar h4 {
            font-size: 14px;
            color: #999;
            font-weight: 400;
        }

        .tc-pagination {
            text-align: center;
            margin-top: 40px;
        }

        .tc-pagination .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            background: #ddd;
            margin: 0 4px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s;
            opacity: 1;
        }

        .tc-pagination .swiper-pagination-bullet-active {
            background: #8b6f47;
            width: 8px;
        }

         /* Clean Bootstrap Date Range Picker Styles */
        .date-range-input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            color: #333;
            background: white;
            cursor: pointer;
            transition: border-color 0.3s;
        }
        
        .date-range-input:hover {
            border-color: #7a9b7e;
        }
        
        .date-range-input:focus {
            outline: none;
            border-color: #7a9b7e;
            box-shadow: 0 0 0 3px rgba(122, 155, 126, 0.1);
        }
        
        /* Date Range Picker Calendar Styles - Larger Size */
        .daterangepicker {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            border: none;
            padding: 0;
            margin-top: 10px;
            transform: scale(1.15);
            transform-origin: top center;
        }
        
        .daterangepicker:before {
            border-bottom-color: white;
        }
        
        .daterangepicker .calendar-table {
            background: white;
            padding: 0px;
            border-radius: 12px;
        }
        
        .daterangepicker table {
            width: 100%;
            margin: 0;
        }
        
        .daterangepicker th {
            color: #999;
            font-weight: 500;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            height: 40px;
            padding: 8px;
        }
        
        .daterangepicker td {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 16px;
            color: #333;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            padding: 5px;
        }
        
        .daterangepicker td.available:hover {
            background-color: #f5f5f5;
            border-radius: 50%;
        }
        
        .daterangepicker td.active,
        .daterangepicker td.active:hover {
            background-color: #7a9b7e;
            color: white;
            border-radius: 50%;
            font-weight: 600;
        }
        
        .daterangepicker td.in-range {
            background-color: rgba(122, 155, 126, 0.1);
            border-radius: 0;
        }
        
        .daterangepicker td.in-range:first-child {
            border-radius: 50% 0 0 50%;
        }
        
        .daterangepicker td.in-range:last-child {
            border-radius: 0 50% 50% 0;
        }
        
        .daterangepicker td.start-date {
            background-color:#563513;
            color: white;
            border-radius: 30%;
        }
        
        .daterangepicker td.end-date {
            background-color: #7a9b7e;
            color: white;
            border-radius: 50%;
        }
        
        .daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
            background-color: transparent;
            color: #ccc;
        }
        
        .daterangepicker .calendar-time {
            display: none;
        }
        
        .daterangepicker .drp-calendar.left {
            padding-right: 8px;
        }
        
        .daterangepicker .drp-calendar.right {
            padding-left: 8px;
        }
        
        .daterangepicker .drp-buttons {
            clear: both;
            text-align: right;
            padding: 12px 16px;
            border-top: 1px solid #f0f0f0;
            background: #fafafa;
            border-radius: 0 0 12px 12px;
        }
        
        .daterangepicker .btn {
            position: relative;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            margin-left: 8px;
            transition: all 0.2s;
        }
        
        .daterangepicker .btn-default {
            background: white;
            border: 1px solid #ddd;
            color: #666;
        }
        
        .daterangepicker .btn-default:hover {
            background: #f5f5f5;
        }
        
        .daterangepicker .btn-primary {
            background: #7a9b7e;
            border: 1px solid #7a9b7e;
            color: white;
        }
        
        .daterangepicker .btn-primary:hover {
            background: #6b8e70;
            border-color: #6b8e70;
        }
        
        .daterangepicker .btn-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .daterangepicker select.monthselect,
        .daterangepicker select.yearselect {
            font-size: 12px;
            padding: 5px;
            margin: 0 2px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .daterangepicker .calendar-table .next span,
        .daterangepicker .calendar-table .prev span {
            color: #999;
            border: solid #999;
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 3px;
        }
        
        .daterangepicker .calendar-table .next span {
            transform: rotate(-45deg);
        }
        
        .daterangepicker .calendar-table .prev span {
            transform: rotate(135deg);
        }
        
        /* Mobile responsive - Larger Date Picker */
        @media (max-width: 768px) {
            .daterangepicker {
               
                width: auto !important;
                transform: scale(1.2);
                transform-origin: top center;
            }
            
            .daterangepicker .drp-calendar {
                display: block !important;
                width: 100% !important;
            }
            
            .daterangepicker .calendar-table {
                padding: 0px;
            }
            
            .daterangepicker .calendar-table td {
                width: 40px;
                height: 40px;
                font-size: 15px;
                padding: 12px;
            }
            
            .daterangepicker th {
                font-size: 12px;
                padding: 10px;
            }
            
            .daterangepicker .btn {
                padding: 10px 18px;
                font-size: 14px;
            }
        }

/*------ Enhanced Testimonials Carousel ------------------------------------------------*/
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
    text-transform: capitalize;
}

.testimonials-section .section-title p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.testimonilas-carousel-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonilas-carousel {
    position: relative;
}

.testimonilas-carousel .swiper-container {
    padding: 0;
}

.testimonilas-carousel .testi-item {
    transition: all .3s ease-in-out;
    transform: none;
    opacity: 1;
}

/* Navigation Buttons */
.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    z-index: 102;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    color: #333;
}

.testimonial-nav-btn:hover {
    background: #fff;
    color: #4DB7FE;
}

.testimonial-nav-next {
    right: 0;
}

.testimonial-nav-prev {
    left: 0;
}

/* Pagination Dots */
.testimonial-pagination-wrap {
    text-align: center;
    margin-top: 40px;
}

.testimonial-dots {
    display: inline-flex;
    gap: 12px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot:hover {
    background: #bbb;
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: #7a9b7e;
    border-color: #7a9b7e;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(122, 155, 126, 0.2);
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-title h2 {
        font-size: 28px;
    }
    
    .testimonials-section .section-title p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .testimonilas-carousel-wrap {
        padding: 0 20px;
    }
    
    .testimonilas-text {
        padding: 40px 25px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-nav-btn i {
        font-size: 14px;
    }
    
    .testimonial-nav-next {
        right: 5px;
    }
    
    .testimonial-nav-prev {
        left: 5px;
    }
    
    .testimonial-dots {
        gap: 8px;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
    
    .testi-item {
        padding: 0 10px;
    }
}


.testimonial-slide.active .testimonilas-text {
    background: #ffffff;
    border-color: #7a9b7e;
    box-shadow: 0 15px 50px rgba(122, 155, 126, 0.15);
    transform: translateY(-5px);
}
.testimonilas-text:before, .testimonilas-text:after {
    font-family: Font Awesome\ 5 Pro;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: #ccc;
    opacity: .3;
    font-size: 32px;
    transition: all 400ms linear;
}
.testimonilas-text:after {
   
}
.testimonilas-text:before {
    content: "\f10e";
    top: 20px;
    left: 25px;
}
.testimonilas-text .listing-rating {
    float:none;
    display:inline-block;
    margin-bottom:12px;
}
.testimonilas-avatar  h3 {
    font-weight: 600;
    color: #7e8d64;
    font-size:18px;
}
.testimonilas-avatar  h4 {

    font-weight: 400;
    font-size:12px;
    padding-top:6px;
}
.testimonilas-carousel .swiper-slide{
    padding:30px 0;
}
.testi-avatar {
    position:absolute;
    left:50%;
    top:-30px;
    width:90px;
    height:90px;
    margin-left:-45px;
    z-index:20;
}
.testi-avatar img {
    width:90px;
    height:90px;
    float:left;
    border-radius:100%;
    border:6px solid #fff;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}
.swiper-slide-active .testimonilas-text  {
   
}
.testimonilas-text p{
    color: #878C9F;
    font-size: 14px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 500;
    height: auto;
}
.testi-link {
    position:absolute;
    bottom:0;
    padding: 10px 0;
    border-radius:10px 10px 0 0;
    background: #f9f9f9;
    border: 1px solid #eee;
    box-shadow: 0 10px 15px rgba(0,0,0,0.03);
    left:50%;
    width:200px;
    margin-left:-100px;
}
.tc-pagination  {
    float:left;
    margin-top:10px;
    width:100% !important;
}
.tc-pagination_wrap {
    position:absolute;
    bottom:-40px;
    left:0;
    width:100%;
}
.tc-pagination2 {
    float:none;
    display:inline-block;
    background: #fff;
    padding:14px 0;
    border-radius:30px;
    min-width:250px;
    border-bottom:0;
}
.tc-pagination   .swiper-pagination-bullet , .tc-pagination2   .swiper-pagination-bullet {
    opacity:1;
    background:#ccc;
    margin:0 2px;
    width:10px;
    height:10px;
    transition: all 300ms ease-out;
}


/*-------------Footer---------------------------------------*/
.footer-inner {
    padding:30px 0 40px;
    overflow:hidden;
    color: #553513;
}
.main-footer {
    overflow:hidden;
    z-index:6;
}
.sub-footer {
    padding:18px 0;
    background:#553513;
    margin-top:20px;
}
.sub-footer .lang-wrap {
    top:0;
    background: rgba(255,255,255,0.11);
    border-radius:4px;
    margin-right:0;
}
.sub-footer .lang-wrap:hover  .lang-tooltip {
    top:-116px;
}
.sub-footer .copyright {
    color:#fff;
    text-align:left;
    font-weight:500;
    position:relative;
    font-size:12px;
}
.subfooter-nav  {
    float:right;
    margin-right:30px;
    position:relative;
}
.subfooter-nav:before {
    content: '';
    position: absolute;
    right: -22px;
    top: 50%;
    height: 10px;
    margin-top: -5px;
    width: 1px;
}
.subfooter-nav li {
    margin-left:15px;
}
.subfooter-nav li a {
    color: rgba(255,255,255,0.61);
    font-weight: 400;
    font-size: 12px;
}
.footer-social {
    margin-top:10px;
}
.footer-social span {
    margin-right:15px;
    color:#553513;
    font-size:12px;
    font-weight:600;
}
.footer-social ul , .footer-social li , .footer-social li a , .footer-social span , .footer-social , .subfooter-nav li , .sub-footer .copyright {
    float:left;
}
.footer-social li {
    margin-right: 10px;
}
.footer-social li a {
    font-size: 20px;
    color:#553513;
}
.footer-bg {
    position:absolute;
    left:0;
    width:500px;
    height:400px;
    bottom:-50px;
    z-index:1;
    opacity:0.6;
    background:url(../images/map-bg.png) center no-repeat;
}
.footer-bg-pin  {
    position:absolute;
    width:6px;
    height:6px;
    border-radius:100%;
}
.footer-bg-pin:first-child {
    left:120px;
    top:200px
}
.footer-bg-pin:nth-child(2) {
    left:230px;
    top:200px
}
.footer-bg-pin:nth-child(3) {
    left:136px;
    top:300px
}
.footer-bg-pin:nth-child(4) {
    right:190px;
    top:220px
}
.footer-bg-pin:before {
    content:'';
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    background:#fff;
    border-radius:100%;
    z-index:-1;
    opacity:0.4;
}
@keyframes pulse {
    100% {
        transform: scale(22.1);
        opacity:0;
    }
}
.footer-bg-pin-vis:before {
    animation: pulse 2.0s infinite ease-in-out;
}
.footer-header {
    border-bottom:1px solid rgba(255,255,255,0.1);
    padding:40px 0 30px;
}
.subscribe-header  {
    float:left;
    position:relative;
    top:6px;
    text-align:left;
}
.subscribe-header h3 i {
    padding-left:20px;
    font-weight:100;
}
.subscribe-header h3 {
    font-weight:600;
    position:relative;
    font-size:16px;
    color:#fff;
    padding-bottom:6px;
}
.subscribe-header p {
    color:rgba(255,255,255,0.6);
}
#subscribe .enteremail {
    background: #fff;
    height:50px;
    line-height:50px;
    border:none;
    padding:0 120px 0 25px;
    box-sizing:border-box;
    z-index:1;
    overflow:hidden;
     border-radius:30px;
}
 #subscribe .enteremail::-webkit-input-placeholder   {
    color: #999;
    font-weight:500;
    font-size:13px;
}
#subscribe {
    float:left;
    width:100%;
    position:relative;
}
#subscribe-button {
    position:absolute;
    right:0;
    width:120px;
    height:50px;
    line-height:50px;
    top:0;
    cursor:pointer;
    border:none;
    z-index:2;
    font-size:22px;
    z-index:10;
    background:none;
}
#subscribe-button:hover i:before {
    content: "\f2b6";
}
#subscribe-button:before {
    content:'';
    position:absolute;
    width:1px;
    height:20px;
    background:#fff;
    left:0;
    top:50%;
    margin-top:-10px;
}
.subscribe-message {
    color:#fff;
    float:left;
    margin-top:10px;
    text-align:left;
    font-weight:500;
    line-height:19px;
}
.subscribe-message i {
    padding-right:6px;
}
.subscribe-message.valid i{
    color:#5ECFB1;
}
.subscribe-message.error i{
    color:#F00;
}
.footer-widget #subscribe-button i {
    padding-right:6px;
}
.footer-logo {

    margin-bottom:20px;
    margin-left:25%;
}
.footer-logo img {
    width:auto;
    height:120px;
}
.footer-wave , .section-wave {
    position:absolute;
    bottom:-160px;
    width: 100%;
    left:0;
    z-index:2;
    height:400px;
    opacity:0.06;
}
.footer-widget h3 {
    font-size:16px;
    float:left;
    text-align:left;
    width:100%;
    margin-bottom:5px;
    color:#553513;
    font-weight:600;
    border-bottom:1px solid rgba(255,255,255,0.11);
    padding-bottom:15px;
    position:relative;
}
.footer-widget h3:before {
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:40px;
    height:1px;
}
.no-border {
    border:none !important;
}
.footer-list li{
    display: block;
    text-align: left;
    margin-bottom: 15px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
}
.footer-list li a {
    color: #553513;
}

.footer-list li:hover:before{
    left:4px;
}
.footer-link{
    float:left;
    color:#fff;
    font-weight:600;
    font-size:12px;
    position:relative;
    margin-top:18px;
}
.footer-link.twitter-link{
    margin-top:24px;
}
.footer-link i {
    margin-left:14px;
}
.footer-widget .down-btn {
    margin: 15px 0 0 0;
}
.footer-widget .footer-contacts-widget p {
    color:#551513;
    text-align: left;
    line-height:24px;
    margin-bottom:10px;
}
.footer-contacts {
    margin-top:15px;
}
.footer-contacts li {
    float:left;
    text-align:left;
    min-width:250px;
    padding:11px 15px;
    font-size:13px;
    font-weight:500;
    background: #553513;
    border-radius:30px;
    margin-bottom:12px;
}
.footer-contacts li  a , .footer-contacts li span {
    color:rgba(255,255,255,0.51);
}
.footer-contacts li  a {
    color:#fff;
    padding-left:4px;
}
.footer-contacts li i {
    padding-right:7px;
}
.footer-widget-posts    li {
    margin-bottom:30px;
}
.footer-widget-posts    li:last-child {
    margin-bottom:0;
}
.contact-btn {
    float: left;
    color: #fff;
    padding: 15px 35px;
    font-size: 12px;
    margin-top: 25px;
    font-weight: 600;
    border-radius:30px;
    position: relative;
}
.contact-btn i {
    margin-left:10px;
}
.footer-widget-posts  .widget-posts-img {
    float:left;
    width:25%;
}
.footer-widget-posts  .widget-posts-img img {
    border-radius:4px;
}
.footer-widget-posts   .widget-posts-descr{
    float:left;
    width:75%;
    padding-left:12px;
    text-align:left;
    position:relative;
}
.footer-widget-posts   .widget-posts-descr:before {
    content:'';
    position:absolute;
    bottom:-20px;
    left:12px;
    right:0;
    height:1px;
    border-bottom:1px   dotted rgba(255,255,255,0.21);
}
.footer-widget-posts   .widget-posts-descr a{
    font-size:13px;
    color: #fff;
    font-weight:600;
    padding-bottom:20px;
}
.footer-widget-posts   .widget-posts-descr a:hover {
    color:#fff;
}
.footer-widget-posts  .widget-posts-date  {
    float:left;
    width:100%;
    margin-top:10px;
    color: rgba(255,255,255,0.51);
    font-weight:600;
    font-size:11px;
}
.footer-widget-posts   .widget-posts-date i {

    padding-right:10px;
}



.fl-wrap {
    float: left;
    width: 100%;
    position: relative;
}



  /* Clean Bootstrap Date Range Picker Styles */
        .date-range-input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            color: #333;
            background: white;
            cursor: pointer;
            transition: border-color 0.3s;
        }
        
        .date-range-input:hover {
            border-color: #7a9b7e;
        }
        
        .date-range-input:focus {
            outline: none;
            border-color: #7a9b7e;
            box-shadow: 0 0 0 3px rgba(122, 155, 126, 0.1);
        }
        
        /* Date Range Picker Calendar Styles - Larger Size */
        .daterangepicker {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            border: none;
            padding: 0;
            margin-top: 10px;
            transform: scale(1.15);
            transform-origin: top center;
        }
        
        .daterangepicker:before {
            border-bottom-color: white;
        }
        
        .daterangepicker .calendar-table {
            background: white;
            padding: 0px;
            border-radius: 12px;
        }
        
        .daterangepicker table {
            width: 100%;
            margin: 0;
        }
        
        .daterangepicker th {
            color: #999;
            font-weight: 500;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            height: 40px;
            padding: 8px;
        }
        
        .daterangepicker td {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 16px;
            color: #333;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            padding: 5px;
        }
        
        .daterangepicker td.available:hover {
            background-color: #f5f5f5;
            border-radius: 50%;
        }
        
        .daterangepicker td.active,
        .daterangepicker td.active:hover {
            background-color: #7a9b7e;
            color: white;
            border-radius: 50%;
            font-weight: 600;
        }
        
        .daterangepicker td.in-range {
            background-color: rgba(122, 155, 126, 0.1);
            border-radius: 0;
        }
        
        .daterangepicker td.in-range:first-child {
            border-radius: 50% 0 0 50%;
        }
        
        .daterangepicker td.in-range:last-child {
            border-radius: 0 50% 50% 0;
        }
        
        .daterangepicker td.start-date {
            background-color: #563513;
            color: white;
            border-radius: 30%;
        }
        
        .daterangepicker td.end-date {
            background-color: #563513;
            color: white;
            border-radius: 30%;
        }
        
        .daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
            background-color: transparent;
            color: #ccc;
        }
        
        .daterangepicker .calendar-time {
            display: none;
        }
        
        .daterangepicker .drp-calendar.left {
            padding-right: 8px;
        }
        
        .daterangepicker .drp-calendar.right {
            padding-left: 8px;
        }
        
        .daterangepicker .drp-buttons {
            clear: both;
            text-align: right;
            padding: 12px 16px;
            border-top: 1px solid #f0f0f0;
            background: #fafafa;
            border-radius: 0 0 12px 12px;
        }
        
        .daterangepicker .btn {
            position: relative;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            margin-left: 8px;
            transition: all 0.2s;
        }
        
        .daterangepicker .btn-default {
            background: white;
            border: 1px solid #ddd;
            color: #666;
        }
        
        .daterangepicker .btn-default:hover {
            background: #f5f5f5;
        }
        
        .daterangepicker .btn-primary {
            background: #7a9b7e;
            border: 1px solid #7a9b7e;
            color: white;
        }
        
        .daterangepicker .btn-primary:hover {
            background: #6b8e70;
            border-color: #6b8e70;
        }
        
        .daterangepicker .btn-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .daterangepicker select.monthselect,
        .daterangepicker select.yearselect {
            font-size: 12px;
            padding: 5px;
            margin: 0 2px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .daterangepicker .calendar-table .next span,
        .daterangepicker .calendar-table .prev span {
            color: #999;
            border: solid #999;
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 3px;
        }
        
        .daterangepicker .calendar-table .next span {
            transform: rotate(-45deg);
        }
        
        .daterangepicker .calendar-table .prev span {
            transform: rotate(135deg);
        }
        
        
        .col-md-6{width:50%;}
        .center{text-align:center; }
        .showOnMobile{display:none;}
        .topbottommargin{margin: 0 auto;
    margin-bottom: 15px;
    margin-top: 10px;}
        
        /* New Responsive Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .testimonials-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .testimonials-header p {
            font-size: 18px;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .testimonial-card:hover {
            transform: translateY(-2px);
           
        }
        
        .testimonial-rating {
            margin-bottom: 20px;
        }
        
        .testimonial-rating .stars {
            display: flex;
            gap: 4px;
        }
        
        .testimonial-rating .stars i {
            color: #ffd700;
            font-size: 18px;
        }
        
        .testimonial-content {
            margin-bottom: 24px;
        }
        
        .testimonial-content p {
            font-size: 16px;
            line-height: 1.7;
            color: #4a5568;
            font-style: italic;
            margin: 0;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .author-avatar {
            flex-shrink: 0;
        }
        
        .avatar-circle {
            width: 50px;
            height: 50px;
            background: #7d4c26;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            font-weight: 600;
        }
        
        .author-info h4 {
            font-size: 16px;
            font-weight: 600;
            color: #2d3748;
            margin: 0 0 4px 0;
        }
        
        .author-info span {
            font-size: 14px;
            color: #718096;
        }
        
        /* Mobile responsive - Search Modal */
        @media (max-width: 768px) {
            .modal-header {
                padding: 8px;
                padding-top:50px;
            }
            
            .search-form {
                padding: 15px;
            }
            
            .add-text {
                padding: 6px;
            }
            
            .form-actions {
                margin-top: 12px;
                padding-top: 12px;
            }
            
            .suggestion-item {
                gap: 8px;
                padding: 8px 0;
            }
            
            .suggestions h4 {
                margin-bottom: 8px;
            }
            
            .suggestion-item strong {
                margin-bottom: 1px;
            }
            
            /* Mobile responsive - Testimonials */
            .testimonials-section {
                padding: 60px 0;
            }
            
            .testimonials-header {
                margin-bottom: 40px;
            }
            
            .testimonials-header h2 {
                font-size: 28px;
            }
            
            .testimonials-header p {
                font-size: 16px;
                padding: 0 20px;
            }
            
            .testimonials-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 20px;
                padding: 0 20px;
                scrollbar-width: none; /* Firefox */
                -ms-overflow-style: none; /* IE and Edge */
            }
            
            .testimonials-grid::-webkit-scrollbar {
                display: none; /* Chrome, Safari */
            }
            
            .testimonial-card {
                flex: 0 0 280px; /* Fixed width for horizontal scroll */
                padding: 24px;
                border-radius: 12px;
                scroll-snap-align: start;
            }
            
            .testimonial-content p {
                font-size: 15px;
            }
            
            .avatar-circle {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .author-info h4 {
                font-size: 15px;
            }
            
            .author-info span {
                font-size: 13px;
            }
        }

/*------ New Testimonials Carousel Styles (Override Previous) ------------------------------------------------*/

/* Reset previous testimonials styles to avoid conflicts */
.testimonials-section .testimonials-grid {
    display: block !important;
    grid-template-columns: none !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    gap: 0 !important;
    padding: 0 !important;
}

/* New Carousel Styles */
.testimonials-carousel-container {
    position: relative !important;
    overflow: visible !important;
    margin: 0 60px !important;
    padding: 0 10px !important;
}

.testimonials-carousel {
    overflow: hidden !important;
    position: relative !important;
}

.testimonials-track {
    display: flex !important;
    transition: transform 0.5s ease !important;
    gap: 20px !important;
}

.testimonials-section .testimonial-card {
    min-width: calc(33.333% - 14px) !important;
    flex: 0 0 calc(33.333% - 14px) !important;
    background: white !important;
    padding: 30px !important;
    border-radius: 20px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    margin: 0 !important;
    position: relative !important;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-2px) !important;
}

.testimonials-section .testimonial-rating {
    text-align: center !important;
    margin-bottom: 20px !important;
}

.testimonials-section .stars {
    display: inline-flex !important;
    gap: 3px !important;
    justify-content: center !important;
}

.testimonials-section .stars i {
    color: #ffd700 !important;
    font-size: 18px !important;
}

.testimonials-section .testimonial-content {
    margin-bottom: 25px !important;
}

.testimonials-section .testimonial-content p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    font-style: italic !important;
    margin: 0 !important;
}

.testimonials-section .testimonial-author {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    justify-content: flex-start !important;
}

.testimonials-section .author-avatar .avatar-circle {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: linear-gradient(45deg, #553513, #d99058) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: bold !important;
    font-size: 20px !important;
}

.testimonials-section .author-info h4 {
    margin: 0 0 5px 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

.testimonials-section .author-info span {
    color: #999 !important;
    font-size: 14px !important;
}

.testimonial-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #553513 !important;
    border: 2px solid #553513 !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 999 !important;
    color: white !important;
    font-size: 18px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    line-height: 46px !important;
    text-align: center !important;
}

.testimonial-nav:hover {
    background: #553513 !important;
    color: white !important;
    border-color: #553513 !important;
}

.testimonial-nav:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background: #f5f5f5 !important;
}

.testimonial-nav:disabled:hover {
    background: #f5f5f5 !important;
    color: #999 !important;
    border-color: #ddd !important;
}

.testimonial-nav i {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    line-height: 46px !important;
    text-align: center !important;
    font-style: normal !important;
}

@media screen and (max-width:768px)
{
    .testimonial-nav i {line-height: 34px !important;}
}

.testimonial-nav-prev {
    left: -35px !important;
}

.testimonial-nav-next {
    right: -35px !important;
}

/* Mobile Responsive for New Carousel */
@media (max-width: 768px) {
    .testimonials-carousel-container {
        margin: 0 20px !important;
        padding: 0 !important;
    }

    .testimonials-section .testimonial-card {
        min-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 20px !important;
    }

    .testimonials-track {
        gap: 0 !important;
    }

    .testimonial-nav {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }

    .testimonial-nav-prev {
        left: -15px !important;
    }

    .testimonial-nav-next {
        right: -15px !important;
    }

    .testimonials-section {
        padding: 40px 0 !important;
    }

    .testimonials-header h2 {
        font-size: 24px !important;
    }

    .testimonials-header p {
        font-size: 14px !important;
        padding: 0 15px !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .testimonials-carousel-container {
        margin: 0 10px !important;
    }

    .testimonial-nav {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
    }

    .testimonial-nav-prev {
        left: -10px !important;
    }

    .testimonial-nav-next {
        right: -10px !important;
    }

    .testimonials-section .testimonial-card {
        padding: 15px !important;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .testimonials-section .testimonial-card {
        min-width: calc(50% - 10px) !important;
        flex: 0 0 calc(50% - 10px) !important;
    }

    .testimonials-carousel-container {
        margin: 0 40px !important;
    }

    .testimonial-nav-prev {
        left: -30px !important;
    }

    .testimonial-nav-next {
        right: -30px !important;
    }
}
        
        /* Mobile responsive - Larger Date Picker */
        @media (max-width: 768px) {
            .daterangepicker {
                
                min-width: 350px !important;
                transform-origin: top center;
            }
            
            .borderRight{border-right:1px solid #553513;}
            
            .daterangepicker .calendar-table table{
                width:130%;
            }
            
            .floatLeft{float:left;}
            
            .col-sm-4{width:33.33%;}
            
            .sub-footer{margin-top:0px;}
            
            .showOnMobile{display:flex;justify-content: center;}

            .borderBottom{border-bottom: 2px solid #553513;}
            .pb20{padding-bottom:20px;}
            
            .hideOnMobile{display:none;}

            .main-footer{padding-bottom:60px;}

            .footer-inner{padding:0;}
            
            /* Mobile Footer Styles */
            .mobile-footer-section {
                text-align: center;
                padding: 0px 5px 0 0px;
            }
            
            .mobile-footer-toggle {
                padding: 10px;
                margin: 0;
                font-size: 16px;
                font-weight: 600;
                color: #553513;
                transition: all 0.3s ease;
            }
            
            .mobile-footer-toggle a {
                color: #553513;
                text-decoration: none;
                display: block;
                transition: all 0.3s ease;
            }
            
            .mobile-footer-toggle:hover a {
                color: #d99058;
                transform: translateY(-1px);
            }
            
            .showOnMobile li {
                float:left;
                margin-left:10px;
                margin-top: 15px;
                margin-bottom: 15px;
            }
            
            .showOnMobile i {font-size:30px;}
            
            .alignCenter {width: 46%;margin:0 auto;}
            
            .showOnMobile a {color:#553513; width:auto;}
            
            .daterangepicker .drp-calendar {
                display: block !important;
                width: 100% !important;
            }
            
            .daterangepicker .calendar-table {
                padding: 0px;
            }
            
            .daterangepicker .calendar-table td {
                width: 40px;
                height: 40px;
                font-size: 15px;
                padding: 12px;
            }
            
            .daterangepicker th {
                font-size: 12px;
                padding: 10px;
            }
            
            .daterangepicker .btn {
                padding: 10px 18px;
                font-size: 14px;
            }
        }

        /*------ to-top------------------------------------------------*/
.to-top {
    position:fixed;
    bottom:60px;
    right:50px;
    width:40px;
    height:40px;
    color:#fff;
    background: #7e8d64;
    line-height:40px;
    font-size:17px;
    z-index:116;
    cursor:pointer;
    display:none;
    border-radius:3px;
    box-shadow: 0px 0px 0px 4px rgba(0,0,0,0.2);
    -webkit-transform: translate3d(0,0,0);
}
.to-top:hover {
    background:#253966;
}
.to-top.to-top_footer {
    position:absolute;
}
/*-------------box item---------------------------------------*/


.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

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

.daterangepicker .calendar-table td{
    border:none !important;
}
.daterangepicker td.active, .daterangepicker td.active:hover{
    background-color: #563513 !important;
    border-radius: 30% !important;
}



/* Row */
.row {
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Columns (base 12 grid) */
[class*="col-"] {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
}

/* Extra Small (xs - default, <576px) */
.col-1  { flex: 0 0 8.333%; max-width: 8.333%; }
.col-2  { flex: 0 0 16.666%; max-width: 16.666%; }
.col-3  { flex: 0 0 25%; max-width: 25%; }
.col-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5  { flex: 0 0 41.666%; max-width: 41.666%; }
.col-6  { flex: 0 0 50%; max-width: 50%; }
.col-7  { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8  { flex: 0 0 66.666%; max-width: 66.666%; }
.col-9  { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-11 { flex: 0 0 91.666%; max-width: 91.666%; }
.col-12 { flex: 0 0 100%;   max-width: 100%; }

/* Small (≥576px) */
@media (min-width: 576px) {
  .col-sm-1  { flex: 0 0 8.333%; max-width: 8.333%; }
  .col-sm-2  { flex: 0 0 16.666%; max-width: 16.666%; }
  .col-sm-3  { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4  { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-sm-5  { flex: 0 0 41.666%; max-width: 41.666%; }
  .col-sm-6  { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7  { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-sm-8  { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-sm-9  { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333%; max-width: 83.333%; }
  .col-sm-11 { flex: 0 0 91.666%; max-width: 91.666%; }
  .col-sm-12 { flex: 0 0 100%;   max-width: 100%; }
}

/* Large (≥992px) */
@media (min-width: 992px) {
  .col-lg-1  { flex: 0 0 8.333%; max-width: 8.333%; }
  .col-lg-2  { flex: 0 0 16.666%; max-width: 16.666%; }
  .col-lg-3  { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4  { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-lg-5  { flex: 0 0 41.666%; max-width: 41.666%; }
  .col-lg-6  { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7  { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-lg-8  { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-lg-9  { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333%; max-width: 83.333%; }
  .col-lg-11 { flex: 0 0 91.666%; max-width: 91.666%; }
  .col-lg-12 { flex: 0 0 100%;   max-width: 100%; }
}


.footer-contacts-widget a {
    text-decoration: none;
    color: #553513;
}
.fa-brands,.fab{
    font-size: 25px;
}
.alignRight{text-align: right;}