/* ========================================
   DUAL-MONTH BOOKING CALENDAR - 02.png Design with Brown Colors from 03.png
   Exact implementation matching 02.png but with brown color scheme
   ======================================== */

:root {
    /* Brown colors from 03.png */
    --calendar-primary: #AB7442;           /* Main brown color */
    --calendar-primary-dark: #8B5F36;      /* Darker brown for hover */
    --calendar-primary-light: rgba(171, 116, 66, 0.15);  /* Light brown for range */
    
    /* Calendar base colors */
    --calendar-bg: #ffffff;
    --calendar-border: #e1e5e9;
    --calendar-text: #333333;
    --calendar-text-light: #666666;
    --calendar-text-disabled: #999999;
    --calendar-shadow: rgba(0, 0, 0, 0.1);
    --calendar-past-bg: rgba(171, 116, 66, 0.1);  /* Light brown for past dates */
}

/* Main Calendar Container - matching 02.png rounded corners */
.dual-month-calendar {
    background: var(--calendar-bg);
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--calendar-shadow);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Calendar Header - matching 02.png spacing */
.calendar-header {
    background: var(--calendar-bg);
    padding: 24px 32px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.month-titles {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: center;
}

.month-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--calendar-text);
    margin: 0;
    text-align: center;
    min-width: 160px;
}

.nav-btn {
    background: var(--calendar-primary);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(171, 116, 66, 0.3);
}

.nav-btn:hover {
    background: var(--calendar-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(171, 116, 66, 0.4);
}

/* Calendar Grid Layout - side by side months */
.calendar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--calendar-bg);
    padding: 0 32px;
}

.month-grid {
    padding: 0 20px;
}

.month-grid:first-child {
    border-right: 1px solid var(--calendar-border);
}

/* Day Headers - exactly like 02.png */
.day-headers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.day-header {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--calendar-text-light);
    padding: 8px 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Date Grid - matching 02.png layout */
.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 20px;
}

.date-cell {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--calendar-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    margin: 0 auto;
    padding: 2px;
}

.date-cell:hover:not(.disabled):not(.other-month) {
    background: var(--calendar-primary-light);
    color: var(--calendar-primary);
}

/* Other month dates - like in 02.png */
.date-cell.other-month {
    color: var(--calendar-text-disabled);
    opacity: 0.6;
}

/* Past dates - light background and strikethrough like in 02.png */
.date-cell.disabled {
    background: var(--calendar-past-bg);
    color: var(--calendar-text-disabled);
    cursor: not-allowed;
    font-weight: 400;
    opacity: 0.7;
    text-decoration: line-through;
}

.date-cell.disabled:hover {
    background: var(--calendar-past-bg);
    color: var(--calendar-text-disabled);
}

/* Dates within minimum +2 days period - visual warning but still selectable */
.date-cell.min-period-warning {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    position: relative;
}

.date-cell.min-period-warning:hover {
    background: rgba(255, 193, 7, 0.25);
    border-color: rgba(255, 193, 7, 0.5);
}

.date-cell.min-period-warning::after {
    content: "⚠";
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 8px;
    color: #ff6b35;
    opacity: 0.8;
}

/* Empty cells for other month dates */
.date-cell.empty {
    background: transparent;
    cursor: default;
    pointer-events: none;
}

/* Today marker */
.date-cell.today:not(.selected) {
    font-weight: 700;
    color: var(--calendar-primary);
}

/* Date range selection - exactly like 02.png but with brown colors */
.date-cell.range-start,
.date-cell.range-end {
    background: var(--calendar-primary);
    color: white;
    font-weight: 600;
    border-radius: 8px;
}

.date-cell.in-range {
    background: var(--calendar-primary);
    color: white;
    font-weight: 600;
}

/* Connected range styling - creating the continuous blue/brown bar like 02.png */
.date-cell.range-start {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.date-cell.range-end {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.date-cell.in-range:not(.range-start):not(.range-end) {
    border-radius: 0;
}

/* Single selected date (not part of range) */
.date-cell.selected:not(.range-start):not(.range-end):not(.in-range) {
    background: var(--calendar-primary);
    color: white;
    font-weight: 600;
    border-radius: 8px;
}

/* Ensure date numbers are white in all selected states */
.date-cell.selected span,
.date-cell.range-start span,
.date-cell.range-end span,
.date-cell.in-range span {
    color: white !important;
}

/* Calendar Booking Summary - inside calendar frame like 02.png */
.calendar-booking-summary {
    padding: 24px 32px 32px;
    background: var(--calendar-bg);
    border-top: 1px solid var(--calendar-border);
}

.booking-summary-content {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.booking-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}

.booking-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--calendar-text);
}

.booking-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--calendar-text);
}

.booking-action {
    margin-left: auto;
    flex-shrink: 0;
}

.booking-continue-btn {
    background: var(--calendar-primary);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.booking-continue-btn:hover:not(.disabled) {
    background: var(--calendar-primary-dark);
}

.booking-continue-btn.disabled {
    background: #cccccc;
    cursor: not-allowed;
}

/* Old booking summary styles kept for compatibility */
.booking-summary {
    padding: 24px 32px 32px;
    background: var(--calendar-bg);
    display: flex;
    align-items: center;
    width: 100%;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    white-space: nowrap;
    text-align: left;
    margin-right: 60px;
}

.summary-item:last-child {
    margin-left: auto;
    margin-right: 0;
    align-items: center;
}

/* Labels and values - label above, value below like in 02.png */
.summary-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--calendar-text);
    margin: 0;
}

.summary-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--calendar-text);
    cursor: pointer;
    transition: color 0.2s ease;
    margin: 0;
}

.summary-value:hover {
    color: var(--calendar-primary);
}

/* Continue Button - brown rounded like blue in 02.png */
.continue-btn {
    background: #cccccc;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.2s ease;
    min-width: 120px;
}

.continue-btn.active {
    background: var(--calendar-primary);
    cursor: pointer;
}

.continue-btn.active:hover {
    background: var(--calendar-primary-dark);
}

/* Responsive Design */
/* Single month calendar below 1410px */
@media (max-width: 1410px) {
    .calendar-grid {
        grid-template-columns: 1fr !important;
    }
    
    .month-grid:nth-child(2) {
        display: none !important;
    }
    
    .month-titles {
        justify-content: center !important;
        gap: 0 !important;
    }
    
    .month-title:nth-child(2) {
        display: none !important;
    }
    
    .dual-month-calendar {
        max-width: 600px !important;
    }
}

@media (max-width: 768px) {
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .month-grid:first-child {
        border-right: none;
        border-bottom: 1px solid var(--calendar-border);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .month-titles {
        gap: 20px;
        flex-direction: column;
    }
    
    .booking-summary {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .summary-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dual-month-calendar {
        border-radius: 12px;
        margin: 0 16px;
    }
    
    .calendar-header,
    .month-grid,
    .booking-summary {
        padding: 16px 20px;
    }
    
    .date-cell {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* Availability Dots */
.date-number {
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

/* Bold styling for dates with available rooms */
.date-number.has-availability {
    font-weight: 700;
    color: var(--calendar-text);
}

.availability-dots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
    width: 18px;
    height: 12px;
    margin-top: 1px;
}

.availability-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: block;
    transition: all 0.2s ease;
}

.availability-dot.available {
    background-color: #22c55e; /* Green for available */
}

.availability-dot.occupied {
    background-color: #ef4444; /* Red for occupied */
}

.availability-dot:hover {
    transform: scale(1.2);
}

/* Hide dots on selected dates to maintain readability */
.date-cell.selected .availability-dots,
.date-cell.in-range .availability-dots,
.date-cell.range-start .availability-dots,
.date-cell.range-end .availability-dots {
    opacity: 0.3;
}

/* Hide dots on past dates */
.date-cell.disabled .availability-dots {
    opacity: 0.4;
}


.available-rooms h4,
.no-rooms-available h4 {
    color: var(--calendar-text);
    margin-bottom: 10px;
}

.selected-dates {
    font-size: 14px;
    color: var(--calendar-text-light);
    margin-bottom: 20px;
}

.room-list {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.room-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--calendar-border);
    transition: all 0.2s ease;
}

.room-item:hover {
    border-color: var(--calendar-primary);
    box-shadow: 0 2px 8px rgba(171, 116, 66, 0.1);
}

.room-info h5 {
    margin: 0;
    font-size: 16px;
    color: var(--calendar-text);
}

.room-floor {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: var(--calendar-text-light);
}

.select-room-btn {
    background: var(--calendar-primary);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.select-room-btn:hover {
    background: var(--calendar-primary-dark);
}

.booking-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.book-multiple-btn,
.modify-dates-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.book-multiple-btn {
    background: var(--calendar-text-light);
    color: white;
    border: none;
}

.modify-dates-btn {
    background: transparent;
    color: var(--calendar-text-light);
    border: 1px solid var(--calendar-border);
}

.no-rooms-available {
    text-align: center;
    padding: 20px;
}

.no-rooms-available h4 {
    color: #dc3545;
    margin-bottom: 12px;
}

.contact-btn {
    background: var(--calendar-primary);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    margin-top: 16px;
    cursor: pointer;
}

/* Minimum period notice styles */
.min-period-notice {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.min-period-notice-large {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.notice-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.4;
}

.min-period-notice-large .notice-text {
    font-size: 16px;
}

/* Informational room list styling */
.room-list.informational {
    margin: 8px 0 0 20px;
    color: var(--calendar-text-light);
    font-style: italic;
}

.room-list.informational li {
    color: var(--calendar-text-light);
    font-weight: normal;
    margin: 2px 0;
}

.no-rooms-info {
    margin: 8px 0 0 0;
    color: var(--calendar-text-light);
    font-style: italic;
}

/* Contact Form Styles */
.contact-form-container {
    margin-top: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--calendar-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.booking-summary h4 {
    color: var(--calendar-text);
    margin-bottom: 16px;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    font-size: 14px;
    color: var(--calendar-text);
}

.detail-item strong {
    color: var(--calendar-text);
}

.detail-item ul {
    margin: 4px 0 0 20px;
    padding: 0;
}

.detail-item li {
    color: var(--calendar-primary);
    font-weight: 500;
}

.booking-contact-form h4 {
    color: var(--calendar-text);
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--calendar-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--calendar-border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--calendar-text);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--calendar-primary);
    box-shadow: 0 0 0 2px rgba(171, 116, 66, 0.1);
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

.form-actions .btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-actions .btn-secondary {
    background: transparent;
    color: var(--calendar-text-light);
    border: 1px solid var(--calendar-border);
}

.form-actions .btn-secondary:hover {
    background: #f8f9fa;
}

.form-actions .btn-primary {
    background: var(--calendar-primary);
    color: white;
    border: none;
}

.form-actions .btn-primary:hover {
    background: var(--calendar-primary-dark);
}

.form-actions .btn-primary:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 48px;
    color: #22c55e;
    margin-bottom: 16px;
}

.success-message h4 {
    color: var(--calendar-text);
    margin-bottom: 12px;
}

.success-message p {
    color: var(--calendar-text-light);
    margin-bottom: 8px;
}

.success-message .btn {
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--calendar-primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .room-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .booking-actions {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .contact-form-container {
        padding: 16px;
    }
}

/* Contact Form Modal Styles */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 20px;
}

.contact-modal {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.contact-modal-content {
    padding: 0;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--calendar-border);
}

.contact-modal-title {
    margin: 0;
    color: var(--calendar-text);
    font-size: 18px;
    font-weight: 600;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--calendar-text-light);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.modal-close-btn:hover {
    background: #f5f5f5;
    color: var(--calendar-text);
}

#contact-modal-body {
    padding: 24px;
}

.modal-booking-summary {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal-booking-summary h5 {
    margin: 0 0 12px 0;
    color: var(--calendar-text);
    font-size: 16px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-row {
    font-size: 14px;
    color: var(--calendar-text);
}


.modal-contact-form h5 {
    margin: 0 0 16px 0;
    color: var(--calendar-text);
    font-size: 16px;
}

.modal-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--calendar-border);
}

.modal-form-actions .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.modal-form-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.modal-form-actions .btn-secondary:hover {
    background: #5a6268;
}

.modal-form-actions .btn-primary {
    background: var(--calendar-primary);
    color: white;
}

.modal-form-actions .btn-primary:hover {
    background: var(--calendar-primary-dark);
}

.modal-form-actions .btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.modal-success-message {
    text-align: center;
    padding: 40px 20px;
}

.modal-success-message .success-icon {
    font-size: 48px;
    color: #22c55e;
    margin-bottom: 16px;
}

.modal-success-message h4 {
    color: var(--calendar-text);
    margin-bottom: 12px;
}

.modal-success-message p {
    color: var(--calendar-text-light);
    margin-bottom: 8px;
}

.modal-success-message .btn {
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--calendar-primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Responsive modal */
@media (max-width: 768px) {
    .contact-overlay {
        padding: 10px;
    }
    
    .contact-modal {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    #contact-modal-body {
        padding: 20px;
    }
    
    .modal-form-actions {
        flex-direction: column-reverse;
    }
    
}

/* Contact Form Modal Styles */
.contact-form-modal {
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.booking-summary-section {
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 2px solid var(--calendar-primary);
}

.booking-summary-section h5 {
    margin: 0 0 12px 0;
    color: var(--calendar-text);
    font-size: 16px;
    font-weight: 600;
}

.booking-summary-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-card {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #dee2e6;
}

.summary-icon {
    width: 32px;
    height: 32px;
    background: var(--calendar-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    opacity: 1;
    font-weight: bold;
}

.summary-content {
    flex: 1;
}

.summary-label {
    font-size: 12px;
    color: var(--calendar-text-light);
    font-weight: 500;
    margin-bottom: 2px;
}

.summary-value {
    font-size: 14px;
    color: var(--calendar-text);
    font-weight: 600;
}

.contact-form-section {
    background: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid #dee2e6;
}

.contact-form-section h5 {
    margin: 0 0 12px 0;
    color: var(--calendar-text);
    font-size: 16px;
    font-weight: 600;
}

.contact-form-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-form-section .form-group {
    margin-bottom: 12px;
}

.contact-form-section .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--calendar-text);
    margin-bottom: 4px;
}

.contact-form-section .form-group input,
.contact-form-section .form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    color: var(--calendar-text);
    transition: border-color 0.2s ease;
    background: white;
}

.contact-form-section .form-group input:focus,
.contact-form-section .form-group textarea:focus {
    outline: none;
    border-color: var(--calendar-primary);
}

.contact-form-section .form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.guest-continue-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.guest-continue-btn.secondary {
    background: #6c757d;
    color: white;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

.guest-continue-btn.secondary:hover {
    background: #5a6268;
}

.guest-continue-btn:not(.secondary) {
    background: var(--calendar-primary);
    color: white;
}

.guest-continue-btn:not(.secondary):hover {
    background: var(--calendar-primary-dark);
}

/* Responsive adjustments for contact form modal */
@media (max-width: 768px) {
    .contact-form-modal {
        width: 95%;
        max-height: 85vh;
        overflow-y: auto;
        top: 30%;
        transform: translate(-50%, -50%);
    }
    
    .booking-summary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .summary-card {
        padding: 12px;
    }
    
    .summary-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .contact-form-section .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modal-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .guest-continue-btn {
        width: 100%;
    }
}

/* No animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .date-cell,
    .nav-btn,
    .guest-btn,
    .continue-btn,
    .availability-dot,
    .room-item,
    .select-room-btn,
    .form-group input,
    .form-group textarea,
    .modal-close-btn {
        transition: none;
    }
}