:root {
	--sh-accent: #d4af37;
	--sh-dark: #111111;
	--sh-light: #ffffff;
}

.sh-efc7ce86-hero {
	position: relative;
	width: 100%;
	min-height: 85vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 100px 5%;
	overflow: hidden;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	color: var(--sh-light);
}

.sh-efc7ce86-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
	z-index: 1;
}

.sh-efc7ce86-container {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.sh-efc7ce86-content {
	flex: 1;
	min-width: 300px;
	max-width: 700px;
}

.sh-efc7ce86-headline {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 20px;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--sh-light);
}

.sh-efc7ce86-subheadline {
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 300;
	margin-bottom: 40px;
	line-height: 1.6;
	color: rgba(255,255,255,0.9);
}

.sh-efc7ce86-actions {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.sh-efc7ce86-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 35px;
	border-radius: 50px;
	font-weight: 600;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.sh-efc7ce86-btn-primary {
	background: linear-gradient(135deg, var(--sh-accent) 0%, #ffd700 100%);
	color: var(--sh-dark);
	box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.sh-efc7ce86-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
	color: var(--sh-dark);
}

.sh-efc7ce86-btn-secondary {
	background: transparent;
	color: var(--sh-light);
	border: 1px solid rgba(255,255,255,0.5);
}

.sh-efc7ce86-btn-secondary:hover {
	background: rgba(255,255,255,0.1);
	border-color: var(--sh-light);
	color: var(--sh-light);
}

/* Appointment Widget */
.sh-efc7ce86-appointment-widget {
	flex: 0 0 400px;
}

@media (max-width: 991px) {
	.sh-efc7ce86-appointment-widget {
		flex: 1 1 100%;
		max-width: 500px;
		margin: 0 auto;
	}
	.sh-efc7ce86-container {
		justify-content: center;
		text-align: center;
	}
	.sh-efc7ce86-actions {
		justify-content: center;
	}
}

.sh-efc7ce86-glass-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.sh-efc7ce86-appt-title {
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 30px;
	text-align: center;
	color: var(--sh-light);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding-bottom: 15px;
}

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

.sh-efc7ce86-input-group {
	position: relative;
	margin-bottom: 20px;
}

.sh-efc7ce86-input-group i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--sh-accent);
	font-size: 1.1rem;
}

.sh-efc7ce86-input-group input,
.sh-efc7ce86-input-group select {
	width: 100%;
	padding: 15px 15px 15px 45px;
	background: rgba(0,0,0,0.2);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 10px;
	color: var(--sh-light);
	font-size: 1rem;
	outline: none;
	transition: all 0.3s ease;
	appearance: none;
}

.sh-efc7ce86-input-group input:focus,
.sh-efc7ce86-input-group select:focus {
	border-color: var(--sh-accent);
	background: rgba(0,0,0,0.4);
}

.sh-efc7ce86-input-group select option {
	background: var(--sh-dark);
	color: var(--sh-light);
}

.sh-efc7ce86-btn-appt {
	width: 100%;
	background: var(--sh-accent);
	color: var(--sh-dark);
	border: none;
	cursor: pointer;
}

.sh-efc7ce86-btn-appt:hover {
	background: var(--sh-light);
	color: var(--sh-dark);
}

/* Services Row */
.sh-efc7ce86-services-row {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1400px;
	margin: 80px auto 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.sh-efc7ce86-service-card {
	position: relative;
	height: 200px;
	border-radius: 15px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	transition: transform 0.4s ease;
}

.sh-efc7ce86-service-card:hover {
	transform: translateY(-10px);
}

.sh-efc7ce86-service-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
}

.sh-efc7ce86-service-icon {
	font-size: 2rem;
	color: var(--sh-accent);
	margin-bottom: 15px;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.sh-efc7ce86-service-icon svg {
	width: 32px;
	height: 32px;
	fill: var(--sh-accent);
}

.sh-efc7ce86-service-card:hover .sh-efc7ce86-service-icon {
	opacity: 1;
	transform: scale(1.1);
}

.sh-efc7ce86-service-title {
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 10px;
	color: var(--sh-light);
}

.sh-efc7ce86-service-link {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	gap: 5px;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
}

.sh-efc7ce86-service-card:hover .sh-efc7ce86-service-link {
	opacity: 1;
	transform: translateY(0);
	color: var(--sh-accent);
}
