﻿/* Contact Us Page Styles */

/* Hero Section */
.contact-hero {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 80px 0 60px;
}

	.contact-hero .display-4 {
		color: #0d6efd;
	}

/* Quick Contact Section */
.quick-contact .contact-item {
	padding: 30px 20px;
	border: solid 1px var(--bs-border-color);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.quick-contact .contact-item:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

/* Office Locations */
.office-locations {
	background: #fff;
}

.office-card {
	background: #fff;
	border-radius: 15px;
	padding: 40px;
	margin-bottom: 40px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

	

.office-card h3 {
	margin-bottom: 20px;
}

.office-info {
	display: grid;
	grid-template-rows: auto auto 1fr;
	padding: 0.5rem .7rem;
}

	.office-info p {
		margin-bottom: 0;
	}

	.office-info a {
		display: grid;
		grid-template-columns: auto 1fr;
		column-gap: 1em;
		color: inherit;
	}

/* Photo Placeholders */
.office-photo-placeholder {
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f9fa;
	border-radius: 10px;
	overflow: hidden;
}

	.office-photo-placeholder img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.photo-placeholder {
	text-align: center;
	padding: 40px 20px;
}

/* Map Container */
.map-container {
	height: 250px;
	border-radius: 10px;
	overflow: hidden;
}

	.map-container img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.map-container iframe {
		width: 100%;
		height: 100%;
		border: none;
		border-radius: 10px;
	}



/* Services Preview */
.services-preview {
	background: #f8f9fa;
}

.service-card {
	background: #fff;
	border-radius: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

	.service-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

/* Business Hours */
.business-hours .card {
	border: none;
	border-radius: 15px;
}

.hours-list {
	font-size: 1rem;
}

	.hours-list .d-flex {
		padding: 8px 0;
		border-bottom: 1px solid #e9ecef;
	}

		.hours-list .d-flex:last-child {
			border-bottom: none;
		}



/* Responsive Design */
@media (max-width: 768px) {
	.contact-hero {
		padding: 60px 0 40px;
	}

		.contact-hero .display-4 {
			font-size: 2.5rem;
		}

	.office-card {
		padding: 30px 20px;
	}

	.office-photo {
		margin-bottom: 20px;
	}
	.map-container {
		height: 200px;
		margin-bottom: 20px;
	}

	.office-info h3 {
		font-size: 1.3rem;
	}
}

@media (max-width: 576px) {
	.contact-hero .display-4 {
		font-size: 2rem;
	}

	.office-card {
		padding: 20px 15px;
	}

	.quick-contact .contact-item {
		padding: 20px 15px;
	}
}

/* Animation for page load */
.office-card {
	animation: fadeInUp 0.6s ease-out;
}

	.office-card:nth-child(2) {
		animation-delay: 0.1s;
	}

	.office-card:nth-child(3) {
		animation-delay: 0.2s;
	}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Card hover effects */
.card:hover {
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}
