@import url("https://fonts.googleapis.com/css2?family=Alexandria:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ============================================
   RaviElson Contact Section – Frontend
   ============================================ */

#consent-check-all {
	margin-right: 8px;
}

.ravielson-contact-section {
	font-family: "Alexandria", sans-serif;
}

.ravielson-contact-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	background: transparent;
}

/* LEFT: Contact Info */
.ravielson-contact-info {
	flex: 0 0 35%;
	padding: 50px 40px;
	box-sizing: border-box;
	/* Gradient background for contact info panel */
	background: linear-gradient(to bottom right, #a35139 0%, #a7786a 100%);
	color: #ffffff; /* default text color on gradient */
}

.contact-section-title {
	font-size: 14px;
	font-weight: 300;
	color: #fff; /* title color on gradient */
	margin-bottom: 30px;
	line-height: 1.6;
}
.contact-section-sub-title {
	color: #feecd1;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: 400;
}

.contact-persons {
	margin-bottom: 30px;
}

.contact-person {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
}

.contact-icon {
	flex-shrink: 0;
	margin-top: 2px;
	display: flex;
	align-items: center;
}

.ravielson-contact-info .contact-icon,
.ravielson-contact-info .contact-icon svg path {
	color: #feecd1;
	fill: #feecd1;
}

.contact-person-name {
	font-size: 15px;
	font-weight: 600;
	color: #ffffff; /* names on gradient should be white */
}

.contact-person-phone,
.contact-person-phone a {
	font-size: 14px;
	font-weight: 300;
	color: #ffffff !important; /* phone numbers white on gradient */
	text-decoration: none;
}

.contact-person-phone a:hover {
	text-decoration: underline;
}

.contact-email-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 40px;
}

.contact-email-label {
	font-size: 15px;
	font-weight: 600;
	color: #feecd1; /* label color on gradient */
}

.contact-email-value {
	font-size: 14px;
	font-weight: 300;
	color: #ffffff;
	text-decoration: none;
}

.contact-email-value:hover {
	text-decoration: underline;
}

.contact-salon {
	border-top: 1px solid #e5ddd8;
	padding-top: 30px;
}

.contact-salon-label {
	letter-spacing: 2px;
	font-size: 14px;
	font-weight: 600;
	color: #feecd1; /* salon label color */
	text-transform: uppercase;
	margin-bottom: 15px;
}

.contact-salon-info {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: #ffffff;
}
.contact-salon-info a {
	color: #ffffff !important;
	text-decoration: underline !important;
}

.contact-salon-info strong {
	display: block;
	font-weight: 700;
	color: #feecd1 !important; /* emphasize with title color */
}

/* RIGHT: Contact Form */
.ravielson-contact-form-wrap {
	flex: 0 0 65%;
	padding: 35px;
	box-sizing: border-box;
	background: #fff;
}

.form-row {
	margin-bottom: 20px;
}

.form-row-2 {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.form-row-2 .form-field {
	flex: 1;
	min-width: 0;
}

.form-field label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #162b3b;
	margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: 12px 14px;
	border: 2px solid #d4c5b5;
	background: #fff;
	font-family: "Alexandria", sans-serif;
	font-size: 14px;
	color: #162b3b;
	box-sizing: border-box;
	border-radius: 4px;
	transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: #c19a6b;
}

/* Consents */
.form-consents {
	margin-top: 25px;
}

.consent-info-box {
	background: #faf3e8;
	padding: 20px 25px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	color: #162b3b;
	margin-bottom: 15px;
	border-radius: 4px;
	border-left: 3px solid #54717b;
}

.consent-checkall {
	margin-bottom: 10px;
}

.consent-checkall label {
	font-size: 14px;
	font-weight: 600;
	color: #162b3b;
	cursor: pointer;
}

.consents-separator {
	border: 0;
	border-top: 1px solid #e8ddc9;
	/* Match consent box background or light tan */
	margin-bottom: 10px !important;
}

.consent-item {
	margin-bottom: 10px;
}

.consent-item label {
	font-size: 13px;
	line-height: 1.5;
	color: #162b3b;
	display: flex;
	align-items: flex-start;
	gap: 0 8px;
	cursor: pointer;
}

.consent-item input[type="checkbox"],
.consent-checkall input[type="checkbox"] {
	margin-top: 3px;
	flex-shrink: 0;
	accent-color: #54717b;
}

.consent-item a {
	color: #54717b;
	text-decoration: underline !important;
}

/* Submit */
.form-submit-row {
	margin-top: 20px;
}

.contact-submit-btn {
	width: 100%;
	padding: 16px;
	background: #fdb161;
	color: #303030;
	border: none;
	font-family: "Alexandria", sans-serif;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background 0.3s;
}

.contact-submit-btn:hover {
	background: #403836;
}

.contact-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Form message */
.form-message {
	margin-top: 15px;
	padding: 12px 15px;
	font-size: 14px;
	border-radius: 4px;
}

.form-message.success {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
}

.form-message.error {
	background: #fbe9e7;
	color: #c62828;
	border: 1px solid #ffcdd2;
}

/* Responsive */
@media (max-width: 991px) {
	.ravielson-contact-wrapper {
		flex-direction: column;
	}

	.ravielson-contact-info,
	.ravielson-contact-form-wrap {
		flex: 1 1 100%;
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.form-row-2 {
		flex-direction: column;
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.ravielson-contact-info,
	.ravielson-contact-form-wrap {
		padding: 30px 15px !important;
		overflow-x: hidden;
	}
}
