:root {
	--primary: #2a5c8d;
	--primary-light: #3a7cb9;
	--secondary: #d32f2f;
	--light: #f8f9fa;
	--dark: #212529;
	--gray: #6c757d;
	--light-gray: #e9ecef;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	color: var(--dark);
	line-height: 1.6;
	overflow-x: hidden;
	background-color: var(--light);
}

h1, h2, h3, h4 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	margin-bottom: 1rem;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.btn {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	background-color: var(--primary);
	color: white;
	border: none;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
}

.btn:hover {
	background-color: var(--primary-light);
	transform: translateY(-2px);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
}

.btn-outline:hover {
	background-color: var(--primary);
	color: white;
}

.section {
	padding: 5rem 0;
}

.section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	color: var(--primary);
}

.section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background-color: var(--secondary);
	margin: 1rem auto 0;
}

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	display: flex;
	align-items: center;
}

.logo span {
	color: var(--secondary);
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 2rem;
}

.nav-links a {
	font-weight: 500;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary);
	transition: var(--transition);
}

.nav-links a:hover::after {
	width: 100%;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--primary);
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
	color: white;
	text-align: center;
	padding-top: 80px;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-btns {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

/* About Section */
.about {
	background-color: white;
}

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

.about-img {
	text-align: right;
}

.about-text h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.about-text p {
	margin-bottom: 1.5rem;
	color: var(--gray);
}

.about-features {
	margin-top: 2rem;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.feature-icon {
	font-size: 1.5rem;
	color: var(--primary);
	margin-right: 1rem;
	flex-shrink: 0;
}

/* Services Section */
.services {
	background-color: var(--light-gray);
}

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

.service-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
	height: 200px;
	width: 100%;
	object-fit: cover;
}

.service-content {
	padding: 1.5rem;
}

.service-content h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--primary);
}

.service-content p {
	color: var(--gray);
	margin-bottom: 1.5rem;
}

/* Appointment Section */
.appointment {
	background-color: white;
}

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

.appointment-info {
	margin-bottom: 2rem;
}

.appointment-info h3 {
	font-size: 1.5rem;
	color: var(--primary);
	margin-bottom: 1rem;
}

.appointment-info p {
	margin-bottom: 1.5rem;
	color: var(--gray);
}

.info-item {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.info-icon {
	font-size: 1.2rem;
	color: var(--primary);
	margin-right: 1rem;
	width: 20px;
	text-align: center;
}

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

.form-control {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: inherit;
	font-size: 1rem;
	transition: var(--transition);
}

.form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 2px rgba(42, 92, 141, 0.2);
}

textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

/* Testimonials Section */
.testimonials {
	background-color: var(--light-gray);
}

.testimonials-slider {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.testimonial-item {
	padding: 2rem;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin: 0 1rem;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: var(--gray);
}

.testimonial-author {
	font-weight: 600;
}

/* Contact Section */
.contact {
	background-color: white;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-info h3 {
	font-size: 1.5rem;
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.contact-info p {
	margin-bottom: 2rem;
	color: var(--gray);
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--primary);
	color: white;
	transition: var(--transition);
}

.social-link:hover {
	background-color: var(--primary-light);
	transform: translateY(-3px);
}

/* Footer */
footer {
	background-color: var(--dark);
	color: white;
	padding: 3rem 0 1.5rem;
}

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

.footer-col h3 {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	color: white;
	position: relative;
	padding-bottom: 0.5rem;
}

.footer-col h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--secondary);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: #adb5bd;
	transition: var(--transition);
}

.footer-links a:hover {
	color: white;
	padding-left: 5px;
}

.copyright {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #adb5bd;
	font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background-color: var(--primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: var(--primary-light);
}

/* Lazy Loading */
.lazy-load {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.lazy-load.loaded {
	opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.about-content,
	.appointment-container,
	.contact-container {
		grid-template-columns: 1fr;
	}

	.about-img {
		order: -1;
		max-width: 500px;
		margin: 0 auto;
	}

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

@media (max-width: 768px) {
	.nav-links {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background-color: white;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transition: var(--transition);
		padding: 2rem 0;
	}

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

	.nav-links li {
		margin: 1rem 0;
	}

	.mobile-menu-btn {
		display: block;
	}

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

	.hero-btns {
		flex-direction: column;
		gap: 1rem;
	}

	.btn {
		width: 100%;
	}

	.section {
		padding: 3rem 0;
	}

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

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

	.hero p {
		font-size: 1rem;
	}

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