/* Aurora Cabins — Native Booking */
/* Dark background for the entire page */
body.page-id-310 #Content,
body.page-id-310 .sections_group,
body.page-id-310 .entry-content,
body.page-id-310 .mcb-section-g8yboes7 {
    background: #0a0a0a !important;
}
body.page-id-310 .mcb-section-g8yboes7 .mcb-background-overlay {
    display: none !important;
}
body.page-id-310 .section-page-footer,
body.page-id-310 .the_content {
    background: #0a0a0a !important;
}

#aurora-booking {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #e0e0e0;
}

/* ======= STEPS INDICATOR ======= */
.booking-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}
.booking-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.3;
    transition: opacity 0.3s;
}
.booking-step.active { opacity: 1; }
.booking-step.completed { opacity: 0.65; }
.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #4ade80;
    flex-shrink: 0;
}
.booking-step.active .step-number,
.booking-step.completed .step-number {
    background: #4ade80;
    color: #0a0a0a;
}
.step-label {
    font-size: 14px;
    letter-spacing: 0.3px;
}
.step-divider {
    width: 40px;
    height: 1px;
    background: rgba(74,222,128,0.25);
}

/* ======= DATE PANEL ======= */
.date-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(78,173,128,0.15);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}
.date-panel h2 {
    font-size: 22px;
    color: #fff;
    margin: 0 0 28px 0;
    font-weight: 500;
}
.date-inputs {
    display: grid;
    grid-template-columns: 160px 160px 80px auto;
    gap: 16px;
    align-items: end;
}
.date-field label,
.guests-field label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
    font-weight: 500;
}
.date-field input,
.guests-field select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    margin: 0;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    box-sizing: border-box;
    line-height: 48px;
    -webkit-appearance: none;
    appearance: none;
}
.date-field input[type="date"] {
    display: flex;
    align-items: center;
    line-height: normal;
}
.date-field input:focus,
.guests-field select:focus {
    border-color: #4ade80;
    background: rgba(74,222,128,0.06);
}
.date-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.5;
    cursor: pointer;
}
.guests-field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: center;
    text-align-last: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234ade80' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    color-scheme: dark;
}
.guests-field select:focus {
    background-color: rgba(74,222,128,0.06) !important;
    color: #fff !important;
}
.guests-field select option {
    background: #1a1a1a;
    color: #fff;
}
.btn-search {
    height: 48px;
    padding: 0 28px;
    background: #4ade80;
    border: none;
    border-radius: 10px;
    align-self: end;
    margin: 0;
    box-sizing: border-box;
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
    white-space: nowrap;
}
.btn-search:hover {
    background: #3bcc6e;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(74,222,128,0.25);
}
.btn-search:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ======= LOADING ======= */
.booking-loading {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255,255,255,0.5);
    font-size: 16px;
}
.booking-loading .spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(74,222,128,0.15);
    border-top-color: #4ade80;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ======= ROOM CARDS ======= */
.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}
.room-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(78,173,128,0.12);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.room-card:hover {
    border-color: rgba(74,222,128,0.35);
    box-shadow: 0 4px 24px rgba(74,222,128,0.08);
}
.room-photo {
    width: 340px;
    min-height: 280px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #111;
}
.room-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.room-card:hover .room-photo img {
    transform: scale(1.03);
}
.room-photo .photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.room-card:hover .photo-nav { opacity: 1; }
.room-photo .photo-prev { left: 10px; }
.room-photo .photo-next { right: 10px; }
.room-info {
    flex: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.room-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.room-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.room-amenity {
    font-size: 11px;
    padding: 4px 12px;
    background: rgba(74,222,128,0.08);
    border: 1px solid rgba(74,222,128,0.15);
    border-radius: 20px;
    color: rgba(74,222,128,0.85);
    letter-spacing: 0.3px;
}
.room-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.room-price {
    font-size: 26px;
    font-weight: 700;
    color: #4ade80;
}
.room-price span {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
}
.room-guests {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}
.btn-book {
    padding: 12px 28px;
    background: transparent;
    border: 1.5px solid #4ade80;
    border-radius: 10px;
    color: #4ade80;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}
.btn-book:hover {
    background: #4ade80;
    color: #0a0a0a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(74,222,128,0.25);
}

/* ======= NO AVAILABILITY ======= */
.no-rooms {
    text-align: center;
    padding: 64px 20px;
    color: rgba(255,255,255,0.4);
}
.no-rooms h3 {
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    margin: 0 0 8px 0;
    font-weight: 500;
}
.no-rooms p {
    margin: 0;
    font-size: 15px;
}

/* ======= GUEST FORM ======= */
.guest-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(78,173,128,0.15);
    border-radius: 16px;
    padding: 36px;
}
.guest-form h2 {
    font-size: 24px;
    color: #fff;
    margin: 0 0 8px 0;
    font-weight: 500;
}
.guest-form .selected-summary {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
    line-height: 1.5;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-field label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-field input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    box-sizing: border-box;
}
.form-field input:focus {
    border-color: #4ade80;
    background: rgba(74,222,128,0.06);
}
.form-field input::placeholder {
    color: rgba(255,255,255,0.2);
}
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
.btn-back {
    height: 48px;
    padding: 0 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s;
}
.btn-back:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
/* ======= CANCELLATION POLICY ======= */
.cancellation-policy {
    margin-top: 24px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}
.cancellation-policy .policy-text strong {
    color: #4ade80;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}
.cancellation-policy .policy-text p {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 8px 0;
}
.cancellation-policy .policy-text p strong {
    color: rgba(255,255,255,0.8);
    display: inline;
    font-size: inherit;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
}
.policy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    cursor: pointer;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.4;
}
.policy-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin: 0;
    accent-color: #4ade80;
    cursor: pointer;
}

.btn-confirm {
    height: 48px;
    padding: 0 36px;
    background: #4ade80;
    border: none;
    border-radius: 10px;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s;
}
.btn-confirm:hover {
    background: #3bcc6e;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(74,222,128,0.25);
}
.btn-confirm:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ======= CONFIRMATION ======= */
.booking-confirmation {
    text-align: center;
    padding: 80px 20px;
}
.booking-confirmation .check-icon {
    width: 72px;
    height: 72px;
    border: 3px solid #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 36px;
    color: #4ade80;
}
.booking-confirmation h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}
.booking-confirmation p {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 4px 0;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 960px) {
    .date-inputs {
        grid-template-columns: 1fr 1fr;
    }
    .guests-field {
        grid-column: 1;
    }
    .btn-search {
        grid-column: 2;
    }
    .room-photo {
        width: 280px;
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    #aurora-booking {
        padding: 24px 16px 60px;
    }
    .booking-steps {
        gap: 8px;
        margin-bottom: 32px;
    }
    .step-label { display: none; }
    .step-divider { width: 24px; }
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .date-panel {
        padding: 24px 20px;
        border-radius: 12px;
    }
    .date-panel h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .date-inputs {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .btn-search {
        width: 100%;
        height: 52px;
        font-size: 14px;
        border-radius: 12px;
    }
    .room-card {
        flex-direction: column;
        border-radius: 12px;
    }
    .room-photo {
        width: 100%;
        min-height: 200px;
        max-height: 240px;
    }
    .room-info { padding: 20px; }
    .room-name { font-size: 18px; }
    .room-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .btn-book {
        width: 100%;
        text-align: center;
        padding: 14px;
        border-radius: 12px;
    }
    .guest-form {
        padding: 24px 20px;
        border-radius: 12px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-actions {
        flex-direction: column;
    }
    .btn-back, .btn-confirm {
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .content_wrapper .section_wrapper, .container, .four.columns .widget-area {
        max-width: 550px !important;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 480px) {
    #aurora-booking {
        padding: 24px 8px 60px;
    }
    .date-panel {
        padding: 20px 12px;
        border-radius: 10px;
    }
    .guest-form {
        padding: 20px 12px;
        border-radius: 10px;
    }
    .room-photo { max-height: 200px; }
    .room-price { font-size: 22px; }
    .room-info { padding: 16px 12px; }
    .room-card { border-radius: 10px; }
}
