.booking-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.price-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.price-section h2 {
    color: #2c3e50;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.price-section p {
    color: #6c757d;
    margin-bottom: 5px;
}

.price-section h4 {
    color: #3498db;
    font-weight: 600;
}

#instantBookingBtn {
    background: #ffc107;
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

#instantBookingBtn:hover {
    background: #e0a800;
    transform: translateY(-2px);
}


.instantBookingBtn {
	background: #ffc107;
	border: none;
	padding: 12px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.instantBookingBtn:hover {
	background: #e0a800;
	transform: translateY(-2px);
}

.social-share {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.social-share a {
    color: #95a5a6;
    font-size: 22px;
    transition: all 0.3s ease;
}

.social-share a:hover {
    text-decoration: none;
}

.social-share a.fa-whatsapp:hover { color: #25D366; }
.social-share a.fa-instagram:hover { color: #E1306C; }
.social-share a.fa-twitter:hover { color: #1DA1F2; }
.social-share a.fa-facebook:hover { color: #4267B2; }
.social-share a.fa-pinterest:hover { color: #E60023; }

.enquiry-form {
    background: #fff;
    padding: 20px 0;
}

.enquiry-form h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 25px;
}

.form-control {
    border: 1px solid #e0e0e0;
    padding: 12px;
    height: auto;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.datepicker {
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-calendar" viewBox="0 0 16 16"><path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z"/></svg>') no-repeat right 10px center;
    cursor: pointer;
}

.custom-control-label {
    font-size: 14px;
    line-height: 1.5;
    color: #6c757d;
    padding-left: 5px;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #3498db;
    border-color: #3498db;
}

/* Modal styles */
.modal-content {
    border: none;
    border-radius: 8px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
		z-index: 9999;
}

.modal-header {
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
    padding: 20px 25px;
}

.modal-header .modal-title {
    color: #2c3e50;
    font-weight: 600;
}

.modal-body {
    padding: 25px;
}

/* Form validation styles */
.error {
    color: #e74c3c;
    font-size: 80%;
    margin-top: 0.25rem;
}

input.error, select.error, textarea.error {
    border-color: #e74c3c;
}

/* Button styles */
.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
}

/* Loading state */
.loading {
    position: relative;
}

.loading:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wait message */
#enquiryWait, #instantBookingWait {
    padding: 30px;
    color: #3498db;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-sidebar {
        margin-top: 30px;
        padding: 20px;
    }
    
    .price-section h2 {
        font-size: 2rem;
    }
} 