/* LWG Booking System Styles */

.lwg-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.booking-form-main {
    background: #181818;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 48px;
}

/* Form Sections */
.form-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.form-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 200;
    color: var(--gold-primary);
    margin-bottom: 24px;
    position: relative;
    padding-left: 16px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--gold-primary);
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.package-option {
    position: relative;
}

.package-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-option label {
    display: block;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.package-option label:hover {
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.05);
    transform: translateY(-2px);
}

.package-option input:checked + label {
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.08);
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.25);
}

.package-option.featured label {
    border-color: rgba(212,175,55,0.3);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 14px;
    background: var(--gold-primary);
    color: var(--black-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package-header {
    margin-bottom: 12px;
}

.package-header h4 {
    font-size: 1.2rem;
    font-weight: 200;
    color: var(--white);
    margin-bottom: 8px;
}

.package-price {
    display: flex;
    gap: 12px;
    align-items: center;
}

.package-price span {
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.verze_sk .package-price .weekday::before {
    content: 'Pracovný deň: ';
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.verze_en .package-price .weekday::before {
    content: 'Weekday: ';
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.verze_en .package-price .weekend::before {
    content: 'Weekend: ';
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.verze_sk .package-price .weekend::before {
    content: 'Víkend: ';
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.package-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Package Info */
.package-info,
.discount-info,
.setup-note {
    padding: 20px;
    background: rgba(212,175,55,0.05);
    border-left: 3px solid var(--gold-primary);
    margin-top: 20px;
}

.package-info p,
.discount-info p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
}

.package-info ul,
.discount-info ul {
    list-style: none;
    padding-left: 0;
}

.package-info li,
.discount-info li {
    color: rgba(255,255,255,0.75);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.package-info li::before,
.discount-info li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.6rem;
}

.note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
}

/* Date Grid */
.date-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Form Fields */
.field {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.field label {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    font-weight: 700;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: all 0.25s ease;
    font-family: 'Argesta Text', serif;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
    background: rgba(255,255,255,0.05);
}

/* jQuery UI Datepicker Styling */
.ui-datepicker {
    background: var(--black-secondary) !important;
    border: 1px solid rgba(212,175,55,0.3) !important;
    padding: 10px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
    font-family: 'Argesta Text', serif !important;
}

.ui-datepicker-header {
    background: rgba(212,175,55,0.1) !important;
    border: 1px solid rgba(212,175,55,0.2) !important;
    color: var(--gold-primary) !important;
    padding: 10px !important;
    border-radius: 0 !important;
}

.ui-datepicker-title {
    color: var(--gold-primary) !important;
    font-weight: 700 !important;
    text-align: center;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer !important;
    color: var(--gold-primary) !important;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
    background: rgba(212,175,55,0.2) !important;
    border-color: var(--gold-primary) !important;
}

.ui-datepicker-calendar {
    background: transparent !important;
}

.ui-datepicker th {
    color: rgba(255,255,255,0.6) !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    padding: 8px 5px !important;
}

.ui-datepicker td {
    padding: 2px !important;
}

.ui-datepicker td a,
.ui-datepicker td span {
    text-align: center !important;
    padding: 8px !important;
    color: rgba(255,255,255,0.85) !important;
    border: 1px solid transparent !important;
    display: block !important;
    text-decoration: none !important;
    background: rgba(255,255,255,0.02) !important;
    transition: all 0.2s ease !important;
}

/* Available dates - GREEN */
.ui-datepicker td.available-date a {
    background: rgba(40, 167, 69, 0.15) !important;
    border-color: rgba(40, 167, 69, 0.3) !important;
    color: #28a745 !important;
    font-weight: 600 !important;
}

.ui-datepicker td.available-date a:hover {
    background: rgba(40, 167, 69, 0.3) !important;
    border-color: #28a745 !important;
    transform: scale(1.05);
}

/* Unavailable dates - RED (disabled) */
.ui-datepicker td.unavailable-date span {
    background: rgba(220, 53, 69, 0.15) !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
    color: #dc3545 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    text-decoration: line-through !important;
}

/* Past dates */
.ui-datepicker td.past-date span {
    background: rgba(255,255,255,0.02) !important;
    color: rgba(255,255,255,0.3) !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
}

/* Selected date */
.ui-datepicker td .ui-state-active {
    background: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
    color: var(--black-primary) !important;
    font-weight: 700 !important;
}

/* Today's date highlight */
.ui-datepicker td .ui-state-highlight {
    background: rgba(212,175,55,0.1) !important;
    border-color: rgba(212,175,55,0.4) !important;
    color: var(--gold-primary) !important;
}

/* Remove default jQuery UI button styling */
.ui-datepicker .ui-datepicker-buttonpane button {
    background: var(--gold-primary) !important;
    border: 1px solid var(--gold-primary) !important;
    color: var(--black-primary) !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
    font-family: 'Argesta Text', serif !important;
}

.ui-datepicker .ui-datepicker-buttonpane button:hover {
    background: transparent !important;
    color: var(--gold-primary) !important;
}

.field textarea {
    resize: vertical;
    min-height: 100px;
}

.field small {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

/* Luxury Setup Grid */
.luxury-setup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Add-ons Grid */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.addon-item {
    position: relative;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.02);
    padding: 20px;
    transition: all 0.3s ease;
}

/* Addon Image Wrapper and Thumbnail */
.addon-image-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}

.addon-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.addon-image-wrapper:hover .addon-thumbnail {
    transform: scale(1.1);
}

.view-image-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gold-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.addon-image-wrapper:hover .view-image-icon {
    opacity: 1;
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.8);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--gold-primary);
    font-size: 1.2rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: rotate(90deg);
}


.addon-item input:checked ~ .addon-image-wrapper {
    border-color: var(--gold-primary);
}

.addon-item:hover {
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.05);
    transform: translateY(-2px);
}

.addon-item.selected {
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.1);
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.3);
}

.addon-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.addon-item input[type="checkbox"]:checked + label {
    color: var(--gold-primary);
}

.addon-item input[type="checkbox"]:checked + label .addon-header h4 {
    color: var(--gold-primary);
}

.addon-item input[type="checkbox"]:checked ~ .addon-quantity-selector {
    display: flex !important;
}

.addon-item label {
    cursor: pointer;
    display: block;
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.addon-header h4 {
    font-size: 1.1rem;
    font-weight: 200;
    color: var(--white);
    margin: 0;
}

.addon-price {
    font-size: 1rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.addon-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.addon-quantity-selector {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: none;
    align-items: center;
    gap: 10px;
}

.addon-quantity-selector label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.addon-quantity-selector input[type="number"] {
    width: 70px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    text-align: center;
}

/* Special addon styles */
.addon-special {
    grid-column: span 2;
    background: rgba(212,175,55,0.05);
    border-color: rgba(212,175,55,0.3);
}

.addon-contact {
    grid-column: span 3;
}

.addon-contact-box {
    text-align: center;
    padding: 20px;
}

.addon-contact-box h4 {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-weight: 200;
}

.addon-contact-box p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
    line-height: 1.6;
}

.btn-contact {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
}

.luxury-option {
    position: relative;
}

.luxury-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.luxury-option label {
    display: block;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.luxury-option label:hover {
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.05);
}

.luxury-option input:checked + label {
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.08);
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.25);
}

.luxury-option h4 {
    font-size: 1.1rem;
    font-weight: 200;
    color: var(--white);
    margin-bottom: 8px;
}

.setup-price {
    font-size: 1.2rem;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.luxury-option p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.setup-note p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Customer Grid */
.customer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Price Summary */
.booking-summary-card {
    background: rgba(212,175,55,0.08);
    border: 1px solid var(--gold-primary);
    padding: 32px;
    margin: 32px 0;
}

.booking-summary-card h3 {
    font-size: 1.6rem;
    font-weight: 200;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
}

.summary-section {
    padding: 16px 0 8px 0;
    color: var(--gold-primary);
    font-size: 1.05rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.summary-discount {
    color: #28a745 !important;
    font-weight: 600;
}

.summary-discount span:last-child {
    color: #28a745 !important;
}

.summary-addon {
    padding-left: 20px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
}

.summary-total {
    border-top: 2px solid var(--gold-primary);
    border-bottom: none;
    margin-top: 12px;
    padding-top: 16px;
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.alert {
    padding: 12px 16px;
    margin-top: 12px;
    border-left: 3px solid var(--gold-primary);
    background: rgba(212,175,55,0.1);
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

/* Booking Notes */
.booking-notes {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
    margin-bottom: 32px;
}

.booking-notes h4 {
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: 16px;
    font-weight: 200;
}

.booking-notes ul {
    list-style: none;
    padding-left: 0;
}

.booking-notes li {
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.booking-notes li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

/* Form Actions */
.form-actions {
    text-align: center;
    padding-top: 24px;
}

.btn-submit {
    padding: 18px 64px;
    background: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    color: var(--black-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Argesta Text', serif;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    color: var(--gold-primary);
    background: var(--black-primary);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-note {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-top: 12px;
}

#availability-calendar {
  display: none;
}

.ui-datepicker {
  width: 300px;
}

h4.summary-title {
    font-size: 1.8rem;
    font-weight: 200;
    color: var(--gold-primary);
    margin-bottom: 24px;
    position: relative;
    padding-left: 16px;
}

.summary-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--gold-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .package-grid,
    .luxury-setup-grid {
        grid-template-columns: 1fr;
    }

    .customer-grid {
        grid-template-columns: 1fr;
    }

    .calendar-months-grid {
        grid-template-columns: 1fr;
    }
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    gap: 20px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 16px;
    border-radius: 4px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.15);
}

.legend-color.available {
    background: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.4);
}

.legend-color.unavailable {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.4);
}

/* Availability Warning */
.availability-warning {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-left: 4px solid #dc3545;
    margin-top: 12px;
    border-radius: 4px;
    color: rgba(255,255,255,0.9);
    animation: slideIn 0.3s ease;
}

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

.warning-icon {
    font-size: 24px;
    color: #dc3545;
}

.availability-warning strong {
    color: #dc3545;
    display: block;
    margin-bottom: 4px;
}

.availability-warning em {
    color: rgba(255,255,255,0.8);
    font-style: normal;
}

/* Availability Calendar */
.availability-calendar {
    margin-top: 32px;
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
}

.calendar-title {
    font-size: 1.4rem;
    font-weight: 200;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-align: center;
}

.calendar-months-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.calendar-month {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.month-header {
    background: rgba(212,175,55,0.1);
    padding: 12px;
    text-align: center;
    font-weight: 700;
    color: var(--gold-primary);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
    padding: 1px;
}

.calendar-day-header {
    background: rgba(255,255,255,0.03);
    padding: 8px 4px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.calendar-day {
    background: rgba(255,255,255,0.02);
    padding: 8px 4px;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: help;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.empty):not(.past) {
    background: rgba(255,255,255,0.05);
    transform: scale(1.05);
    z-index: 10;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.past {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.past .day-number {
    text-decoration: line-through;
}

.calendar-day.available {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.calendar-day.unavailable {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.day-number {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.status-icon {
    font-size: 0.7rem;
    margin-top: 2px;
}

.calendar-day.available .status-icon {
    color: #28a745;
}

.calendar-day.unavailable .status-icon {
    color: #dc3545;
}

/* Calendar responsive */
@media (max-width: 1024px) {
    .calendar-months-grid {
        grid-template-columns: 1fr;
    }

    .calendar-month {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
  .addons-grid {
        display: table;
        gap: unset;
        grid-template-columns: unset;
    }
    .addon-item {
    margin-bottom: 20px;
}
    .booking-form-main {
        padding: 28px 20px;
    }

    .date-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .btn-submit {
        width: 100%;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .lwg-booking-container {
        padding: 20px 12px;
    }

    .form-section {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }
}
