.contact-section {
	padding: 60px 20px;
	background: #1c1c1c;
	border-radius: 8px;
}
.contact-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	gap: 40px;
	align-items: stretch;
	flex-wrap: wrap;
}
.contact-info {
	flex: 1;
	background: #171717;
	padding: 35px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.contact-info h2 {
	margin-bottom: 25px;
	font-size: 28px;
}
.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 16px;
}
.contact-item i {
	width: 35px;
	height: 35px;
	background: #292828;
	color: #bd945a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	font-size: 15px;
}
/* FORM */
#contactForm {
	margin-top: 25px;
}
#contactForm input,
#contactForm textarea {
	width: 100%;
	padding: 12px 14px;
	margin-bottom: 15px;
	border-radius: 6px;
	font-size: 14px;
	color: #fff;
}
/* ALERTS */
.alert-success {
	background: #e6ffed;
	color: #1f7a3f;
	padding: 12px 15px;
	border-radius: 6px;
	margin-bottom: 15px;
	font-size: 14px;
}
.alert-error {
	background: #ffe6e6;
	color: #9b1c1c;
	padding: 12px 15px;
	border-radius: 6px;
	margin-bottom: 15px;
	font-size: 14px;
}
/* MAP */
.contact-map {
	flex: 1;
	min-height: 450px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.contact-map iframe {
	border: 0;
}
/* RESPONSIVE */
@media (max-width: 900px) {
	.contact-container {
		flex-direction: column;
	}
}
@media (max-width: 768px) {
	.contact-map {
		width: 100%;
		height: 600px;
		border: 0;
	}
	#contactForm button {
		width: 100%;
	}
}

/* Book rooms */
.guestemail, .guestphone, .totalguests {
    font-size: 17px !important;
    line-height: 28px !important;
    padding: 17px 10px 17px 10px !important;
    border-radius: 0 !important;
    color: #fff !important;
}

.guestphone {
    background-color: transparent !important;
    width: 100%;
    border: 0.09px solid rgba(255,255,255,0.1);
}

.guestemail::placeholder, .guestphone::placeholder, .totalguests::placeholder, .apartment::placeholder {
    color: #ffffff;
    opacity: 1;
}

.apartment-count {
    position: absolute;
    top: 100%; /* starts immediately after booking-wrapper content */
    background-color: #000000;
    padding-bottom: 50px;
    width: 100vw;
    max-width: 100%;
    opacity: 0.97;
}

.apartment-content {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.apartment-count, .apartment-count p {
    color: #ffffff;
}

.apartment-count p {
    padding-top: 12px;
}

.apartment-count span {
    margin-top: 5px;
    margin-bottom: 5px;
}

#cancel-booking {
    padding: 18px;
    margin-top: 15px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    
}

@media (max-width: 768px) {
    
}

/* End book rooms. */