/**
 * Regional Prestige Concierge - Forms
 * 
 * Callback request form styling
 */

/* ============================================================================
   CALLBACK FORM SECTION
   ============================================================================ */

.callback-form {
	background: #02040D;
	padding: 60px 0;
	text-align: center;
	overflow: hidden;
	transform: none !important;
	position: relative;
}

.callback-container {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Force LTR for form inputs regardless of page direction */
.callback-container form>div {
	direction: ltr;
}

.callback-section-title {
	font-size: 24px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 48px;
}

.callback-label {
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 8px;
	display: block;
}

.phone-input {
	width: 100%;
	height: 64px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #FFF;
	text-align: center;
	color: #FFF;
	font-size: 24px;
	transition: all .3s ease;
	direction: ltr;
	text-align: left;
	padding-left: 16px;
}

.phone-input:focus {
	outline: none;
	border-bottom-color: var(--gold);
	border-bottom-width: 2px;
}

.country-selector {
	width: 140px;
	height: 64px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #FFF;
	color: #FFF;
	font-size: 16px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 300;
	letter-spacing: 1px;
	padding: 0 12px;
	cursor: pointer;
	transition: all .3s ease;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	/* Custom dropdown arrow using SVG */
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 20px;
	padding-right: 32px;
}

.country-selector:focus {
	outline: none;
	border-bottom-color: var(--gold);
	border-bottom-width: 2px;
	transform: translateY(-2px);
}

.country-selector option {
	background: var(--color-primary-dark);
	color: var(--color-white);
	padding: 12px;
	font-size: 16px;
	font-weight: 300;
}

.callback-cta {
	border: 1px solid var(--gold);
	padding: 16px 40px;
	font-size: 16px;
	letter-spacing: 2px;
	background: transparent;
	color: var(--gold);
	text-transform: uppercase;
	cursor: pointer;
	transition: all .4s ease;
	position: relative;
	overflow: hidden;
}

.callback-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gold);
	transform: translateX(-100%);
	transition: transform .5s ease;
	z-index: -1;
}

.callback-cta:hover::before {
	transform: translateX(0);
}

.callback-cta:hover {
	color: #0A0A19;
}

