/* Paws on Point: shared stylesheet (homepage + suburb pages) */
/* ============================
   DESIGN TOKENS
   ============================ */
:root {
  --cloud: #F6FBFD;
  --mist: #EAF5FA;
  --sky: #84C5E2;
  --steel: #7F9CB5;
  --navy: #1D374C;
  --ink: #102432;
  --orange: #DE8F53;
  --sand: #F1BEA0;
  --white: #FFFFFF;
  --line: #CFE3EC;
  --slate: #5E7386;
  /* Playful accents (from Xavier's mascot logo) */
  --coral: #E8533B;
  --coral-deep: #C8402B;
  --cream: #FDF4E8;
  --gold: #F4D38C;

  --font-display: "Baloo 2", "Montserrat", "Avenir Next", Arial, sans-serif;
  --font-body: "Nunito", "Helvetica Neue", Arial, sans-serif;
  --font-accent: "Caveat", "Comic Sans MS", cursive;
  --font-mono: "Nunito", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --radius-pill: 100px;

  --shadow-soft: 0 2px 16px rgba(29, 55, 76, 0.06);
  --shadow-card: 0 4px 24px rgba(29, 55, 76, 0.08);
  --shadow-hover: 0 8px 32px rgba(29, 55, 76, 0.12);

  --max-width: 1140px;
  --section-pad: 96px;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================
   SKIP LINK
   ============================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* ============================
   PREFERS REDUCED MOTION
   ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================
   UTILITY
   ============================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--coral);
  margin-bottom: 4px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.6;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(222, 143, 83, 0.3);
}
.btn-primary:hover {
  background: #c97d45;
  box-shadow: 0 6px 24px rgba(222, 143, 83, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--line);
}
.btn-secondary:hover {
  border-color: var(--sky);
  background: var(--mist);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================
   NAV
   ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 251, 253, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 0 24px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nav-logo-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50% 50% 50% 10%;
  position: absolute;
  top: 8px;
  left: 11px;
}

.nav-logo-icon::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 22px;
  left: 17px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  padding: 10px 24px !important;
  font-size: 14px !important;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ============================
   HERO
   ============================ */
.hero {
  padding: 80px 24px 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(132, 197, 226, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(222, 143, 83, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mist);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 19px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--steel);
  margin-top: 2px;
}

/* Hero visual: decorative CSS illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-scene {
  width: 420px;
  height: 420px;
  position: relative;
}

.hero-circle-outer {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mist) 0%, rgba(132, 197, 226, 0.2) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.hero-circle-mid {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(132, 197, 226, 0.15) 0%, rgba(222, 143, 83, 0.08) 100%);
  border: 2px dashed var(--line);
  position: absolute;
  top: 50px;
  left: 50px;
}

.hero-circle-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-card);
  position: absolute;
  top: 110px;
  left: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mascot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 370px;
  height: auto;
  transform: translate(-50%, -52%);
  filter: drop-shadow(0 18px 28px rgba(16, 36, 50, 0.22));
  z-index: 2;
}

.hero-blob {
  position: absolute;
  top: 54%;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  background: var(--cream);
  border-radius: 46% 54% 52% 48% / 55% 45% 55% 45%;
  z-index: 1;
}

/* Paw print in center (legacy, unused) */
.paw-print {
  position: relative;
  width: 80px;
  height: 80px;
}

.paw-pad {
  position: absolute;
  background: var(--navy);
  border-radius: 50%;
}

.paw-pad-main {
  width: 36px;
  height: 30px;
  border-radius: 50% 50% 45% 45%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.paw-toe-1 {
  width: 16px; height: 16px;
  top: 8px; left: 8px;
}

.paw-toe-2 {
  width: 16px; height: 16px;
  top: 0; left: 50%;
  transform: translateX(-50%);
}

.paw-toe-3 {
  width: 16px; height: 16px;
  top: 8px; right: 8px;
}

/* Floating badges around the circle */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 20px;
  box-shadow: var(--shadow-card);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.float-badge-1 {
  top: 20px;
  right: -20px;
  color: var(--navy);
  animation-delay: 0s;
}

.float-badge-2 {
  bottom: 60px;
  left: -40px;
  color: var(--orange);
  animation-delay: 1.5s;
}

.float-badge-3 {
  bottom: -10px;
  right: 40px;
  color: var(--steel);
  animation-delay: 3s;
}

.float-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.float-badge-icon.blue { background: var(--mist); }
.float-badge-icon.orange { background: rgba(222, 143, 83, 0.12); }
.float-badge-icon.green { background: rgba(74, 222, 128, 0.12); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
}

/* ============================
   SOCIAL PROOF BAR
   ============================ */
.proof-bar {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 24px;
}

.proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--slate);
}

.proof-icon {
  width: 40px;
  height: 40px;
  background: var(--mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-icon-shape {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.proof-icon-shape.orange-shape { background: var(--orange); }
.proof-icon-shape.sky-shape { background: var(--sky); }
.proof-icon-shape.navy-shape { background: var(--navy); }

.proof-item strong {
  color: var(--navy);
  font-weight: 700;
}

/* ============================
   SERVICES
   ============================ */
.services {
  padding: var(--section-pad) 24px;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--sky);
  transform: translateY(-2px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card:nth-child(1)::before { background: var(--sky); }
.service-card:nth-child(2)::before { background: var(--orange); }
.service-card:nth-child(3)::before { background: var(--navy); }
.service-card:nth-child(4)::before { background: var(--sand); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.service-icon-1 { background: rgba(132, 197, 226, 0.15); }
.service-icon-2 { background: rgba(222, 143, 83, 0.12); }
.service-icon-3 { background: rgba(29, 55, 76, 0.08); }
.service-icon-4 { background: rgba(241, 190, 160, 0.2); }

/* Small CSS shapes inside service icons */
.icon-shape {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.icon-shape-1 {
  background: var(--sky);
  border-radius: 50% 50% 50% 10%;
}

.icon-shape-2 {
  background: var(--orange);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  box-shadow: 8px 0 0 var(--orange);
}

.icon-shape-3 {
  background: var(--navy);
  border-radius: 50%;
}

.icon-shape-4 {
  background: var(--sand);
  border-radius: 4px;
  width: 10px;
  height: 10px;
  box-shadow: 14px 0 0 var(--sand), 0 14px 0 var(--sand), 14px 14px 0 var(--sand);
}

.service-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
  background: var(--mist);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--slate);
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

/* ============================
   ABOUT XAVIER
   ============================ */
.about {
  padding: var(--section-pad) 24px;
  background: var(--white);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-blob {
  width: 380px;
  height: 380px;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--mist) 0%, rgba(132, 197, 226, 0.25) 50%, rgba(222, 143, 83, 0.08) 100%);
  position: relative;
}

.about-blob-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--cloud);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.about-blob-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.about-blob-text {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel);
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.about-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-float-1 {
  top: 20px;
  right: -10px;
}

.about-float-2 {
  bottom: 30px;
  left: -10px;
}

.about-float-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-content .section-heading {
  margin-bottom: 20px;
}

.about-text {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-highlights {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--navy);
}

.about-check {
  width: 24px;
  height: 24px;
  background: rgba(132, 197, 226, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-check::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2.5px solid var(--sky);
  border-bottom: 2.5px solid var(--sky);
  transform: rotate(-45deg);
  margin-top: -2px;
}

@media (max-width: 980px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-visual { order: -1; }
  .about-highlights { align-items: center; }
  .about-highlights li { text-align: left; }
}

/* ============================
   PRICING / DEALS
   ============================ */
.pricing {
  padding: var(--section-pad) 24px;
  background: var(--cloud);
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-header .section-sub {
  margin: 0 auto;
}

.pricing-inner {
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  margin-bottom: 32px;
}

.pricing-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.pricing-col {
  flex: 1;
  min-width: 200px;
}

.pricing-col h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.5;
}

.pricing-bullet {
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.pricing-bullet.orange { background: var(--orange); }

.pricing-divider {
  width: 1px;
  background: var(--line);
  align-self: stretch;
  min-height: 80px;
  flex-shrink: 0;
}

.pricing-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.perk-card {
  background: var(--mist);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.perk-card-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
}

.perk-card-label {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
}

.pricing-note {
  text-align: center;
  font-size: 15px;
  color: var(--steel);
  margin-top: 24px;
  font-style: italic;
}

@media (max-width: 600px) {
  .pricing-card { padding: 32px 24px; }
  .pricing-divider { display: none; }
}

/* ============================
   SERVICE AREA
   ============================ */
.area {
  padding: var(--section-pad) 24px;
  background: var(--white);
}

.area-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 32px;
}

.area-pill {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.area-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.area-hours {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 36px;
}

.area-hours-icon {
  width: 44px;
  height: 44px;
  background: var(--mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clock-shape {
  width: 22px;
  height: 22px;
  border: 2.5px solid var(--sky);
  border-radius: 50%;
  position: relative;
}

.clock-shape::before {
  content: "";
  position: absolute;
  width: 2.5px;
  height: 8px;
  background: var(--sky);
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.clock-shape::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2.5px;
  background: var(--sky);
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
}

.area-hours-text {
  text-align: left;
}

.area-hours-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
}

.area-hours-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

/* ============================
   FAQ
   ============================ */
.faq {
  padding: var(--section-pad) 24px;
  background: var(--cloud);
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .section-sub {
  margin: 0 auto;
}

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  background: var(--mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-chevron::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2.5px solid var(--sky);
  border-bottom: 2.5px solid var(--sky);
  transform: rotate(45deg);
  margin-top: -3px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.65;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--sky);
}

.faq-item.open .faq-chevron::after {
  border-color: var(--white);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================
   CTA BAND
   ============================ */
.cta-band {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(132, 197, 226, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(222, 143, 83, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .section-label {
  color: var(--sky);
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-inner p {
  font-size: 18px;
  color: var(--steel);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(222, 143, 83, 0.35);
}
.btn-cta-primary:hover {
  background: #c97d45;
  box-shadow: 0 6px 28px rgba(222, 143, 83, 0.45);
  transform: translateY(-1px);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--ink);
  padding: 48px 24px;
  border-top: 1px solid rgba(132, 197, 226, 0.1);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 58px;
  width: auto;
  display: block;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.footer-logo-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50% 50% 50% 10%;
  position: absolute;
  top: 7px;
  left: 10px;
}

.footer-brand-text h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-text p {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.4;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-info-item {
  font-size: 14px;
  color: var(--steel);
}

.footer-info-item a {
  color: var(--sky);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-info-item a:hover {
  color: var(--white);
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-info {
    flex-direction: column;
    gap: 12px;
  }
}


/* ===== Enquiry form ===== */
.enquire { background: var(--mist); padding: var(--section-pad) 24px; }
.enquire-inner { max-width: 920px; margin: 0 auto; }
.enquire-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.enquire-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; align-items: start; }
.enquire-contact { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 32px; }
.enquire-contact h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 8px; color: var(--white); }
.enquire-contact p { color: var(--sky); font-size: 0.98rem; margin-bottom: 24px; }
.contact-line { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-line a { color: var(--white); text-decoration: none; font-weight: 600; }
.contact-line a:hover { color: var(--sky); }
.contact-line .contact-label { display: block; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel); margin-bottom: 2px; }
.enquire-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; color: var(--navy); margin-bottom: 6px; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink); padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--cloud); transition: border-color 0.15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(132,197,226,0.25); }
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquire-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-result { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.95rem; display: none; }
.form-result.success { display: block; background: var(--mist); color: var(--navy); border: 1.5px solid var(--sky); }
.form-result.error { display: block; background: #FDECEC; color: #9B2C2C; border: 1.5px solid #E9A6A6; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
@media (max-width: 760px) {
  .enquire-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ===== Suburb landing pages ===== */
.suburb-intro { background: var(--white); padding: var(--section-pad) 24px; }
.suburb-intro-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.suburb-intro-inner p { font-size: 18px; color: var(--navy); margin-top: 16px; line-height: 1.7; }
.spots { background: var(--cream); padding: var(--section-pad) 24px; }
.spots-inner { max-width: 1140px; margin: 0 auto; }
.spots-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.spots-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.spot-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-card); }
.spot-card h3 { font-family: var(--font-display); font-size: 21px; color: var(--navy); margin-bottom: 8px; }
.spot-card p { color: var(--slate); font-size: 15.5px; line-height: 1.6; }
.spot-pin { width: 38px; height: 38px; border-radius: 12px; background: var(--sky); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
.suburb-note { text-align: center; color: var(--slate); font-size: 15px; margin-top: 30px; }
.suburb-note a { color: var(--navy); font-weight: 700; }
