/* service-suburb.css — v2 with improvements */

/* ---------- helpers ---------- */
:root{
	--brand:#ff7c00;
	--dark:#0e0e16;
	--dark-l2:#1b1b24;
	--card-bg:rgba(0,0,0,.65);
	--white:#fff;
}
*{box-sizing:border-box;}
.container{width:90%;max-width:1280px;margin:auto;}

/* ---------- HERO ------------- */
.suburb-hero{
	position:relative;
	background:var(--dark) no-repeat center/cover;
	background-image:var(--hero);
	min-height:620px;
	display:flex;
	align-items:center;
	color:var(--white);
	padding:6rem 0 3.5rem;
	background-size:cover;
	z-index:10;
}
.hero-overlay{
	position:absolute;
	inset:0;
	background:linear-gradient(
		to right,
		rgba(0,0,0,.65) 0%,
		rgba(0,0,0,.55) 45%,
		rgba(0,0,0,.15) 100%
	);
}
.hero-flex{
	display:flex;
	justify-content:space-between;
	align-items:center;
	position:relative; /* above overlay */
	gap:3rem;
	flex-wrap:wrap;
}
.hero-left{
	flex:1 1 420px;
	padding:2rem 0;
	margin:auto;
	vertical-align: middle;
}
.hero-left h1{
	font-size:clamp(2.6rem,5vw,3.8rem);
	line-height:1.15;
	margin:0 0 1.2rem;
	color:white;
}
.subtitle{
	font-size:1.15rem;
	margin-bottom:1.5rem;
	color:#e6e6e6;
	max-width:40ch;
}

.hero-right{flex:0 0 420px;}
.hero-form-card{
	background:var(--card-bg);
	max-width:420px;
	border-radius:8px;
	backdrop-filter:blur(6px);
	box-shadow:0 12px 28px rgba(0,0,0,.4);
}
.hero-form-card .wpcf7 form{display:grid;gap:1rem;}
.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea{
	width:100%;
	padding:.85rem 1rem;
	border-radius:4px;
	border:none;
	font-size:.95rem;
}

/* ---------- USP STRIP ---------- */
.usp-strip {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-top: 1px solid #e9ecef;
	border-bottom: 1px solid #e9ecef;
	padding: 40px 0;
	position: relative;
	overflow: hidden;
	z-index: 9;
}

.usp-strip::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #b8860b 0%, #d4af37 50%, #b8860b 100%);
}

.usp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	align-items: center;
}

.usp-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
	position: relative;
	overflow: hidden;
}

.usp-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #b8860b 0%, #d4af37 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.usp-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.usp-item:hover::before {
	opacity: 1;
}

.usp-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
	transition: all 0.3s ease;
}

.usp-item:hover .usp-icon {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.usp-icon svg {
	width: 24px;
	height: 24px;
}

.usp-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.usp-title {
	font-size: 16px;
	font-weight: 700;
	color: #2c3e50;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.usp-subtitle {
	font-size: 13px;
	color: #7f8c8d;
	font-weight: 500;
	line-height: 1.2;
}

/* ---------- TOP COPY STRIP WITH FULL HEIGHT IMAGE ---------- */
.top-copy {
	background: #f8f9fa;
	padding: 0;
	margin-bottom: 0;
	z-index: 8;
}

.top-copy .container {
	max-width: 1280px;
	padding: 0;
}

.top-grid {
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 0;
	align-items: stretch;
	min-height: 500px;
}

.top-text {
	padding: 1rem;
		/* padding: 4rem 3rem 4rem 0; */

	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #ffffff;
}

.top-text p {
	font-size: 1.05rem;
	line-height: 1.75;
	margin-bottom: 1.2rem;
}

.top-text h2 {
	margin: 1.4rem 0 1rem;
	font-weight: 600;
}

.top-image {
	position: relative;
	overflow: hidden;
}

.top-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0;
	box-shadow: none;
}

/* ---------- WHY CHOOSE US - ENHANCED DESIGN ---------- */
.why-choose-us {
	background: linear-gradient(135deg, #1a1c22 0%, #0e0e16 100%);
	color: var(--white);
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
	z-index: 7;
}

/* Add subtle pattern overlay */
.why-choose-us::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(255, 124, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 124, 0, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.wcu-split {
	display: grid;
	grid-template-columns: minmax(280px, 460px) 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.wcu-head .wcu-tag {
	color: var(--brand);
	font-size: .875rem;
	font-weight: 600;
	letter-spacing: .06em;
}

.wcu-head h2 {
	font-size: clamp(2.5rem, 4.5vw, 3.5rem);
	line-height: 1.25;
	margin: .5rem 0 2rem;
	background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.wcu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.5rem;
	align-content: start;
}

.wcu-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2.5rem 1.5rem;
	text-align: center;
	border-radius: 12px;
	min-height: 170px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.wcu-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.wcu-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
	border-color: rgba(255, 124, 0, 0.3);
}

.wcu-item:hover::before {
	opacity: 1;
}

.wcu-item img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.9;
	margin-bottom: 1rem;
}

.wcu-item p {
	margin: 0;
	color: #e8e8e8;
	font-size: 1rem;
	line-height: 1.5;
}

/* ---------- COPY SECTIONS ---- */
.service-copy {
	padding: 4rem 0 2.5rem;
	background: #fff;
	color: #333;
}

/* ---------- BOTTOM COPY - ENHANCED DESIGN ---------- */
.bottom-copy {
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
	padding: 5rem 0;
	margin-bottom: 0;
	z-index: 5;
}

.bottom-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.bottom-text {
	max-height: 450px;
	overflow-y: auto;
	padding-right: 2rem;
	position: relative;
}

/* Custom scrollbar */
.bottom-text::-webkit-scrollbar {
	width: 6px;
}

.bottom-text::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.bottom-text::-webkit-scrollbar-thumb {
	background: #b8860b;
	border-radius: 3px;
}

.bottom-text::-webkit-scrollbar-thumb:hover {
	background: #9a7209;
}

/* Fade effect at bottom */
.bottom-text::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 2rem;
	height: 40px;
	background: linear-gradient(to bottom, transparent 0%, #f8f9fa 100%);
	pointer-events: none;
}

.bottom-image {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bottom-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
	z-index: 1;
	pointer-events: none;
}

.bottom-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.bottom-image:hover img {
	transform: scale(1.05);
}

/* ---------- CTA VARIATIONS ---------- */
.global-cta {
	background: #001d3d;
	color: var(--white);
	text-align: center;
	padding: 3.5rem 0;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	z-index: 4;
}

.global-cta h2 {
	font-size: 1.8rem;
	margin: 0 0 1.2rem;
	color: white;
}

.btn {
	background: var(--brand);
	color: #fff;
	text-decoration: none;
	padding: .95rem 2rem;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn:hover {
	opacity: .85;
	transform: translateY(-2px);
}

/* First CTA (after Why Choose Us) */
.why-choose-us + .global-cta {
	background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}

.why-choose-us + .global-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -10%;
	width: 120%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	transform: rotate(-15deg);
}

.why-choose-us + .global-cta h2 {
	color: #ffffff;
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.why-choose-us + .global-cta .btn {
	background: #ffffff;
	color: #b8860b;
	font-weight: 700;
	padding: 1rem 2.5rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 1;
}

.why-choose-us + .global-cta .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
	background: #f8f9fa;
}

/* Final CTA (last one) */
.service-suburb > .global-cta:last-of-type {
	background: #001d3d;
	margin-bottom: 0 !important;
}

/* CTA button arrow */
.global-cta .btn::after {
	content: '→';
	margin-left: 8px;
	font-size: 1.2em;
	transition: transform 0.3s ease;
}

.global-cta .btn:hover::after {
	transform: translateX(4px);
}

/* ---------- ABOUT US ---------- */
.about-us.container {
	/* background: linear-gradient(135deg, #1a1c22 0%, #0e0e16 100%);
	color: var(--white); */
	padding: 5rem 0;
	/* position: relative;
	overflow: hidden;
	margin-bottom: 0;
	z-index: 7; */
}

/* ---------- BOOKING FORM SECTION ---------- */
.booking-form-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
	padding: 80px 0;
	position: relative;
	z-index: 6;
}

.booking-form-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #b8860b 50%, transparent 100%);
}

.booking-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
	background: #ffffff;
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.booking-form-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #b8860b 0%, #d4af37 50%, #b8860b 100%);
}

.booking-form-header {
	text-align: center;
	margin-bottom: 40px;
}

.booking-form-header h2 {
	font-size: 32px;
	font-weight: 800;
	color: #2c3e50;
	margin-bottom: 15px;
	line-height: 1.2;
}

.booking-form-header p {
	font-size: 16px;
	color: #7f8c8d;
	line-height: 1.6;
	max-width: 500px;
	margin: 0 auto;
}

/* ---------- ABOUT US SECTION ---------- */
.about-us {
	padding: 4rem 0 3.5rem;
}

/* ---------- BANNER SUPPRESSION ---------- */
.page-template-page-service-suburb .page-title,
.page-template-page-service-suburb .page-header,
.page-template-page-service-suburb .page-banner {
	display: none !important;
}

/* ---------- HERO MOBILE BUTTON ---------- */
.desktop-form {
	display: block;
}

.mobile-only {
	display: none;
}

.hero-mobile-btn {
	text-align: center;
	padding: 30px 20px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}

.hero-mobile-btn .btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 35px;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
	color: #ffffff;
	border-radius: 50px;
	box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	width: 100%;
	justify-content: center;
	max-width: 280px;
}

.hero-mobile-btn .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
	background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
}

.mobile-cta-text {
	margin-top: 12px;
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

/* ---------- REMOVE BOTTOM MARGINS ---------- */
.site-main {
	margin-bottom: 0;
}

.site-footer {
	margin-top: 0;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
	.usp-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.usp-strip {
		padding: 35px 0;
	}
	
	.booking-form-wrapper {
		padding: 40px 30px;
	}
	
	.booking-form-header h2 {
		font-size: 28px;
	}
}

/* Tablets */
@media (max-width: 992px) {
	.wcu-split {
		grid-template-columns: 1fr;
	}
	
	.top-grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	
	.top-text {
		padding: 3rem 2rem;
	}
	
	.top-image {
		height: 300px;
		position: relative;
	}
}

/* Standard mobile */
@media (max-width: 768px) {
	.suburb-hero {
		padding: 4.5rem 0 2.5rem;
	}
	
	.why-choose-us {
		padding: 4rem 0 3.5rem;
	}
	
	.wcu-head h2 {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}
	
	.wcu-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.wcu-item {
		padding: 2rem 1.5rem;
	}
	
	.wcu-item img {
		width: 48px;
		height: 48px;
	}
	
	.top-grid,
	.bottom-grid {
		grid-template-columns: 1fr;
	}
	
	.bottom-grid {
		gap: 2rem;
	}
	
	.bottom-text {
		max-height: none;
		padding-right: 0;
	}
	
	.bottom-text::after {
		display: none;
	}
	
	.top-image {
		height: 250px;
	}
	
	.usp-strip {
		padding: 30px 0;
	}
	
	.usp-grid {
		gap: 20px;
	}
	
	.usp-item {
		padding: 18px;
		gap: 12px;
	}
	
	.usp-icon {
		width: 44px;
		height: 44px;
	}
	
	.usp-icon svg {
		width: 22px;
		height: 22px;
	}
	
	.usp-title {
		font-size: 15px;
	}
	
	.usp-subtitle {
		font-size: 12px;
	}
	
	/* Show mobile button, hide desktop form */
	.desktop-form {
		display: none !important;
	}
	
	.mobile-only {
		display: block !important;
	}
	
	.booking-form-section {
		padding: 60px 0;
	}
	
	.booking-form-wrapper {
		margin: 0 20px;
		padding: 35px 25px;
	}
	
	.booking-form-header h2 {
		font-size: 26px;
	}
	
	.service-copy,
	.why-choose-us,
	.about-us,
	.global-cta {
		margin-bottom: 3rem;
	}
	
	.top-copy {
		margin-bottom: 3rem;
	}
	
	.about-us {
		padding: 3rem 0 3rem;
	}
	
	.why-choose-us + .global-cta {
		padding: 3rem 0;
	}
	
	.why-choose-us + .global-cta h2 {
		font-size: 1.6rem;
	}
	
	.global-cta .btn {
		display: inline-block;
		width: auto;
		max-width: 300px;
	}
}

/* Small mobile */
@media (max-width: 576px) {
	/* Container: a little wider on tiny screens */
	.container {
		width: 94%;
	}
	
	/* Hero stack */
	.hero-flex {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
	}
	
	.hero-left {
		flex: 0 0 auto;
		padding: 0;
	}
	
	.hero-right {
		flex: 0 0 auto;
		width: 100%;
	}
	
	.hero-form-card {
		max-width: 100%;
		margin: 0 auto;
	}
	
	/* Text scale */
	.hero-left h1 {
		font-size: 2rem;
		line-height: 1.2;
	}
	
	.subtitle {
		font-size: 1rem;
	}
	
	/* Inputs full width and finger-friendly */
	.hero-form-card input,
	.hero-form-card select,
	.hero-form-card textarea {
		font-size: 1rem;
		padding: 1rem;
	}
	
	/* Why-choose grid to two columns, then one */
	.wcu-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	/* Top and bottom SEO blocks: single column sooner */
	.top-grid,
	.bottom-grid {
		grid-template-columns: 1fr;
	}
	
	.scrollable {
		max-height: none;
		padding-right: 0;
	}
	
	/* Call-to-action button touch-friendly */
	.btn {
		display: block;
		width: 100%;
	}
}

/* Mobile devices */
@media (max-width: 480px) {
	.usp-strip {
		padding: 25px 0;
	}
	
	.usp-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.usp-item {
		padding: 16px;
		gap: 12px;
		text-align: left;
	}
	
	.usp-icon {
		width: 40px;
		height: 40px;
	}
	
	.usp-icon svg {
		width: 20px;
		height: 20px;
	}
	
	.usp-title {
		font-size: 14px;
	}
	
	.usp-subtitle {
		font-size: 11px;
	}
	
	.hero-mobile-btn {
		padding: 25px 15px;
	}
	
	.hero-mobile-btn .btn {
		padding: 16px 30px;
		font-size: 16px;
	}
	
	.booking-form-section {
		padding: 50px 0;
	}
	
	.booking-form-wrapper {
		margin: 0 15px;
		padding: 30px 20px;
	}
	
	.booking-form-header h2 {
		font-size: 24px;
	}
	
	.booking-form-header p {
		font-size: 15px;
	}
	
	.why-choose-us {
		padding: 3rem 0;
	}
	
	.bottom-copy {
		padding: 3rem 0;
	}
	
	.top-text {
		padding: 2.5rem 1.5rem;
	}
}

@media (max-width: 420px) {
	.wcu-grid {
		grid-template-columns: 1fr;
	}
}

/* Extra small devices */
@media (max-width: 360px) {
	.usp-strip .container {
		padding: 0 15px;
	}
	
	.usp-item {
		padding: 14px;
	}
	
	.booking-form-wrapper {
		margin: 0 10px;
		padding: 25px 15px;
	}
	
	.booking-form-header h2 {
		font-size: 22px;
	}
}

/* ---------- ACCESSIBILITY ---------- */
.usp-item:focus-within {
	outline: 2px solid #b8860b;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.usp-item,
	.usp-icon,
	.booking-form .field-input,
	.booking-form .theme-btn,
	.hero-mobile-btn .btn,
	.wcu-item,
	.bottom-image img,
	.global-cta .btn {
		transition: none !important;
	}
	
	.usp-item:hover,
	.wcu-item:hover,
	.booking-form .theme-btn:hover,
	.hero-mobile-btn .btn:hover,
	.bottom-image:hover img,
	.global-cta .btn:hover {
		transform: none !important;
	}
	
	.usp-item:hover .usp-icon {
		transform: none;
	}
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
	.usp-item {
		border: 2px solid #333;
	}
	
	.usp-title {
		color: #000;
	}
	
	.usp-subtitle {
		color: #333;
	}
	
	.wcu-item {
		border: 2px solid #fff;
	}
	
	.booking-form .field-input {
		border: 2px solid #333;
	}
	
	.booking-form .theme-btn {
		background: #000 !important;
		border: 2px solid #fff !important;
	}
}

/* ---------- RELATED SERVICES SECTION ---------- */
.related-services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    /* overflow: hidden; */
	    overflow: visible !important; /* Override the overflow: hidden */

}

.related-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #b8860b 50%, transparent 100%);
}

.related-services-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: stretch;
}

/* Map Column */
.map-column {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

.map-wrapper,
.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-wrapper iframe,
.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Services Column */
.services-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.related-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.related-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #b8860b 0%, #d4af37 100%);
}

/* Services List - Single Column for Same Suburb */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Services Grid - Two Columns for Other Suburbs */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Service Links */
.service-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.service-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #b8860b 0%, #d4af37 100%);
    transform: translateX(-3px);
    transition: transform 0.3s ease;
}

.service-link:hover {
    background: #f8f9fa;
    border-color: #b8860b;
    color: #b8860b;
    transform: translateX(5px);
}

.service-link:hover::before {
    transform: translateX(0);
}

/* Different Styling for Same Suburb Links */
.same-suburb .service-link {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: rgba(184, 134, 11, 0.2);
}

.same-suburb .service-link:hover {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
}

/* Icon for service links */
.service-link::after {
    content: '→';
    margin-left: auto;
    padding-left: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Coming Soon Text */
.coming-soon-text {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Related CTA Section */
.related-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.cta-text {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 500;
}

.btn.btn-secondary {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-column {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .related-services-section {
        padding: 4rem 0;
    }
    
    .services-column {
        gap: 2.5rem;
    }
    
    .related-section h3 {
        font-size: 1.5rem;
        padding-left: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .related-services-section {
        padding: 3rem 0;
    }
    
    .map-column {
        min-height: 300px;
    }
    
    .related-section h3 {
        font-size: 1.25rem;
    }
    
    .service-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* ADD THIS TO YOUR EXISTING CSS FOR STICKY MAP =================== */

/* Desktop only - sticky map */
@media (min-width: 993px) {
    .related-services-section .map-column {
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }
}

/* Optional: Adjust for fixed header (example: 80px header) */
@media (min-width: 993px) {
    body.has-fixed-header .related-services-section .map-column {
        top: 100px; /* 80px header + 20px spacing */
    }
}

/* Optional: Adjust for WordPress admin bar when logged in */
@media (min-width: 993px) {
    .admin-bar .related-services-section .map-column {
        top: 52px; /* 32px admin bar + 20px spacing */
    }
    
    .admin-bar.has-fixed-header .related-services-section .map-column {
        top: 132px; /* 32px admin bar + 80px header + 20px spacing */
    }
}

/* Map with fixed height - no stretching */
.related-services-section .map-column {
    height: 400px; /* Set your preferred height */
}

/* Remove absolute positioning that causes stretching */
.related-services-section .map-wrapper,
.related-services-section .map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Desktop only - sticky positioning */
@media (min-width: 993px) {
    .related-services-section .map-column {
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }
}

/* Mobile - slightly smaller */
@media (max-width: 992px) {
    .related-services-section .map-column {
        height: 350px;
    }
}

/* Content Styling */
/* Section wrappers */
.service-suburb .service-copy.top-copy,
.service-suburb .service-copy.bottom-copy {
  padding: 60px 0;
  /* background-color: #f9f9f9; */
}

/* Grid layout (adjust class if your top section uses a different grid class) */
.service-suburb .service-copy.top-copy .container,
.service-suburb .service-copy.bottom-copy .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  /* align-items: start; */
}

/* Text column */
.service-suburb .service-copy.top-copy .bottom-text,
.service-suburb .service-copy.bottom-copy .bottom-text {
  max-width: 600px;
}

/* Headings inside */
.service-suburb .service-copy.top-copy h2,
.service-suburb .service-copy.bottom-copy h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #333;
}

/* Paragraphs */
.service-suburb .service-copy.top-copy p,
.service-suburb .service-copy.bottom-copy p {
  margin-bottom: 1.25em;
  line-height: 1.6;
  color: #555;
}

/* Lists */
.service-suburb .service-copy.top-copy ul,
.service-suburb .service-copy.bottom-copy ul,
.service-suburb .service-copy.top-copy ol,
.service-suburb .service-copy.bottom-copy ol {
  margin: 0 0 1.5em 1.75em;
  padding: 0;
}

/* Unordered list bullets */
.service-suburb .service-copy.top-copy ul,
.service-suburb .service-copy.bottom-copy ul {
  list-style: none;
}
.service-suburb .service-copy.top-copy ul li,
.service-suburb .service-copy.bottom-copy ul li {
  position: relative;
  margin-bottom: 0.75em;
  padding-left: 1.5em;
}
.service-suburb .service-copy.top-copy ul li::before,
.service-suburb .service-copy.bottom-copy ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1.2em;
  color: #007bff;
}

/* Ordered list numbers */
.service-suburb .service-copy.top-copy ol,
.service-suburb .service-copy.bottom-copy ol {
  list-style: none;
  counter-reset: custom-counter;
}
.service-suburb .service-copy.top-copy ol li,
.service-suburb .service-copy.bottom-copy ol li {
  position: relative;
  margin-bottom: 0.75em;
  padding-left: 2em;
  counter-increment: custom-counter;
}
.service-suburb .service-copy.top-copy ol li::before,
.service-suburb .service-copy.bottom-copy ol li::before {
  content: counter(custom-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #007bff;
}

