/* 
Theme Name: Booking
Description: WordPress theme for travel booking system
Version: 1.0
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    min-height: 100vh;
    direction: rtl;
}

/* WordPress specific resets */
.booking-system {
    margin: 0;
    padding: 0;
}

.booking-system h1,
.booking-system h2,
.booking-system h3,
.booking-system h4,
.booking-system h5,
.booking-system h6 {
    margin: 0;
    color: inherit;
}

.booking-system p {
    margin: 0;
}

.booking-system ul,
.booking-system ol {
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 100;
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 64px;
    max-width: 200px;
    object-fit: contain;
}

.contact-info {
    display: flex;
    gap: 32px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #6b7280;
    transition: color 0.3s ease;
    font-weight: 500;
    text-decoration: none;
}

.contact-item:hover {
    color: #0BD6A0;
}

.contact-icon {
    margin-left: 8px;
    width: 18px;
    height: 18px;
}

/* Progress Steps */
.progress-container {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 90;
}

.progress-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: center;
}

.progress-steps {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #9ca3af;
    background: white;
}

.step.active .step-circle {
    border-color: #0BD6A0;
    color: #0BD6A0;
    background: #ecfdf5;
}

.step.completed .step-circle {
    background: #0BD6A0;
    border-color: #0BD6A0;
    color: white;
}

.step-title {
    font-weight: 500;
    color: #6b7280;
    transition: color 0.3s ease;
}

.step.active .step-title,
.step.completed .step-title {
    color: #0BD6A0;
}

.step-connector {
    width: 64px;
    height: 2px;
    background: #d1d5db;
    transition: background 0.3s ease;
}

.step-connector.completed {
    background: #0BD6A0;
}

/* Main Content */
.main-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 32px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.content-section {
    position: relative;
    overflow: hidden;
}

.page {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page.active {
    display: block;
    opacity: 1;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page.exiting {
    opacity: 0;
    transform: translateX(-50px);
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    cursor: pointer;
    position: relative;
    line-height: 1.5;
    margin-bottom: 18px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0BD6A0;
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-group span {
    font-weight: 500;
    color: #374751;
    line-height: 1.4;
}
/* Cards */
.card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 10px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
/*     transform: translateY(-2px); */
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.card-subtitle {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
}

/* Trip Image */
.trip-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 25px 20px -12px rgba(0, 0, 0, 0.25);
}

.trip-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.trip-duration {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #0BD6A0;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.trip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

/* Trip Details */
.trip-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.trip-description {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.8;
    font-size: 18px;
}

.trip-info-grid {
    display: block;
    margin-bottom: 32px;
}
.includes-list {
    margin: 0px 0;
    font-size: 17px;
    background: #0bd6a005;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #0bd6a0;
}
.info-section-title {
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    font-size: 18px;
    margin: 20px 0 10px 0!important;
}
ul.form-instructions {
    background: #ff00001c;
    padding: 30px;
    border-radius: 9px;
    box-shadow: 0 10px 15px -3px rgb(244 67 54 / 20%);
    margin: 10px 0 46px 0;
}
.info-icon {
    margin-left: 12px;
    color: #0BD6A0;
    width: 20px;
    height: 20px;
}

.includes-list {
    list-style: none;
}
.emergency-grid {
    display: flex;
    justify-content: space-between;
    margin: 1em 0;
    gap: 5px;
}

.emergency-contact {
    background: white;
    padding: 25px;
    margin: 2em 0;
}
.includes-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #374751;
}

.includes-dot {
    width: 8px;
    height: 8px;
    background: #0BD6A0;
    border-radius: 50%;
    margin-left: 16px;
    font-weight: 500;
}

/* Form Elements */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    color: #374751;
    margin-bottom: 12px;
}

.form-input,
.form-select {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Heebo', sans-serif;
    background: white;
	width: 100%;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #0BD6A0;
    box-shadow: 0 0 0 3px rgba(11, 214, 160, 0.1);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.quantity-btn {
    padding: 16px;
    background: white;
    border: none;
    font-size: 20px;
    font-weight: 700;
    color: #6b7280;
    cursor: pointer;
    transition: background 0.2s ease;
}

.quantity-btn:hover {
    background: #f9fafb;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-display {
    flex: 1;
    text-align: center;
    padding: 16px;
    font-size: 20px;
    font-weight: 700;
}

/* Buttons */
.btn {
    padding: 24px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Heebo', sans-serif;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0BD6A0, #09c191);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(11, 214, 160, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(11, 214, 160, 0.4);
    transform: translateY(-2px) scale(1.02);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    border: none;
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    justify-content: right;
    text-decoration: underline;
}

.btn-secondary:hover {
    color: #009688
}

.btn-group {
    display: flex;
    gap: 24px;
}

.btn-group .btn {
    flex: 1;
}

/* Special Notes */
.special-notes {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid #a7f3d0;
    border-radius: 16px;
    padding: 24px;
}

.special-notes-title {
    font-weight: 700;
    color: #047857;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.special-notes-content {
    color: #059669;
    font-weight: 500;
}

/* Sidebar */
.sidebar {
    background: white;
    border-radius: 24px;
    padding: 20px 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-label {
    color: #6b7280;
    font-weight: 500;
}

.summary-value {
    font-weight: 700;
    font-size: 18px;
}

.price-section {
    border-top: 2px solid #f3f4f6;
    padding-top: 24px;
    margin: 32px 0;
}

.total-price {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    font-weight: 500;
}
.advance-payment {
    display: flex;
    justify-content: space-between;
    font-size: 19px;
    line-height: 2;
}
/* Checkbox styling and error handling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    line-height: 1.5;
    margin-bottom: 8px;
}

.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 18px;
    width: 18px;
    border: none !important;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 0px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-group input:checked ~ .checkmark {
    background-color: #0BD6A0;
    border-color: #0BD6A0;
}

.checkbox-group input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-group:hover .checkmark {
    border-color: #0BD6A0;
}

.checkbox-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* Error styling */
.error {
    color: #e74c3c;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 20%, 40%, 60%, 80% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
}

/* Error state for checkbox */
.checkbox-group.error .checkmark {
    border-color: #e74c3c;
    background-color: #ffebee;
}

.checkbox-group.error .checkbox-text {
    color: #e74c3c;
}
.advance-amount {
    color: #0BD6A0;
}

.price-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
    font-weight: 500;
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #6b7280;
}

.benefit-icon {
    width: 16px;
    height: 16px;
    color: #0BD6A0;
    margin-left: 12px;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    margin-top: 64px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 32px;
    text-align: center;
}

.footer-logo {
    height: 64px;
    margin: 0 auto 24px;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    max-width: 100%;
}

.footer-contact {
    border-top: 1px solid #374751;
    padding-top: 24px;
}

.footer-contact-text {
    color: #9ca3af;
    margin-bottom: 8px;
}

.footer-email {
    color: #0BD6A0;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #10b981;
}

/* Sticky Button */
.sticky-button {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #0BD6A0;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 25px 50px -12px rgba(11, 214, 160, 0.4);
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: 'Heebo', sans-serif;
    text-decoration: none;
}

.sticky-button:hover {
    background: #09c191;
    transform: scale(1.1);
    color: white;
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Inactive trip notice */
.trip-inactive {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 32px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #dc2626;
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 16px;
}

/* WordPress specific fixes */
.booking-system .wp-block-group {
    margin: 0;
}

.booking-system .entry-content {
    margin: 0;
}

.booking-system .entry-title {
    display: none;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&display=swap');

/* Responsive */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    .trip-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .progress-steps {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .step-connector {
        display: none;
    }
    
    .main-container {
        padding: 16px;
    }
    
    .card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .trip-image {
        height: 200px;
    }
    
    .trip-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .quantity-btn,
    .quantity-display {
        padding: 12px;
    }
    
    .sticky-button {
        bottom: 16px;
        left: 16px;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Traveler form styling */
.traveler-form {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.traveler-form h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-top: 30px;
}

.form-actions .btn {
    flex: 1;
    max-width: 260px;
}

/* Error handling for forms */
.form-input.error {
    border-color: #e74c3c;
    background-color: #ffebee;
}

/* Add to style 2.css - Room selection styling */

.room-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.room-type-option {
    position: relative;
}

.room-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.room-type-label {
    display: block;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.room-type-label:hover {
    border-color: #0BD6A0;
    background: #f8fffe;
}

.room-type-option input[type="radio"]:checked + .room-type-label {
    border-color: #0BD6A0;
    background: #f0fdf9;
    box-shadow: 0 2px 8px rgba(11, 214, 160, 0.15);
}

.room-type-info h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

.room-type-info p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.room-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.room-occupancy {
    color: #666;
    font-weight: 500;
}

.room-price {
    font-weight: bold;
    color: #0BD6A0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0BD6A0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

/* Enhanced room selection styling */

.room-type-option.unavailable {
    opacity: 0.6;
    pointer-events: none;
}

.room-type-option.unavailable .room-type-label {
    background: #f5f5f5;
    border-color: #ddd;
    cursor: not-allowed;
}

.room-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-features {
    font-size: 13px;
    color: #555;
    font-style: italic;
    margin: 5px 0 10px 0;
}

.room-availability {
    margin: 10px 0;
    font-size: 12px;
}

.availability.available {
    color: #0BD6A0;
    font-weight: 500;
}

.availability.unavailable {
    color: #e74c3c;
    font-weight: 500;
}

.room-price.additional {
    color: #ff6b35;
}

.room-price.base {
    color: #333;
}

.room-price.included {
    color: #0BD6A0;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.amenity-tag {
    background: #e3f2fd;
    color: #1565c0;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .room-types-grid {
        grid-template-columns: 1fr;
    }
    
    .room-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* File upload styling */
.file-upload-container {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
    min-height: 50px;
}

.file-upload-label:hover {
    border-color: #0BD6A0;
    background: #f0fdf9;
}

.file-input:focus + .file-upload-label {
    border-color: #0BD6A0;
    box-shadow: 0 0 0 3px rgba(11, 214, 160, 0.1);
}

.upload-icon {
    color: #666;
    flex-shrink: 0;
}

.upload-text {
    color: #666;
    font-weight: 500;
}

.file-name {
    color: #0BD6A0;
    font-weight: 600;
    display: none;
}

.file-requirements {
    margin-top: 5px;
}

.file-requirements small {
    color: #888;
    font-size: 12px;
}

/* Required field styling */
.form-label.required::after {
    content: ' *';
    color: #ef4444;
}

/* Error state for file upload */
.file-input:invalid + .file-upload-label {
    border-color: #009688;
    background: #00968830;
}

/* Add to your style.css - Terms agreement validation styling */

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #0BD6A0;
    cursor: pointer;
}

.checkbox-group span {
    line-height: 1.5;
    color: #333;
    cursor: pointer;
}

.checkbox-group a {
    color: #0BD6A0 !important;
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-group a:hover {
    color: #089770 !important;
}

/* Error state for checkbox */
.checkbox-group.error {
    border: 2px solid #ef4444 !important;
    background-color: #fef2f2 !important;
    padding: 10px !important;
    border-radius: 8px !important;
}

/* Required asterisk styling */
.checkbox-group span::after {
    content: '';
}

/* Make the entire checkbox group clickable */
.checkbox-group {
    cursor: pointer;
}

.checkbox-group:hover {
    border-radius: 6px;
}

/* Focus state */
.checkbox-group input[type="checkbox"]:focus {
    outline: 2px solid #0BD6A0;
    outline-offset: 2px;
}

/* Animation for error state */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.checkbox-group.error {
    animation: shake 0.5s ease-in-out;
}

/* Add to your style.css - Room Selection Styling */

.rooms-selection-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 20px 0;
}

.room-selection-card {
    display: grid;
    gap: 20px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.room-selection-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: #0BD6A0;
}

/* Layout with image */
.room-with-image {
    grid-template-columns: 200px 1fr;
    align-items: start;
}

/* Layout without image */
.room-no-image {
    grid-template-columns: 1fr;
}

.room-image-container {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.room-header .room-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.room-header .room-description {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.room-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-group {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    background: #f9fafb;
}

.option-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #374151;
}

.option-title .required {
    color: #ef4444;
    font-weight: normal;
}

.view-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.view-option, .single-room-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-option:hover, .single-room-option:hover {
    border-color: #0BD6A0;
    background: #f0fdf9;
}

.view-option input[type="radio"]:checked + .option-label,
.single-room-option input[type="checkbox"]:checked + .option-label {
    font-weight: 600;
}

.view-option:has(input:checked), 
.single-room-option:has(input:checked) {
    border-color: #0BD6A0;
    background: #f0fdf9;
}

.option-label {
    flex: 1;
    font-weight: 500;
    color: #374151;
}

.option-price {
    font-weight: 600;
    color: #059669;
    font-size: 14px;
}

.room-pricing {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-breakdown > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.price-label {
    color: #6b7280;
    font-size: 14px;
}

.price-value {
    font-weight: 600;
    color: #374151;
}

.subtotal-price {
    border-top: 1px solid #e5e7eb;
    padding-top: 8px !important;
    margin-top: 8px;
}

.discount-price .price-value {
    color: #059669;
}

.final-price {
    background: #f0fdf9;
    border: 1px solid #0BD6A0;
    border-radius: 6px;
    padding: 8px 12px !important;
    margin-top: 8px;
}

.final-price .price-label {
    font-weight: 600;
    color: #065f46;
}

.final-price .price-value {
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
}

.room-selection-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    display: none;
}

.room-selection-note p {
    margin: 0;
    color: #92400e;
    font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .room-with-image {
        grid-template-columns: 1fr;
    }
    
    .room-image-container {
        height: 200px;
    }
    
    .view-options {
        grid-template-columns: 1fr;
    }
    
    .view-option, .single-room-option {
        justify-content: space-between;
    }
}

/* Loading spinner */
.loading-spinner {
    border: 4px solid #f3f4f6;
    border-top: 4px solid #0BD6A0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bed-options {
    display: flex;
    flex-direction: column;
}

@media (min-width:800px) {
.form-three-col{
	grid-column: 1 / -1;display: grid;grid-template-columns: 1fr 2fr 2fr;gap: 30px;
}
}