/* Service Area & Pricing Section */
.service-area-pricing {
	padding: 60px 20px 60px 20px;
	background: #f8f9fa;
}
.service-area-pricing .section-title {
	margin-bottom: 36px;
}
.service-area-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
	justify-content: center;
}
.service-area-info {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
	padding: 22px 18px 18px 18px;
	min-width: 220px;
	max-width: 340px;
	flex: 1 1 260px;
}
.service-area-list li {
	font-size: 1.08rem;
	color: #222;
	margin-bottom: 6px;
}
.service-pricing {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
	padding: 22px 18px 18px 18px;
	min-width: 260px;
	max-width: 420px;
	flex: 1 1 320px;
}
.pricing-table {
	margin-top: 8px;
}
.pricing-row {
	margin-bottom: 22px;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 12px;
}
.pricing-row:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.pricing-title {
	font-weight: 700;
	font-size: 1.08rem;
	color: #222;
}
.pricing-price {
	font-weight: 900;
	color: #007a3d;
	font-size: 1.2rem;
	float: right;
}
@media (max-width: 900px) {
	.service-area-flex {
		flex-direction: column;
		gap: 24px;
		align-items: stretch;
	}
	.service-area-info, .service-pricing {
		max-width: 100%;
	}
}
/*
  self-service.css
  Styles for the Mobile Self-Service Pet Wash booking page.
  Scoped to avoid conflicts and match the modern, accessible look of the main site.
  Author: Copilot AI (2026)
*/

.hero {
	background: linear-gradient(135deg, #a8d5f2 0%, #c5e3f6 100%);
	color: #1a1a1a;
	padding: 60px 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
	border: 2px solid #000;
}
.hero-asphalt {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 35px;
	background: linear-gradient(to bottom, #555 0%, #333 50%, #111 100%);
	border: 2px solid #000;
	z-index: 0;
}
.hero-content {
	position: relative;
	z-index: 1;
	max-width: 600px;
	margin: 0 auto;
}
.hero h1 {
	font-size: 3.2rem;
	margin: 0 0 16px 0;
	font-weight: 900;
	letter-spacing: -1px;
	font-family: 'GROBOLD', Arial, sans-serif;
	color: #fff;
	text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5), 6px 6px 12px rgba(0, 0, 0, 0.3);
	-webkit-text-stroke: 1px #000;
	line-height: 1.2;
}
.hero p {
	font-size: 1.25rem;
	margin: 0 0 24px 0;
	opacity: 0.97;
}
.cta-button {
	display: inline-block;
	background: #ffd700;
	color: #001a4d;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 900;
	font-size: 1.1rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Services Section */
.services {
	padding: 32px 20px 60px 20px;
	background: #f8f9fa;
}
.section-title {
	font-size: 2.3rem;
	text-align: center;
	margin: 0 0 40px 0;
	color: #001a4d;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
}
.service-card {
	position: relative;
	background: #fff;
	padding: 28px 18px 28px 18px;
	border-radius: 22px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s;
	border: 3px solid #000;
	/*cursor: pointer;*/
	outline: none;
}
/*.service-card:focus {
	border-color: #ffd700;
	box-shadow: 0 0 0 3px #ffd70055;
}
.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	border-color: #ffd700;
}*/
.service-icon {
	font-size: 2.7rem;
	margin-bottom: 14px;
}
.service-card h3 {
	color: #001a4d;
	margin: 0 0 10px 0;
	font-size: 1.2rem;
}
.service-card p {
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* Why Us Section */
.why-us {
	padding: 70px 20px 60px 20px;
	background: #fff;
}
.why-us-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.why-us-image {
	text-align: center;
}
.why-us-image img {
	max-width: 100%;
	height: auto;
	max-height: 340px;
}
.why-us-text h2 {
	color: #001a4d;
	font-size: 1.7rem;
	margin: 0 0 18px 0;
}
.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.feature-list li {
	padding: 10px 0;
	font-size: 1.01rem;
	color: #333;
	border-bottom: 1px solid #e0e0e0;
}
.feature-list li::before {
	content: '✓ ';
	color: #ffd700;
	font-weight: bold;
	margin-right: 10px;
}
.feature-list li:last-child {
	border-bottom: none;
}

/* Calendly Booking Box */
#selfservice-booking .container > div {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
	padding: 24px;
}
#calendly-inline-widget {
	min-width: 320px;
	height: 700px;
	width: 100%;
}

/* Contact Section */
.contact {
	padding: 60px 20px;
	background: linear-gradient(135deg, #001a4d 0%, #003366 100%);
	color: #fff;
	text-align: center;
}
.contact h2 {
	font-size: 2.1rem;
	margin: 0 0 24px 0;
}
.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin: 30px 0;
}
.contact-item h3 {
	margin: 0 0 10px 0;
}
.contact-item a {
	color: #ffd700;
	text-decoration: none;
	font-weight: 600;
}
.contact-item a:hover {
	text-decoration: underline;
}

footer {
	background: #000;
	color: #fff;
	text-align: center;
	padding: 18px;
	font-size: 0.95rem;
}

/* Responsive Tweaks */
@media (max-width: 900px) {
	.why-us-content {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.hero h1 {
		font-size: 2.1rem;
	}
	.section-title {
		font-size: 1.5rem;
	}
}
@media (max-width: 600px) {
	.hero {
		padding: 32px 8px;
	}
	.services, .why-us, .contact {
		padding: 32px 8px;
	}
	.service-card {
		padding: 18px 6px;
	}
	.why-us-image img {
		max-height: 180px;
	}
}

/* Comment: Styles are scoped for Self-Service page only. Adjust as needed for further branding. */
