/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.nav-logo img {
	height: 50px;
	width: auto;
}

.nav-menu {
	display: flex;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: #2196f3;
}

.nav-toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	min-height: 100vh;
	padding: 100px 20px 50px;
	max-width: 1200px;
	margin: 0 auto;
	gap: 3rem;
}

.hero-content {
	flex: 1;
}

.hero-content h1 {
	font-size: 3rem;
	color: #2196f3;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #666;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
}

.hero-image {
	flex: 1;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: #2196f3;
	color: white;
}

.btn-primary:hover {
	background: #1976d2;
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: #2196f3;
	border: 2px solid #2196f3;
}

.btn-secondary:hover {
	background: #2196f3;
	color: white;
}

/* Page Hero */
.page-hero {
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	color: white;
	text-align: center;
	padding: 150px 0 100px;
}

.page-hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-hero p {
	font-size: 1.2rem;
	opacity: 0.9;
}

/* Services Section */
.services {
	padding: 80px 0;
	background: #f8f9fa;
}

.services h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #2196f3;
	margin-bottom: 3rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-card i {
	font-size: 3rem;
	color: #ffffff;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

/* Location Section */
.location {
	padding: 80px 0;
}

.location h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #2196f3;
	margin-bottom: 3rem;
}

.location-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.location-info h3 {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 1rem;
}

.location-info p {
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.location-info i {
	color: #2196f3;
	width: 20px;
}

.hours {
	margin-top: 2rem;
}

.hours h4 {
	color: #333;
	margin-bottom: 1rem;
}

.location-map img {
	width: 100%;
	border-radius: 10px;
}

/* About Content */
.about-content {
	padding: 80px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.about-text h2 {
	font-size: 2.5rem;
	color: #2196f3;
	margin-bottom: 1.5rem;
}

.about-text p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

.about-image img {
	width: 100%;
	border-radius: 10px;
}

/* Mission Section */
.mission {
	padding: 80px 0;
	background: #f8f9fa;
}

.mission h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #2196f3;
	margin-bottom: 3rem;
}

.mission-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.mission-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-card i {
	font-size: 3rem;
	color: #2196f3;
	margin-bottom: 1rem;
}

.mission-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

/* Stats Section */
.stats {
	padding: 80px 0;
	background: #2196f3;
	color: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.stat-item {
	text-align: center;
}

.stat-item i {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.stat-item h3 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

/* Contact Content */
.contact-content {
	padding: 60px 20px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(33, 150, 243, 0.1);
}

.contact-form h2,
.contact-info h2 {
	font-size: 1.8rem;
	color: #2196f3;
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 0.6rem;
	font-weight: 600;
	color: #333;
	font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	background: #fafafa;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2196f3;
	background: white;
	box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
	transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
	border-color: #bbb;
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-group select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 14px;
	padding-right: 40px;
}

.contact-info {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid rgba(33, 150, 243, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1.2rem;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
	font-size: 1.5rem;
	color: #2196f3;
	margin-top: 0.2rem;
	background: rgba(33, 150, 243, 0.1);
	padding: 10px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-item h3 {
	font-size: 1.2rem;
	margin-bottom: 0.4rem;
	color: #333;
	font-weight: 600;
}

.contact-item p {
	color: #666;
	margin: 0;
	line-height: 1.5;
	font-size: 0.95rem;
}

/* FAQ Section */
.faq {
	padding: 60px 20px;
	background: #f8f9fa;
}

.faq h2 {
	text-align: center;
	font-size: 2rem;
	color: #2196f3;
	margin-bottom: 2rem;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	margin-bottom: 0.8rem;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.faq-item:hover {
	box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
	border-color: rgba(33, 150, 243, 0.1);
}

.faq-item.active {
	border-color: #2196f3;
	box-shadow: 0 8px 25px rgba(33, 150, 243, 0.2);
}

.faq-question {
	padding: 1.2rem 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	transition: all 0.3s ease;
	user-select: none;
}

.faq-question:hover {
	background: rgba(33, 150, 243, 0.05);
}

.faq-item.active .faq-question {
	background: rgba(33, 150, 243, 0.1);
	border-bottom: 1px solid rgba(33, 150, 243, 0.2);
}

.faq-question h3 {
	color: #333;
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	flex: 1;
	transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
	color: #2196f3;
}

.faq-toggle {
	color: #2196f3;
	font-size: 1.1rem;
	transition: transform 0.3s ease;
	margin-left: 0.8rem;
}

.faq-item.active .faq-toggle {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	background: white;
}

.faq-item.active .faq-answer {
	padding: 1.2rem 1.5rem;
	max-height: 300px;
}

.faq-answer p {
	margin: 0;
	color: #666;
	line-height: 1.5;
	font-size: 0.95rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.contact-content {
		padding: 40px 15px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.contact-form,
	.contact-info {
		padding: 1.5rem;
	}

	.contact-form h2,
	.contact-info h2 {
		font-size: 1.6rem;
		margin-bottom: 1.2rem;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 10px 14px;
		font-size: 0.9rem;
	}

	.form-group select {
		background-position: right 10px center;
		background-size: 12px;
		padding-right: 35px;
	}

	.contact-item {
		padding: 1rem;
		gap: 0.8rem;
	}

	.contact-item i {
		font-size: 1.3rem;
		width: 36px;
		height: 36px;
		padding: 8px;
	}

	.contact-item h3 {
		font-size: 1.1rem;
	}

	.contact-item p {
		font-size: 0.9rem;
	}

	.faq {
		padding: 40px 15px;
	}

	.faq h2 {
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
	}

	.faq-question {
		padding: 1rem 1.2rem;
	}

	.faq-question h3 {
		font-size: 1rem;
	}

	.faq-toggle {
		font-size: 1rem;
		margin-left: 0.6rem;
	}

	.faq-item.active .faq-answer {
		padding: 1rem 1.2rem;
		max-height: 400px;
	}

	.faq-answer p {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.contact-content {
		padding: 30px 10px;
	}

	.contact-form,
	.contact-info {
		padding: 1.2rem;
		border-radius: 8px;
	}

	.contact-form h2,
	.contact-info h2 {
		font-size: 1.4rem;
	}

	.form-group {
		margin-bottom: 1.2rem;
	}

	.form-group label {
		font-size: 0.85rem;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 8px 12px;
		font-size: 0.85rem;
		border-radius: 6px;
	}

	.contact-item {
		margin-bottom: 1rem;
	}

	.faq {
		padding: 30px 10px;
	}

	.faq h2 {
		font-size: 1.6rem;
	}

	.faq-list {
		padding: 0 10px;
	}

	.faq-item {
		border-radius: 6px;
	}

	.faq-question {
		padding: 0.8rem 1rem;
	}

	.faq-question h3 {
		font-size: 0.95rem;
	}

	.faq-answer {
		padding: 0 1rem;
	}

	.faq-item.active .faq-answer {
		padding: 0.8rem 1rem;
	}
}
/* Blog Styles */
.blog-posts {
	padding: 80px 0;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.blog-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-5px);
}

.blog-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.blog-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: #666;
}

.blog-category {
	background: #2196f3;
	color: white;
	padding: 0.2rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	width: fit-content;
}

.blog-card h2 {
	margin-bottom: 1rem;
}
.blog-card p {
	display: -webkit-box;
	-webkit-line-clamp: 4; /* Limits to 4 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.blog-card h2 a {
	text-decoration: none;
	color: #333;
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* Limits to 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-card h2 a:hover {
	color: #2196f3;
}

.read-more {
	color: #2196f3;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: gap 0.3s ease;
}

.read-more:hover {
	gap: 1rem;
}

/* Blog Post Styles */
.blog-post {
	padding: 100px 0 50px;
}

.blog-header {
	margin-bottom: 3rem;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.breadcrumb {
	margin-bottom: 1rem;
	color: #666;
}

.breadcrumb a {
	color: #2196f3;
	text-decoration: none;
}

.breadcrumb i {
	margin: 0 0.5rem;
	font-size: 0.8rem;
}

.blog-post h1 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.blog-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
}

.blog-text {
	font-size: 1.1rem;
	line-height: 1.8;
}

.blog-text h2 {
	font-size: 2rem;
	color: #2196f3;
	margin: 2rem 0 1rem;
}

.blog-text h3 {
	font-size: 1.5rem;
	color: #333;
	margin: 1.5rem 0 1rem;
}

.blog-text h4 {
	font-size: 1.2rem;
	color: #333;
	margin: 1rem 0 0.5rem;
}

.blog-text ul {
	margin: 1rem 0 1rem 2rem;
}

.blog-text li {
	margin-bottom: 0.5rem;
}

.blog-cta {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	margin-top: 3rem;
}

.blog-cta h3 {
	color: #2196f3;
	margin-bottom: 1rem;
}

/* Related Posts */
.related-posts {
	padding: 50px 0;
	background: #f8f9fa;
}

.related-posts h2 {
	text-align: center;
	font-size: 2rem;
	color: #2196f3;
	margin-bottom: 2rem;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.related-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.related-card:hover {
	transform: translateY(-5px);
}

.related-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.related-card h3 {
	padding: 1rem;
	font-size: 1rem;
}

.related-card a {
	text-decoration: none;
	color: #333;
	transition: color 0.3s ease;
}

.related-card a:hover {
	color: #2196f3;
}

/* Newsletter */
.newsletter {
	padding: 80px 0;
	background: #2196f3;
	color: white;
	text-align: center;
}

.newsletter h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.newsletter p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.newsletter-form {
	display: flex;
	max-width: 500px;
	margin: 0 auto;
	gap: 1rem;
}

.newsletter-form input {
	flex: 1;
	padding: 12px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
}

.newsletter-form button {
	background: white;
	color: #2196f3;
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 50px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-logo {
	height: 60px;
	width: auto;
	margin-bottom: 1rem;
}

.footer-section h4 {
	color: #2196f3;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #2196f3;
}

.footer-section p {
	color: #ccc;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-section i {
	color: #2196f3;
	width: 20px;
}

.footer-bottom {
	border-top: 1px solid #555;
	padding-top: 2rem;
	text-align: center;
	color: #ccc;
}

/* Legal Pages */
.legal-page {
	padding: 100px 0 50px;
}

.legal-header {
	text-align: center;
	margin-bottom: 3rem;
}

.legal-header h1 {
	font-size: 2.5rem;
	color: #2196f3;
	margin-bottom: 1rem;
}

.last-updated {
	color: #666;
	font-style: italic;
	font-size: 1rem;
}

.legal-content {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.8;
}

.legal-content h2 {
	font-size: 1.8rem;
	color: #2196f3;
	margin: 2.5rem 0 1rem;
	padding-top: 1rem;
	border-top: 1px solid #eee;
}

.legal-content h2:first-of-type {
	border-top: none;
	padding-top: 0;
}

.legal-content p {
	margin-bottom: 1.5rem;
	text-align: justify;
}

.legal-content ul {
	margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
	margin-bottom: 0.5rem;
}

.legal-content strong {
	color: #333;
	font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: white;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: left 0.3s ease;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: block;
	}

	.hero {
		flex-direction: column;
		text-align: center;
		padding: 120px 20px 50px;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
	}

	.page-hero h1 {
		font-size: 2rem;
	}

	.location-content,
	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.footer-content {
		text-align: center;
	}
	.footer-section p {
		justify-content: center;
	}
	.services-grid,
	.mission-grid,
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.related-grid {
		grid-template-columns: 1fr;
	}

	.blog-post h1 {
		font-size: 2rem;
	}

	.blog-text h2 {
		font-size: 1.5rem;
	}

	/* Mobile styles for legal pages */
	.legal-page {
		padding: 120px 0 50px;
	}

	.legal-header h1 {
		font-size: 2rem;
	}

	.legal-content {
		font-size: 1rem;
		line-height: 1.7;
	}

	.legal-content h2 {
		font-size: 1.5rem;
		margin: 2rem 0 1rem;
	}

	.legal-content p {
		text-align: left;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.nav-container {
		padding: 1rem 15px;
	}

	.hero-content h1 {
		font-size: 1.8rem;
	}

	.page-hero {
		padding: 120px 0 80px;
	}

	.page-hero h1 {
		font-size: 1.8rem;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.blog-card,
	.service-card,
	.mission-card {
		margin: 0 10px;
	}

	/* FAQ Mobile Styles */
	.faq-question {
		padding: 1rem 1.5rem;
	}

	.faq-question h3 {
		font-size: 1.1rem;
	}

	.faq-item.active .faq-answer {
		padding: 1rem 1.5rem;
	}

	/* Smaller mobile styles for legal pages */
	.legal-header h1 {
		font-size: 1.8rem;
	}

	.legal-content h2 {
		font-size: 1.3rem;
	}
}

/* ========== MODERN HERO SECTION ========== */
.hero-modern {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 120px 0 80px;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.3) blur(1px);
}

.hero-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	z-index: -1;
}

.hero-content-wrapper {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	color: white;
	animation: slideInLeft 1s ease-out;
}

.hero-badge {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 30px;
	padding: 8px 20px;
	display: inline-block;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
	font-size: 0.9rem;
	font-weight: 500;
	animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.title-highlight {
	color: #ffd700;
	display: block;
	font-size: 4rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-location {
	display: block;
	font-size: 2.5rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
	font-size: 1.3rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 500px;
	animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin-bottom: 2.5rem;
	animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffd700;
	line-height: 1;
}

.stat-label {
	display: block;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	animation: fadeInUp 1s ease-out 1.5s both;
}

.btn-modern {
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-modern::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.btn-modern:hover::before {
	left: 100%;
}

.btn-primary.btn-modern {
	background: linear-gradient(135deg, #ffd700, #ffa500);
	color: #333;
	border: none;
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary.btn-modern:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-secondary.btn-modern {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.btn-secondary.btn-modern:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px);
}

.hero-image {
	position: relative;
	animation: slideInRight 1s ease-out;
}

.hero-image-container {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
	width: 100%;
	height: auto;
	border-radius: 20px;
	transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-main-image {
	transform: scale(1.05);
}

.hero-floating-card {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 15px 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	animation: float 3s ease-in-out infinite;
}

.floating-card-content {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #333;
	font-weight: 600;
}

.floating-card-content i {
	color: #ffd700;
	font-size: 1.2rem;
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
}

.scroll-arrow {
	width: 40px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: all 0.3s ease;
}

.scroll-arrow:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: white;
	color: white;
}

/* ========== MODERN SECTIONS ========== */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
	animation: fadeInUp 1s ease-out;
}

.section-badge {
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #333;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ========== MODERN SERVICE CARDS ========== */
.service-card-modern {
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: white;
	border-radius: 20px;
	padding: 2.5rem 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(33, 150, 243, 0.1);
}

.service-card-modern::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.service-card-modern:hover::before {
	transform: scaleX(1);
}

.service-card-modern:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(33, 150, 243, 0.2);
}

.service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: white;
	font-size: 1.8rem;
	transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon {
	transform: scale(1.1) rotate(5deg);
}

.service-card-modern h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
}

.service-card-modern p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.service-features {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.service-features span {
	font-size: 0.9rem;
	color: #2196f3;
	font-weight: 500;
}

.service-link {
	color: #2196f3;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.service-link:hover {
	color: #1976d2;
	transform: translateX(5px);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 80px 0;
	position: relative;
}

.testimonials::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			circle at 20% 50%,
			rgba(33, 150, 243, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(33, 203, 243, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	border: 1px solid rgba(33, 150, 243, 0.1);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 50px rgba(33, 150, 243, 0.15);
}

.testimonial-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 1.5rem;
	color: #ffd700;
	font-size: 1.2rem;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #444;
	margin-bottom: 2rem;
	font-style: italic;
	position: relative;
}

.testimonial-text::before {
	content: '"';
	font-size: 3rem;
	color: rgba(33, 150, 243, 0.2);
	position: absolute;
	top: -10px;
	left: -10px;
	font-family: serif;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #2196f3;
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 4px;
}

.author-info span {
	font-size: 0.9rem;
	color: #666;
	font-weight: 500;
}

/* ========== PROCESS SECTION ========== */
.process {
	padding: 80px 0;
	background: white;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.process-step {
	text-align: center;
	position: relative;
	padding: 2rem 1rem;
	border-radius: 15px;
	transition: all 0.3s ease;
}

.process-step:hover {
	background: rgba(33, 150, 243, 0.05);
	transform: translateY(-5px);
}

.step-number {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	font-weight: 700;
}

.step-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		rgba(33, 150, 243, 0.1),
		rgba(33, 203, 243, 0.1)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: #2196f3;
	font-size: 2rem;
	transition: all 0.3s ease;
}

.process-step:hover .step-icon {
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	color: white;
	transform: scale(1.1);
}

.process-step h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 0.8rem;
}

.process-step p {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
}

.process-arrow {
	color: rgba(33, 150, 243, 0.3);
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.process-arrow:hover {
	color: #2196f3;
	transform: translateX(5px);
}

/* ========== ANIMATIONS ========== */
@keyframes slideInLeft {
	from {
		transform: translateX(-100px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(100px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* ========== GOOGLE MAPS STYLING ========== */
.map-container {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 2px solid rgba(33, 150, 243, 0.1);
}

.map-container:hover {
	box-shadow: 0 25px 50px rgba(33, 150, 243, 0.15);
	transform: translateY(-2px);
}

.map-container iframe {
	border-radius: 15px;
	transition: all 0.3s ease;
}

.location-map {
	position: relative;
}

.location-map::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: linear-gradient(
		135deg,
		rgba(33, 150, 243, 0.1),
		rgba(33, 203, 243, 0.1)
	);
	border-radius: 25px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.location-map:hover::before {
	opacity: 1;
}

/* Enhanced location section styling */
.location {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
}

.location::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
		circle at 30% 40%,
		rgba(33, 150, 243, 0.05) 0%,
		transparent 50%
	);
	pointer-events: none;
}

.location h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	color: #333;
	margin-bottom: 3rem;
	position: relative;
}

.location h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	border-radius: 2px;
}

.location-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	position: relative;
	z-index: 1;
}

.location-info {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(33, 150, 243, 0.1);
	transition: all 0.3s ease;
}

.location-info:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 50px rgba(33, 150, 243, 0.12);
}

.location-info h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #2196f3;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.location-info p {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	color: #444;
	transition: color 0.3s ease;
}

.location-info p:hover {
	color: #2196f3;
}

.location-info i {
	color: #2196f3;
	width: 20px;
	font-size: 1.1rem;
}

.hours {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(33, 150, 243, 0.1);
}

.hours h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hours p {
	margin-bottom: 0.5rem;
	font-weight: 500;
	padding: 8px 0;
	border-bottom: 1px solid rgba(33, 150, 243, 0.05);
}

.hours p:last-child {
	border-bottom: none;
}

/* ========== RESPONSIVE DESIGN FOR MODERN SECTIONS ========== */
@media (max-width: 968px) {
	.hero-content-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.hero-title {
		font-size: 2.8rem;
	}

	.title-highlight {
		font-size: 3.2rem;
	}

	.title-location {
		font-size: 2rem;
	}

	.hero-stats {
		justify-content: center;
	}

	.process-steps {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.process-arrow {
		transform: rotate(90deg);
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-modern {
		padding: 100px 0 60px;
	}

	.hero-title {
		font-size: 2.2rem;
	}

	.title-highlight {
		font-size: 2.6rem;
	}

	.title-location {
		font-size: 1.6rem;
	}

	.hero-stats {
		gap: 1.5rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: row;
		align-items: stretch;
		gap: 1rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.testimonial-card {
		padding: 2rem;
	}

	.process-step {
		padding: 1.5rem 1rem;
	}

	.step-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero-content-wrapper {
		padding: 0 15px;
	}

	.hero-title {
		font-size: 1.8rem;
	}

	.title-highlight {
		font-size: 2.2rem;
	}

	.title-location {
		font-size: 1.4rem;
	}

	.hero-stats {
		gap: 1rem;
	}

	.stat-number {
		font-size: 1.8rem;
	}

	.service-card-modern {
		padding: 2rem 1.5rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.testimonial-card {
		padding: 1.5rem;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.section-header {
		margin-bottom: 3rem;
	}

	.section-title {
		font-size: 1.8rem;
	}
}

/* ========== LOCATION SECTION RESPONSIVE DESIGN ========== */
@media (max-width: 968px) {
	.location-content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 768px) {
	.location h2 {
		font-size: 2rem;
	}

	.location-info {
		padding: 2rem;
	}

	.map-container iframe {
		height: 300px;
	}

	.location-info h3 {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.location {
		padding: 60px 0;
	}

	.location h2 {
		font-size: 1.8rem;
		margin-bottom: 2rem;
	}

	.location-content {
		gap: 2rem;
	}

	.location-info {
		padding: 1.5rem;
	}

	.location-info h3 {
		font-size: 1.3rem;
	}

	.map-container iframe {
		height: 250px;
	}
}

/* Cookie Consent Banner */
.cookie-consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
	z-index: 10000;
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.4s ease-in-out;
}

.cookie-consent-banner.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.cookie-text {
	flex: 1;
}

.cookie-text h4 {
	font-size: 1.3rem;
	color: #333;
	margin-bottom: 8px;
	font-weight: 600;
}

.cookie-text p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
}

.cookie-text a {
	color: #2196f3;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.cookie-text a:hover {
	color: #1976d2;
	text-decoration: underline;
}

.cookie-actions {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.cookie-btn-accept {
	background: #2196f3;
	color: white;
	box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.cookie-btn-accept:hover {
	background: #1976d2;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.cookie-btn-decline {
	background: transparent;
	color: #666;
	border: 1px solid #ddd;
}

.cookie-btn-decline:hover {
	background: #f5f5f5;
	color: #333;
	border-color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.cookie-text h4 {
		font-size: 1.2rem;
	}

	.cookie-text p {
		font-size: 0.9rem;
	}

	.cookie-actions {
		flex-direction: column;
		width: 100%;
	}

	.cookie-btn {
		width: 100%;
		justify-content: center;
		padding: 14px 24px;
	}
}

@media (max-width: 480px) {
	.cookie-consent-banner {
		padding: 15px;
	}

	.cookie-text h4 {
		font-size: 1.1rem;
	}

	.cookie-text p {
		font-size: 0.85rem;
	}
}

/* Success Notification Styles */
.notification {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 20px 25px;
	border-radius: 12px;
	color: white;
	font-weight: 600;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	z-index: 10000;
	transform: translateX(400px);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	min-width: 300px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.notification.show {
	transform: translateX(0);
	opacity: 1;
}

.notification.success {
	background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
	border-left: 4px solid #155724;
}

.notification.error {
	background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
	border-left: 4px solid #721c24;
}

.notification.info {
	background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
	border-left: 4px solid #0c5460;
}

.notification i {
	font-size: 1.5rem;
	opacity: 0.9;
}

.notification .close-btn {
	background: none;
	border: none;
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: auto;
	padding: 5px;
	border-radius: 50%;
	transition: background 0.3s ease;
}

.notification .close-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
	.notification {
		top: 10px;
		right: 10px;
		left: 10px;
		min-width: auto;
		transform: translateY(-100px);
	}

	.notification.show {
		transform: translateY(0);
	}
}

/* Hero Section */
.about-hero-dynamic {
	position: relative;
	padding: 8rem 0;
	background: linear-gradient(135deg, #003087 0%, #00b4d8 100%);
	overflow: hidden;
	padding-top: 10rem;
}

.hero-background-animation {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.floating-bubbles {
	position: absolute;
	width: 100%;
	height: 100%;
}

.bubble {
	position: absolute;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	animation: float 10s infinite ease-in-out;
}

.bubble:nth-child(1) {
	width: 50px;
	height: 50px;
	left: 10%;
	top: 20%;
	animation-delay: 0s;
}
.bubble:nth-child(2) {
	width: 30px;
	height: 30px;
	left: 30%;
	top: 50%;
	animation-delay: 2s;
}
.bubble:nth-child(3) {
	width: 70px;
	height: 70px;
	left: 50%;
	top: 30%;
	animation-delay: 4s;
}
.bubble:nth-child(4) {
	width: 40px;
	height: 40px;
	left: 70%;
	top: 60%;
	animation-delay: 6s;
}
.bubble:nth-child(5) {
	width: 60px;
	height: 60px;
	left: 20%;
	top: 80%;
	animation-delay: 8s;
}
.bubble:nth-child(6) {
	width: 20px;
	height: 20px;
	left: 80%;
	top: 10%;
	animation-delay: 10s;
}

@keyframes float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
	100% {
		transform: translateY(0);
	}
}

.gradient-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
}

.hero-content-animated {
	display: flex;
	gap: 20px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-text-section {
	flex: 1;
	color: #fff;
}

.hero-animated-title {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.title-word {
	display: inline-block;
	opacity: 0;
	animation: fadeInWord 0.5s forwards;
}

.title-word:nth-child(1) {
	animation-delay: 0.2s;
}
.title-word:nth-child(2) {
	animation-delay: 0.4s;
}
.title-word:nth-child(3) {
	animation-delay: 0.6s;
}
.title-word:nth-child(4) {
	animation-delay: 0.8s;
}

@keyframes fadeInWord {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.highlight-word {
	color: #00b4d8;
}

.hero-subtitle {
	font-size: 1rem;
	margin-bottom: 20px;
	opacity: 0.9;
}

.hero-stats-mini {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.mini-stat {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 10px;
	border-radius: 8px;
	backdrop-filter: blur(5px);
}

.stat-number-animated {
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
}

.stat-label {
	font-size: 0.8rem;
	opacity: 0.8;
}

.hero-visual-section {
	flex: 1;
}

.hero-image-container {
	position: relative;
	max-width: 100%;
}

.image-frame {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.hero-image {
	width: 100%;
	display: block;
}

.image-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-image-container:hover .image-overlay {
	opacity: 1;
}

.play-button-container {
	display: flex;
	align-items: center;
	gap: 8px;
}

.play-button {
	background: #00b4d8;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.play-button:hover {
	transform: scale(1.1);
}

.play-text {
	color: #fff;
	font-weight: bold;
	font-size: 0.9rem;
}

/* Story Timeline Section */
.story-timeline {
	padding: 40px 0;
	background-color: #fff;
}

.section-header-animated {
	text-align: center;
	margin-bottom: 30px;
}

.section-title-dynamic {
	font-size: 2rem;
	color: #003087;
	margin-bottom: 8px;
}

.section-subtitle {
	font-size: 1rem;
	color: #666;
}

.timeline-container {
	position: relative;
	padding: 20px 0;
}

.timeline-line {
	position: absolute;
	left: 50%;
	width: 4px;
	height: 100%;
	background: #00b4d8;
	transform: translateX(-50%);
}

.timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	position: relative;
}

.timeline-dot {
	width: 40px;
	height: 40px;
	background: #003087;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.2rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.timeline-dot.active {
	background: #00b4d8;
}

.timeline-content {
	width: 45%;
	padding: 15px;
	background: #f1f1f1;
	border-radius: 8px;
	position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
	margin-right: 55%;
	text-align: right;
}

.timeline-year {
	font-size: 1rem;
	color: #00b4d8;
	font-weight: bold;
}

.timeline-content h3 {
	margin: 8px 0;
	color: #003087;
}

/* Values Section */
.values-interactive {
	padding: 40px 0;
	background: #f5f7fa;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 15px;
}

.value-card {
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-background {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #00b4d8, #003087);
	opacity: 0.1;
	z-index: 0;
}

.value-icon {
	font-size: 2rem;
	color: #00b4d8;
	margin-bottom: 12px;
}

.value-card h3 {
	color: #003087;
	margin-bottom: 8px;
}

.card-hover-effect {
	position: absolute;
	inset: 0;
	background: rgba(0, 180, 216, 0.2);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.value-card:hover .card-hover-effect {
	opacity: 1;
}

/* Statistics Section */
.stats-dynamic {
	padding: 40px 0;
	background: #003087;
	position: relative;
	overflow: hidden;
}

.stats-background {
	position: absolute;
	inset: 0;
}

.stats-particle {
	position: absolute;
	width: 15px;
	height: 15px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	animation: float-particle var(--duration) infinite ease-in-out;
	animation-delay: var(--delay);
}

@keyframes float-particle {
	0% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-20px) scale(1.3);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

.white-text {
	color: #fff;
}

.stats-grid-dynamic {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 15px;
}

.stat-card-dynamic {
	background: rgba(255, 255, 255, 0.1);
	padding: 15px;
	border-radius: 8px;
	text-align: center;
	backdrop-filter: blur(5px);
}

.stat-icon-dynamic {
	font-size: 2rem;
	color: #00b4d8;
	margin-bottom: 12px;
}

.stat-number-large {
	font-size: 2.5rem;
	color: #fff;
	font-weight: bold;
}

.stat-suffix {
	display: inline-block;
	font-size: 1.2rem;
	color: #fff;
}

.stat-label-dynamic {
	color: #fff;
	font-size: 1rem;
	margin: 8px 0;
}

.stat-description {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.8rem;
}

/* Call to Action */
.cta-about {
	padding: 40px 0;
	background: linear-gradient(135deg, #00b4d8, #003087);
	text-align: center;
}

.cta-content h2 {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 15px;
}

.cta-content p {
	color: #fff;
	font-size: 1rem;
	margin-bottom: 20px;
}

.cta-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
	background: #fff;
	color: #003087;
}

.btn-primary:hover {
	background: #e0e0e0;
	transform: translateY(-3px);
}

.btn-secondary {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
}

.btn-secondary:hover {
	background: #fff;
	color: #003087;
	transform: translateY(-3px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.about-hero-dynamic {
		padding: 4rem 0;
		padding-top: 8rem;
	}

	.hero-content-animated {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.hero-text-section,
	.hero-visual-section {
		flex: none;
		width: 100%;
	}

	.hero-animated-title {
		font-size: 1.8rem;
	}

	.hero-subtitle {
		font-size: 0.9rem;
	}

	.hero-stats-mini {
		gap: 10px;
	}

	.stat-number-animated {
		font-size: 1.5rem;
	}

	.stat-label {
		font-size: 0.7rem;
	}

	.play-button {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.play-text {
		font-size: 0.8rem;
	}

	.story-timeline {
		padding: 30px 0;
	}

	.section-title-dynamic {
		font-size: 1.8rem;
	}

	.section-subtitle {
		font-size: 0.9rem;
	}

	.timeline-line {
		left: 20px;
	}

	.timeline-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.timeline-dot {
		left: 20px;
		width: 30px;
		height: 30px;
		font-size: 1rem;
	}

	.timeline-content {
		width: 70%;
		margin-left: 50px;
		text-align: left;
	}

	.timeline-item:nth-child(odd) .timeline-content,
	.timeline-item:nth-child(even) .timeline-content {
		margin-left: 50px;
		margin-right: 0;
		text-align: left;
	}

	.timeline-year {
		font-size: 0.9rem;
	}

	.values-interactive {
		padding: 30px 0;
	}

	.values-grid {
		grid-template-columns: 1fr;
	}

	.value-card {
		padding: 12px;
	}

	.value-icon {
		font-size: 1.8rem;
	}

	.value-card h3 {
		font-size: 1.2rem;
	}

	.stats-dynamic {
		padding: 30px 0;
	}

	.stats-grid-dynamic {
		grid-template-columns: 1fr;
	}

	.stat-card-dynamic {
		padding: 12px;
	}

	.stat-icon-dynamic {
		font-size: 1.8rem;
	}

	.stat-number-large {
		font-size: 2rem;
	}

	.stat-suffix {
		font-size: 1rem;
	}

	.stat-label-dynamic {
		font-size: 0.9rem;
	}

	.cta-about {
		padding: 30px 0;
	}

	.cta-content h2 {
		font-size: 1.8rem;
	}

	.cta-content p {
		font-size: 0.9rem;
	}

	.btn {
		padding: 8px 16px;
		font-size: 0.9rem;
	}
	.blog-meta {
		flex-direction: column;
		flex-wrap: wrap;
	}
	.blog-header {
		margin-bottom: 3rem;
		max-width: 800px;
		margin: 0 auto;
		padding: 0 0rem;
	}
	.blog-content {
		max-width: 800px;
		margin: 0 auto;
		padding: 0rem;
	}
	.blog-padding {
		padding: 1rem;
	}
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px;
}

.nav-logo img {
	height: 50px;
	width: auto;
}

.nav-menu {
	display: flex;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: #2196f3;
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link:hover,
.nav-link.active {
	color: #2196f3;
}

.nav-toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Premium Hero Section */
.hero-premium {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 100px 0;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.7),
		rgba(33, 150, 243, 0.3)
	);
	z-index: 1;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.5);
	z-index: 0;
}

.hero-content-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	z-index: 2;
	width: 100%;
}

.hero-text {
	color: white;
	padding: 2rem;
}

.hero-badge {
	display: inline-block;
	background: linear-gradient(135deg, #ffd700, #ffa500);
	color: #333;
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.title-highlight {
	color: #ffd700;
	display: block;
	font-size: 4.5rem;
}

.hero-subtitle {
	font-size: 1.3rem;
	line-height: 1.6;
	max-width: 500px;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.stat-item {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffd700;
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
}

.btn-premium {
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.btn-premium::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.btn-premium:hover::before {
	left: 100%;
}

.btn-primary.btn-premium {
	background: linear-gradient(135deg, #ffd700, #ffa500);
	color: #333;
	border: none;
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary.btn-premium:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-secondary.btn-premium {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
}

.btn-secondary.btn-premium:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: white;
	transform: translateY(-3px);
}

.hero-visual {
	position: relative;
}

.hero-image-frame {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image {
	width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.hero-image-frame:hover .hero-image {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-image-frame:hover .image-overlay {
	opacity: 1;
}

.play-button-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.play-button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #2196f3;
	color: white;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.play-button:hover {
	transform: scale(1.1);
}

.play-text {
	color: white;
	font-weight: 600;
}

.hero-scroll {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.scroll-arrow {
	width: 50px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	animation: bounce 2s infinite;
}

.scroll-arrow:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: white;
}

/* Why Choose Us Section */
.why-choose-us {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.why-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.why-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(33, 150, 243, 0.2);
}

.why-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 1.5rem;
}

.why-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 0.8rem;
}

.why-card p {
	color: #666;
	line-height: 1.6;
}

/* Gallery Section */
.gallery {
	padding: 80px 0;
	background: white;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.gallery-item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	font-weight: 600;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

/* Services Section */
.services {
	padding: 80px 0;
	background: #f8f9fa;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-badge {
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #333;
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.service-card-modern {
	padding: 2.5rem 2rem;
	background: white;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(33, 150, 243, 0.1);
	transition: all 0.3s ease;
}

.service-card-modern:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(33, 150, 243, 0.2);
}

.service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: white;
	font-size: 1.8rem;
}

.service-card-modern:hover .service-icon {
	transform: scale(1.1) rotate(5deg);
}

.service-card-modern h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
}

.service-card-modern p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.service-features {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.service-features span {
	font-size: 0.9rem;
	color: #2196f3;
}

.service-link {
	color: #2196f3;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.service-link:hover {
	color: #1976d2;
}

/* Testimonials Section */
.testimonials {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 80px 0;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
}

.testimonial-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 1.5rem;
	color: #ffd700;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #444;
	margin-bottom: 2rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #2196f3;
}

.author-info h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
}

.author-info span {
	font-size: 0.9rem;
	color: #666;
}

/* Process Section */
.process {
	padding: 80px 0;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.process-step {
	text-align: center;
	padding: 2rem 1rem;
	border-radius: 15px;
}

.process-step:hover {
	background: rgba(33, 150, 243, 0.05);
}

.step-number {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		rgba(33, 150, 243, 0.1),
		rgba(33, 203, 243, 0.1)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: #2196f3;
}

.process-step:hover .step-icon {
	background: linear-gradient(135deg, #2196f3, #21cbf3);
	color: white;
}

.process-step h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #333;
}

.process-step p {
	font-size: 0.95rem;
	color: #666;
}

.process-arrow {
	color: rgba(33, 150, 243, 0.3);
}

/* Location Section */
.location {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.location h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	color: #333;
	margin-bottom: 3rem;
}

.location h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(135deg, #2196f3, #21cbf3);
}

.location-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.location-info {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.location-info:hover {
	transform: translateY(-5px);
}

.location-info h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #2196f3;
}

.location-info p {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1rem;
}

.location-info i {
	color: #2196f3;
}

.hours {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(33, 150, 243, 0.1);
}

.hours h4 {
	font-size: 1.3rem;
	color: #333;
}

.hours p {
	font-weight: 500;
}

.map-container {
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 50px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-logo {
	height: 60px;
	width: auto;
}

.footer-section h4 {
	color: #2196f3;
}

.footer-section ul li a {
	color: #ccc;
}

.footer-section ul li a:hover {
	color: #2196f3;
}

.footer-section p {
	color: #ccc;
}

.footer-section i {
	color: #2196f3;
}

.footer-bottom {
	border-top: 1px solid #555;
	color: #ccc;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	z-index: 10000;
}

.cookie-consent-banner.show {
	transform: translateY(0);
}

.cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.cookie-text h4 {
	font-size: 1.3rem;
	color: #333;
}

.cookie-text p {
	color: #666;
}

.cookie-text a {
	color: #2196f3;
}

.cookie-actions {
	display: flex;
	gap: 12px;
}

.cookie-btn {
	padding: 12px 24px;
	border-radius: 8px;
}

.cookie-btn-accept {
	background: #2196f3;
	color: white;
}

.cookie-btn-decline {
	background: transparent;
	color: #666;
}

/* Animations */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

.animate-slide-in-left {
	opacity: 0;
	transform: translateX(-100px);
	animation: slideInLeft 1s ease-out forwards;
}

.animate-slide-in-right {
	opacity: 0;
	transform: translateX(100px);
	animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInLeft {
	from {
		transform: translateX(-100px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(100px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* Responsive Design */
@media (max-width: 968px) {
	.hero-content-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.why-grid,
	.gallery-grid,
	.location-content {
		grid-template-columns: 1fr;
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.process-arrow {
		transform: rotate(90deg);
	}
}

@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: white;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: left 0.3s ease;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: block;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.title-highlight {
		font-size: 3rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-image-frame {
		max-width: 80%;
		margin: 0 auto;
	}

	.section-title {
		font-size: 2rem;
	}

	.map-container iframe {
		height: 300px;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-actions {
		flex-direction: column;
		width: 100%;
	}

	.cookie-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.title-highlight {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.location-info,
	.why-card,
	.gallery-item {
		padding: 1.5rem;
	}

	.map-container iframe {
		height: 250px;
	}
}
