:root {
    --primary: #2d3436;
    --accent: #00d2d3;
    --accent-dark: #01a3a4;
    --danger: #ff7675;
    --bg-soft: #f0f3f5;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--bg-soft); color: var(--primary); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header { background: white; padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow); }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.logo span { color: var(--accent); }
.nav-menu { display: flex; list-style: none; gap: 20px; align-items: center; }
.nav-menu li a { text-decoration: none; color: var(--primary); font-size: 0.9rem; font-weight: 600; }
.logout-btn { background: var(--danger); color: white !important; padding: 8px 18px; border-radius: 8px; font-size: 0.85rem; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

.location-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 50px 5%;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.location-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.location-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: -0.5px;
}
.location-hero h1 span.icon-box {
    background: rgba(0, 210, 211, 0.15);
    color: var(--accent);
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.location-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.location-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #cbd5e1;
}
.location-meta-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* --- Results Container & Multi-Item Cards (4 columns layout) --- */
.results-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 30px 5%;
}

.car-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.3);
    animation: fadeIn 0.6s ease forwards;
    height: auto;
    align-self: flex-start;
}
@media (min-width: 992px) {
    .car-card {
        max-height: 470px;
        overflow-y: auto;
        overflow-x: hidden;
        /* Firefox scrollbar styling */
        scrollbar-width: thin;
        scrollbar-color: var(--primary, #014f86) #f8f9fa;
    }

    /* WebKit (Chrome, Safari, Edge) scrollbar styling */
    .car-card::-webkit-scrollbar {
        width: 6px;
    }

    .car-card::-webkit-scrollbar-track {
        background: #f8f9fa;
        border-radius: 10px;
        margin: 5px 0;
    }

    .car-card::-webkit-scrollbar-thumb {
        background: var(--primary, #014f86);
        border-radius: 10px;
        transition: background 0.3s ease;
    }

    .car-card::-webkit-scrollbar-thumb:hover {
        background: var(--accent, #0369a1);
    }
}
.car-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

.menu-items-list {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.menu-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.menu-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #f1f2f6;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-info {
    flex-grow: 1;
}

.menu-item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.menu-item-info span {
    font-size: 0.75rem;
    color: #636e72;
}

.menu-item-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
}

.car-info { padding: 20px; }
.car-info h3 { margin-bottom: 10px; font-weight: 600; letter-spacing: -0.5px; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 10px; border-top: 1px solid #f1f1f1; }
.price-val { font-size: 1.25rem; font-weight: 700; color: var(--accent); }

.rent-btn {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}
.rent-btn:hover { background: var(--accent-dark); }

@media (max-width: 1200px) {
    .results-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) { 
    .results-container {
        grid-template-columns: 1fr;
    }
    .menu-toggle { display: block; } 
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 65px; left: 0; width: 100%; background: white; padding: 20px; box-shadow: 0 10px 10px rgba(0,0,0,0.1); text-align: center; } 
    .nav-menu.active { display: flex; } 
    .location-hero h1 { font-size: 1.6rem; }
}

#topBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--accent);
    color: white;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 50%;
    font-size: 18px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#topBtn:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

:root {
    --primary: #2d3436;
    --accent: #00d2d3;
    --accent-dark: #01a3a4;
    --bg-soft: #f0f3f5;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--bg-soft); color: var(--primary); }

/* --- Header --- */
header { 
    background: white; 
    padding: 1rem 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: var(--shadow); 
}

.logo { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--primary); 
    text-decoration: none; 
}

.logo span { color: var(--accent); }

#nav-menu {
    display: flex;
}

#nav-menu ul { 
    display: flex; 
    list-style: none; 
    gap: 20px; 
    align-items: center; 
}

#nav-menu ul li a { 
    text-decoration: none; 
    color: var(--primary); 
    font-size: 0.9rem; 
    font-weight: 600; 
}

.menu-toggle { 
    display: none; 
    flex-direction: column;
    gap: 5px;
    cursor: pointer; 
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: 0.3s;
}

/* --- Mobile --- */
@media (max-width: 768px) { 
    .menu-toggle { display: flex; } 
    #nav-menu { 
        display: none; 
        position: absolute; 
        top: 65px; 
        left: 0; 
        width: 100%; 
        background: white; 
        padding: 20px; 
        box-shadow: 0 10px 10px rgba(0,0,0,0.1); 
        text-align: center; 
    } 
    #nav-menu.active { display: block; } 
    #nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }
}
    /* Force hide all Google Translate frames, banners, and tooltips */
    .goog-te-banner-frame, 
    .goog-te-balloon-frame, 
    #goog-gt-tt, 
    .goog-te-ftab,
    .goog-te-banner,
    iframe[id=":1.container"],
    iframe.goog-te-banner-frame { 
        display: none !important; 
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        pointer-events: none !important;
    }
    
    /* Prevent Google from pushing the body down or changing positioning */
    body, html { 
        top: 0 !important; 
        position: static !important; 
        margin-top: 0 !important;
    }
    
    .goog-tooltip { display: none !important; }
    .goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }
	
	/* Enhanced Booking Button Styles with CSS3 */
@keyframes pulseBooking {
    0% { box-shadow: -4px 4px 15px rgba(0, 210, 211, 0.3); }
    50% { box-shadow: -4px 4px 25px rgba(0, 210, 211, 0.6); }
    100% { box-shadow: -4px 4px 15px rgba(0, 210, 211, 0.3); }
}

#bookingBtn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: linear-gradient(135deg, #00d2d3, #01a3a4);
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 16px;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.18);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    -webkit-tap-highlight-color: transparent;
    animation: pulseBooking 3s infinite ease-in-out;
}

#bookingBtn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

#bookingBtn:hover {
    padding-right: 22px;
    padding-left: 20px;
    background: linear-gradient(135deg, #2d3436, #1e293b);
    box-shadow: -6px 6px 25px rgba(0, 0, 0, 0.25);
}

#bookingBtn:hover i {
    transform: scale(1.2) rotate(10deg);
}

#bookingBtn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Enhanced Modal Animation */
@keyframes fadeInModal {
    from { 
        opacity: 0; 
        transform: scale(0.9) translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

/* --- Professional Form Input & Element Styling --- */
#comingSoonModal input[type="text"],
#comingSoonModal input[type="tel"],
#comingSoonModal input[type="number"],
#comingSoonModal input[type="datetime-local"],
#comingSoonModal textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #1e293b;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

#comingSoonModal input:hover,
#comingSoonModal textarea:hover {
    border-color: #cbd5e1;
    background-color: #ffffff;
}

#comingSoonModal input:focus,
#comingSoonModal textarea:focus {
    border-color: #00d2d3;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 210, 211, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transform: translateY(-1px);
}

#comingSoonModal label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

#comingSoonModal input:focus + label,
#comingSoonModal div:focus-within label {
    color: #01a3a4;
}

#comingSoonModal textarea {
    resize: none;
    min-height: 75px;
}

/* Modal Action Buttons Styling */
#comingSoonModal button[type="button"] {
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
}

#comingSoonModal button[type="button"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

#comingSoonModal button[type="button"]:active {
    transform: translateY(0);
}

/* Mobile Responsive Optimizations */
@media (max-width: 768px) {
    #bookingBtn {
        padding: 10px 12px;
        font-size: 0.8rem;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    
    #bookingBtn i {
        font-size: 0.85rem;
    }

    #comingSoonModal > div {
        padding: 20px;
        width: 95%;
    }

    #comingSoonModal input,
    #comingSoonModal textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

.location-hero-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}
.location-image-box {
    flex-shrink: 0;
    width: 50%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.location-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.location-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 4rem;
    background: rgba(0, 210, 211, 0.08);
}
.location-info-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 768px) {
    .location-hero-wrapper {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 20px;
    }
    .location-image-box {
        width: 100vw;
        border-radius: 12px;
    }
}

/* --- Reviews Section Styles --- */
.reviews-section {
    padding: 50px 5%;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-title-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.reviews-title-box p {
    color: #64748b;
    font-size: 0.95rem;
}

.overall-rating-card {
    background: white;
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.rating-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.rating-stars {
    color: #f1c40f;
    font-size: 0.9rem;
    margin: 3px 0;
}

.rating-count {
    font-size: 0.75rem;
    color: #94a3b8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

/* Reviews List Area */
.reviews-list-wrapper h3, .review-form-wrapper h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.reviews-scroll-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 5px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.review-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.review-stars-display {
    color: #f1c40f;
    font-size: 0.8rem;
}

.review-text {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
}

/* Review Form Area */
.review-form-wrapper {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.form-group input, .form-group textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
}

/* Star Rating Picker (Interactive Hover Effect) */
.star-rating-picker {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-picker input {
    display: none;
}

.star-rating-picker label {
    font-size: 1.3rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating-picker label:hover,
.star-rating-picker label:hover ~ label,
.star-rating-picker input:checked ~ label {
    color: #f1c40f;
}

.submit-review-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s, transform 0.2s;
    margin-top: 5px;
}

.submit-review-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .overall-rating-card {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
    }
}

/* ==========================================================
   ADDED: Professional Laptop Layout & Polish (Min-Width: 1024px)
   ========================================================== */
@media (min-width: 1024px) {
    /* Refine main container bounds for wide laptop screens */
    .location-hero-content,
    .reviews-container {
        max-width: 1350px;
        margin: 0 auto;
    }

    /* Professional spacing and visual depth for the hero section on laptops */
    .location-hero {
        padding: 60px 8%;
    }

    /* Enhanced card scaling and depth on professional laptop displays */
    .results-container {
        padding: 40px 8%;
        gap: 30px;
    }

    .car-card:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 25px 35px rgba(0, 0, 0, 0.12);
    }

    /* Refined review section padding for desktop viewports */
    .reviews-section {
        padding: 70px 8%;
    }

    /* Smooth out layout grids for reviews to balance forms and lists on desktops */
    .reviews-grid {
        gap: 40px;
    }
}