/* ================= RESET / BASE ================= */
* {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    margin: 0;
    background: #fff;
    color: #111;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
html {
    height: 100%;
}

main {
    flex: 1;
}

/* ================= HEADER (DESKTOP DEFAULT) ================= */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0px;
    
}

.header-inner {
    display: flex;
    align-items: stretch; /* ← change this from center */
    justify-content: space-between;
}



/* NAV */
.main-nav {
    display: flex;
    gap: 3rem;
}

.main-nav a {
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #111;
    text-transform: uppercase;
    padding: 8px 0;
   
}

.main-nav a:hover {
    opacity: 0.7;
}

/* HEADER ICONS */
.header-icons {
    display: flex;
    gap: 1.8rem;
    padding: 8px 0;
    margin-right: 3rem;
}

.header-icons i {
    font-size: 2rem;
    cursor: pointer;
}

/* ================= SERVICES SECTION ================= */
.services {
    display: flex;
    justify-content: center;
    gap: 9rem;
    padding: 6rem 2rem 4rem;
    margin-top: 4rem;
    margin-bottom: 6rem;
}

.service-card {
    text-align: center;
    cursor: pointer;
}
.service-card a {
    text-decoration: none;
    color: inherit;
}


.service-card p {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
}

.service-icon {
    width: 10.2rem;
    height: 10.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #111;
    transition: color 0.2s ease, transform 0.25s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card:hover .service-icon {
    color: #00b0ff;
    transform: scale(1.08);
}

/* Hide old Font Awesome icons if still in HTML */
.service-card > i {
    display: none;
}

/* ================= GLOBAL BUTTON LOGIC ================= */

/* Base Button Style */
.btn-inch, .btn-service, .btn-oil {
    flex: 1;
    background: #fff;
    border: 1px solid #ccc;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    color: #333;
    text-align: center;
}

/* 1. The Hover State: ONLY applies if the button is NOT active */
.btn-inch:not(.active):hover, 
.btn-service:not(.active):hover {
    background-color: #f2f2f2; /* Light grey hover */
    border-color: #333;
}

/* 2. The Active/Selected State: Dark Grey */
.btn-inch.active, .btn-service.active, .btn-oil.active {
    background: #3d3d3d !important;
    color: #fff !important;
    border-color: #3d3d3d;
    cursor: default; /* Removes the "hand" pointer since it's already selected */
}

/* Ensure active buttons do NOT change color on hover */
.btn-inch.active:hover, .btn-service.active:hover {
    background: #3d3d3d !important;
    color: #fff !important;
}

/* Hover effect /
/* Search Box Styling */
.search-box {
    display: flex;
    width: 100%;
    max-width: 700px; /* Increased for better desktop presence */
    margin-top: 1rem;
    height: calc(1.1em + 30px); /* Matching the height of your step 1 & 2 buttons */
}

#city-input {
    flex: 3;
    padding: 0 20px;
    border: 1px solid #ccc;
    border-right: none; /* Merges with button */
    font-size: 1.2rem;
    outline: none;
    transition: border-color 0.2s;
}
#city-input:focus {
    border-color: #3d3d3d;
}

#search-btn {
    flex: 1;
    background: #3d3d3d;
    color: white;
    border: 1px solid #3d3d3d;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.2s;
}
#search-btn:hover {
    background: #111;
}


/* ── FOOTER STYLING ── */
.site-footer {
    background: linear-gradient(135deg, #f5f5f5  0%, #fff 100%);
    border-top: 2px solid #00b0ff;
    padding: 40px 20px;
    margin-top: auto; 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.site-footer a {
    color: #00b0ff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.site-footer a:hover {
    color: #00b0ff;
    border-color: #00b0ff;
    background-color: rgba(0, 176, 255, 0.1);
    transform: translateY(-2px);
}
.shop-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 30px;
    text-decoration: none;
    font-size: 0.8rem;
    vertical-align: middle;
    padding: 2px 8px 2px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}
.shop-google-badge:hover {
    border-color: #4285f4;
    background: #f0f6ff;
}
.badge-rating {
    font-weight: 700;
    color: #222;
    font-size: 0.82rem;
}
.badge-star {
    color: #f4a10a;
    font-size: 0.9rem;
}
.badge-count {
    color: #888;
    font-size: 0.75rem;
}


.shop-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
    margin-right: 0;
}
.shop-thumb-fallback {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 1.2rem;
    flex-shrink: 0;
}


/* ========================================================= */
/* ======================= MOBILE =========================== */
/* ========================================================= */
@media (max-width: 900px) {

    /* HEADER */
    .site-header {
        padding: 0; 
    }

   .header-inner {
    flex-direction: row; /* Keep them in a line on mobile */
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    padding: 0; 
}

.menu-btn {
   display: flex;  /* ← was block */
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        order: -1;
        padding: 12px 16px;  /* ← add breathing room */}

    /* TOP ROW */
    .mobile-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

  

    .header-icons {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        padding: 0 16px;
        margin-right: 0.5rem;
    }

    .header-icons i {
        font-size: 1.4rem;
    }

    /* LOGO */
    .logo {
        flex: 1;  /* ← takes remaining space */
        text-align: center;
        margin-top: 0;  /* ← was 0.4rem */
        display: flex;
        align-self: stretch;
        align-items: stretch;
    }

    .logo a {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 12px 1.5rem;  /* ← was 14px 1.5rem, remove top/bottom */
        display: flex;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        width: 100%;
     background-color: #00b0ff;  
    }

    /* DESKTOP NAV HIDDEN */
    .main-nav {
        display: none;
    }

    /* SERVICES */
    .services {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 1rem;
        margin-top: 4rem;
        margin-bottom: 4rem;
    }



    /* Container Spacing */
.booking-container,
.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}


/* Selection Grid */
.selection-grid {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Base Button Style */
.btn-select {
    flex: 1;
    padding: 1.5rem;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* The "Selected" state (Dark background from your screenshot) */
.btn-select.active {
    background: #333 !important;
    color: #fff !important;
}

/* Hiding the second step */
.hidden-section {
    display: none; /* JS will change this to block */
    margin-top: 3rem;
}

.hidden-section.visible {
    display: block;
}


/* Container Layout */
.booking-container {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.header-intro {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 2rem;
}

.main-icon { font-size: 3rem; color: #333; }

.step-section {
    margin-bottom: 4rem;
    animation: fadeIn 0.4s ease-in;
}

/* Button Layout */
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}




@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* this is part for step 4 */
.workshop-card {
    border: 1px solid #333;
    margin-bottom: 1rem;
    background: #fff;
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    justify-content: space-between;
    padding: 1rem;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.shop-name { font-weight: bold; font-size: 1.1rem; }
.shop-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 30px;
    text-decoration: none;
    font-size: 0.8rem;
    vertical-align: middle;
    padding: 2px 8px 2px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}
.shop-google-badge:hover {
    border-color: #4285f4;
    background: #f0f6ff;
}
.badge-rating {
    font-weight: 700;
    color: #222;
    font-size: 0.82rem;
}
.badge-star {
    color: #f4a10a;
    font-size: 0.9rem;
}
.badge-count {
    color: #888;
    font-size: 0.75rem;
}
.shop-google-badge {
 
    margin-left: 10px;
  
}

.shop-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
    margin-right: 0;
}
.shop-thumb-fallback {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.shop-dist { color: #666; }
.shop-price { font-weight: bold; 
        align-self: flex-end; /* Keeps price on the right if you prefer */
        font-size: 1.1rem;}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    align-items: stretch; /* Ensures children stretch to fill width */
    /* flex-wrap: wrap; */
}

.card-body select {
        flex: 1; /* Fills remaining space next to the icon */
        padding: 12px;
        font-size: 1rem;
        background-color: #f9f9f9;
        border: 1px solid #ccc;
}

.btn-book {
    width: 100%;
    margin-left: 0; /* Reset desktop auto-margin */
    background: #00b0ff; /* The blue from your screenshot */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

.btn-book:hover { background: #009be0; }



    /* MOBILE MENU */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 260px;
        height: 100%;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0,0,0,0.15);
        padding: 1rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .mobile-menu.active {
        left: 0;
    }
.header-inner {
        display: flex;
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 10px;
    }
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    /* * Hide desktop nav */
    .main-nav {
        display: none !important;
    }

    .mobile-menu li {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
        cursor: pointer;
    }
    .mobile-menu a {
    color: inherit;        /* use the same color as the parent */
    text-decoration: none; /* remove underline */
}

.mobile-menu a:visited {
    color: inherit;
}

.mobile-menu a:hover {
    text-decoration: none;
    color: inherit; /* or choose a hover color */
}

.mobile-menu a:active {
    color: inherit;
}

  .menu-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f9f9f9; /* Light grey to distinguish from main items */
}

.menu-sub.active {
    max-height: 300px; /* Big enough to hold the items */
}

    .menu-sub li {
        padding-left: 1rem;
        font-size: 1rem;
    }
#produkte-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* If you add a span around the arrow in HTML, you can rotate it */
/* Example: <li id="produkte-btn">Produkte <span>▸</span></li> */
#produkte-btn.active span {
    transform: rotate(90deg);
    transition: 0.2s;
}
    /* OVERLAY */
    #menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        display: none;
        z-index: 900;
    }

    #menu-overlay.active {
        display: block;
    }
    .date-select, .time-select {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
}

/* ================= FORCE DESKTOP CLEAN ================= */
@media (min-width: 901px) {
    .menu-btn,
    .mobile-top,
    .mobile-menu,
    #menu-overlay {
        display: none !important;
    }
    .booking-container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 4rem 2rem;
    }

    /* Force buttons into a horizontal row */
    .button-group {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    /* --- Step 4: Workshop Card Desktop Styling --- */
    .workshop-card {
        border: 1px solid #333;
        margin-bottom: 2rem;
        background: #fff;
    }

    /* The top part (Name, Distance, Price) */
    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        border-bottom: 1px dotted #ccc; /* Dotted line from your screenshot */
        background: transparent;
    }
    .shop-name-group {
    display: flex;
    align-items: center;
    gap: 0.6rem; /* this controls image ↔ name spacing */
}
    .shop-name { font-weight: bold; font-size: 1.3rem; }
    .shop-dist { color: #555; font-size: 1.1rem; }
    .shop-price { font-size: 1.2rem; }

    /* The bottom part (Date, Time, Button) */
    .card-body {
        display: flex;
        flex-direction: row; /* Horizontal on desktop */
        align-items: center;
        gap: 2.5rem;
        padding: 1.5rem;
    }

 

    .card-body select {
        flex: 1; /* Fills remaining space next to the icon */
        padding: 12px;
        border: 1px solid #ccc;
        background: #f9f9f9;
        font-size: 1.1rem;
        min-width: 220px;
    }

    /* Blue Booking Button */
    .btn-book {
        background: #00b0ff;
        color: white;
        border: none;
        padding: 15px 25px;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.1rem;
        transition: background 0.2s;
        border-radius: 2px; /* Slight rounding to match your screenshot */
    }

    .btn-book:hover {
        background: #0096db;
    }
}

/* Keep search box clean on desktop */
@media (min-width: 901px) {
    .search-box {
        max-width: 500px;
    }

    
}

/* Mobile Tweaks */
@media (max-width: 600px) {
    .button-group { flex-direction: column; }
}
/* ================= STEP VISIBILITY FIX ================= */
/* This ensures that when JS removes the 'hidden' attribute, the section appears */
.step-section[hidden] {
    display: none !important;
}

.step-section {
    display: block;
    margin-bottom: 4rem;
    animation: fadeIn 0.4s ease-in;
}

/* ================= STEP 5: SUMMARY & BOOKING FORM ================= */

.summary-container {
    max-width: 800px;
    margin: 0 auto;
    color: #111;
    line-height: 1.5;
}

#summary-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.summary-details p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.summary-details strong {
    font-weight: 700;
}

.summary-details small {
    color: #444;
}

/* Service Includes List */
.service-includes {
    margin: 2rem 0;
}

.service-includes ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.service-includes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.3rem;
}

.service-includes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

/* Price Box & Addon Selection */
.price-box {
    margin: 2rem 0;
    border-top: 1px dotted #ccc;
    padding-top: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Update this section in your app.css */
.addon-selection {
    display: flex; /* Use flex to align checkbox left and price right */
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    visibility: visible;
    opacity: 1;
}

/* Force it to hide ONLY when the [hidden] attribute is actually present */
.addon-selection[hidden] {
    display: none !important;
}

/* Ensure the label inside takes full width */
.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.checkbox-container input {
    margin-right: 15px;
    transform: scale(1.3);
}

.addon-price-label {
    font-weight: bold;
}

.price-row.total {
    border-top: 1px dotted #ccc;
    padding-top: 1rem;
    font-size: 1.4rem;
}

.tax-note {
    display: block;
    text-align: right;
    color: #666;
    font-size: 0.9rem;
}
/* Container for the summary step */
#step-5 {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

/* The Addon Box (Auswuchten) */
.addon-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.addon-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.addon-left input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.addon-price {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Ensure hidden steps stay hidden */
.step-section[hidden] {
    display: none !important;
}

/* Customer Data Form */
.customer-data-section {
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.customer-data-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

#booking-form, #price-request-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    margin-top: 1.5rem;
}

/* Gray input fields to match your screenshot */
#booking-form :is(input, textarea, select),
#price-request-form :is(input, textarea, select) {
    width: 100%;
    padding: 14px;
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
    border-radius: 2px;
    font-size: 1rem;
    resize: vertical;
}

#booking-form input:focus, 
#booking-form textarea:focus {
    background-color: #fff;
    border-color: #00b0ff;
    outline: none;
}

#price-request-form .btn-final-book {
    width: 100% !important;
    margin-top: 10px;
}

/* Final Blue Button */
.btn-final-book {
    background: #00b0ff; /* Blue from image_5fda95.png */
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
}

.btn-final-book:hover {
    background: #0096db;
}

/* Mobile Tweaks for Step 5 */
@media (max-width: 600px) {
    .summary-container {
        padding: 0 10px;
    }
    .price-row {
        font-size: 1rem;
    }
}

/* Ölwechsel Specific Styles */
.sub-heading {
    font-size: 0.6em;
    font-weight: normal;
    color: #555;
}

/* .btn-oil {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px 30px;
    font-size: 1.1em;
    line-height: 1;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
} */
.btn-oil:hover { border-color: #333; background-color: #f2f2f2; /* Light grey hover */ }

/* "Unsicher" Banner */
.unsicher-banner {
    border: 1px solid #ddd;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    background-color: #fafafa;
}
.unsicher-banner ul {
    margin: 5px 0 0 20px;
    font-size: 0.9em;
    color: #555;
}
.btn-contact-us {
    background-color: #00a8ff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}
.btn-contact-us:hover { background-color: #0097e6; }

/* Global Info Footer (Gut zu wissen) */
.info-footer {
    display: flex;
    gap: 15px;
    background-color: #f1f1f1;
    padding: 20px;
    margin-top: 40px;
    border-left: 4px solid #cc0000;
}
.info-icon {
    font-size: 2em;
    color: #333;
}
.text-red { color: #cc0000; display: block; margin-bottom: 5px; }
.text-blue { color: #0088cc; }
.info-content p { margin: 0; font-size: 0.9em; line-height: 1.5; color: #444; }

/* Basic tooltip styling */
.oil-tooltip {
    position: absolute;
    max-width: 260px;
    background: #222;
    color: #fff;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 6px;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Preis auf Anfrage für Service Öl */
.modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}

.modal-content{
background:#fff;
padding:30px;
width:500px;
max-width:90%;
border-radius:6px;
}

.modal-close{
float:right;
cursor:pointer;
font-size:22px;
}
/* ================= DESKTOP DROPDOWN ================= */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

/* dropdown container */
.dropdown-menu {
    position: absolute;

    top: 100%;      /* directly under nav item */
    left: 0;

    margin-top: 0;

    background: #fff;
    min-width: 260px;

    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);

    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;

    transition: all 0.2s ease;
    z-index: 2000;
}
/* SHOW MENU when hovering the whole dropdown container */
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* dropdown items */
.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #111;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}
/* invisible hover buffer below nav item */
.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;       /* directly below the nav link */
    left: 0;
    width: 100%;
    height: 12px;    /* 10–12px buffer is enough */
    pointer-events: all; /* allows hover to extend */
}

#price-request-section {
    width: 100%;
}

#price-request-section .booking-confirmation {
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
}