/* Reset CSS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Header */
header {
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 100;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.25rem;
	font-weight: 600;
	color: #2563eb;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: #6b7280;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #2563eb;
}

.nav-links a.active {
	color: #2563eb;
	font-weight: 500;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #6b7280;
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	background-color: #fff;
	border-top: 1px solid #e5e7eb;
	padding: 1rem 0;
}

.mobile-menu.active {
	display: block;
}

.mobile-menu a {
	display: block;
	padding: 0.5rem 0;
	text-decoration: none;
	color: #6b7280;
	transition: color 0.3s;
}

.mobile-menu a:hover {
	color: #2563eb;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: white;
	padding: 5rem 0;
	text-align: center;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	animation: fadeInUp 0.6s ease-out;
}

.hero p {
	font-size: 1.25rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Main Content */
main {
	padding: 4rem 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* Contact Form */
.contact-form-container {
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.contact-form-container h2 {
	font-size: 1.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #1f2937;
}

.form-grid {
	display: grid;
	gap: 1rem;
	margin-bottom: 1rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.form-row {
		grid-template-columns: 1fr 1fr;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.75rem 1rem;
	border: 1px solid #d1d5db;
	border-radius: 0.5rem;
	font-size: 1rem;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
	resize: none;
	min-height: 120px;
}

.submit-btn {
	width: 100%;
	background-color: #2563eb;
	color: white;
	padding: 0.875rem 1.5rem;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.submit-btn:hover {
	background-color: #1d4ed8;
}

/* Contact Info */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	animation: fadeInUp 0.6s ease-out 0.4s both;
}

.contact-card {
	background: white;
	border-radius: 0.75rem;
	padding: 1.5rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-content {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.card-icon {
	width: 48px;
	height: 48px;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.card-icon.phone {
	background-color: #dbeafe;
	color: #2563eb;
}

.card-icon.email {
	background-color: #d1fae5;
	color: #10b981;
}

.card-icon.location {
	background-color: #e9d5ff;
	color: #9333ea;
}

.card-icon.clock {
	background-color: #fed7aa;
	color: #f97316;
}

.card-info h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #1f2937;
}

.card-info p {
	color: #6b7280;
	font-size: 0.875rem;
	margin: 0.125rem 0;
}

/* Social Media */
.social-container {
	background: white;
	border-radius: 0.75rem;
	padding: 1.5rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	animation: fadeInUp 0.6s ease-out 0.6s both;
}

.social-container h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1f2937;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: transform 0.3s;
}

.social-link:hover {
	transform: scale(1.1);
}

.social-link.facebook { background-color: #1877f2; }
.social-link.twitter { background-color: #1da1f2; }
.social-link.instagram { background-color: #e4405f; }
.social-link.linkedin { background-color: #0077b5; }
.social-link.youtube { background-color: #ff0000; }

/* Map */
.map-container {
	background: white;
	border-radius: 0.75rem;
	padding: 1.5rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	animation: fadeInUp 0.6s ease-out 0.8s both;
}

.map-container h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1f2937;
}

.map-frame {
	width: 100%;
	height: 256px;
	border-radius: 0.5rem;
	overflow: hidden;
	border: none;
}

/* FAQ Section */
.faq-section {
	margin-top: 5rem;
	animation: fadeInUp 0.6s ease-out 1s both;
}

.faq-section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 3rem;
	color: #1f2937;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 0.75rem;
	padding: 1.5rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #1f2937;
}

.faq-item p {
	color: #6b7280;
	font-size: 0.875rem;
	line-height: 1.6;
}

/* Footer */
footer {
	background-color: #1f2937;
	color: #e5e7eb;
	padding: 3rem 0 2rem;
	margin-top: 5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: white;
}

.footer-section p {
	color: #9ca3af;
	font-size: 0.875rem;
	line-height: 1.6;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #9ca3af;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.newsletter-form {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
}

.newsletter-form input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 1px solid #374151;
	border-radius: 0.375rem;
	background-color: #374151;
	color: white;
	font-size: 0.875rem;
}

.newsletter-form input::placeholder {
	color: #9ca3af;
}

.newsletter-form button {
	padding: 0.75rem 1rem;
	background-color: #2563eb;
	color: white;
	border: none;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: background-color 0.3s;
}

.newsletter-form button:hover {
	background-color: #1d4ed8;
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 2rem;
	text-align: center;
	color: #9ca3af;
	font-size: 0.875rem;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.modal.active {
	display: flex;
}

.modal-content {
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	max-width: 400px;
	width: 90%;
	text-align: center;
	transform: scale(0);
	transition: transform 0.3s;
}

.modal.active .modal-content {
	transform: scale(1);
}

.modal-icon {
	width: 80px;
	height: 80px;
	background-color: #d1fae5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: #10b981;
}

.modal h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #1f2937;
}

.modal p {
	color: #6b7280;
	margin-bottom: 1.5rem;
}

.modal-btn {
	background-color: #2563eb;
	color: white;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s;
}

.modal-btn:hover {
	background-color: #1d4ed8;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	
	.mobile-menu-btn {
		display: block;
	}
	
	.hero h1 {
		font-size: 2rem;
	}
	
	.hero p {
		font-size: 1rem;
	}
	
	.faq-section h2 {
		font-size: 1.875rem;
	}
}