/* Umrah Hero Section Widget — base styles.
   Colors, fonts, spacing, icon sizes etc. are mostly controlled
   live from Elementor's Style tab (inline selectors). This file
   only holds structural / layout / responsive rules. */

.uh-hero-section {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
	box-sizing: border-box;
}
.uh-hero-section * {
	box-sizing: border-box;
}

.uh-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.uh-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.uh-hero-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.uh-hero-content {
	flex: 1 1 480px;
	min-width: 280px;
}

/* Badge */
.uh-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	text-transform: uppercase;
}
.uh-hero-badge::before,
.uh-hero-badge::after {
	content: "";
	display: inline-block;
	width: 26px;
	height: 1px;
}

/* Heading */
.uh-hero-heading {
	margin: 0 0 16px;
	display: flex;
	flex-direction: column;
}
.uh-hero-heading .uh-line,
.uh-hero-heading .uh-highlight {
	display: block;
}

/* Description */
.uh-hero-desc {
	max-width: 520px;
	margin: 0 0 28px;
}

/* Buttons */
.uh-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 40px;
}
.uh-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.25s ease;
	white-space: nowrap;
}
.uh-btn-secondary {
	border-width: 2px;
	border-style: solid;
}
.uh-btn i,
.uh-btn svg {
	font-size: 1em;
	width: 1em;
	height: 1em;
}

/* Trust badges */
.uh-hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	padding-top: 26px;
	border-top: 1px solid transparent;
}
.uh-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.uh-trust-text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}
.uh-trust-title {
	font-weight: 600;
	font-size: 0.85em;
}
.uh-trust-subtitle {
	font-size: 0.78em;
}

/* Form card */
.uh-hero-form-card {
	flex: 0 0 auto;
	position: relative;
	z-index: 3;
}

.uh-form-title {
	margin: 0 0 6px;
}
.uh-form-subtitle {
	margin: 0 0 22px;
	font-size: 13px;
	line-height: 1.5;
}

.uh-hero-form {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.uh-field {
	position: relative;
	width: 100%;
}
.uh-field.uh-w50 {
	width: calc(50% - 7px);
}
.uh-field input,
.uh-field select,
.uh-field textarea {
	width: 100%;
	display: block;
	border: 1px solid #e2e2df;
	padding: 12px 14px 12px 38px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s ease;
	appearance: none;
	-webkit-appearance: none;
}
.uh-field textarea {
	padding-left: 14px;
	resize: vertical;
	min-height: 70px;
}
.uh-field select {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
}
.uh-field-icon {
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	pointer-events: none;
	display: flex;
	align-items: center;
}
.uh-field textarea ~ .uh-field-icon {
	top: 22px;
	transform: none;
}
.uh-hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0;
}

.uh-submit-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: none;
	cursor: pointer;
	transition: background-color 0.25s ease;
	margin-top: 4px;
}
.uh-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.uh-form-response {
	width: 100%;
	font-size: 13px;
	padding: 0;
	line-height: 1.5;
	border-radius: 6px;
	display: none;
}
.uh-form-response.uh-visible {
	display: block;
	padding: 10px 14px;
	margin-top: 4px;
}
.uh-form-response.uh-success {
	background: #e5f4ea;
	color: #1b5e33;
	border: 1px solid #bfe4cc;
}
.uh-form-response.uh-error {
	background: #fbeaea;
	color: #a02222;
	border: 1px solid #f2c2c2;
}

.uh-form-note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	font-size: 12px;
	color: #7a7a7a;
}

.uh-form-placeholder {
	font-size: 13px;
	color: #a02222;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
	.uh-hero-container {
		flex-direction: column;
		align-items: stretch;
	}
	.uh-hero-form-card {
		width: 100% !important;
		flex: 1 1 100%;
	}
	.uh-hero-content {
		text-align: left;
	}
}

@media (max-width: 600px) {
	.uh-hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}
	.uh-btn {
		justify-content: center;
	}
	.uh-field.uh-w50 {
		width: 100%;
	}
	.uh-hero-trust {
		gap: 18px;
	}
}
