@charset "utf-8";
/* CSS Document */
.popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    animation: fadeIn 0.3s ease;
    text-align: center;
}

.popup-message.success { background: var(--primary-color); }
.popup-message.error { background: #dc3545; }
.popup-message .close-btn {
    float: right;
    cursor: pointer;
    font-size: 18px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.offers-hold{
	width: 90%;
	padding-left: 5%;
	padding-right: 5%;
	height: auto;
	margin-top: 0px;
	padding-top: 50px;
	box-sizing:content-box;
	position: relative
}
.offerleft{
	width: 70%;
	float: left;
    margin-right: 2%	
}
.offerright{
	width: 28%;
	float: left;
}
.tabshold{
	 max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
}
.offerleft h1{
	width: 100%;
	font-size: 20px;
	font-family: 'Manrope', sans-serif;
	color:var(--primary-color)
}
.offerleft h2{
	width: 100%;
	font-size: 28px;
	font-family: 'Manrope', sans-serif;
	color:#000000
}
.offerleft .rate{
	width: 100%;
}
.offerleft .rate .fa{
	font-size: 14px;
	color: var(--secondary-color)
}
.offerleft .place{
	width: 50%;
	float: left;
	font-family: 'Manrope', sans-serif;
	color:#292727;
	margin-top: 15px;
	margin-bottom: 20px;
	text-transform: capitalize
	
}
.offerleft .place i{
	color:var(--primary-color);
	margin-right: 5px
}
.offerleft .duration-in{
	text-align: left;
	width: 50%;
	float: right;
	font-family: 'Manrope', sans-serif;
	color:#292727;
	margin-top: 15px;
	margin-bottom: 20px;
	
}
.offerleft .duration-in i{
	color:var(--primary-color);
	margin-right: 5px
}

 .containerBooking {
            max-width: 900px;
            width: 100%;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .price-header {
            background: linear-gradient(to right, var(--primary-color), var(--primary-color));
            color: white;
            padding: 25px 30px;
            text-align: center;
        }
        
        .price-tags {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
			color: white;
        }
        
        .price-note {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .booking-form {
            padding: 30px;
        }
        
        .form-title {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .form-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
       .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        
        .required::after {
            content: '*';
            color: #e74c3c;
            margin-left: 4px;
        }
        
       .form-group input, select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
       .form-group input:focus, select:focus {
            outline: none;
            border-color: #6c5ce7;
            box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.2);
        }
        
        .divider {
            height: 1px;
            background: #eee;
            margin: 30px 0;
        }
        
        .special-requests {
            margin-top: 30px;
        }
        
       .special-requests textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            resize: vertical;
            font-size: 16px;
        }
        
       .special-requests textarea:focus {
            outline: none;
            border-color: #6c5ce7;
            box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.2);
        }
        
        .submit-btn {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            display: block;
            margin: 30px auto 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(142, 45, 226, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(142, 45, 226, 0.4);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        .note {
            text-align: center;
            color: #777;
            font-size: 14px;
            margin-top: 20px;
        }
 @media (max-width: 999px) {
.offerleft{
	width: 100%;
	float: none;
    margin-right: 0%	
}
.offerright{
	width: 100%;
	float: none;
    margin-right: 0%	
}	 
	 .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .price-tag {
                font-size: 2.8rem;
            }
	 .submit-btn {
		  font-size: 15px;
	 }
}