/* MLK Park - Custom Styles */

:root {
    --brand-mint: #22D3A0;
    --brand-mint-light: #D4F5EA;
    --brand-mint-dark: #22D3A0;
    --brand-mint-hover: #22D3A0;
}

/* SVG Icon Styles */
.svg-icon-small {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) saturate(100%) invert(100%);
}

.svg-icon-medium {
    width: 1.25rem;
    height: 1.25rem;
    filter: brightness(0) saturate(100%) invert(100%);
}

.svg-icon-large {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) saturate(100%) invert(100%);
}

.svg-icon-xl {
    width: 3rem;
    height: 3rem;
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Circle background for icons */
.icon-circle-small {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--brand-mint);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.icon-circle-medium {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--brand-mint);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.icon-circle-large {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--brand-mint);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* White SVG icons for dark backgrounds (hero section) */
.svg-icon-white {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Green SVG icons for parking features (no circles) */
.svg-icon-green {
    filter: brightness(0) saturate(100%) invert(67%) sepia(53%) saturate(434%) hue-rotate(138deg) brightness(95%) contrast(86%);
}

/* How It Works Section */
.step-circle {
    width: 4rem;
    height: 4rem;
    background-color: var(--brand-mint) !important;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 2rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--brand-mint);
    z-index: 1;
    transform: translateX(-50%);
}

.step-container {
    position: relative;
}

.step-container:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(50% + 2rem);
    width: calc(100% - 2rem);
    height: 2px;
    background-color: var(--brand-mint);
    z-index: 1;
}

@media (max-width: 768px) {
    .step-container:not(:last-child)::after {
        display: none;
    }
}

/* Contact Section Hover Effects */
.contact-link {
    color: var(--brand-mint);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--brand-mint);
    text-decoration: underline;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--brand-mint);
    text-decoration: none;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 60px;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--brand-mint) !important;
}

/* Parking Cards */
.parking-card {
    border: none;
    border-left: 4px solid var(--brand-mint);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.parking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.parking-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.parking-card:hover .card-img-top {
    transform: scale(1.05);
}

.parking-card .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Step Circles */
.step-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    font-weight: 700;
}

/* How It Works Section */
#comment .row {
    justify-content: center;
}

#comment .col-md-3 {
    flex: 0 0 auto;
    width: 30%;
    max-width: 300px;
}

/* Calendar Styles */
#availability-calendar {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--brand-mint-light);
    border-radius: 8px;
    border: 1px solid var(--brand-mint);
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--brand-mint);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover {
    background-color: var(--brand-mint);
    color: white;
}

.calendar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-mint-dark);
    margin: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d1d5db;
}

.calendar-day {
    background: white;
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.calendar-day:hover {
    background-color: #f8f9fa;
    border-color: var(--brand-mint);
}

.calendar-day.other-month {
    color: #9ca3af;
    background-color: #f9fafb;
    cursor: not-allowed;
}

.calendar-day.other-month:hover {
    background-color: #f9fafb;
    border-color: transparent;
}

.calendar-day.today {
    background-color: var(--brand-mint-light);
    color: var(--brand-mint-dark);
    font-weight: 700;
    border-color: var(--brand-mint);
}

.calendar-day.available {
    background-color: #dcfce7 !important;
    color: #166534 !important;
    font-weight: 600 !important;
    border-color: #22c55e !important;
}

.calendar-day.available:hover {
    background-color: #bbf7d0 !important;
}

.calendar-day.partial {
    background-color: #fed7aa !important;
    color: #9a3412 !important;
    font-weight: 600 !important;
    border-color: #f97316 !important;
}

.calendar-day.partial:hover {
    background-color: #fed7aa !important;
}

.calendar-day.full {
    background-color: #fecaca !important;
    color: #991b1b !important;
    font-weight: 600 !important;
    border-color: #ef4444 !important;
}

.calendar-day.full:hover {
    background-color: #fecaca !important;
}

.calendar-day.selected {
    background-color: var(--brand-mint) !important;
    color: white !important;
    font-weight: 700 !important;
    border-color: var(--brand-mint-dark) !important;
}

.calendar-day-name {
    background: #f8fafc;
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    color: #374151;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e5e7eb;
}

/* Calendar Legend */
.calendar-legend-item {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid;
    flex-shrink: 0;
}

.calendar-legend-item.available {
    background-color: #dcfce7;
    border-color: #22c55e;
}

.calendar-legend-item.partial {
    background-color: #fed7aa;
    border-color: #f97316;
}

.calendar-legend-item.full {
    background-color: #fecaca;
    border-color: #ef4444;
}

/* Pricing Cards */
.card.border-success {
    border-width: 2px !important;
    border-color: var(--brand-mint) !important;
}

/* Forms */
.form-control:focus,
.form-select:focus {
    border-color: var(--brand-mint);
    box-shadow: 0 0 0 0.2rem rgba(34, 211, 160, 0.25);
}

.btn-success {
    background-color: var(--brand-mint);
    border-color: var(--brand-mint);
}

.btn-success:hover {
    background-color: var(--brand-mint-hover);
    border-color: var(--brand-mint-hover);
}

.btn-outline-success {
    color: var(--brand-mint);
    border-color: var(--brand-mint);
}

.btn-outline-success:hover {
    background-color: var(--brand-mint);
    border-color: var(--brand-mint);
}

/* Alert Styles */
.alert-success {
    background-color: var(--brand-mint-light);
    border-color: var(--brand-mint);
    color: var(--brand-mint-dark);
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--brand-mint-light);
    color: var(--brand-mint-dark);
}

.accordion-button:focus {
    border-color: var(--brand-mint);
    box-shadow: 0 0 0 0.25rem rgba(34, 211, 160, 0.25);
}

/* Modal */
.modal-header {
    background-color: var(--brand-mint-light);
    border-bottom: 1px solid var(--brand-mint);
}

.modal-title {
    color: var(--brand-mint-dark);
    font-weight: 600;
}

/* Admin Button */
.btn-dark.rounded-circle {
    background-color: #374151;
    border-color: #374151;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-dark.rounded-circle:hover {
    background-color: #1f2937;
    border-color: #1f2937;
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #1f2937 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        min-height: 75vh;
        padding-top: 140px;
        padding-bottom: 40px;
    }
    
    .hero-section .hero-content {
        margin-top: 20px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.3;
        padding-top: 10px;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem !important;
        line-height: 1.5;
    }
    
    /* Navigation */
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    /* Search Card */
    .search-card {
        padding: 1.5rem 1rem !important;
        border-radius: 12px;
        max-width: 100%;
    }
    
    .search-tabs .nav-link {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .search-btn {
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Steps */
    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .step-container h4 {
        font-size: 1.1rem;
        margin: 0.75rem 0 0.5rem 0;
    }
    
    .step-container h5 {
        font-size: 0.85rem;
    }
    
    .step-container p {
        font-size: 0.875rem;
        margin-bottom: 0;
    }
    
    /* Pricing Cards */
    .card {
        margin-bottom: 1.5rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .pricing-hourly, .pricing-daily, .pricing-weekly {
        font-size: 1.75rem !important;
    }
    
    /* Trust Badges */
    .icon-circle-large {
        width: 3rem;
        height: 3rem;
    }
    
    .icon-circle-large .svg-icon-large {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    /* Contact Section */
    .contact-link {
        font-size: 0.95rem;
    }
    
    .card-body h3 {
        font-size: 1.25rem;
    }
    
    .card-body h4 {
        font-size: 0.95rem;
    }
    
    .svg-icon-medium {
        width: 1rem;
        height: 1rem;
    }
    
    .icon-circle-medium {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    /* Accordion */
    .accordion-button {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
    
    .accordion-body {
        font-size: 0.875rem;
        padding: 1rem;
    }
    
    /* Calendar */
    .calendar-day {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
        min-height: 35px;
    }
    
    .calendar-day-name {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
    
    .calendar-nav {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .calendar-title {
        font-size: 1.1rem;
    }
    
    /* Modal */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 0.75rem 1rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .form-control, .form-select {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Footer */
    footer .row {
        gap: 2rem 0;
    }
    
    footer h4, footer h6 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    footer p, footer a {
        font-size: 0.875rem;
    }
    
    /* Buttons */
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .btn-dark.rounded-circle {
        width: 50px;
        height: 50px;
    }
    
    /* Table Responsive */
    .table-responsive {
        font-size: 0.8rem;
    }
    
    /* Section Padding */
    section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    #search-results {
        padding-top: 4rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Results Section */
    .results-card {
        margin-bottom: 1rem;
    }
    
    /* Map */
    .aspect-video {
        aspect-ratio: 16 / 9;
        height: 250px;
    }
    
    /* Text Sizes */
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    .text-sm {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 576px) {
    /* Extra Small Screens */
    .hero-section {
        min-height: 85vh;
        padding-top: 160px;
    }
    
    .hero-section .hero-content {
        margin-top: 30px;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        padding-top: 15px;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .search-card {
        padding: 1.25rem 0.75rem !important;
    }
    
    .search-tabs .nav-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .search-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .step-circle {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .calendar-day {
        padding: 0.4rem 0.2rem;
        font-size: 0.7rem;
        min-height: 32px;
    }
    
    .calendar-nav {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .icon-circle-large {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .pricing-hourly, .pricing-daily, .pricing-weekly {
        font-size: 1.5rem !important;
    }
    
    section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1055;
}

.toast {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast-header {
    background-color: var(--brand-mint-light);
    border-bottom: 1px solid var(--brand-mint);
}

.toast-header .text-success {
    color: var(--brand-mint-dark) !important;
}

/* Utility Classes */
.text-brand {
    color: var(--brand-mint) !important;
}

.bg-brand {
    background-color: var(--brand-mint) !important;
}

.border-brand {
    border-color: var(--brand-mint) !important;
}

/* Trust Badges */
.bg-\[#D4F5EA\] {
    background-color: #D4F5EA !important;
}

.w-16 {
    width: 4rem !important;
}

.h-16 {
    height: 4rem !important;
}

/* Aspect Ratio for Maps */
.aspect-video {
    aspect-ratio: 16 / 9;
}

/* Contact Section */
.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.w-12 {
    width: 3rem !important;
}

.h-12 {
    height: 3rem !important;
}

.bg-\[#25D366\] {
    background-color: #25D366 !important;
}

.hover\:bg-\[#1ebe57\]:hover {
    background-color: #1ebe57 !important;
}

.border-start {
    border-left: 1px solid !important;
}

.border-4 {
    border-width: 4px !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.max-w-5xl {
    max-width: 64rem !important;
}

/* Footer */
.bg-gray-900 {
    background-color: #111827 !important;
}

.text-gray-300 {
    color: #d1d5db !important;
}

.text-gray-400 {
    color: #9ca3af !important;
}

.border-gray-700 {
    border-color: #374151 !important;
}

.hover\:text-\[#22D3A0\]:hover {
    color: var(--brand-mint) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Search Card Styles */
.search-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: none;
    max-width: 900px;
    margin: 0 auto;
}

.search-tabs {
    border-bottom: 2px solid #e5e7eb;
    justify-content: center;
}

.search-tabs .nav-link {
    color: #6b7280;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.search-tabs .nav-link:hover {
    color: var(--brand-mint);
    background-color: transparent;
    border-bottom-color: var(--brand-mint-light);
}

.search-tabs .nav-link.active {
    color: var(--brand-mint);
    background-color: transparent;
    border-bottom-color: var(--brand-mint);
}

/* Search Form Inputs */
.datetime-input {
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 14px 18px;
    border-radius: 10px;
    background-color: #f9fafb;
}

.datetime-input:hover {
    border-color: #d1d5db;
    background-color: #ffffff;
}

.datetime-input:focus {
    border-color: var(--brand-mint);
    box-shadow: 0 0 0 0.25rem rgba(34, 211, 160, 0.15);
    background-color: #ffffff;
    outline: none;
}

.datetime-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(67%) sepia(53%) saturate(434%) hue-rotate(138deg) brightness(95%) contrast(86%);
}

select.datetime-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2322D3A0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Search Button */
.search-btn {
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 211, 160, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 211, 160, 0.4);
}

/* Search Results Section */
#search-results {
    min-height: 100vh;
    padding-top: 100px !important;
}

#results-grid {
    /* Bootstrap row class handles the grid - removing conflicting flex */
}

/* Results Card */
.results-card {
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.results-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--brand-mint);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-mint);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-mint-dark);
}

/* Availability Calendar Styles */
.availability-calendar-container {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
}

.availability-day {
    margin-bottom: 1rem;
}

.availability-day:last-child {
    margin-bottom: 0;
}

.availability-date-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.availability-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.time-slot {
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    min-width: 60px;
    text-align: center;
}

.time-slot.available-slot {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.time-slot.available-slot:hover {
    background-color: #c3e6cb;
    border-color: #22D3A0;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.time-slot.unavailable-slot {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Modal calendar specific styles */
#reservationModal .availability-calendar {
    margin-top: 1rem;
}

#reservationModal .time-slot {
    font-size: 0.75rem;
    padding: 0.375rem 0.5rem;
}

/* Location Link Hover Effect */
.location-link-hover {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.location-link-hover:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

a.text-decoration-none:hover .location-link-hover {
    cursor: pointer;
}

/* Reviews Horizontal Scroll */
.reviews-scroll-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0.5rem 2rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.reviews-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
    background: #22D3A0;
    border-radius: 10px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #1a9d7a;
}

.review-card {
    min-width: 350px;
    max-width: 350px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.review-text {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Mobile adjustments for reviews */
@media (max-width: 768px) {
    .review-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.25rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    #avis .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    #avis .btn-success {
        width: 100%;
    }
}

/* Floating WhatsApp Button - Always Visible */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
}

.floating-whatsapp-btn .whatsapp-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1); /* Make icon white */
}

/* Pulse animation for WhatsApp button */
@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* On larger screens, make it slightly bigger */
@media (min-width: 768px) {
    .floating-whatsapp-btn {
        width: 65px;
        height: 65px;
    }
    
    .floating-whatsapp-btn .whatsapp-icon {
        width: 38px;
        height: 38px;
    }
}

/* Mobile/Desktop Form Toggle */
.mobile-search-form {
    display: none;
}

.desktop-search-form {
    display: block;
}

@media (max-width: 767px) {
    .mobile-search-form {
        display: block;
    }
    
    .desktop-search-form {
        display: none;
    }
    
    /* Compact mobile form styling */
    .mobile-search-form .form-label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem !important;
    }
    
    .mobile-search-form .datetime-input {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
    
    .mobile-search-form .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
