:root {
  --sand: #F2EDE4;
  --sand-dark: #E8DFD0;
  --sand-deep: #D4C9B5;
  --eucalyptus: #25D366;
  --euca-light: #1EBE5A;
  --euca-dark: #128C7E;
  --ink: #1A1A18;
  --ink-mid: #3D3D38;
  --stone: #8A8478;
  --white: #FDFAF6;
  --rule: rgba(26, 26, 24, 0.12);
  --amber: #E8963A;
  --glass: rgba(253, 250, 246, 0.7);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sand);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Enhancements */
h1,
h2,
h3,
.logo {
  font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: var(--glass);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: var(--transition);
}

nav.scrolled {
  padding: 0.8rem 5vw;
  box-shadow: var(--shadow-sm);
}

.logo {
  font-family: 'Helvetica', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  color: var(--eucalyptus);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img,
.footer-logo img {
  height: 32px !important;
  width: auto !important;
  display: inline-block;
  vertical-align: middle;
}

.logo em {
  font-style: italic;
  color: var(--eucalyptus);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-right a {
  color: var(--stone);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-right a:hover {
  color: var(--eucalyptus);
}

.nav-wa {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--eucalyptus);
  color: var(--white) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: var(--transition) !important;
}

.nav-wa:hover {
  background: var(--euca-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.nav-wa svg,
.nav-wa i {
  width: 18px;
  height: 18px;
  fill: currentColor;
  font-size: 18px;
}

/* Hero Section */
.hero {
  padding: 8rem 5vw 6rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
  z-index: -1;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: reveal 0.8s 0.2s ease forwards;
}

.kicker-line {
  width: 44px;
  height: 2px;
  background: var(--eucalyptus);
}

.kicker-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eucalyptus);
}

h1 {
  font-weight: 900;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -2.5px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: reveal 0.8s 0.3s ease forwards;
}

h1 .italic {
  font-style: italic;
  color: var(--eucalyptus);
}

h1 .ruled {
  display: block;
  border-bottom: 4px solid var(--eucalyptus);
  padding-bottom: 0.1em;
  margin-bottom: 0.1em;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink-mid);
  max-width: 480px;
  margin-bottom: 3rem;
  font-weight: 400;
  opacity: 0;
  animation: reveal 0.8s 0.4s ease forwards;
}

.hero-sub strong {
  font-weight: 700;
  color: var(--ink);
}

.hero-cta-block {
  opacity: 0;
  animation: reveal 0.8s 0.5s ease forwards;
}

.wa-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--eucalyptus);
  color: var(--white);
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.wa-cta-big:hover {
  background: var(--euca-dark);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

.wa-cta-big svg,
.wa-cta-big i {
  width: 24px;
  height: 24px;
  fill: currentColor;
  font-size: 24px;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-note::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--eucalyptus);
  border-radius: 50%;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: reveal 0.8s 0.6s ease forwards;
}

.stat-item {
  padding-right: 3rem;
  margin-right: 3rem;
  border-right: 1px solid var(--rule);
}

.stat-item:last-child {
  border-right: none;
  margin-right: 0;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--eucalyptus);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--stone);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Right Side - Image & Card */
.hero-right {
  opacity: 0;
  animation: reveal 1s 0.45s cubic-bezier(0.2, 1, 0.3, 1) forwards;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-main-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.floating-feature {
  position: absolute;
  bottom: -40px;
  right: -30px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  z-index: 2;
  border: 1px solid var(--sand-dark);
}

.floating-feature .feature-tag {
  color: var(--eucalyptus);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.floating-feature .feature-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
}

/* Sections Common */
section {
  padding: 8rem 5vw;
  border-bottom: 1px solid var(--rule);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--ink);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

.section-title {
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -1.5px;
}

.section-title em {
  font-style: italic;
  color: var(--eucalyptus);
}

/* How It Works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
}

.step {
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
}

.step:nth-child(1) {
  background: var(--white);
}

.step:nth-child(2) {
  background: var(--sand-dark);
}

.step:nth-child(3) {
  background: var(--eucalyptus);
}

.step:nth-child(3) .step-num,
.step:nth-child(3) .step-title {
  color: var(--white);
}

.step:nth-child(3) .step-num {
  color: var(--white);
  opacity: 0.4;
}

.step:nth-child(3) .step-desc {
  color: rgba(255, 255, 255, 0.85);
}

.step:nth-child(3) .step-desc strong {
  color: var(--white);
}

.step:nth-child(3) .step-icon-wrap svg,
.step:nth-child(3) .step-icon-wrap i {
  fill: var(--white);
  color: var(--white);
}


.step-num-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  font-size: 4.5rem;
  color: var(--eucalyptus);
  line-height: 1;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon-wrap svg,
.step-icon-wrap i {
  width: 32px;
  height: 32px;
  fill: var(--eucalyptus);
  font-size: 32px;
  color: var(--eucalyptus);
}

.step-icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.step-title {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.step-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-mid);
  font-weight: 300;
}

.step-desc strong {
  font-weight: 700;
  color: var(--ink);
}

.step-arrow {
  display: none;
}

/* Reviews */
.reviews {
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  align-items: start;
}

.review-card {
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.review-card.featured {
  background: var(--eucalyptus);
  border-color: var(--euca-dark);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.stars svg,
.stars i {
  width: 16px;
  height: 16px;
  fill: var(--amber);
  font-size: 16px;
  color: var(--amber);
}

.review-card.featured .stars svg,
.review-card.featured .stars i {
  fill: var(--white);
  color: var(--white);
  opacity: 0.9;
}

.review-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 2rem;
  font-weight: 700;
  flex-grow: 1;
}

.review-card.featured .review-quote {
  color: var(--white);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}

.review-card.featured .reviewer {
  border-color: rgba(255, 255, 255, 0.15);
}

.reviewer-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--euca-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.review-card.featured .reviewer-avatar {
  background: rgba(255, 255, 255, 0.2);
}

.reviewer-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.review-card.featured .reviewer-name {
  color: var(--white);
}

.reviewer-role {
  font-size: 0.85rem;
  color: var(--stone);
  font-weight: 500;
}

.review-card.featured .reviewer-role {
  color: rgba(255, 255, 255, 0.7);
}

.review-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--sand-deep);
  color: var(--euca-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

/* Footer CTA */
.footer-cta {
  padding: 10rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--sand-dark);
}

.footer-cta-left h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 2rem;
}

.footer-cta-left h2 em {
  font-style: italic;
  color: var(--eucalyptus);
}

.footer-cta-left p {
  font-size: 1.25rem;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 450px;
}

.footer-cta-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wa-number-display {
  background: var(--ink);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.wa-number-display svg,
.wa-number-display i {
  width: 44px;
  height: 44px;
  fill: #25D366;
  font-size: 44px;
  color: #25D366;
  flex-shrink: 0;
}

.wa-number-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.wa-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.wa-cta-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  padding: 1.5rem 3rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.25rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.wa-cta-full:hover {
  background: #1ebe5a;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.4);
}

.wa-cta-full svg,
.wa-cta-full i {
  width: 28px;
  height: 28px;
  fill: currentColor;
  font-size: 28px;
}

.trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-mid);
  font-weight: 600;
}

.trust-badge svg,
.trust-badge i {
  width: 18px;
  height: 18px;
  fill: var(--eucalyptus);
  font-size: 18px;
  color: var(--eucalyptus);
}

/* Footer Styling */
footer {
  padding: 4rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sand);
  border-top: 1px solid var(--rule);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  font-family: 'Helvetica', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--eucalyptus);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.footer-logo img {
  height: 32px !important;
  width: auto !important;
  display: block;
}

.footer-logo span {
  color: var(--ink);
}

.footer-aus {
  font-size: 0.85rem;
  color: var(--stone);
  font-weight: 500;
}

.footer-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-copy {
  font-size: 0.9rem;
  color: var(--stone);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.footer-business {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--stone);
  opacity: 0.7;
}

/* Animations */
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 1, 0.3, 1), transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Grid */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 6rem;
  }

  .hero-right {
    max-width: 600px;
    margin: 0 auto;
  }

  .floating-feature {
    bottom: -20px;
    right: -20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-right a:not(.nav-wa) {
    display: none;
  }

  .hero {
    text-align: center;
  }

  .hero-kicker {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat-item {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 2rem;
  }

  .step-arrow {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6rem 5vw;
  }

  .footer-cta-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .wa-number-display {
    justify-content: center;
  }

  .wa-cta-full {
    width: 100%;
  }

  .trust-badges {
    justify-content: center;
  }

  footer {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
  }

  .footer-details {
    align-items: center;
    text-align: center;
  }
}

/* =========================================================================
   HUB PAGES (SERVICES / AREAS)
   ========================================================================= */

/* Page Header */
.page-header {
  padding: 8rem 5vw 5rem;
  background: var(--sand-dark);
  text-align: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.breadcrumb {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-header>.breadcrumb {
  position: absolute;
  top: 1.5rem;
  left: 5vw;
  text-align: left;
  z-index: 2;
  margin-bottom: 0;
}

.breadcrumb a {
  color: var(--eucalyptus);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--euca-dark);
}

.breadcrumb span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.page-header h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.page-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink-mid);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

.page-intro strong {
  font-weight: 700;
  color: var(--ink);
}

.hero-location {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--stone);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-location strong {
  color: var(--ink-mid);
  font-weight: 600;
}

/* Services / Areas Grid Section */
.services-grid-sec {
  padding: 6rem 5vw;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: 12px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-card:hover .service-title {
  color: var(--eucalyptus);
}

.service-card:hover .service-icon {
  background: var(--eucalyptus);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand-dark);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}

.service-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.service-icon svg,
.service-icon i {
  width: 22px;
  height: 22px;
  fill: var(--eucalyptus);
  font-size: 22px;
  color: var(--eucalyptus);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}


.service-meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--eucalyptus);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 24, 0.08);
}

.service-meta::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--eucalyptus);
  border-radius: 50%;
}

/* Areas Mesh Section */
.areas-section {
  padding: 6rem 5vw;
  border-bottom: 1px solid var(--rule);
}

.bg-sand-dark {
  background: var(--sand-dark);
}

.areas-intro {
  font-size: 1.1rem;
  color: var(--ink-mid);
  margin-bottom: 3rem;
  max-width: 600px;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.area-pill {
  background: var(--white);
  border: 1px solid rgba(26, 26, 24, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: var(--transition);
}

.area-pill:hover {
  background: var(--eucalyptus);
  color: var(--white);
  border-color: var(--euca-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Subregion List */
.subregion-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.subregion {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2rem;
}

.subregion:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.subregion-body {
  flex: 1;
  min-width: 0;
}

.subregion-frame {
  flex-shrink: 0;
  width: 300px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: var(--sand);
  order: 1;
}

.subregion-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subregion-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

@media (max-width: 480px) {
  .subregion {
    flex-direction: column;
  }

  .subregion-frame {
    width: 100%;
    order: 0;
  }
}

/* Region Cards (service area pages) */
.region-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.region-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}

.region-card-img {
  flex-shrink: 0;
  width: 340px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.region-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.region-card-content {
  flex: 1;
  padding: 2rem 2rem 2rem 0;
  min-width: 0;
}

.region-card--content-right {
  flex-direction: row;
}

.region-card--mirrored {
  flex-direction: row-reverse;
}

.region-card--mirrored .region-card-content {
  padding: 2rem 0 2rem 2rem;
}

.region-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.region-title a {
  color: inherit;
  text-decoration: none;
}

.region-title a:hover {
  color: var(--eucalyptus);
}

@media (max-width: 600px) {

  .region-card,
  .region-card--content-right,
  .region-card--mirrored {
    flex-direction: column;
  }

  .region-card-img {
    width: 100%;
  }

  .region-card-content,
  .region-card--mirrored .region-card-content {
    padding: 1.5rem;
  }
}

.region-suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Region Image Frames */
.region-frames {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.region-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.4s ease;
  box-shadow: var(--shadow-md);
}

.region-frame:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: var(--shadow-lg);
}

.region-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.75) 0%, rgba(26, 26, 24, 0.1) 50%, transparent 100%);
  transition: background 0.4s ease;
}

.region-frame:hover .region-frame-overlay {
  background: linear-gradient(to top, rgba(26, 26, 24, 0.85) 0%, rgba(26, 26, 24, 0.2) 55%, rgba(26, 26, 24, 0.05) 100%);
}

.region-frame-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  transform: scale(1.08);
  z-index: 0;
}

.region-frame--coming-soon .region-frame-overlay {
  background: rgba(26, 26, 24, 0.45);
  z-index: 1;
}

.region-frame--coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

.region-frame--coming-soon:hover .region-frame-overlay {
  background: rgba(26, 26, 24, 0.55);
}

.region-frame--coming-soon .region-frame-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(253, 250, 246, 0.75);
  text-shadow: none;
  z-index: 2;
}

.region-frame-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .region-frames {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .region-frame {
    aspect-ratio: 3 / 4;
  }

  .region-frame-label {
    font-size: 1.3rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }
}

@media (max-width: 480px) {
  .region-frames {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 360px;
  }

  .region-frame {
    aspect-ratio: 16 / 10;
  }
}

/* FAQ Section */
.faq-section {
  padding: 8rem 5vw;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.text-center {
  text-align: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 4rem;
}

.text-center .section-label {
  margin-bottom: 1rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.faq-a {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-mid);
  font-weight: 300;
}

@media (max-width: 768px) {
  .page-header {
    padding: 6rem 5vw 3rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 5rem 5vw;
  }
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 24, 0.08);
}

.service-pill {
  background: var(--sand-dark);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-mid);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.service-pill:hover {
  background: var(--eucalyptus);
  color: var(--white);
}

/* Scattered Hero Image Frames */
.page-header--services {
  position: relative;
  overflow: hidden;
}

.hero-frames {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.page-header--services .container {
  position: relative;
  z-index: 1;
}

.hero-frame {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sand);
  border: 3px solid var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
  opacity: 0;
  animation: frameReveal 1s ease forwards;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-frame--1 {
  width: 150px;
  top: 12%;
  left: 6%;
  transform: rotate(-6deg);
  animation-delay: 0.3s;
}

.hero-frame--2 {
  width: 120px;
  top: 8%;
  right: 8%;
  transform: rotate(4deg);
  animation-delay: 0.5s;
}

.hero-frame--3 {
  width: 135px;
  bottom: 18%;
  left: 4%;
  transform: rotate(5deg);
  animation-delay: 0.7s;
}

.hero-frame--4 {
  width: 110px;
  top: 35%;
  right: 4%;
  transform: rotate(-3deg);
  animation-delay: 0.4s;
}

.hero-frame--5 {
  width: 125px;
  bottom: 12%;
  right: 10%;
  transform: rotate(7deg);
  animation-delay: 0.6s;
}

.hero-frame--6 {
  width: 100px;
  top: 55%;
  left: 10%;
  transform: rotate(-8deg);
  animation-delay: 0.8s;
}

@keyframes frameReveal {
  from {
    opacity: 0;
    transform: scale(0.7) rotate(var(--_r, 0deg));
  }

  to {
    opacity: 0.85;
    transform: scale(1) rotate(var(--_r, 0deg));
  }
}

.hero-frame--1 {
  --_r: -6deg;
}

.hero-frame--2 {
  --_r: 4deg;
}

.hero-frame--3 {
  --_r: 5deg;
}

.hero-frame--4 {
  --_r: -3deg;
}

.hero-frame--5 {
  --_r: 7deg;
}

.hero-frame--6 {
  --_r: -8deg;
}

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

/* =========================================================================
   TRADE HUB PAGES (/services/[trade]/)
   ========================================================================= */

/* Hero Stats Inline (inside page-header) */
.hero-stats-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

/* Trade Banner (full-width, natural aspect ratio) */
.trade-banner {
  width: 100%;
  overflow: hidden;
}

.trade-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Social Proof Bar */
.social-proof-bar {
  padding: 3.5rem 5vw;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}

.proof-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 1.5rem;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.proof-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--eucalyptus);
  letter-spacing: -1px;
  line-height: 1;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--stone);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--rule);
}

.proof-line {
  font-size: 1rem;
  color: var(--ink-mid);
  font-weight: 400;
}

/* Common Jobs Grid */
.common-jobs-section {
  padding: 6rem 5vw;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.job-card {
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: 12px;
  padding: 1.75rem;
  text-decoration: none;
  color: var(--ink);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.job-card--split {
  flex-direction: row;
  padding: 0;
  overflow: hidden;
}

.job-card--split .job-card-body {
  flex: 1;
  min-width: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.job-card--split .job-card-img {
  width: 180px;
  min-width: 180px;
  overflow: hidden;
  align-self: flex-start;
}

.job-card--split .job-card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .job-card--split .job-card-img {
    width: 120px;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .job-card--split {
    flex-direction: column;
  }

  .job-card--split .job-card-img {
    width: 100%;
    min-width: 100%;
    aspect-ratio: 16 / 9;
  }
}


.job-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.job-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.job-icon i {
  font-size: 1.2rem;
  color: var(--eucalyptus);
  transition: var(--transition);
}

.job-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.job-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-mid);
  font-weight: 300;
}

.job-card-frame {
  margin-top: auto;
  padding-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.job-card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Region job cards — wider horizontal layout for localised content */
.jobs-grid--local {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.job-card--local {
  position: relative;
  flex-direction: row;
  padding: 0;
  overflow: hidden;
}

.job-card--local .job-card-img {
  width: 140px;
  min-width: 140px;
  aspect-ratio: 1 / 2;
  overflow: hidden;
  flex-shrink: 0;
}

.job-card--local .job-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}


.job-card--local .job-card-content {
  flex: 1;
  min-width: 0;
  padding: 1.75rem 2rem;
  position: relative;
}

.job-card--local .job-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: auto;
  height: auto;
  min-width: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.job-card--local .job-icon i {
  font-size: 1.5rem;
  color: var(--sand-deep);
}


.job-card--local .job-body {
  padding-right: 2rem;
}

.job-card--local .job-body-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.job-card--local .job-desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

.job-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.job-points li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-mid);
  font-weight: 400;
  padding-left: 1.1rem;
  position: relative;
}

.job-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--eucalyptus);
}

.job-card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.job-card-actions .job-card-learn:first-of-type {
  margin-left: auto;
}

.job-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--eucalyptus);
  color: var(--white);
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s;
}

.job-card-cta:hover {
  background: var(--euca-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.job-card-cta i {
  font-size: 1rem;
}

.job-card-learn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  color: #aaa;
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.85rem;
  border: none;
  transition: all 0.25s;
}

.job-card-learn:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.job-card-learn i {
  font-size: 0.7rem;
  transition: transform 0.25s;
}

.job-card-learn:hover i {
  transform: translateX(2px);
}

.job-card--local .job-card-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--sand-deep);
  font-size: 1rem;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .job-card--local .job-card-img {
    width: 100px;
    min-width: 100px;
  }

  .job-card--local .job-card-content {
    padding: 1.25rem 1.5rem;
  }
}


@media (min-width: 769px) {
  .jobs-grid--local {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* Why Alljack Section */
.why-section {
  padding: 6rem 5vw;
  background: var(--sand);
  border-bottom: 1px solid var(--rule);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 12px;
  padding: 2rem;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-icon svg,
.why-icon i {
  width: 22px;
  height: 22px;
  fill: var(--eucalyptus);
  font-size: 22px;
  color: var(--eucalyptus);
}

.why-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.why-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-mid);
  font-weight: 300;
}

@media (max-width: 768px) {
  .proof-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .proof-divider {
    width: 40px;
    height: 1px;
  }

  .hero-stats-inline {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-stats-inline .proof-divider {
    width: 40px;
    height: 1px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Content + Image Split */

.content-split {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.content-split-text {
  flex: 1;
  min-width: 0;
}

.content-split-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
}

.content-split-text p:last-child {
  margin-bottom: 0;
}

.content-split-img {
  flex-shrink: 0;
  width: 340px;
  position: sticky;
  top: 6rem;
}

.content-split-img-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-split-img-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.content-split-img-caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--stone);
  text-align: center;
  font-weight: 400;
}

.content-topic {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.content-topic:last-child {
  margin-bottom: 0;
}

.content-topic:hover {
  border-color: var(--sand-deep);
  box-shadow: var(--shadow-sm);
}

.content-topic-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.content-topic-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-topic-icon i {
  font-size: 16px;
  color: var(--eucalyptus);
}

.content-topic-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.content-topic p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 0;
}

.content-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .content-topics-grid {
    grid-template-columns: 1fr;
  }
}

.content-topic-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.content-topic-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 0.5rem;
}

.content-topic-list li:last-child {
  margin-bottom: 0;
}

.content-topic-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--eucalyptus);
}

.content-topic-pricing {
  margin-top: 0.75rem;
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-row {
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--sand-dark);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:nth-child(even) {
  background: var(--sand);
}

.pricing-label {
  flex: 1;
  color: var(--ink-mid);
  min-width: 0;
}

.pricing-note {
  color: var(--stone);
  font-size: 0.85rem;
}

.pricing-value {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  margin-left: 1rem;
  min-width: 110px;
  text-align: right;
}

.pricing-time {
  color: var(--stone);
  font-size: 0.85rem;
  white-space: nowrap;
  margin-left: 1rem;
  min-width: 70px;
  text-align: right;
}

@media (max-width: 480px) {
  .pricing-row {
    flex-wrap: wrap;
    gap: 0.15rem;
  }

  .pricing-label {
    width: 100%;
    flex: none;
  }

  .pricing-value {
    text-align: left;
    margin-left: 0;
    min-width: auto;
  }

  .pricing-time {
    text-align: left;
    margin-left: 0.5rem;
    min-width: auto;
  }
}

@media (max-width: 900px) {
  .content-split {
    flex-direction: column;
    gap: 2rem;
  }

  .content-split-img {
    width: 100%;
    position: static;
    order: -1;
  }

  .content-split-img-frame {
    aspect-ratio: 16 / 9;
  }

  .content-split-img-frame img {
    height: 100%;
  }
}

/* Warning Signs List */

.signs-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 780px;
  margin: 0 auto;
}

.sign-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  transition: var(--transition);
}

.sign-item:hover {
  border-color: var(--sand-deep);
  box-shadow: var(--shadow-sm);
}

.sign-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-icon i {
  font-size: 16px;
  color: var(--eucalyptus);
}

.sign-content {
  flex: 1;
}

.sign-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.15rem;
}

.sign-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-mid);
  font-weight: 300;
}

@media (max-width: 480px) {
  .sign-item {
    padding: 0.75rem 1rem;
    gap: 0.85rem;
  }
}

/* Compact Job Links Grid */

.job-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.job-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: var(--transition);
}

.job-link:hover {
  border-color: var(--eucalyptus);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.job-link-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-link-icon i {
  font-size: 14px;
  color: var(--eucalyptus);
}

.job-link-label {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
}

.job-link-arrow {
  font-size: 0.7rem;
  color: var(--stone);
  transition: transform 0.25s, color 0.25s;
}

.job-link:hover .job-link-arrow {
  color: var(--eucalyptus);
  transform: translateX(3px);
}

/* Top Rated Tradies */
.top-rated-section {
  padding: 4rem 0;
}

.top-rated-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-rated-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.top-rated-item:last-child {
  border-bottom: none;
}

.top-rated-rank {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-mid);
}

.top-rated-info {
  flex: 1;
  min-width: 0;
}

.top-rated-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.top-rated-detail {
  font-size: 0.9rem;
  color: var(--ink-mid);
  font-weight: 300;
}

.top-rated-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.top-rated-stars {
  color: #f5a623;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.top-rated-score {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

@media (max-width: 480px) {
  .top-rated-item {
    flex-wrap: wrap;
  }

  .top-rated-rating {
    width: 100%;
    padding-left: 48px;
  }
}