/* Contact Info Section */
.contact-info-section {
	margin: 100px 0 0 0;
}

/* Section 1: Map + Address */
.contact-map-address-section {
	padding: 0 0 60px 0;
}

.contact-map-address-section .location-map-container {
    margin-top: 0px;
}

.contact-address-block {
	padding: 40px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-address-block h4 {
	margin-bottom: 20px;
}

.contact-address-block .address-info {
	font-size: 16px;
	line-height: 1.8;
}

/* Section 2: Hours + Pricing (dark background) */
.contact-hours-pricing-section {
	background-color: #330505;
	padding: 60px 0;
	margin-bottom: 60px;
}

.contact-hours-pricing-section .contact-info-block {
	padding: 0 20px;
}

.contact-hours-pricing-section h4 {
	color: var(--white);
	margin-bottom: 30px;
}

/* Section 3: Rest of content */
.contact-rest-section {
	padding: 0 0 60px 0;
}

.contact-rest-section .contact-info-block {
	margin-bottom: 40px;
}

.contact-rest-section h4 {
	margin-bottom: 20px;
}

/* General Contact Info Block */
.contact-info-block {
	margin-bottom: 30px;
}

.info-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
}

.info-label {
	font-weight: normal;
	color: var(--white);
}

.info-value {
	font-weight: normal;
	color: var(--white);
	text-align: right;
}

.contact-info-block a {
	color: var(--white);
	text-decoration: underline!important;
	transition: color 0.3s ease;
}

.contact-info-block a:hover {
	color: var(--white);
	text-decoration: underline!important;
}

/* Dark section links */
.contact-hours-pricing-section .contact-info-block a {
	color: var(--white);
}

/* Footer Address */
.footer-address {
	font-size: 15px;
	color: #999;
	margin-bottom: 10px;
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 991px) {
	.contact-info-block {
		margin-bottom: 40px;
	}
	
	.contact-address-block {
		padding: 40px 20px;
	}
}

@media (max-width: 767px) {
	.contact-info-section {
		margin: 60px 0 0 0;
	}
	
	.contact-map-address-section {
		padding: 0 0 40px 0;
	}
	
	.contact-address-block {
		padding: 30px 15px;
		margin-top: 30px;
	}
	
	.contact-hours-pricing-section {
		padding: 40px 0;
		margin-bottom: 40px;
	}
	
	.contact-hours-pricing-section .contact-info-block {
		padding: 0 15px;
		margin-bottom: 30px;
	}
	
	.contact-rest-section {
		padding: 0 0 40px 0;
	}
	
	.contact-info-block h4 {
		font-size: 16px;
		margin-bottom: 15px;
	}
}

