/*
Theme Name: Finexa
Theme URI: https://www.finexa.co.nz
Author: Finexa
Description: WordPress theme converted from the Finexa static HTML site.
Version: 1.0.0
Text Domain: finexa
*/

:root {
  --navy-950: #061a3a;
  --navy-900: #082a5f;
  --navy-800: #0d3976;
  --blue-600: #1767ad;
  --cyan-500: #16a8d8;
  --green-600: #27a844;
  --green-500: #38b84f;
  --ink: #132033;
  --muted: #5a6677;
  --line: #d7e0eb;
  --soft: #f4f7fb;
  --soft-green: #eff8f1;
  --white: #ffffff;
  --shadow-sm: 0 10px 28px rgba(6, 26, 58, 0.1);
  --shadow-lg: 0 28px 70px rgba(6, 26, 58, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 82px;
  padding: 13px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(215, 224, 235, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: min(210px, 42vw);
  height: auto;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy-900);
  background: var(--white);
  cursor: pointer;
}

.mobile-nav-toggle span[aria-hidden="true"] {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-nav-toggle span[aria-hidden="true"]:nth-child(2) {
  transform: translateY(-7px);
}

.mobile-nav-toggle span[aria-hidden="true"]:nth-child(4) {
  transform: translateY(7px);
}

.site-header.is-nav-open .mobile-nav-toggle span[aria-hidden="true"]:nth-child(2) {
  transform: rotate(45deg);
}

.site-header.is-nav-open .mobile-nav-toggle span[aria-hidden="true"]:nth-child(3) {
  opacity: 0;
}

.site-header.is-nav-open .mobile-nav-toggle span[aria-hidden="true"]:nth-child(4) {
  transform: rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus,
.nav a[aria-current="page"] {
  color: var(--navy-900);
  border-color: var(--green-500);
}

.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-trigger::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  content: "";
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown::after {
  position: absolute;
  right: -12px;
  bottom: -12px;
  left: -12px;
  height: 12px;
  content: "";
}

.dropdown-panel a {
  padding: 12px 14px;
  border: 0;
  border-radius: 6px;
  color: var(--navy-900);
  font-weight: 800;
  white-space: nowrap;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus {
  color: var(--white);
  background: var(--navy-900);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-cta,
.primary-button,
.secondary-button,
.full-button,
.enquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.primary-button,
.full-button,
.enquiry-form button {
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  box-shadow: 0 10px 24px rgba(39, 168, 68, 0.22);
}

.header-cta:hover,
.primary-button:hover,
.full-button:hover,
.enquiry-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(39, 168, 68, 0.28);
}

.header-cta {
  padding: 0 18px;
  white-space: nowrap;
}

.primary-button,
.secondary-button {
  min-width: 184px;
  padding: 0 24px;
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--navy-900);
  background: var(--white);
}

.secondary-button.dark {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.full-button {
  width: 100%;
  padding: 0 18px;
}

.hero-pro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
  gap: clamp(28px, 4vw, 54px);
  min-height: calc(100vh - 82px);
  padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 76px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("vehicle-finance-hero.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 26, 58, 0.94) 0%, rgba(6, 26, 58, 0.82) 38%, rgba(6, 26, 58, 0.34) 72%, rgba(6, 26, 58, 0.3) 100%),
    linear-gradient(180deg, rgba(6, 26, 58, 0.15) 0%, rgba(6, 26, 58, 0.75) 100%);
}

.hero-content,
.loan-finder {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 20px;
  color: inherit;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy-900);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 22px;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin-top: 34px;
}

.trust-row span {
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.trust-row strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.loan-finder {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.panel-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 5px;
  color: var(--navy-900);
  background: var(--soft-green);
  font-size: 13px;
  font-weight: 900;
}

.loan-finder h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.loan-finder label,
.enquiry-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy-900);
  font-weight: 900;
}

.loan-finder select,
.loan-finder input,
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.loan-finder input[type="range"] {
  accent-color: var(--green-600);
  padding: 0;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.snapshot-grid div {
  min-height: 82px;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
}

.snapshot-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.snapshot-grid strong {
  color: var(--navy-900);
  font-size: 19px;
}

.small-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 42, 95, 0.92), rgba(6, 26, 58, 0.98)),
    var(--navy-900);
}

.quick-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 184, 79, 0.2), transparent 58%);
  content: "";
}

.quick-card.car-card {
  background:
    linear-gradient(180deg, rgba(8, 42, 95, 0.52), rgba(6, 26, 58, 0.94)),
    url("vehicle-finance-hero.png") center / cover no-repeat;
}

.quick-card.asset-card {
  background:
    linear-gradient(180deg, rgba(8, 42, 95, 0.5), rgba(6, 26, 58, 0.94)),
    url("asset-finance-scene.png") center / cover no-repeat;
}

.quick-card span,
.quick-card h2,
.quick-card p {
  position: relative;
  z-index: 1;
}

.quick-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 96px;
  border-radius: 6px;
  color: var(--navy-900);
  background: var(--white);
  font-weight: 900;
}

.quick-card h2 {
  color: var(--white);
}

.quick-card p {
  color: rgba(255, 255, 255, 0.86);
}

.section,
.process-band,
.split-section,
.content-grid,
.cta-band,
.values-section,
.contact-layout,
.service-roadmap {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 38px;
}

.section-heading p,
.two-column-section > div > p {
  max-width: 760px;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature-list div,
.service-card,
.service-list article,
.steps div,
.values-section article,
.service-sidebar,
.contact-card,
.enquiry-form,
.feature-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-list div {
  padding: 18px 20px;
  border-left: 5px solid var(--green-500);
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 18px;
}

.feature-list p {
  margin-bottom: 0;
}

.asset-showcase {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.asset-showcase img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.dark-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 26, 58, 0.98), rgba(8, 42, 95, 0.96)),
    var(--navy-950);
}

.dark-band h2,
.dark-band .steps strong {
  color: var(--white);
}

.dark-band .steps div {
  border-color: rgba(255, 255, 255, 0.16);
  border-left-color: var(--green-500);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.dark-band .steps p {
  color: rgba(255, 255, 255, 0.76);
}

.steps,
.values-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps div,
.values-section article {
  min-height: 184px;
  padding: 28px;
  border-left: 5px solid var(--green-500);
}

.steps strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-900);
  font-size: 22px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.roadmap-grid a {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  font-size: 18px;
  font-weight: 900;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 68px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 26, 58, 0.94), rgba(6, 26, 58, 0.78) 46%, rgba(6, 26, 58, 0.42)),
    url("vehicle-finance-hero.png") center / cover no-repeat;
}

.page-hero.asset-page-hero,
.page-hero.business-page-hero {
  background:
    linear-gradient(90deg, rgba(6, 26, 58, 0.94), rgba(6, 26, 58, 0.78) 46%, rgba(6, 26, 58, 0.42)),
    url("asset-finance-scene.png") center / cover no-repeat;
}

.page-hero h1,
.page-hero h2 {
  color: var(--white);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
}

.page-hero .lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--navy-900);
  font-weight: 900;
  text-align: center;
}

.service-strip a:hover,
.service-strip a:focus {
  color: var(--white);
  background: var(--navy-900);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 310px;
  padding: 24px;
}

.service-card a,
.service-list a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-600);
  font-weight: 900;
}

.icon-box,
.service-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  font-weight: 900;
}

.icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.split-section,
.content-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.feature-panel {
  min-height: 340px;
  padding: clamp(26px, 4vw, 40px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 26, 58, 0.98), rgba(13, 57, 118, 0.96)),
    var(--navy-900);
}

.feature-panel h3,
.feature-panel li {
  color: var(--white);
}

.check-list,
.detail-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list {
  margin: 22px 0 28px;
}

.detail-list {
  margin: 0 0 28px;
}

.check-list li,
.detail-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before,
.detail-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  content: "";
}

.service-list {
  display: grid;
  gap: 20px;
}

.service-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 28px;
}

.service-list span {
  width: 56px;
  height: 56px;
}

.service-list h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: start;
}

.content-main {
  max-width: 840px;
}

.content-main h2:not(:first-child) {
  margin-top: 42px;
}

.service-sidebar,
.contact-card,
.enquiry-form {
  padding: 28px;
}

.service-sidebar {
  position: sticky;
  top: 112px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band h2 {
  max-width: 720px;
}

.contact-layout {
  align-items: start;
  background: var(--soft);
}

.contact-hero-pro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(48px, 6vw, 82px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 26, 58, 0.94), rgba(6, 26, 58, 0.82) 52%, rgba(6, 26, 58, 0.56)),
    url("vehicle-finance-hero.png") center / cover no-repeat;
}

.contact-hero-pro h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 66px);
}

.contact-hero-pro .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-hero-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.contact-hero-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-hero-card strong {
  display: block;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
}

.contact-hero-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-page-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  gap: 22px;
  padding: clamp(44px, 7vw, 82px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(8, 42, 95, 0.04), rgba(56, 184, 79, 0.07)),
    var(--soft);
}

.contact-info-panel,
.premium-form,
.contact-map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.contact-info-panel {
  padding: clamp(26px, 4vw, 36px);
  color: var(--white);
  background:
    radial-gradient(circle at 94% 8%, rgba(56, 184, 79, 0.28), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.contact-info-panel h2,
.contact-info-panel p,
.contact-info-panel .eyebrow {
  color: var(--white);
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.premium-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.premium-contact-list a,
.premium-contact-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.premium-contact-list span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-contact-list strong {
  color: var(--white);
  font-size: clamp(17px, 2vw, 20px);
  overflow-wrap: anywhere;
}

.premium-form {
  padding: clamp(26px, 4vw, 36px);
  background: var(--white);
}

.form-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-map-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(320px, 0.62fr);
  overflow: hidden;
  background: var(--white);
}

.contact-map-card > div {
  padding: clamp(26px, 4vw, 36px);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--green-600), var(--cyan-500), var(--navy-800));
  content: "";
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-method {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.contact-method span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--navy-900);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

a.contact-method:hover,
a.contact-method:focus {
  border-color: rgba(56, 184, 79, 0.55);
  box-shadow: 0 14px 30px rgba(6, 26, 58, 0.09);
  transform: translateY(-1px);
}

.map-section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 46vw, 520px);
  border: 0;
}

address {
  display: grid;
  gap: 14px;
  font-style: normal;
}

address a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy-900);
  background: var(--white);
  font-weight: 900;
}

.enquiry-form {
  display: grid;
  gap: 16px;
}

.enquiry-form textarea {
  resize: vertical;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 88% 4%, rgba(56, 184, 79, 0.22), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(170px, 0.7fr) minmax(150px, 0.6fr) minmax(240px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(46px, 7vw, 76px) clamp(20px, 5vw, 72px);
}

.footer-brand img {
  width: 210px;
  height: auto;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand p {
  max-width: 420px;
  margin: 20px 0 0;
}

.footer-column,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h2,
.footer-contact h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-contact address a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.footer-column a:hover,
.footer-column a:focus,
.footer-contact address a:hover,
.footer-contact address a:focus {
  color: var(--white);
}

.footer-contact address {
  gap: 10px;
}

.footer-contact address a {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  max-width: 760px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .nav {
    gap: 16px;
  }

  .service-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero-pro,
  .contact-hero-pro,
  .contact-page-section,
  .contact-map-card,
  .two-column-section,
  .split-section,
  .content-grid,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-pro {
    align-items: start;
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(6, 26, 58, 0.9), rgba(6, 26, 58, 0.72));
  }

  .loan-finder,
  .service-sidebar {
    position: static;
  }

  .quick-services,
  .steps,
  .values-section {
    grid-template-columns: 1fr;
  }

  .asset-showcase img {
    height: 420px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 72px;
  }

  .mobile-nav-toggle {
    position: relative;
    display: inline-flex;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 8px 0 2px;
    gap: 0;
    overflow: visible;
    color: var(--navy-900);
    background: var(--white);
  }

  .site-header.is-nav-open .nav {
    display: grid;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown::after {
    display: none;
  }

  .dropdown-panel {
    position: static;
    min-width: 0;
    padding: 0 0 8px 16px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .dropdown-panel,
  .nav-dropdown:focus-within .dropdown-panel {
    transform: none;
  }

  .dropdown-panel a {
    min-height: 42px;
    padding: 10px 0;
    border-bottom: 0;
    border-radius: 0;
    color: var(--muted);
  }

  .header-cta,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .header-cta {
    grid-column: 1 / -1;
  }

  .trust-row,
  .snapshot-grid,
  .service-grid,
  .service-strip,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .quick-card span {
    margin-bottom: 72px;
  }

  .asset-showcase img {
    height: 320px;
  }

  .form-two-column {
    grid-template-columns: 1fr;
  }

  .contact-map-card iframe {
    min-height: 300px;
  }

  .service-list article {
    grid-template-columns: 1fr;
  }
}
