/* ===== City landing page components (Melbourne, Sydney, etc.) ===== */

/* The shared .landing-eyebrow is sized (20px font) for a specific spot on the
   AUS page; that's too large for city-page columns and stretches the pill
   almost the full column width. Scale it back down for city pages only. */
.landing-page .landing-eyebrow {
  font-size: 20px;
  padding: 8px 20px;
}

.landing-page .landing-why-choose {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 120px;
  padding-right: 120px;
  align-items: center;
  gap: 70px;
}

/* style.css splits this row into two equal 1fr-ish flex columns (530px
   each at this page's width), which is too narrow for the heading — it
   wraps to 3 lines instead of Figma's 2 (the flattened heading export is
   577x71px). Give the text column enough basis to match, and size the
   image column to its actual 511.87px asset instead of stretching equally. */
.landing-page .landing-why-choose-content {
  flex: 1 1 577px;
}

.landing-page .landing-why-choose-visual {
  flex: 1 1 512px;
}

/* stat-1 gained a leading icon on this page (Australia's equivalent badge
   has no icon), so lay it out as icon + label/value instead of the plain
   stacked text style.css defines. Scoped to >900px because mobile.css
   hides all four stat badges below that with `display: none` — an
   unscoped `display: flex` here would outrank that on specificity and
   make just this one badge reappear on mobile. */
@media (min-width: 901px) {
  .landing-page .landing-stat-badge.stat-1 {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.landing-page .landing-stat-badge.stat-1 .landing-stat-badge-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eafaf1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page .landing-stat-badge.stat-1 .landing-stat-badge-text {
  min-width: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.city-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px 60px 60px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.city-hero-content {
  flex: 1;
  min-width: 320px;
}

.city-hero-content h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.city-hero-content h1 .highlight {
  color: #3cac62;
}

.city-hero-tagline {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.city-hero-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 22px;
}

.city-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 26px;
}

.city-hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
}

.city-hero-feature svg {
  flex-shrink: 0;
}

.city-hero-visual {
  flex: 1;
  min-width: 320px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.city-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.city-hero-pin {
  position: absolute;
  top: 14%;
  right: 12%;
  width: 22px;
  height: 22px;
  color: #3cac62;
}

/* ===== Partner intro strip =====
   Reusable across all city pages (Sydney, Melbourne, Adelaide, Canberra).
   Built as a single centered auto-layout row: the copy block and the icon
   are centered together as a group, with the copy itself center-aligned. */
.landing-page .partner-intro {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 120px 60px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.partner-intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  text-align: center;
}

.partner-intro-heading {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}

.partner-intro-heading .highlight {
  color: #3cac62;
}

.partner-intro-text {
  font-size: 19px;
  line-height: 1.4;
  margin: 0;
}

.partner-intro-icon {
  flex-shrink: 0;
  width: 141px;
  height: 129px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-intro-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Checklist service cards ===== */
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 315px);
  justify-content: center;
  gap: 74px;
  margin-top: 40px;
}

.city-service-card {
  background: #fff;
  border: 1px solid #e8ece9;
  border-radius: 13.45px;
  min-height: 179px;
  padding: 24px;
  text-align: left;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1), inset 2px 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.city-service-card:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1), inset 2px 2px 4px rgba(0, 0, 0, 0.1), 0 12px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.city-service-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.city-service-card-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #f2f9f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Icons are sized via the img's own width/height attribute in HTML (usually
   22px), which looks small against the 76px circle. Enforce a consistent,
   slightly larger size here so every service card icon matches regardless
   of what dimensions the source SVG was authored/uploaded with. */
.city-service-card-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.city-service-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.city-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 88px;
}

.city-service-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #444444;
  margin-bottom: 8px;
  line-height: 1.4;
}

.city-service-card li svg,
.city-service-card li img {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Reasons grid ===== */
.city-reasons-grid {
    display: grid;
    grid-template-columns: repeat(6, 100px);
    justify-content: space-between;
    margin-top: 40px;
}

.city-reason {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.city-reason-icon {
    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F9F9F9;
    border: 1px solid #F0F0F0;
    border-radius: 12px;

    box-shadow:
        0 1px 3px rgba(0,0,0,0.03),
        inset 0 1px 0 rgba(255,255,255,0.8);
}
.city-reason-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.city-reason span {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}

/* ===== Industries grid ===== */
.city-industries-grid {
  display: grid;
  /* minmax(0, 1fr) rather than a bare 1fr: the industry icon <img> tags
     carry native width/height attributes (up to 147px) that otherwise set
     each track's min-content floor above its fair share, overflowing the
     grid container at narrow viewports. */
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.city-industry-card {
  border: 1px solid #e8ece9;
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: inset 2.6px 2.6px 5.2px rgba(0, 0, 0, 0.1);
  
}

.city-industry-icon {
  width: 100%;
  height: 91px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto 12px;
  overflow: hidden;
}

/* width:auto above used to let oversized source SVGs (differing aspect
   ratios/intrinsic sizes across the uploaded icon sets) blow past the
   91px-tall box uncontained. Bound the img to the box on both axes so any
   icon — whatever its native size — scales down to fit instead of
   overflowing the card. */
.city-industry-icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.city-industry-card span {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}
.city-grey-band {
    background: #fafafa;
}

.landing-page .landing-services.landing-center {
    background: #fff;
}

.landing-page .landing-locations {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 35px 120px;
}
.landing-page .landing-trusted{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 120px;
}
/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .landing-page .landing-locations,
  .landing-page .landing-trusted {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1100px) {
  .city-services-grid {
    grid-template-columns: repeat(2, 315px);
  }

  .city-reasons-grid,
  .city-industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .city-hero {
    flex-direction: column;
    padding: 110px 24px 40px;
    text-align: center;
  }

  .city-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .city-hero-features {
    justify-content: center;
  }

  .landing-page .partner-intro {
    flex-direction: column;
    padding: 24px 24px 40px;
    gap: 24px;
  }

  .partner-intro-content {
    max-width: 100%;
  }

  .city-services-grid {
    grid-template-columns: 315px;
    padding: 0 24px;
  }

  .landing-page .landing-locations,
  .landing-page .landing-trusted {
    padding-left: 24px;
    padding-right: 24px;
  }

  .city-reasons-grid,
  .city-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 24px;
    gap: 20px;
  }

  .city-reason {
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .city-hero-content h1 {
    font-size: 28px;
  }

  .city-reasons-grid,
  .city-industries-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .city-services-grid {
    grid-template-columns: 100%;
  }
}
