.content {
    display: flex;
    gap: 5px;
    min-height: 0;
}

.right-column {
    flex: 1;
    position: sticky;
    top: 20px;
    width: 60%;
    height: fit-content;
}

.left-column {
    width: 550px;
    position: relative;
    padding: 20px;
    height: fit-content;
}

#map {
    height: 600px;
    border-radius: 8px;
    width: 100%;
}

/* Card Base Styles */
.parking-list-slider {
    height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.parking-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease-out;
    margin-bottom: 12px;
    width: 100%;
    max-width: 600px;
    display: flex;
}

.parking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Card Components */
.parking-card__image-container {
    position: relative;
    width: 180px;
    min-width: 180px;
    height: 140px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.parking-card__image-container:hover {
    opacity: 0.9;
}

.parking-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parking-card__sponsored-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #2196F3;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.parking-card__content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.parking-card__address {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Montserrat';
}

.parking-card__price {
    font-weight: bold;
    color: #32bd7a;
    font-size: 20px;
    font-family: 'Montserrat';
    padding: 5px;
    text-align: center;
}

/* Buttons */
.reserve-btn, .parking-card__button {
    display: block;
    width: 100%;
    padding: 10px 20px;
    background-color: #32BD7A;
    color: white;
    text-align: center;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-top: auto;
}

.reserve-btn:hover, .parking-card__button:hover {
    background-color: #2aa167;
}

/* Popup Styles */
.custom-popup .leaflet-popup-content-wrapper {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    width: auto;
}

.custom-popup .leaflet-popup-content {
    margin: 0;
}

.popup-content {
    display: flex;
    align-items: stretch;
}

.popup-info {
    flex: 1;
    padding: 15px;
}

.popup-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.popup-image:hover {
    opacity: 0.9;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-popup h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Montserrat';
}

.leaflet-container a.leaflet-popup-close-button {
    color: red;
}

/* Marker Clusters */
.marker-cluster {
    background-color: rgba(0, 131, 249, 0.6)!important; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-cluster div {
    background-color: rgba(0, 131, 249, 0.8)!important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Scrollbar Styling */
.parking-list-slider::-webkit-scrollbar {
    width: 8px;
}

.parking-list-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.parking-list-slider::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.parking-list-slider::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Utility Classes */
.search-button {
    width: 100%;
    padding: 12px;
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    background-color: #2196F3;
}

.search-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hero-content {
    transition: all 0.5s ease;
}

.hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

/* Slider Arrows */
.slider-arrow {
    display: none;
}

/* Tablet Styles */
@media (min-width: 601px) and (max-width: 1024px) {
    .content {
        flex-direction: column;
    }

    .right-column {
        width: 100%;
        position: relative;
        margin-bottom: 20px;
    }

    .left-column {
        width: 100%;
        padding: 0 20px;
    }

    #map {
        height: 400px;
    }

    .parking-list-slider {
        max-height: none;
        display: flex;
        overflow-x: hidden;
        padding: 0 40px;
        position: relative;
        height: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .parking-list-slider::-webkit-scrollbar {
        display: none;
    }

    .parking-card {
        flex: 0 0 calc(100% - 32px);
        margin: 0 16px;
        flex-direction: row;
        height: auto;
    }

    .parking-card__image-container {
        width: 200px;
        min-width: 200px;
        height: 160px;
    }

    .slider-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 50%;
        z-index: 10;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        background: none;
        color: rgba(0, 0, 0, 0.6);
        transition: color 0.2s ease;
    }

    .slider-arrow:hover {
        color: rgba(0, 0, 0, 0.9);
    }

    .slider-arrow svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .slider-arrow.prev { left: 0; }
    .slider-arrow.next { right: 0; }
}

/* Mobile Styles */
@media (max-width: 600px) {
    .content {
        flex-direction: column;
        gap: 0;
    }

    .right-column, .left-column {
        width: 100%;
    }

    .right-column {
        order: 1;
        margin-bottom: 0;
    }

    .left-column {
        order: 2;
        padding: 10px;
        background: #fff;
    }

    #map {
        height: 300px;
        border-radius: 8px 8px 0 0;
    }

    .parking-list-slider {
        height: auto;
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        padding: 0 40px;
        gap: 12px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .parking-list-slider::-webkit-scrollbar {
        display: none;
    }

    .parking-card {
        min-width: 280px;
        flex-direction: column;
        margin: 0;
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        height: auto;
        white-space: normal;
    }

    .parking-card__image-container {
        width: 100%;
        height: 200px;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
    }
    
    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }
}
.popup-content-wrapper {
        display: block;
        text-decoration: none;
        color: inherit;
        overflow: hidden;
        border-radius: 8px;
    }

    .popup-image-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .popup-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .popup-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
        pointer-events: none;
    }

    .popup-text-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px;
        color: white;
    }

    .popup-address {
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 8px 0;
        line-height: 1.3;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }

    .popup-details {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .popup-price {
        font-size: 20px;
        font-weight: 700;
        color: yellow;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }

    .popup-availability {
        color: white;
        font-size: 14px;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }

    .popup-sponsored-tag {
        position: absolute;
        top: 12px;
        left: 12px;
        background: #2196F3;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
        z-index: 1;
    }

    /* Desktop specific styles */
    .desktop-popup .popup-image {
        height: 240px;
    }

    .desktop-popup .popup-address {
        font-size: 18px;
    }

    /* Mobile specific styles */
    .mobile-popup {
        width: 280px;
    }

    .mobile-popup .popup-image {
        height: 180px;
    }

    /* Fix popup positioning */
    .leaflet-popup-content-wrapper {
        padding: 0 !important;
        overflow: hidden;
        border-radius: 8px !important;
    }

    .leaflet-popup-content {
        margin: 0 !important;
        width: auto !important;
    }

    .leaflet-popup-close-button {
        display: none !important;
    }

    .leaflet-popup-tip-container {
        display: none !important;
    }

    .leaflet-popup {
        margin-bottom: 0 !important;
    }.leaflet-popup {
    margin-bottom: 0px !important;
}

.leaflet-popup-content-wrapper {
    padding: 0 !important;
    overflow: hidden;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
}

.desktop-popup .leaflet-popup-content {
    margin: 0 !important;
    width: 400px !important;
}

.mobile-popup .leaflet-popup-content {
    margin: 0 !important;
    width: 280px !important;
}

.leaflet-popup-tip {
    width: 12px !important;
    height: 12px !important;
    background: white !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
}

.leaflet-popup-close-button {
    display: none !important;
}

/* Ensure popup content is visible above map */
.leaflet-popup-pane {
    z-index: 1000;
}

/* Prevent popup from being cut off */
.leaflet-container {
    z-index: 1;
}
.custom-btn {
    padding: 10px 25px;
    color: white !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-btn.rent {
    background-color: rgb(50, 189, 122) !important;
}

.custom-btn.calc {
    background-color: black !important;
}



.custom-btn:active,
.custom-btn:focus {
    color: white !important;
    transform: translateY(1px);
}

/* Remove focus outline */
.custom-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove any text decoration from links */
.rent-button,
.calc-button {
    text-decoration: none !important;
}

/* Ensure buttons maintain their color when active/focused */
.custom-btn.rent:active,
.custom-btn.rent:focus
 {
    background-color: rgb(45, 170, 110) !important;
    color: white !important;
}

.custom-btn.calc:active,
.custom-btn.calc:focus
 {
    background-color: black !important;
    color: white !important;
}

.number-marker {
    width: 30px;
    height: 30px;
    background-color: #2196F3; /* Changed from green to blue */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.pill-button {
    border-radius: 50px !important;
    padding: 15px 30px !important;
    font-size: 1.1em !important;
    font-weight: 600 !important;
    border: none !important;
    color: white !important;
    transition: transform 0.2s ease !important;
}

.pill-button.rent {
    background-color:  #0071BD !important;
}

.pill-button.calc {
    background-color: black !important;
}

.pill-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.rent-button, .calc-button {
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .d-flex.gap-3 {
        flex-direction: column;
    }
    
    .pill-button {
        width: 100%;
    }
}
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
    text-align : left !important;
}

.user-image {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.review-text {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.reviewer-info {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 13px;

}

.reviewer-details {
    flex-grow: 1;
}

.reviewer-details strong {
  font-size: 15px;
  color: #333;
    display: block;
}

.reviewer-details .text-muted {
    font-size: 14px;
    color: #666;
}

.status-dots {
    color: #aaa;
    letter-spacing: 2px;
    margin-bottom: -5px;
}

.carousel-indicators {
    position: relative !important; /* Change this to 'relative' for better positioning */
    bottom: -30px !important; /* Adjust this value to control the vertical space below the testimonials */
    display: flex !important; /* Align indicators in a row */
    justify-content: center !important; /* Center the indicators horizontally */
    margin-top: 10px !important; /* Add some spacing above the indicators */
}

.carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #aaa !important;
    border: none !important;
    margin: 0 5px !important; /* Add some space between the dots */
    opacity: 1 !important;
}

.carousel-indicators .active {
    background-color: #007bff !important; /* Background color of active dot */
}


@media (max-width: 768px) {
    .testimonial-card {
        height: 250px;
        padding: 20px;
        margin: 10px 20px;
    }

    .review-text {
        font-size: 15px;
        text-align : left;
    }

    .user-image {
        top: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
}
.row>*
{
  padding-right : 0px !important;
  padding-left : 0px !important;

}


