/* ============================================
   BOOKING PAGE CSS - Booking Form Styles
   ============================================ */

/* Enhanced GLightbox Styles for Booking Gallery */
.glightbox {
    cursor: pointer;
    position: relative;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.glightbox:hover {
    text-decoration: none;
    transform: scale(1.02);
    opacity: 0.9;
}

.glightbox::before,
.glightbox::after,
.glightbox-clean::before,
.glightbox-clean::after,
.no-icon::before,
.no-icon::after {
    display: none !important;
    content: none !important;
}

/* Enhanced GLightbox Modal Styles */
.gslide-media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.gslide-image img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gslide-image img:hover {
    transform: scale(1.05);
}

/* Lightbox Navigation Buttons */
.gbtn-next,
.gbtn-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.gbtn-next:hover,
.gbtn-prev:hover {
    background: rgba(255, 74, 23, 0.95) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 74, 23, 0.4);
}

.gbtn-next svg,
.gbtn-prev svg {
    width: 24px;
    height: 24px;
    fill: #333;
    transition: fill 0.3s ease;
}

.gbtn-next:hover svg,
.gbtn-prev:hover svg {
    fill: #fff;
}

/* Close Button */
.gbtn-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    top: 20px;
    right: 20px;
}

.gbtn-close:hover {
    background: rgba(239, 68, 68, 0.95) !important;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.gbtn-close svg {
    width: 20px;
    height: 20px;
    fill: #333;
    transition: fill 0.3s ease;
}

.gbtn-close:hover svg {
    fill: #fff;
}

/* Lightbox Overlay */
.glightbox-overlay {
    background: rgba(0, 0, 0, 0.92) !important;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Lightbox Content Animation */
.gslide {
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active slide - fully visible */
.gslide.current {
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: blur(0) !important;
    z-index: 10;
}

/* Previous and next slides - visible but dimmed */
.gslide.prev,
.gslide.next {
    opacity: 0.3 !important;
    filter: blur(4px) !important;
    transform: scale(0.85) !important;
    pointer-events: none;
    z-index: 1;
}

.gslide.prev {
    transform: scale(0.85) translateX(-20%) !important;
}

.gslide.next {
    transform: scale(0.85) translateX(20%) !important;
}

/* Hide slides that are not adjacent */
.gslide:not(.current):not(.prev):not(.next) {
    opacity: 0 !important;
    visibility: hidden;
    display: none !important;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Ensure slides container allows overflow for adjacent slides */
.glightbox-slides {
    overflow: visible !important;
}

/* Adjust media container for adjacent slides */
.gslide-media.prev,
.gslide-media.next {
    opacity: 0.3 !important;
    filter: blur(4px) !important;
    transform: scale(0.85) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gslide-media.current {
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: scale(1) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Lightbox Overlay */
.glightbox-overlay {
    background: rgba(0, 0, 0, 0.92) !important;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

/* Ensure slides wrapper allows overflow for adjacent slides */
.glightbox-slides-wrapper {
    overflow: visible !important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Counter/Description */
.glightbox-desc {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: #333;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Thumbnail Navigation (if enabled) */
.glightbox-thumbs {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.glightbox-thumb {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.glightbox-thumb:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.glightbox-thumb.active {
    border: 2px solid #ff4a17;
    transform: scale(1.05);
}

/* Loading Spinner */
.glightbox-loader {
    border-color: #ff4a17;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gbtn-next,
    .gbtn-prev {
        width: 40px;
        height: 40px;
    }
    
    .gbtn-next svg,
    .gbtn-prev svg {
        width: 20px;
        height: 20px;
    }
    
    .gbtn-close {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }
    
    .gslide-media {
        border-radius: 8px;
    }
}

/* Page Background */
body {
    background: var(--white);
}

/* ===== Breadcrumbs ===== */
.booking-breadcrumbs {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.booking-breadcrumbs-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.booking-breadcrumbs-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(0, 0, 0, 0.6);
}

.booking-breadcrumbs-nav a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.booking-breadcrumbs-nav a:hover {
    color: var(--orange);
}

.booking-breadcrumbs-separator {
    color: rgba(0, 0, 0, 0.3);
    font-size: 10px;
}

.booking-breadcrumbs-current {
    color: var(--black);
    font-weight: 400;
}

.booking-breadcrumbs-badges {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

@media (min-width: 768px) {
    .booking-breadcrumbs-badges {
        display: flex;
    }
}

.booking-breadcrumbs-badge {
    padding: 4px 8px;
    border-radius: var(--radius-18);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.6);
}

/* ===== Gallery Section ===== */
.booking-gallery-section {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 0;
}

.booking-gallery-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border-radius: var(--radius-22);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 520px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 769px) {
    .booking-gallery-grid {
        height: 580px;
    }
}

.booking-gallery-main {
    grid-column: span 4;
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    min-height: 0;
}

@media (min-width: 769px) {
    .booking-gallery-main {
        grid-column: span 2;
    }
}

.booking-gallery-main a {
    display: block;
    width: 100%;
    height: 100%;
}

.booking-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-gallery-main:hover img {
    transform: scale(1.05);
}

.booking-gallery-item {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    min-height: 0;
}

@media (min-width: 769px) {
    .booking-gallery-item-top {
        grid-column: span 1;
    }
    
    .booking-gallery-item-bottom {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .booking-gallery-item-top,
    .booking-gallery-item-bottom {
        grid-column: span 1 !important;
    }
    
    .booking-gallery-grid {
        height: 400px;
    }
}

.booking-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.booking-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-gallery-item:hover img {
    transform: scale(1.08);
}

.booking-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.booking-gallery-overlay-content {
    text-align: center;
    color: var(--white);
}

.booking-gallery-overlay-content i {
    font-size: 28px;
    margin-bottom: 6px;
    display: block;
    color: var(--orange);
}

.booking-gallery-overlay-content p:first-of-type {
    font-size: 20px;
    font-weight: 900;
    margin: 0;
    color: var(--white);
}

.booking-gallery-overlay-content p:last-of-type {
    font-size: 12px;
    opacity: 0.9;
    margin: 4px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-gallery-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    color: var(--black);
    padding: 14px 24px;
    border-radius: var(--radius-18);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.booking-gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--orange);
}

.booking-gallery-btn i {
    color: var(--orange);
    font-size: 18px;
}

.booking-gallery-btn-count {
    background: rgba(255, 75, 23, 0.15);
    color: var(--orange);
    padding: 4px 10px;
    border-radius: var(--radius-999);
    font-size: 12px;
    font-weight: 700;
}

.booking-gallery-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-22);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
}

.booking-gallery-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Title Section ===== */
.booking-title-section {
    background: var(--white);
    padding: 24px 0;
}

.booking-title-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .booking-title-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }
}

.booking-title-main {
    flex: 1;
}

.booking-title-main h1 {
    font-size: 24px;
    font-weight: 900;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .booking-title-main h1 {
        font-size: 30px;
    }
}

.booking-title-meta {
    margin-top: 4px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.booking-title-rating {
    margin-top: 8px;
    font-size: 13px;
}

.booking-title-amenities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    font-size: 11px;
}

@media (min-width: 768px) {
    .booking-title-amenities {
        grid-template-columns: repeat(3, 1fr);
    }
}

.booking-title-amenity {
    padding: 8px 12px;
    border-radius: var(--radius-22);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
}

/* ===== Main Container ===== */
.booking-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .booking-container {
        grid-template-columns: minmax(0, 2fr) 1fr;
        gap: 32px;
    }
    
    .booking-section > div[style*="grid-template-columns: 1fr"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

.booking-main {
    display: grid;
    gap: 32px;
    min-width: 0;
}

.booking-sidebar {
    min-width: 0;
}

@media (min-width: 1024px) {
    .booking-sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}

/* ===== Booking Card ===== */
.booking-card {
    background: var(--white);
    border-radius: var(--radius-26);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .booking-card {
        padding: 32px;
    }
}

/* ===== Stepper ===== */
.booking-stepper {
    margin-bottom: 32px;
}

.booking-stepper-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 16px;
}

.booking-stepper-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .booking-stepper-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.booking-stepper-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.booking-stepper-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.booking-stepper-number.active {
    background-color: var(--black);
    color: var(--white);
}

.booking-stepper-number.completed {
    background-color: var(--orange);
    color: var(--white);
}

.booking-stepper-number.pending {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.4);
}

.booking-stepper-label {
    font-weight: 400;
    color: var(--black);
}

.booking-stepper-sublabel {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 2px;
}

/* ===== Form Section ===== */
.booking-section {
    margin-bottom: 32px;
}

.booking-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.booking-section-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-22);
    background: rgba(255, 59, 20, 0.1);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.booking-section-icon i {
    color: var(--orange);
    font-size: 18px;
}

.booking-section-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
    margin: 0;
}

.booking-section-subtitle {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 4px;
}

/* ===== Calendar ===== */
.booking-calendar-widget {
    background: var(--white);
    border-radius: var(--radius-22);
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-soft);
}

.booking-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.booking-calendar-nav {
    padding: 12px;
    border-radius: var(--radius-22);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    color: rgba(0, 0, 0, 0.6);
}

.booking-calendar-nav:hover {
    background: rgba(0, 0, 0, 0.05);
}

.booking-calendar-month {
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
}

.booking-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.booking-calendar-weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
    padding: 12px 0;
}

.booking-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.booking-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-18);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 400;
    min-height: 40px;
    position: relative;
}

.booking-calendar-day:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.booking-calendar-day.available {
    background-color: rgba(34, 197, 94, 0.1);
    color: #166534;
}

.booking-calendar-day.available:hover {
    background-color: rgba(34, 197, 94, 0.2);
}

.booking-calendar-day.unavailable {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    cursor: not-allowed;
    opacity: 0.6;
}

.booking-calendar-day.unavailable:hover {
    background-color: rgba(239, 68, 68, 0.1);
}

.booking-calendar-day.selected {
    background-color: #3b82f6 !important;
    color: white !important;
}

.booking-calendar-day.range-start {
    background-color: #3b82f6 !important;
    color: white !important;
    border-radius: var(--radius-18) 0 0 var(--radius-18);
}

.booking-calendar-day.range-end {
    background-color: #3b82f6 !important;
    color: white !important;
    border-radius: 0 var(--radius-18) var(--radius-18) 0;
}

.booking-calendar-day.in-range {
    background-color: rgba(59, 130, 246, 0.2) !important;
    color: #1e40af !important;
    border-radius: 0;
}

.booking-calendar-day.other-month {
    color: rgba(0, 0, 0, 0.3);
    opacity: 0.5;
}

.booking-calendar-day.today {
    border: 2px solid var(--orange);
}

.booking-calendar-legend {
    margin-top: 24px;
    padding: 16px;
    border-radius: var(--radius-22);
    background: rgba(0, 0, 0, 0.02);
}

.booking-calendar-legend-title {
    font-weight: 400;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 12px;
}

.booking-calendar-legend-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    font-size: 12px;
}

.booking-calendar-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-calendar-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 999px;
}

/* ===== Form Fields ===== */
.booking-form-group {
    margin-bottom: 16px;
}

.booking-form-label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 8px;
}

.booking-form-input,
.booking-form-select,
.booking-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-22);
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 14px;
    transition: all 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.booking-form-input:focus,
.booking-form-select:focus,
.booking-form-textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 59, 20, 0.1);
}

.booking-form-textarea {
    resize: none;
    min-height: 80px;
}

.booking-form-date-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-form-box {
    padding: 16px;
    border-radius: var(--radius-22);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* ===== Add-ons ===== */
.booking-addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .booking-addons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.booking-addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: var(--radius-22);
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.2s;
}

.booking-addon-item:hover {
    border-color: var(--orange);
    background: rgba(255, 59, 20, 0.02);
}

.booking-addon-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-addon-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-18);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.booking-addon-icon.blue {
    background: rgba(59, 130, 246, 0.1);
}

.booking-addon-icon.blue i {
    color: #3b82f6;
}

.booking-addon-icon.green {
    background: rgba(34, 197, 94, 0.1);
}

.booking-addon-icon.green i {
    color: #22c55e;
}

.booking-addon-icon.purple {
    background: rgba(168, 85, 247, 0.1);
}

.booking-addon-icon.purple i {
    color: #a855f7;
}

.booking-addon-icon.pink {
    background: rgba(236, 72, 153, 0.1);
}

.booking-addon-icon.pink i {
    color: #ec4899;
}

.booking-addon-icon.orange {
    background: rgba(249, 115, 22, 0.1);
}

.booking-addon-icon.orange i {
    color: #f97316;
}

.booking-addon-info {
    flex: 1;
}

.booking-addon-name {
    font-weight: 400;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 2px;
}

.booking-addon-desc {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.booking-addon-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-addon-price-value {
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
}

.booking-addon-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--orange);
    cursor: pointer;
}

/* ===== Guest Details ===== */
.booking-guest-card {
    padding: 16px;
    border-radius: var(--radius-22);
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 16px;
}

.booking-guest-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    color: #1e40af;
    margin-bottom: 12px;
}

.booking-guest-card-header i {
    color: #3b82f6;
}

.booking-guest-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .booking-guest-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== File Upload ===== */
.booking-file-upload {
    border: 2px dashed rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-22);
    padding: 24px;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.booking-file-upload:hover {
    border-color: var(--orange);
    background: rgba(255, 59, 20, 0.02);
}

.booking-file-upload input {
    display: none;
}

.booking-file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.booking-file-upload-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.05);
    display: grid;
    place-items: center;
}

.booking-file-upload-icon i {
    color: rgba(0, 0, 0, 0.4);
    font-size: 20px;
}

.booking-file-upload-title {
    font-weight: 400;
    font-size: 14px;
    color: var(--black);
}

.booking-file-upload-desc {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.booking-file-preview {
    margin-top: 12px;
    display: none;
}

.booking-file-preview.show {
    display: block;
}

.booking-file-preview img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: var(--radius-18);
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 8px;
}

.booking-file-preview img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: var(--radius-18);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-file-remove {
    margin-top: 8px;
    font-size: 12px;
    color: #dc2626;
    cursor: pointer;
    text-decoration: none;
}

.booking-file-remove:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* ===== Policies ===== */
.booking-policies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .booking-policies-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.booking-policy-card {
    padding: 16px;
    border-radius: var(--radius-22);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-policy-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 12px;
}

.booking-policy-items {
    display: grid;
    gap: 8px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
}

.booking-policy-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-policy-item i {
    font-size: 14px;
}

/* ===== Map ===== */
.booking-map-section {
    border-radius: var(--radius-26);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-soft);
    margin-bottom: 32px;
}

.booking-map-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-map-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-18);
    background: rgba(255, 59, 20, 0.1);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.booking-map-icon i {
    color: var(--orange);
    font-size: 18px;
}

.booking-map-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--black);
    margin: 0;
}

.booking-map-address {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 4px;
}

.booking-map-iframe {
    width: 100%;
    height: 256px;
    border: none;
}

/* ===== Sidebar ===== */
.booking-sidebar-card {
    padding: 24px;
    border-radius: var(--radius-26);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    box-sizing: border-box;
}

.booking-price-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-price-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.booking-price-value {
    font-size: 30px;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.booking-price-unit {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
    margin-left: 4px;
}

.booking-rating {
    text-align: right;
}

.booking-rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.booking-rating-stars i {
    color: #fbbf24;
}

.booking-rating-count {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 2px;
}

.booking-price-breakdown {
    margin-bottom: 24px;
    padding: 16px;
    border-radius: var(--radius-22);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-price-breakdown-title {
    font-weight: 400;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 12px;
}

.booking-price-breakdown-items {
    display: grid;
    gap: 8px;
    font-size: 12px;
}

.booking-price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-price-item-label {
    color: rgba(0, 0, 0, 0.6);
}

.booking-price-item-value {
    font-weight: 400;
    color: var(--black);
}

.booking-price-total {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 12px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-price-total-label {
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
}

.booking-price-total-value {
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
}

.booking-submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-999);
    background: var(--black);
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 12px;
}

.booking-submit-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.booking-submit-note {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: 16px;
}

.booking-payment-methods {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 16px;
    margin-bottom: 16px;
}

.booking-payment-methods-title {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: 12px;
}

.booking-payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.booking-payment-method {
    padding: 8px 12px;
    border-radius: var(--radius-18);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
}

.booking-cancellation-policy {
    padding: 16px;
    border-radius: var(--radius-22);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-cancellation-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.booking-cancellation-header i {
    color: #22c55e;
    font-size: 16px;
}

.booking-cancellation-title {
    font-weight: 400;
    font-size: 13px;
    color: var(--black);
}

.booking-cancellation-text {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.6);
}

/* ===== Error Messages ===== */
.booking-errors {
    padding: 16px;
    border-radius: var(--radius-22);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    margin-bottom: 24px;
}

.booking-errors-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
    font-size: 13px;
    color: #dc2626;
}

/* ===== Dates Summary ===== */
.booking-dates-summary {
    padding: 16px;
    border-radius: var(--radius-22);
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: none;
}

.booking-dates-summary.show {
    display: block;
}

.booking-dates-summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.booking-dates-summary-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #3b82f6;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.booking-dates-summary-icon i {
    color: white;
    font-size: 12px;
}

.booking-dates-summary-title {
    font-weight: 400;
    font-size: 14px;
    color: #1e40af;
}

.booking-dates-summary-items {
    display: grid;
    gap: 8px;
    font-size: 12px;
    color: #1e40af;
}

.booking-dates-summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-dates-summary-item i {
    color: #3b82f6;
    font-size: 14px;
}

.booking-dates-summary-nights {
    font-weight: 700;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 1023px) {
    .booking-container {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    
    .booking-sidebar {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .booking-breadcrumbs-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .booking-gallery-main {
        height: 50vh;
    }
    
    .booking-title-inner {
        flex-direction: column;
    }
    
    .booking-title-amenities {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .booking-stepper-list {
        grid-template-columns: 1fr;
    }
    
    .booking-form-date-group {
        grid-template-columns: 1fr;
    }
    
    .booking-addons-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-policies-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-guest-form-grid {
        grid-template-columns: 1fr;
    }
}

