:root {
--navy: #1a2b4a;
--navy-deep: #0f1c30;
--teal: #2a7f8f;
--teal-light: #3aa0b4;
--teal-pale: #e8f5f7;
--announce-bg: #4b5d6b;
--off-white: #f5f8fa;
--gray-light: #eef2f5;
--text-body: #4a5560;
--text-muted: #6b7785;
--white: #ffffff;
--shadow-sm: 0 1px 3px rgba(15, 28, 48, 0.06);
--shadow-md: 0 6px 24px rgba(15, 28, 48, 0.08);
--shadow-lg: 0 20px 60px rgba(15, 28, 48, 0.12);
}
html {
    overflow-x: hidden;
}
br {
    display: none;
}

.faq-item.open .faq-a p {
    font-size: 15px;
    color: var(--text-body);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'DM Sans', sans-serif;
font-weight: 400;
color: var(--text-body);
line-height: 1.6;
background: var(--white);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
font-family: 'Plus Jakarta Sans', sans-serif;
color: var(--navy);
line-height: 1.2;
letter-spacing: -0.02em;
}
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-light); }

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce {
background: var(--announce-bg);
color: var(--white);
text-align: center;
padding: 10px 16px;
font-size: 14px;
font-weight: 500;
letter-spacing: 0.01em;
}
.announce a { color: var(--white); text-decoration: underline; margin-left: 8px; }

/* ===== NAVIGATION ===== */
.nav {
background: var(--white);
border-bottom: 1px solid var(--gray-light);
position: sticky;
top: 0;
z-index: 100;
}
.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 0;
}
.nav-logo {
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 800;
font-size: 22px;
color: var(--navy);
letter-spacing: -0.02em;
}
.nav-logo span { color: var(--teal); }
.nav-links {
display: flex;
gap: 32px;
align-items: center;
list-style: none;
}
.nav-links a {
color: var(--navy);
font-weight: 500;
font-size: 15px;
}
.nav-cta {
background: var(--teal);
color: var(--white) !important;
padding: 12px 22px;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-light); color: var(--white) !important; }
@media (max-width: 768px) {
.nav-links li:not(:last-child) { display: none; }
}

/* ===== HERO ===== */
.hero {
background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
color: var(--white);
padding: 80px 0 100px;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(58, 160, 180, 0.15) 0%, transparent 70%);
pointer-events: none;
}

/*
.hero-inner is left-aligned and flush to the LEFT edge of the container,
so the H1 lines up vertically with the logo in the nav above it.
Note: margin-left:0 + margin-right:auto explicitly anchors to left.
All child text is set to text-align:left to be defensive against inheritance.
*/
.hero-inner {
position: relative;
z-index: 1;
max-width: 820px;
margin-left: 0;
margin-right: auto;
text-align: left;
}

/* Service Area Badge - the critical "this is not a facility" signal */
.service-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(58, 160, 180, 0.18);
border: 1px solid rgba(58, 160, 180, 0.4);
color: var(--teal-light);
padding: 8px 16px;
border-radius: 100px;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
margin-bottom: 24px;
}
.service-badge::before {
content: '';
width: 8px;
height: 8px;
background: var(--teal-light);
border-radius: 50%;
box-shadow: 0 0 12px var(--teal-light);
}

.hero h1 {
color: var(--white);
font-size: clamp(36px, 5vw, 56px);
font-weight: 800;
margin-bottom: 20px;
text-align: left;
}
.hero h1 .accent { color: var(--teal-light); }

.hero-clarifier {
font-size: 19px;
line-height: 1.5;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 12px;
font-weight: 400;
text-align: left;
}
.hero-clarifier strong { color: var(--white); font-weight: 600; }

.hero-sub {
font-size: 16px;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 36px;
max-width: 640px;
text-align: left;
}

.hero-ctas {
display: flex;
gap: 14px;
flex-wrap: wrap;
margin-bottom: 48px;
justify-content: flex-start;
}
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 16px 28px;
border-radius: 6px;
font-family: 'DM Sans', sans-serif;
font-weight: 600;
font-size: 15px;
border: none;
cursor: pointer;
transition: all 0.2s;
text-decoration: none;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-light); color: var(--white); transform: translateY(-1px); }
.btn-outline {
background: transparent;
color: var(--white);
border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); color: var(--white); border-color: rgba(255, 255, 255, 0.5); }

.hero-stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
padding-top: 36px;
border-top: 1px solid rgba(255, 255, 255, 0.15);
text-align: left;
}
.hero-stat-num {
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 28px;
font-weight: 800;
color: var(--teal-light);
letter-spacing: -0.02em;
line-height: 1;
margin-bottom: 8px;
}
.hero-stat-label {
font-size: 13px;
color: rgba(255, 255, 255, 0.65);
line-height: 1.4;
}

@media (max-width: 600px) {
.hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.hero-ctas { flex-direction: column; }
.hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ===== NEAREST FACILITY ===== */
.nearest { padding: 80px 0; background: var(--off-white); }
.section-eyebrow {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--teal);
margin-bottom: 14px;
}
.section-title {
font-size: clamp(28px, 4vw, 40px);
font-weight: 700;
margin-bottom: 16px;
}
.section-title .accent { color: var(--teal); }
.section-intro {
font-size: 17px;
color: var(--text-muted);
max-width: 640px;
margin-bottom: 48px;
}

.facility-card {
background: var(--white);
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-md);
display: grid;
grid-template-columns: 1.1fr 1fr;
}
.facility-img {
background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
min-height: 380px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
color: rgba(255, 255, 255, 0.4);
font-size: 14px;
font-style: italic;
width: 100%;
}
.facility-img .slider {
width: 100%;
max-width: 603px;
}
.facility-img::before {
content: 'YOUR NEAREST FACILITY';
position: absolute;
top: 20px;
left: 20px;
background: rgba(255, 255, 255, 0.95);
color: var(--navy);
padding: 6px 12px;
border-radius: 4px;
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 700;
font-size: 11px;
letter-spacing: 0.1em;
z-index: 999;
}
.facility-img img {
	width: 100%;
}
.facility-img .slider button.slick-next {
    left: unset;
    right: 20px;
}
.facility-img .slider button {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    font-size: 0;
    border: 0;
    position: absolute;
    left: 20px;
    top: 50%;
    z-index: 9999;
    background: var(--teal);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.facility-img .slider button:hover {
    background: var(--teal-light);
}
.facility-img .slider button:before {
    content: '';
    background: url(/wp-content/uploads/2026/05/carousel-arrow.png);
    width: 20px;
    height: 20px;
    display: flex;
    background-size: contain;
}
.facility-img .slider button.slick-prev:before {
    transform: rotate(180deg);
}
.facility-img img {
    min-height: 590px !important;
    object-fit: cover;
}
.facility-body {
padding: 48px 44px;
display: flex;
flex-direction: column;
justify-content: center;
}
.facility-name {
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 28px;
font-weight: 700;
color: var(--navy);
margin-bottom: 8px;
letter-spacing: -0.02em;
}
.facility-address {
color: var(--text-muted);
font-size: 15px;
margin-bottom: 28px;
line-height: 1.5;
}
.facility-meta {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-bottom: 32px;
padding: 24px;
background: var(--teal-pale);
border-radius: 10px;
}
.meta-num {
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 30px;
font-weight: 800;
color: var(--teal);
line-height: 1;
letter-spacing: -0.02em;
margin-bottom: 6px;
}
.meta-label { font-size: 13px; color: var(--navy); font-weight: 500; }
.facility-contact {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 28px;
}
.facility-contact a {
    color: var(--teal) !important;
}
.facility-contact a:hover {
    color: var(--teal-light) !important;
}
.contact-row {
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
color: var(--text-body);
}
.contact-row strong { color: var(--navy); font-weight: 600; min-width: 70px; }
.icon {
width: 18px;
height: 18px;
flex-shrink: 0;
color: var(--teal);
}
.facility-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.facility-ctas .btn-primary { background: var(--navy); }
.facility-ctas .btn-primary:hover { background: var(--teal); }
.facility-ctas .btn-outline { color: var(--navy); border-color: var(--gray-light); }
.facility-ctas .btn-outline:hover {
background: var(--off-white);
color: var(--navy);
border-color: var(--teal);
}
@media (max-width: 860px) {
.facility-card { grid-template-columns: 1fr; }
.facility-img { min-height: 240px; }
.facility-body { padding: 36px 28px; }
}

/* ===== ABOUT THE AREA ===== */
.about-area { padding: 80px 0; background: var(--white); }
.about-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 64px;
align-items: start;
}
.about-copy p {
font-size: 16px;
line-height: 1.75;
color: var(--text-body);
margin-bottom: 18px;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-copy strong { color: var(--navy); font-weight: 600; }
.about-list {
background: var(--off-white);
border-radius: 12px;
padding: 32px;
border-left: 3px solid var(--teal);
}
.about-list h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.about-list ul { list-style: none; margin: 0;}
.about-list li {
padding: 12px 0 12px 32px;
position: relative;
border-bottom: 1px solid var(--gray-light);
font-size: 15px;
color: var(--text-body);
margin: 0;
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before {
content: '';
position: absolute;
left: 0;
top: 18px;
width: 18px;
height: 18px;
background: var(--teal);
border-radius: 50%;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
}
@media (max-width: 860px) {
.about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== WHAT WE STORE ===== */
.what-we-store { padding: 80px 0; background: var(--off-white); }
.store-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 40px;
}
.store-card {
background: var(--white);
padding: 36px 30px;
border-radius: 10px;
border: 1px solid var(--gray-light);
transition: all 0.25s;
cursor: pointer;
}
.store-card:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
border-color: var(--teal-pale);
}
.store-icon {
width: 48px;
height: 48px;
background: var(--teal-pale);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
color: var(--teal);
}
.store-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.store-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 860px) { .store-grid { grid-template-columns: 1fr; } }

/* ===== WHY CHOOSE US ===== */
.why { padding: 80px 0; background: var(--navy); color: var(--white); }
.why .section-eyebrow { color: var(--teal-light); }
.why .section-title { color: var(--white); }
.why .section-intro { color: rgba(255, 255, 255, 0.7); }
.why-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px 40px;
margin-top: 48px;
}
.why-item { display: flex; gap: 18px; }
.why-icon {
width: 44px;
height: 44px;
background: rgba(58, 160, 180, 0.15);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: var(--teal-light);
flex-shrink: 0;
}
.why-item h4 {
color: var(--white);
font-size: 17px;
font-weight: 700;
margin-bottom: 6px;
}
.why-item p {
font-size: 14px;
color: rgba(255, 255, 255, 0.65);
line-height: 1.55;
}
@media (max-width: 860px) {
.why-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== SURROUNDING SUBURBS ===== */
.suburbs { padding: 80px 0; background: var(--white); text-align: center; }
.suburbs .section-intro { margin: 0 auto 48px; }
.suburb-pills {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px;
max-width: 900px;
margin: 0 auto;
}
.suburb-pill {
background: var(--off-white);
color: var(--navy);
padding: 12px 22px;
border-radius: 100px;
font-size: 15px;
font-weight: 500;
border: 1px solid var(--gray-light);
transition: all 0.2s;
}
.suburb-pill:hover {
background: var(--teal-pale);
border-color: var(--teal-light);
color: var(--teal);
}
.suburb-pill[aria-current="page"] {
background: var(--teal);
color: var(--white);
border-color: var(--teal);
}

/* ===== REVIEWS ===== */
.reviews { padding: 80px 0; background: var(--off-white); }
.reviews-head { text-align: center; margin-bottom: 48px; }
.reviews-head .section-intro { margin: 0 auto; }
.reviews-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.review {
background: var(--white);
padding: 32px;
border-radius: 10px;
box-shadow: var(--shadow-sm);
}
.review-stars {
color: #f5a623;
font-size: 16px;
letter-spacing: 2px;
margin-bottom: 16px;
}
.review p {
font-size: 15px;
line-height: 1.6;
color: var(--text-body);
margin-bottom: 20px;
font-style: italic;
}
.review-author {
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 700;
color: var(--navy);
font-size: 15px;
}
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: var(--white); }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head .section-intro { margin: 0 auto; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-q {
width: 100%;
background: none;
border: none;
padding: 22px 0;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 17px;
font-weight: 600;
color: var(--navy);
text-align: left;
}
.faq-q:hover { color: var(--teal); }
.faq-toggle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--teal-pale);
	color: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 400;
	flex-shrink: 0;
	margin-left: 16px;
	transition: transform 0.2s;
	padding-bottom: 4px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
color: var(--text-body);
font-size: 15px;
line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 0 24px 0; }

/* ===== CONTACT CTA ===== */
.cta {
padding: 80px 0;
background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
color: var(--white);
text-align: center;
position: relative;
overflow: hidden;
}
.cta::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(58, 160, 180, 0.12) 0%, transparent 70%);
pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta h2 {
color: var(--white);
font-size: clamp(28px, 4vw, 38px);
margin-bottom: 16px;
}
.cta p {
color: rgba(255, 255, 255, 0.75);
font-size: 17px;
margin-bottom: 32px;
}
.cta-buttons {
display: flex;
gap: 14px;
justify-content: center;
flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
background: #0a1422;
color: rgba(255, 255, 255, 0.6);
padding: 56px 0 24px;
font-size: 14px;
}
.footer-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 40px;
margin-bottom: 40px;
}
.footer h5 {
font-family: 'Plus Jakarta Sans', sans-serif;
color: var(--white);
font-size: 14px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 18px;
}
.footer-logo {
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 800;
font-size: 22px;
color: var(--white);
margin-bottom: 14px;
}
.footer-logo span { color: var(--teal-light); }
.footer p { line-height: 1.7; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255, 255, 255, 0.6); }
.footer a:hover { color: var(--teal-light); }
.footer-bottom {
padding-top: 24px;
border-top: 1px solid rgba(255, 255, 255, 0.08);
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
font-size: 13px;
}
@media (max-width: 860px) {
.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
.facility-img img {
    min-height: 400px !important;
}
.facility-img,
.facility-body {
    min-width: 100%;
}
}
@media (max-width: 500px) {
.footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero {
        padding-top: calc(80px + 77px) !important;
    }
}