/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* RTL Support for Header Background */
[dir="rtl"] #header .menu-bg::after {
	left: auto;
	right: 100%;
}

[dir="rtl"] #header .menu-bg::before {
	left: auto;
	right: 0;
	border-left-width: var(--cnvs-header-height, 70px);
	border-left-style: solid;
	border-left-color: transparent;
	border-right-width: 0px;
	border-right-style: solid;
	border-right-color: transparent;
}

/* Cairo Font Family Override */
:root {
	--cnvs-body-font: 'Cairo', sans-serif;
	--cnvs-primary-font: 'Cairo', sans-serif;
	--cnvs-secondary-font: 'Cairo', sans-serif;
	--cnvs-primary-menu-font: 'Cairo', sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
.button,
input,
textarea,
select,
.form-control,
.menu-link,
#primary-menu,
#header {
	font-family: 'Cairo', sans-serif !important;
}

/* Modern Contact Form Styling */
.contact-form-modern {
	background: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-modern .form-group {
	margin-bottom: 25px;
}

.contact-form-modern label {
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	display: block;
	font-size: 14px;
}

.contact-form-modern .form-control,
.contact-form-modern .sm-form-control {
	border: 2px solid #e0e0e0 !important;
	border-radius: 8px !important;
	padding: 12px 16px !important;
	font-size: 15px !important;
	transition: all 0.3s ease !important;
	background: #fafafa !important;
	width: 100%;
}

.contact-form-modern .form-control:focus,
.contact-form-modern .sm-form-control:focus {
	border-color: var(--cnvs-themecolor) !important;
	background: #fff !important;
	box-shadow: 0 0 0 4px rgba(198, 192, 156, 0.1) !important;
	outline: none !important;
}

.contact-form-modern textarea.form-control,
.contact-form-modern textarea.sm-form-control {
	min-height: 150px;
	resize: vertical;
}

.contact-form-modern .submit-btn {
	background: var(--cnvs-themecolor) !important;
	color: #333 !important;
	border: none !important;
	padding: 14px 40px !important;
	border-radius: 8px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	cursor: pointer;
	transition: all 0.3s ease !important;
	width: 100%;
	box-shadow: none !important;
}

.contact-form-modern .submit-btn:hover {
	background: #333 !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.contact-form-modern .fancy-title h3 {
	font-size: 28px;
	margin-bottom: 20px;
	color: #333;
}

/* SRCA Gold Button */
.button-srca-gold {
	background-color: #d79a2b;
	color: #FFF;
	border-color: #d79a2b;
}

.button-srca-gold:hover {
	background-color: #c08a26;
	color: #FFF;
}