/* ==========================================================================
   Hero Sections
   ========================================================================== */

/* Main Hero Section */
.hero-section {
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: var(--color-primary-dark);
	display: flex;
	align-items: center;
	color: var(--color-white);
	overflow: hidden;
	min-height: calc(100vh - 130px);
	width: 100%;
}

/* Hero Split Layout */
.hero-split {
	padding: 0;
	margin: 0;
}

.hero-split .container {
	max-width: 100%;
	padding: 0;
	margin: 0;
}

.hero-split-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: center;
	position: relative;
	z-index: 1;
	min-height: calc(100vh - 130px);
}

.hero-left {
	text-align: left;
	position: relative;
	z-index: 2;
	padding: var(--spacing-xl) var(--spacing-xxl);
}

.hero-right {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
	padding: var(--spacing-xl);
	height: 100%;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(44, 95, 124, 0.7) 0%, rgba(70, 143, 175, 0.5) 100%);
	z-index: 0;
}

.hero-overlay.glass-hero-overlay {
	background: linear-gradient(135deg, rgba(44, 95, 124, 0.6) 0%, rgba(70, 143, 175, 0.4) 100%);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	text-align: center;
	margin: 0 auto;
	padding: var(--spacing-xl) 0;
}

.hero-title {
	color: var(--color-white);
	font-size: 4rem;
	margin-bottom: var(--spacing-lg);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	font-weight: 700;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.4rem;
	margin-bottom: var(--spacing-xl);
	color: var(--color-white);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	opacity: 0.98;
	line-height: 1.6;
}

/* Hero Services Slider */
.hero-services-grid {
	position: relative;
	width: 100%;
	height: 500px;
}

.hero-service-card {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: var(--color-white);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-service-card.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.hero-service-card:hover {
	text-decoration: none;
	color: var(--color-white);
}

.hero-service-card:hover .hero-service-bg {
	transform: scale(1.05);
}

.hero-service-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.hero-service-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
	padding: var(--spacing-lg) var(--spacing-xl);
	display: flex;
	align-items: flex-end;
	min-height: 120px;
}

.hero-service-card h3 {
	font-size: 2rem;
	margin: 0;
	font-weight: 700;
	color: var(--color-white);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	line-height: 1.2;
}

.hero-buttons {
	display: flex;
	gap: var(--spacing-lg);
	margin-top: var(--spacing-xl);
	flex-wrap: wrap;
	justify-content: flex-start;
}

.hero-button {
	margin: 0;
	padding: var(--spacing-md) var(--spacing-xl);
	font-size: 1.125rem;
	font-weight: 700;
}

/* Standard Page Hero - Reusable for all pages */
.page-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-color: var(--color-primary-dark);
	overflow: hidden;
}

.page-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.page-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	padding: var(--spacing-xl) 0;
}

.page-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--color-white);
	margin-bottom: var(--spacing-lg);
	text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
	line-height: 1.2;
}

.page-hero-subtitle {
	font-size: 1.3rem;
	color: var(--color-white);
	margin-bottom: var(--spacing-xxl);
	line-height: 1.7;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-hero .btn {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Page-Specific Hero Variations */
.about-hero {
	min-height: 60vh;
}

.contact-hero {
	min-height: 50vh;
}

