:root {
    --primary-pink: #e91e63;
    --secondary-pink: #f06292;
    --dark-bg: #2c2c2c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header .navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-pink) !important;
}

.clr-theme-primary{
    color: var(--primary-pink) !important;
}

.bg-theme-primary{
    background-color: #e91e63!important;
}

.border-1{
    border: 1px solid #000!important;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative; /* Added this line - this was missing! */
    transition: color 0.3s ease; /* Added smooth color transition */
}

.nav-link{
    font-size: 16px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Adjusted to be more visible */
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #e91e63;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
    width: 100%; /* This makes the line expand on hover */
}

.navbar-nav .nav-link:hover {
    color: var(--primary-pink) !important; /* Optional: change text color on hover */
}

.custom-btn-primary {
    background: var(--primary-pink);
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    color: #fff;
    font-weight: 500;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
}

.custom-btn-primary:hover {
    background: transparent;
    color: #000;
    font-size: 16px;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #000;
}

.custom-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

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

.custom-btn-primary:disabled:hover {
    background: transparent;
    color: #000;
    transform: none;
    box-shadow: none;
}

.custom-btn-primary i {
    transition: transform 0.3s ease;
}

.custom-btn-primary:hover i {
    transform: scale(1.1);
}

.btn-secondary-custom {
    background: linear-gradient(45deg, #9c27b0, #e91e63);
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    color: white;
    font-weight: 500;
    margin: 0 0.5rem;
}

.icon-btn {
    background: var(--dark-bg);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    color: white;
    margin: 0 0.25rem;
}

.icon-btn:hover {
    background: var(--dark-bg);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.main-container {
    flex: 1 0 auto;
}

.map-container {
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #87ceeb 0%, #98d8e8 100%);
}

#map-main {
    height: 100%;
    width: 100%;
    min-height: 400px;
}

.traffic-toggle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.traffic-toggle:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.traffic-toggle.active {
    background: var(--primary-pink);
    color: white;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
}

.traffic-toggle.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.sidebar {
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    height: 100%;
    overflow-y: auto;
    padding: 2rem;
}

.sidebar h2 {
    color: var(--primary-pink);
    font-weight: bold;
}

.sidebar p {
    color: #666;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box input {
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 0.75rem 1rem 0.75rem 3rem;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.category-section h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-item {
    position: relative;
    background-color: #f6f6f6;
    border-radius: 20px;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-pink);
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    cursor: pointer;
    text-align: center;
}

.category-item::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-pink);
    transition: bottom 0.5s ease;
    z-index: -1;
}

.category-item:hover::before {
    bottom: 0;
}

.category-item i {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-item span {
    display: block;
    font-size: 0.8rem;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-item:hover i,
.category-item:hover span {
    color: white;
}

.bundle-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.bundle-card h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bundle-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bundle-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-count {
    color: #666;
    font-size: 0.9rem;
}

.bundle-arrow {
    background: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker-container {
    position: absolute;
    cursor: pointer;
    transform: translate(-50%, -100%);
    z-index: 100;
    transition: all 0.3s ease;
}

.map-marker-container:hover {
    z-index: 200;
    transform: translate(-50%, -100%) scale(1.1);
}

.map-marker-container.clicked {
    z-index: 300;
    animation: markerBounce 0.6s ease;
}

.marker-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-count {
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.marker-card {
    background: white;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid var(--primary-pink);
    position: relative;
}

.marker-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-pink);
}

.marker-holder {
    width: 50px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
}

.marker-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes markerBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate(-50%, -100%) scale(1);
    }
    40%, 43% {
        transform: translate(-50%, -100%) scale(1.2) translateY(-20px);
    }
}

.mapnavigation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mapnavigation li {
    margin: 0 2px;
}

.mapnavbtn {
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mapnavbtn:hover {
    background: var(--primary-pink);
    color: white;
    text-decoration: none;
}

.scrollContorl, .geoLocation {
    position: absolute;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scrollContorl {
    top: 80px;
}

.geoLocation {
    top: 130px;
}

.scrollContorl:hover, .geoLocation:hover {
    background: var(--primary-pink);
    color: white;
}

.scrollContorl.enabledsroll {
    background: var(--primary-pink);
    color: white;
}

footer {
    background: var(--dark-bg);
    color: white;
    padding: 2rem 0;
    flex-shrink: 0;
}

footer a {
    color: var(--secondary-pink);
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-pink);
}

.gm-ui-hover-effect {
    display: none !important;
}


/*Home CSS*/
/* General Layout */
.map-container {
    position: relative;
    height: 100vh;
}

.sidebar {
    padding: 24px;
    background-color: #f8f9fa;
    height: 100vh;
    overflow-y: auto;
}

/* Map Navigation Buttons */
.mapnavbtn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: white;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.mapnavbtn:hover {
    transform: scale(1.1);
}

.mapnavbtn.active {
    background-color: #e91e63;
    color: white;
}

.mapnavbtn-container {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* Search Box */
.search-box {
    position: relative;
    margin-bottom: 24px;
}

.search-box .fa-search {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-box input {
    width: 100%;
    padding: 12px 12px 12px 48px;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
    outline: none;
}

/* Category Section */
.category-section h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
}

.category-item {
    text-align: center;
    padding: 16px 8px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    cursor: pointer;
}

.category-item i {
    font-size: 24px;
    color: #000;
    margin-bottom: 8px;
}

.category-item span {
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

/* Bundle Card */
.bundle-card {
    padding: 20px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e1e5e9;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bundle-card h6 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.bundle-card p {
    font-size: 13px;
    color: #666;
    margin: 0 0 16px 0;
}

.bundle-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

.bundle-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: #f1f1f1;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.bundle-arrow:hover {
    background-color: #f0f0f0;
    color: #dc3545;
}

/* Bundle View */
.bundle-view-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.bundle-back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: white;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.bundle-back-btn:hover {
    background-color: #e9ecef;
}

.bundle-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.bundle-subtitle {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.add-to-cart-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) !important;
}

.bundle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* InfoWindow Styles */
.info-window {
    width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
}

.info-window-title {
    margin: 0 0 6px 0;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.info-window-type {
    display: inline-block;
    background-color: #e1f0ff;
    color: #0056b3;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.info-window-address {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

.info-window-address-icon {
    font-size: 12px;
    margin-top: 1px;
}

.info-window-size-container {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}

.info-window-size-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.info-window-size-title {
    font-size: 12px;
    color: #495057;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-window-size {
    font-size: 13px;
    font-weight: 600;
    color: #1c2328;
    line-height: 1.4;
    background-color: #fff;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.info-window-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.info-window-stat-box {
    padding: 10px 8px;
    background-color: #f8f9fa;
    border-radius: 6px;
    text-align: center;
}

.info-window-stat-label {
    font-size: 10px;
    color: #8c959f;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-window-stat-value {
    font-size: 12px;
    font-weight: 700;
    color: #1c2328;
}

.info-window-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.info-window-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.info-window-button:hover {
    background-color: #218838;
}

.info-window-streetview-button {
    background-color: #007bff;
}

.info-window-streetview-button:hover {
    background-color: #0056b3;
}

/* Image Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
}

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

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s;
}

.carousel-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-prev-btn {
    left: 5px;
}

.carousel-next-btn {
    right: 5px;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.carousel-overlay:hover {
    opacity: 1;
    background: rgba(0,0,0,0.3);
}

.carousel-overlay-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.carousel-close-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    background-color: #d3d3d3;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    z-index: 11;
}

.carousel-close-btn:hover {
    background-color: #b0b0b0;
}

/* Lightbox Gallery */
.lightbox-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

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

@keyframes slideIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes imageSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.lightbox-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 100001;
    backdrop-filter: blur(10px);
}

.lightbox-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-title {
    position: absolute;
    top: 30px;
    left: 30px;
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 100001;
}

.lightbox-counter {
    position: absolute;
    top: 80px;
    left: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    z-index: 100001;
}

.lightbox-image-container {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 100001;
    backdrop-filter: blur(10px);
}

.lightbox-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev-btn {
    left: -80px;
}

.lightbox-next-btn {
    right: -80px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    animation: imageSlide 0.3s ease-out;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.lightbox-thumbnail {
    width: 60px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.lightbox-thumbnail.active {
    border: 3px solid #007bff;
    opacity: 1;
}

.lightbox-thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lightbox-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Street View */
.streetview-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: white;
}

.streetview-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.streetview-close-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.streetview-content {
    width: 100%;
    height: 100%;
}

.streetview-unavailable {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-family: Arial, sans-serif;
}

.streetview-unavailable-content {
    text-align: center;
    padding: 20px;
}

.streetview-unavailable-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.streetview-unavailable-title {
    margin: 0 0 10px 0;
}

.streetview-unavailable-text {
    margin: 0;
    opacity: 0.8;
}

.streetview-unavailable-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.streetview-unavailable-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Bundle Card */
.bundle-card-container {
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.bundle-card-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 10px rgba(0,0,0,0.2) !important;
}

.bundle-card-image-container {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.bundle-card-image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bundle-card-image:hover {
    transform: scale(1.08);
}

.bundle-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.bundle-card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-card-overlay:hover {
    opacity: 1;
}

.bundle-card-body {
    padding: 16px !important;
}

.bundle-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.bundle-card-address {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.bundle-card-address-icon {
    font-size: 12px;
    color: #dc3545;
    margin-right: 8px;
    margin-top: 2px;
}

.bundle-card-address-text {
    font-size: 12px;
    line-height: 1.4;
}

.bundle-card-traffic {
    text-align: center;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.bundle-card-traffic-icon {
    font-size: 12px;
    color: #6c757d;
}

.bundle-card-traffic-value {
    font-size: 13px;
    font-weight: 700;
    color: #495057;
}

.bundle-card-traffic-label {
    font-size: 10px;
    color: #6c757d;
}

.bundle-card-button {
    font-weight: 600;
    font-size: 13px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-card-button-icon {
    font-size: 12px;
    margin-right: 8px;
}

.bundle-card-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: all 0.3s ease;
}

.cluster-visible {
    text-align: center;
    font-size: 10px !important;
    color: #fff !important;
    font-weight: 500;
    border-radius: 50%;
    width: 25px !important;
    height: 25px !important;
    line-height: 25px !important;
    background: var(--primary-pink);
    box-shadow: 0px 0px 0px 4px rgba(255,255,255,0.5);
}

.cluster-visible:before {
    border: 13px solid var(--primary-pink);
    opacity: 0.9;
    content: '';
    position:absolute;
    border-radius: 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:-1;
    box-sizing:border-box;
    animation: cluster-animation 2.5s infinite;
}
@keyframes cluster-animation {
    100% {
        transform:scale(1.6) rotate(90deg);
        opacity:0;
    }
}
/*End Home CSS*/

/* New design css*/

/* The switch - the box around the slider */
                .switch {
                    position: relative;
                    display: inline-block;
                    width: 40px;
                    height: 20px;
                }
                /* Hide default HTML checkbox */
                .switch input {
                    opacity: 0;
                    width: 0;
                    height: 0;
                }
                /* The slider */
                .slider {
                    position: absolute;
                    cursor: pointer;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background-color: #ccc;
                    -webkit-transition: .4s;
                    transition: .4s;
                }
                .slider:before {
                    position: absolute;
                    content: "";
                    height: 16px;
                    width: 16px;
                    left: 2px;
                    bottom: 2px;
                    background-color: white;
                    -webkit-transition: .4s;
                    transition: .4s;
                }
                input:checked + .slider {
                    background-color: #e91e63;
                }
                input:focus + .slider {
                    box-shadow: 0 0 1px #e91e63;
                }
                input:checked + .slider:before {
                    -webkit-transform: translateX(20px);
                    -ms-transform: translateX(20px);
                    transform: translateX(20px);
                }
                /* Rounded sliders */
                .slider.round {
                    border-radius: 20px;
                }
                .slider.round:before {
                    border-radius: 50%;
                }
                .category-item {
                    position: relative;
                    border: 2px solid #e9ecef;
                    border-radius: 8px;
                    transition: all 0.2s ease;
                }
                .category-item:hover {
                    border-color: #e91e63;
                    transform: translateY(-2px);
                    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                }
                .category-item.selected {
                    border-color: #e91e63;
                    background-color: #e91e63;
                    box-shadow: 0 2px 8px rgba(0,123,255,0.2);
                }
                .category-item.selected i,
                .category-item.selected span,
                .category-item.selected .category-count {
                    color: #fff !important;
                }
                .category-count {
                    position: absolute;
                    top: 0px;
                    right: 0px;
                    background: #dc3545;
                    color: white;
                    border-radius: 50%;
                    width: 20px;
                    height: 20px;
                    font-size: 10px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-weight: bold;
                }
                .category-modal-card {
                    border: 2px solid #e9ecef;
                    transition: all 0.2s ease;
                }
                .category-modal-card:hover {
                    border-color: #e91e63;
                    transform: translateY(-2px);
                    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                }
                .category-modal-card.selected {
                    border-color: #e91e63;
                    background-color: #f8f9ff;
                    box-shadow: 0 2px 8px rgba(0,123,255,0.2);
                }
                .category-modal-icon {
                    color: #6c757d;
                }
                .category-modal-card.selected .category-modal-icon {
                    color: #e91e63;
                }
                .category-modal-title {
                    font-size: 14px;
                    font-weight: 600;
                    margin-bottom: 8px;
                }
                .category-modal-count {
                    font-size: 12px;
                    color: #6c757d;
                    margin-bottom: 8px;
                }
                .category-modal-badge {
                    font-size: 10px;
                }
                .selected-categories-list {
                    max-height: 100px;
                    overflow-y: auto;
                }
                /* New CSS based on the provided example */
                .ai-input-container {
                    position: relative;
                    width: 100%;
                    border-radius: 25px;
                    background: #ffffff;
                    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
                    display: flex;
                    align-items: flex-start;
                    padding: 12px 20px;
                    border: 2px solid #e8eaed;
                    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                    min-height: 56px;
                    overflow: hidden;
                    box-sizing: border-box;
                }
                .ai-input-container.focused {
                    border-color: transparent;
                }
                .ai-input-container.focused::after {
                    content: '';
                    position: absolute;
                    top: -1px;
                    left: -1px;
                    right: -1px;
                    bottom: -1px;
                    border-radius: 26px;
                    background: conic-gradient(
                        from 0deg,
                        transparent 0deg,
                        transparent 270deg,
                        #4285f4 285deg,
                        #34a853 300deg,
                        #fbbc04 315deg,
                        #ea4335 330deg,
                        #9c27b0 345deg,
                        #4285f4 360deg,
                        transparent 360deg
                    );
                    z-index: -1;
                    opacity: 1;
                    animation: edgeLighting 2s ease-out forwards;
                }
                @keyframes edgeLighting {
                    0% { transform: rotate(0deg); }
                    100% { transform: rotate(360deg); }
                }
                .ai-input-container.expanded {
                    min-height: 100px;
                }
                .ai-input-container.expanded::after {
                    border-radius: 21px;
                }
                .input-wrapper {
                    flex-grow: 1;
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                }
                #ai-input {
                    border: none;
                    outline: none;
                    font-size: 16px;
                    padding: 8px 0;
                    resize: none;
                    min-height: 24px;
                    max-height: 200px;
                    overflow-y: hidden;
                    background-color: transparent;
                    color: #333;
                    line-height: 1.5;
                    font-family: 'Google Sans', sans-serif;
                    transition: all 0.3s ease;
                    width: 100%;
                }
                #ai-input::placeholder {
                    color: #888;
                    transition: color 0.3s ease;
                }
                #ai-input:focus::placeholder {
                    color: #bbb;
                }
                .button-group {
                    display: flex;
                    align-items: flex-end;
                    gap: 8px;
                    margin-left: 12px;
                    padding-top: 8px;
                }
                .action-button {
                    background-color: transparent;
                    border: none;
                    outline: none;
                    cursor: pointer;
                    padding: 10px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                    position: relative;
                    overflow: hidden;
                    width: 40px;
                    height: 40px;
                }
                .action-button:hover {
                    background-color: rgba(66, 133, 244, 0.1);
                    transform: scale(1.05);
                }
                .action-button.recording {
                    background-color: rgba(255, 67, 54, 0.1);
                    animation: pulse 1.5s infinite;
                }
                @keyframes pulse {
                    0%, 100% { transform: scale(1); }
                    50% { transform: scale(1.1); }
                }
                .send-icon, .voice-icon {
                    width: 20px;
                    height: 20px;
                    transition: all 0.3s ease;
                }
                .send-icon {
                    fill: #4285f4;
                }
                .voice-icon {
                    fill: #34a853;
                }
                .action-button.recording .voice-icon {
                    fill: #ea4335;
                }
                /* Enhanced Ripple Effect */
                .ripple {
                    position: absolute;
                    border-radius: 50%;
                    transform: scale(0);
                    animation: ripple-animation 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
                    pointer-events: none;
                }
                .send-ripple {
                    background-color: rgba(66, 133, 244, 0.3);
                }
                .voice-ripple {
                    background-color: rgba(52, 168, 83, 0.3);
                }
                @keyframes ripple-animation {
                    to {
                        transform: scale(3);
                        opacity: 0;
                    }
                }
                /* Smooth scrollbar for textarea */
                #ai-input::-webkit-scrollbar {
                    width: 4px;
                }
                #ai-input::-webkit-scrollbar-track {
                    background: transparent;
                }
                #ai-input::-webkit-scrollbar-thumb {
                    background: rgba(66, 133, 244, 0.3);
                    border-radius: 2px;
                }
                #ai-input::-webkit-scrollbar-thumb:hover {
                    background: rgba(66, 133, 244, 0.5);
                }
                .ripple-active::after {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 5px;
                    height: 5px;
                    border-radius: 50%;
                    background: rgba(66, 133, 244, 0.7);
                    transform: translate(-50%, -50%) scale(0);
                    animation: ripple-send 1s ease-out forwards;
                }
                @keyframes ripple-send {
                    0% {
                        transform: translate(-50%, -50%) scale(0);
                        opacity: 1;
                    }
                    100% {
                        transform: translate(-50%, -50%) scale(5);
                        opacity: 0;
                    }
                }

                .map-back-btn {
    transition: background-color 0.2s;
}

.map-back-btn:hover {
    background-color: #f0f0f0;
}