/* =============================================
   SERVICE AREAS — Maps, Coverage Info
   Used on: services.html (map section), contact.html (GTA map)
   Abdullah Limozen | Top Class Limousine
   ============================================= */

/* Service Areas Section */
#service-areas {
	padding: 100px 0;
	background: var(--bg-dark);
	position: relative;
}

#service-areas::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.service-areas-map-container {
	max-width: 1200px;
	margin: 50px auto 0;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: start;
}

.map-wrapper {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 15px;
	padding: 15px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.map-wrapper:hover {
	border-color: var(--gold);
	box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.map-wrapper iframe {
	width: 100%;
	height: 500px;
	border: none;
	border-radius: 10px;
}

.map-service-info {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 15px;
	padding: 35px;
	backdrop-filter: blur(10px);
	text-align: center;
	height: fit-content;
}

.map-service-info h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--gold);
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.map-service-info p {
	color: var(--text-light);
	margin-bottom: 25px;
	font-size: 1rem;
	line-height: 1.6;
}

.coverage-highlights {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 30px;
}

.coverage-item {
	background: rgba(212, 175, 55, 0.1);
	color: var(--text-light);
	padding: 8px 15px;
	border-radius: 8px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.coverage-item:hover {
	background: rgba(212, 175, 55, 0.2);
	border-color: var(--gold);
	color: var(--gold);
}

.map-cta {
	display: block;
	background: linear-gradient(45deg, var(--gold), #f4e4bc);
	color: #000;
	padding: 15px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	text-decoration: none;
	touch-action: manipulation;
}

.map-cta:hover {
	background: linear-gradient(45deg, #f4e4bc, var(--gold));
	transform: scale(1.02);
}

.map-cta:focus-visible {
	outline: 2px solid rgba(212, 175, 55, 0.8);
	outline-offset: 3px;
}

/* GTA Map Section on Contact Page */
.service-area-section {
	margin-top: 80px;
	padding-top: 60px;
	border-top: 1px solid var(--glass-border);
}

.gta-map-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: start;
	padding: 0 30px;
}

.map-wrapper-static {
	background: var(--glass-bg);
	border: 2px solid var(--gold);
	border-radius: 20px;
	padding: 15px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.map-wrapper-static:hover {
	border-color: var(--gold-light);
	box-shadow: 0 15px 50px rgba(212, 175, 55, 0.25);
	transform: translateY(-5px);
}

.map-wrapper-static iframe {
	width: 100%;
	height: 500px;
	border: none;
	border-radius: 12px;
	pointer-events: none;
}

.gta-coverage-info {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: blur(10px);
	text-align: center;
	height: fit-content;
	transition: all 0.3s ease;
}

.gta-coverage-info:hover {
	border-color: var(--gold);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.gta-coverage-info h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--gold);
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.gta-coverage-info p {
	color: var(--text-light);
	margin-bottom: 25px;
	font-size: 1.05rem;
	line-height: 1.6;
}

.coverage-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 30px;
}

.coverage-list .coverage-item {
	background: rgba(212, 175, 55, 0.1);
	color: var(--text-light);
	padding: 12px 15px;
	border-radius: 10px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	font-size: 0.95rem;
	transition: all 0.3s ease;
	text-align: left;
	font-weight: 500;
}

.coverage-list .coverage-item:hover {
	background: rgba(212, 175, 55, 0.2);
	border-color: var(--gold);
	color: var(--gold);
	transform: translateX(5px);
}

.map-cta-box {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
	border: 2px solid var(--gold);
	border-radius: 15px;
	padding: 20px;
	transition: all 0.3s ease;
}

.map-cta-box:hover {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.1) 100%);
	transform: scale(1.02);
}

.map-cta-box p {
	margin: 0;
	font-size: 1.1rem;
	color: var(--text-light);
}

.map-cta-box strong {
	color: var(--gold);
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	letter-spacing: 1px;
}
