* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	background-color: #0d1117;
	color: #e6e6e6;
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

ul,
ol {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	letter-spacing: -0.02em;
}

h2 {
	font-size: 2.75rem;
	letter-spacing: -0.01em;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 1rem;
	color: #e6e6e6;
	font-size: 1.05rem;
}

.aha-text-secondary {
	color: #a9b1bd;
}

.aha-text-accent {
	color: #3eb489;
}

.aha-text-accent-light {
	color: #58d68d;
}

/* ========== LAYOUT UTILITIES ========== */
.aha-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.aha-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.aha-container-fluid {
	width: 100%;
	padding: 0 2rem;
}

.aha-section {
	padding: 5rem 0;
	position: relative;
}

.aha-section-dark {
	background-color: #161b22;
}

.aha-section-darker {
	background-color: #0d1117;
}

.aha-section-accent {
	background-color: #1e2a38;
}

/* ========== GRID SYSTEM ========== */
.aha-grid {
	display: grid;
	gap: 2rem;
}

.aha-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.aha-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.aha-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.aha-grid-auto {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ========== HEADER ========== */
.aha-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #161b22;
	border-bottom: 2px solid #3eb489;
	z-index: 1000;
	padding: 1rem 0;
	box-shadow: 0 4px 20px rgba(62, 180, 137, 0.1);
}

.aha-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.aha-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
}

.aha-logo-icon {
	color: #3eb489;
	filter: drop-shadow(0 0 8px rgba(62, 180, 137, 0.5));
}

.aha-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.aha-nav-link {
	color: #e6e6e6;
	font-size: 1rem;
	font-weight: 500;
	position: relative;
	transition: color 0.3s ease;
}

.aha-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #3eb489, #58d68d);
	transition: width 0.3s ease;
}

.aha-nav-link:hover {
	color: #58d68d;
	text-shadow: 0 0 10px rgba(88, 214, 141, 0.5);
}

.aha-nav-link:hover::after {
	width: 100%;
}

.aha-nav-link.active {
	color: #3eb489;
}

.aha-header-hours {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #a9b1bd;
	font-size: 0.9rem;
}

.aha-header-hours i {
	color: #3eb489;
}

/* Mobile Menu Toggle */
.aha-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 0.5rem;
}

.aha-mobile-toggle span {
	width: 25px;
	height: 3px;
	background-color: #3eb489;
	transition: all 0.3s ease;
	border-radius: 2px;
}

/* ========== HERO SECTION ========== */
.aha-hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.aha-hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.aha-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
			135deg,
			rgba(13, 17, 23, 0.85) 0%,
			rgba(30, 42, 56, 0.75) 100%
		),
		url('assets/aha-hero.webp') bottom/cover;
	background-attachment: fixed;
	z-index: 2;
}

.aha-hero-content {
	position: relative;
	z-index: 3;
	max-width: 900px;
	padding: 0 2rem;
	animation: aha-slide-up 1s ease-out;
}

.aha-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ffffff 0%, #3eb489 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.aha-hero-subtitle {
	font-size: 1.35rem;
	color: #a9b1bd;
	margin-bottom: 2.5rem;
	line-height: 1.7;
}

.aha-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.aha-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-size: 1.05rem;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.02em;
}

.aha-btn-primary {
	background: linear-gradient(135deg, #3eb489 0%, #58d68d 100%);
	color: #0d1117;
	box-shadow: 0 4px 15px rgba(62, 180, 137, 0.3);
}

.aha-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(62, 180, 137, 0.5);
}

.aha-btn-secondary {
	background-color: transparent;
	border: 2px solid #3eb489;
	color: #3eb489;
}

.aha-btn-secondary:hover {
	background-color: #3eb489;
	color: #0d1117;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(62, 180, 137, 0.4);
}

.aha-btn-outline {
	background-color: transparent;
	border: 2px solid #58d68d;
	color: #58d68d;
}

.aha-btn-outline:hover {
	background-color: #58d68d;
	color: #0d1117;
}

/* ========== CARDS ========== */
.aha-card {
	background-color: #161b22;
	border-radius: 12px;
	padding: 2rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(62, 180, 137, 0.1);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.aha-card a {
	margin-top: auto;
}

.aha-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #3eb489, #58d68d);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.aha-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(62, 180, 137, 0.2);
	border-color: #3eb489;
}

.aha-card:hover::before {
	transform: scaleX(1);
}

.aha-card-icon {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #3eb489;
	filter: drop-shadow(0 0 10px rgba(62, 180, 137, 0.4));
}

.aha-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.aha-card-text {
	color: #a9b1bd;
	line-height: 1.7;
}

.aha-card-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

/* ========== TWO COLUMN LAYOUT ========== */
.aha-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.aha-two-col-reverse {
	grid-template-columns: 1fr 1fr;
}

.aha-two-col-image {
	height: 100%;
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(62, 180, 137, 0.2);
}

.aha-two-col-image img {
	width: 100%;
	border-radius: 12px;
	height: 100%;
	object-fit: cover;
}

.aha-two-col-content h2 {
	margin-bottom: 1.5rem;
}

.aha-two-col-content p {
	margin-bottom: 1.5rem;
	color: #a9b1bd;
	line-height: 1.8;
}

.aha-two-col-content ul {
	list-style: none;
	margin: 1.5rem 0;
}

.aha-two-col-content ul li {
	padding: 0.75rem 0;
	padding-left: 2rem;
	position: relative;
	color: #e6e6e6;
}

.aha-two-col-content ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #3eb489;
	font-weight: bold;
	font-size: 1.2rem;
}

/* ========== TEAM CARDS ========== */
.aha-team-card {
	background-color: #161b22;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(62, 180, 137, 0.1);
}

.aha-team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(62, 180, 137, 0.2);
	border-color: #3eb489;
}

.aha-team-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	border: 3px solid #3eb489;
	object-fit: cover;
	box-shadow: 0 0 20px rgba(62, 180, 137, 0.3);
}

.aha-team-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #ffffff;
}

.aha-team-role {
	color: #3eb489;
	font-weight: 500;
	margin-bottom: 1rem;
	font-size: 1.05rem;
}

.aha-team-bio {
	color: #a9b1bd;
	line-height: 1.6;
}

/* ========== FORM STYLES ========== */
.aha-form-container {
	background-color: #161b22;
	padding: 3rem;
	border-radius: 12px;
	border: 1px solid rgba(62, 180, 137, 0.2);
}

.aha-form-group {
	margin-bottom: 1.5rem;
}

.aha-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #e6e6e6;
	font-weight: 500;
	font-size: 1rem;
}

.aha-form-label span {
	color: #3eb489;
}

.aha-form-input,
.aha-form-textarea {
	width: 100%;
	padding: 1rem;
	background-color: #0d1117;
	border: 2px solid rgba(62, 180, 137, 0.2);
	border-radius: 8px;
	color: #e6e6e6;
	font-size: 1rem;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s ease;
}

.aha-form-input:focus,
.aha-form-textarea:focus {
	outline: none;
	border-color: #3eb489;
	box-shadow: 0 0 15px rgba(62, 180, 137, 0.2);
}

.aha-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.aha-form-input.error,
.aha-form-textarea.error {
	border-color: #e74c3c;
}

.aha-form-error {
	color: #e74c3c;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.aha-form-error.show {
	display: block;
}

.aha-form-submit {
	width: 100%;
	padding: 1.2rem;
	background: linear-gradient(135deg, #3eb489 0%, #58d68d 100%);
	color: #0d1117;
	font-weight: 600;
	font-size: 1.1rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Montserrat', sans-serif;
}

.aha-form-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(62, 180, 137, 0.4);
}

.aha-form-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* ========== MAP CONTAINER ========== */
.aha-map-container {
	height: 100%;
	min-height: 400px;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid rgba(62, 180, 137, 0.2);
}

.aha-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.aha-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.aha-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.aha-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ========== FOOTER ========== */
.aha-footer {
	background-color: #0d1117;
	padding: 4rem 0 2rem;
	border-top: 2px solid #3eb489;
}

.aha-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.aha-footer-col h4 {
	color: #3eb489;
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	font-family: 'Montserrat', sans-serif;
}

.aha-footer-col p,
.aha-footer-col li {
	color: #a9b1bd;
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.aha-footer-col ul li {
	margin-bottom: 0.75rem;
}

.aha-footer-col a {
	color: #a9b1bd;
	transition: color 0.3s ease;
}

.aha-footer-col a:hover {
	color: #3eb489;
	text-shadow: 0 0 8px rgba(62, 180, 137, 0.5);
}

.aha-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.aha-footer-contact-item i {
	color: #3eb489;
	margin-top: 3px;
}

.aha-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(62, 180, 137, 0.2);
	color: #a9b1bd;
	font-size: 0.95rem;
}

/* ========== COOKIE POPUP ========== */
.aha-cookie-popup {
	position: fixed;
	display: none;
	bottom: -200px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 600px;
	width: 90%;
	background-color: #161b22;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 -4px 30px rgba(62, 180, 137, 0.3);
	border: 2px solid #3eb489;
	z-index: 10000;
	transition: bottom 0.5s ease;
}

.aha-cookie-popup.show {
	bottom: 2rem;
	display: block;
}

.aha-cookie-content p {
	margin-bottom: 1rem;
	color: #e6e6e6;
}

.aha-cookie-content a {
	color: #3eb489;
	text-decoration: underline;
}

.aha-cookie-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

/* ========== ACCORDION ========== */
.aha-accordion {
	background-color: #161b22;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1rem;
	border: 1px solid rgba(62, 180, 137, 0.2);
}

.aha-accordion-header {
	padding: 1.5rem 2rem;
	background-color: #1e2a38;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.aha-accordion-header:hover {
	background-color: #243342;
}

.aha-accordion-header h3 {
	font-size: 1.25rem;
	margin: 0;
	color: #ffffff;
}

.aha-accordion-icon {
	color: #3eb489;
	transition: transform 0.3s ease;
	font-size: 1.5rem;
}

.aha-accordion.active .aha-accordion-icon {
	transform: rotate(180deg);
}

.aha-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.aha-accordion-content-inner {
	padding: 2rem;
	color: #a9b1bd;
	line-height: 1.8;
}

.aha-accordion-content-inner ul {
	padding-left: 1.2rem;
	margin-left: 0 !important;
}
/* ========== TABS ========== */
.aha-tabs-container {
	margin: 3rem 0;
}

.aha-tabs-nav {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	border-bottom: 2px solid rgba(62, 180, 137, 0.2);
	flex-wrap: wrap;
}

.aha-tab-button {
	padding: 1rem 2rem;
	background-color: transparent;
	color: #a9b1bd;
	font-weight: 500;
	font-size: 1.05rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	font-family: 'Montserrat', sans-serif;
}

.aha-tab-button::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #3eb489, #58d68d);
	transition: width 0.3s ease;
}

.aha-tab-button:hover {
	color: #3eb489;
}

.aha-tab-button.active {
	color: #3eb489;
}

.aha-tab-button.active::after {
	width: 100%;
}

.aha-tab-content {
	display: none;
	animation: aha-fade-in 0.5s ease;
}

.aha-tab-content.active {
	display: block;
}

.aha-tab-content-inner {
	background-color: #161b22;
	padding: 2.5rem;
	border-radius: 12px;
	border: 1px solid rgba(62, 180, 137, 0.2);
}

/* ========== SECTION TITLE ========== */
.aha-section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.aha-section-title h2 {
	font-size: 3rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #ffffff 0%, #3eb489 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.aha-section-title p {
	color: #a9b1bd;
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto;
}

/* ========== CONTACT INFO ========== */
.aha-contact-info {
	background-color: #161b22;
	padding: 3rem;
	border-radius: 12px;
	border: 1px solid rgba(62, 180, 137, 0.2);
}

.aha-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(62, 180, 137, 0.1);
}

.aha-contact-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.aha-contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #3eb489 0%, #58d68d 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d1117;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.aha-contact-details h4 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: #ffffff;
}

.aha-contact-details p {
	color: #a9b1bd;
	margin: 0;
	word-wrap: break-word;
	line-height: 1.6;
}

/* ========== ANIMATIONS ========== */
@keyframes aha-slide-up {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes aha-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes aha-fade-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes aha-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.aha-animate-slide-up {
	animation: aha-slide-up 0.8s ease-out;
}

.aha-animate-fade-in {
	animation: aha-fade-in 0.8s ease-out;
}

.aha-animate-fade-left {
	animation: aha-fade-left 0.8s ease-out;
}

.aha-animate-zoom-in {
	animation: aha-zoom-in 0.8s ease-out;
}

/* Animation delays for staggered effects */
.aha-delay-1 {
	animation-delay: 0.1s;
}

.aha-delay-2 {
	animation-delay: 0.2s;
}

.aha-delay-3 {
	animation-delay: 0.3s;
}

.aha-delay-4 {
	animation-delay: 0.4s;
}

/* ========== BREADCRUMBS ========== */
.aha-breadcrumbs {
	padding: 1.5rem 0;
	background-color: #161b22;
	margin-top: 70px;
}

.aha-breadcrumbs ul {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.aha-breadcrumbs li {
	color: #a9b1bd;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.aha-breadcrumbs li::after {
	content: '/';
	color: #3eb489;
}

.aha-breadcrumbs li:last-child::after {
	content: '';
}

.aha-breadcrumbs a {
	color: #a9b1bd;
	transition: color 0.3s ease;
}

.aha-breadcrumbs a:hover {
	color: #3eb489;
}

.aha-breadcrumbs li:last-child {
	color: #3eb489;
}

/* ========== FEATURES LIST ========== */
.aha-features-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin: 2rem 0;
}

.aha-feature-item {
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
	background-color: #161b22;
	border-radius: 8px;
	border-left: 3px solid #3eb489;
	transition: all 0.3s ease;
}

.aha-feature-item:hover {
	transform: translateX(10px);
	box-shadow: 0 4px 20px rgba(62, 180, 137, 0.2);
}

.aha-feature-icon {
	color: #3eb489;
	font-size: 1.5rem;
	margin-top: 3px;
}

.aha-feature-content h4 {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
	color: #ffffff;
}

.aha-feature-content p {
	color: #a9b1bd;
	font-size: 0.95rem;
	margin: 0;
}

/* ========== STATS SECTION ========== */
.aha-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin: 3rem 0;
}

.aha-stat-item {
	text-align: center;
	padding: 2rem;
	background-color: #161b22;
	border-radius: 12px;
	border: 1px solid rgba(62, 180, 137, 0.2);
	transition: all 0.3s ease;
}

.aha-stat-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(62, 180, 137, 0.2);
	border-color: #3eb489;
}

.aha-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #3eb489;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 0.5rem;
}

.aha-stat-label {
	color: #a9b1bd;
	font-size: 1rem;
}

/* ========== IMAGE GALLERY ========== */
.aha-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin: 3rem 0;
}

.aha-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	cursor: pointer;
	height: 300px;
}

.aha-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.aha-gallery-item:hover img {
	transform: scale(1.1);
}

.aha-gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(13, 17, 23, 0.9) 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.aha-gallery-item:hover .aha-gallery-overlay {
	opacity: 1;
}

.aha-gallery-title {
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 600;
}

/* ========== TIMELINE ========== */
.aha-timeline {
	position: relative;
	padding: 2rem 0;
}

.aha-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, #3eb489 0%, #58d68d 100%);
	transform: translateX(-50%);
}

.aha-timeline-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
	position: relative;
}

.aha-timeline-item:nth-child(even) .aha-timeline-content {
	grid-column: 2;
}

.aha-timeline-item:nth-child(even) .aha-timeline-image {
	grid-column: 1;
	grid-row: 1;
}

.aha-timeline-content {
	background-color: #161b22;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid rgba(62, 180, 137, 0.2);
}

.aha-timeline-date {
	color: #3eb489;
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.aha-timeline-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.aha-timeline-text {
	color: #a9b1bd;
	line-height: 1.7;
}

/* ========== UTILITY CLASSES ========== */
.aha-text-center {
	text-align: center;
}

.aha-text-left {
	text-align: left;
}

.aha-text-right {
	text-align: right;
}

.aha-mb-1 {
	margin-bottom: 1rem;
}

.aha-mb-2 {
	margin-bottom: 2rem;
}

.aha-mb-3 {
	margin-bottom: 3rem;
}

.aha-mt-1 {
	margin-top: 1rem;
}

.aha-mt-2 {
	margin-top: 2rem;
}

.aha-mt-3 {
	margin-top: 3rem;
}

.aha-p-1 {
	padding: 1rem;
}

.aha-p-2 {
	padding: 2rem;
}

.aha-p-3 {
	padding: 3rem;
}

.aha-hidden {
	display: none;
}

.aha-visible {
	display: block;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
	.aha-container {
		max-width: 100%;
	}

	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.5rem;
	}
}

@media (max-width: 1024px) {
	.aha-mobile-toggle {
		display: flex;
	}

	.aha-nav {
		position: fixed;
		top: 72px;
		left: -100%;
		width: 100%;
		height: 100vh;
		background-color: #161b22;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 2rem;
		transition: left 0.3s ease;
		overflow-y: auto;
	}

	.aha-nav a {
		font-size: 1.5rem;
	}

	.aha-nav.active {
		left: 0;
	}
}

@media (max-width: 992px) {
	.aha-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.aha-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.aha-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.aha-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.aha-two-col {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.aha-timeline::before {
		left: 0;
	}

	.aha-timeline-item {
		grid-template-columns: 1fr;
		padding-left: 3rem;
	}

	.aha-timeline-item:nth-child(even) .aha-timeline-content {
		grid-column: 1;
	}

	.aha-timeline-item:nth-child(even) .aha-timeline-image {
		grid-column: 1;
		grid-row: 2;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 14px;
	}

	.aha-header-hours {
		display: none;
	}

	.aha-hero h1 {
		font-size: 2.5rem;
	}

	.aha-hero-subtitle {
		font-size: 1.1rem;
	}

	.aha-hero-buttons {
		flex-direction: column;
	}

	.aha-grid-2,
	.aha-grid-3,
	.aha-grid-4 {
		grid-template-columns: 1fr;
	}

	.aha-footer-grid {
		grid-template-columns: 1fr;
	}

	.aha-stats-grid {
		grid-template-columns: 1fr;
	}

	.aha-gallery {
		grid-template-columns: 1fr;
	}

	.aha-features-list {
		grid-template-columns: 1fr;
	}

	.aha-section-title h2 {
		font-size: 2rem;
	}

	.aha-form-container {
		padding: 2rem;
	}

	.aha-tabs-nav {
		flex-direction: column;
	}

	.aha-tab-button {
		width: 100%;
		text-align: left;
	}

	.aha-nav {
		top: 64px;
	}
}

@media (max-width: 480px) {
	.aha-container,
	.aha-container-wide,
	.aha-container-fluid {
		padding: 0 1rem;
	}

	.aha-section {
		padding: 3rem 0;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.aha-card {
		padding: 1.5rem;
	}

	.aha-btn {
		padding: 0.875rem 2rem;
		font-size: 1rem;
	}

	.aha-grid-2,
	.aha-grid-3,
	.aha-grid-4 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.aha-card-title,
	.aha-accordion-content-inner h4 {
		font-size: 1.3rem;
	}

	.aha-contact-item {
		flex-direction: column;
	}
}

.aha-legal-container {
	max-width: 900px;
	margin: 150px auto;
	background-color: #161b22;
	border-radius: 12px;
	padding: 60px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Content Wrapper */
.aha-legal-content {
	width: 100%;
}

/* Main Title */
.aha-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

/* Date */
.aha-legal-date {
	font-size: 0.95rem;
	color: #a9b1bd;
	margin-bottom: 40px;
	font-style: italic;
}

/* Introduction Block */
.aha-legal-intro {
	background: linear-gradient(135deg, #1e2a38 0%, #161b22 100%);
	padding: 30px;
	border-radius: 8px;
	border-left: 4px solid #3eb489;
	margin-bottom: 50px;
}

.aha-legal-intro p {
	font-size: 1.05rem;
	color: #e6e6e6;
	margin-bottom: 15px;
	line-height: 1.8;
}

.aha-legal-intro p:last-child {
	margin-bottom: 0;
}

.aha-legal-intro strong {
	color: #58d68d;
	font-weight: 600;
}

/* Section Styles */
.aha-legal-section {
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 1px solid #1e2a38;
}

.aha-legal-section:last-of-type {
	border-bottom: none;
}

/* Section Heading */
.aha-legal-heading {
	font-size: 1.75rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #3eb489;
	display: inline-block;
}

/* Subsection */
.aha-legal-subsection {
	margin-top: 30px;
	margin-bottom: 25px;
	padding-left: 20px;
	border-left: 2px solid #58d68d;
}

/* Subheading */
.aha-legal-subheading {
	font-size: 1.3rem;
	font-weight: 600;
	color: #58d68d;
	margin-bottom: 15px;
}

/* Text Paragraph */
.aha-legal-text {
	font-size: 1rem;
	color: #e6e6e6;
	line-height: 1.8;
	margin-bottom: 20px;
}

.aha-legal-text:last-child {
	margin-bottom: 0;
}

.aha-legal-text strong {
	color: #ffffff;
	font-weight: 600;
}

/* Lists */
.aha-legal-list {
	list-style: none;
	margin: 20px 0;
	padding-left: 0;
}

.aha-legal-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	color: #e6e6e6;
	line-height: 1.8;
}

.aha-legal-list li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: #3eb489;
	font-size: 1.2rem;
	font-weight: bold;
}

/* Highlight Text */
.aha-legal-highlight {
	color: #58d68d;
	font-weight: 600;
}

/* Links */
.aha-legal-link {
	color: #3eb489;
	text-decoration: none;
	transition: color 0.3s ease, border-bottom 0.3s ease;
	border-bottom: 1px solid transparent;
}

.aha-legal-link:hover {
	color: #58d68d;
	border-bottom: 1px solid #58d68d;
}

.aha-legal-link:focus {
	outline: 2px solid #3eb489;
	outline-offset: 2px;
	border-radius: 2px;
}

/* Table Container */
.aha-legal-table-container {
	overflow-x: auto;
	margin: 25px 0;
	border-radius: 8px;
	background-color: #1e2a38;
	padding: 20px;
}

/* Table */
.aha-legal-table {
	width: 100%;
	border-collapse: collapse;
	background-color: transparent;
}

.aha-legal-table th,
.aha-legal-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #0d1117;
}

.aha-legal-table th {
	background-color: #3eb489;
	color: #0d1117;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.aha-legal-table td {
	color: #e6e6e6;
	font-size: 0.95rem;
}

.aha-legal-table tr:last-child td {
	border-bottom: none;
}

.aha-legal-table tr:hover {
	background-color: rgba(62, 180, 137, 0.1);
}

/* Contact Block */
.aha-legal-contact {
	background: linear-gradient(135deg, #1e2a38 0%, #161b22 100%);
	padding: 40px;
	border-radius: 8px;
	border: 2px solid #3eb489;
	margin-top: 60px;
}

.aha-legal-contact-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #58d68d;
	margin-bottom: 20px;
}

.aha-legal-contact p {
	font-size: 1rem;
	color: #e6e6e6;
	margin-bottom: 10px;
	line-height: 1.8;
}

.aha-legal-contact p:last-child {
	margin-bottom: 0;
	margin-top: 15px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.aha-legal-body {
		padding: 20px 15px;
	}

	.aha-legal-container {
		padding: 30px 25px;
		margin: 150px 20px;
		border-radius: 8px;
	}

	.aha-legal-title {
		font-size: 2rem;
	}

	.aha-legal-heading {
		font-size: 1.5rem;
	}

	.aha-legal-subheading {
		font-size: 1.15rem;
	}

	.aha-legal-text {
		font-size: 0.95rem;
	}

	.aha-legal-intro {
		padding: 20px;
	}

	.aha-legal-intro p {
		font-size: 1rem;
	}

	.aha-legal-subsection {
		padding-left: 15px;
	}

	.aha-legal-contact {
		padding: 25px;
	}

	.aha-legal-table-container {
		padding: 15px;
	}

	.aha-legal-table th,
	.aha-legal-table td {
		padding: 10px;
		font-size: 0.85rem;
	}
}

@media screen and (max-width: 480px) {
	.aha-legal-body {
		padding: 15px 10px;
	}

	.aha-header-container {
		padding: 0 20px;
	}

	.aha-legal-container {
		padding: 20px 15px;
	}

	.aha-legal-title {
		font-size: 1.3rem;
	}

	.aha-legal-heading {
		font-size: 1.3rem;
	}

	.aha-legal-date {
		font-size: 0.85rem;
	}

	.aha-legal-list li {
		padding-left: 25px;
		font-size: 0.9rem;
	}

	.aha-legal-table th,
	.aha-legal-table td {
		padding: 8px;
		font-size: 0.8rem;
	}
}
