/* =====================================================
   HONEYCUTT TOWING — Static Homepage CSS
   Matches live React site at honeycutttowing.com
   Fonts: Cormorant Garamond (display) + Lato (body)
   Colors: #d4af37 gold, #1a1a1a deep black, #f9f9f9 off-white
   ===================================================== */

:root {
  --gold: #d4af37;
  --gold-light: #e8c863;
  --gold-dark: #b8932a;
  --ink: #1a1a1a;
  --charcoal: #2c2c2c;
  --slate: #333333;
  --steel: #5a5a5a;
  --gray: #666666;
  --mid: #999999;
  --border: #e5e5e5;
  --light: #f0f0f0;
  --off: #f9f9f9;
  --offset: #f5f5f5;
  --white: #ffffff;
  --success: #00c758;
  --danger: #ff4136;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', system-ui, -apple-system, sans-serif;
  --max-w: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::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-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-gold { color: var(--gold); }

/* ─── HEADER ─── */
header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.logo:hover { color: var(--gold-light); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav.main-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  padding: 10px 16px;
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
}
nav.main-nav a:hover { color: var(--gold); }
nav.main-nav a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  padding: 12px 22px !important;
  border-radius: 6px !important;
  margin-left: 12px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s var(--ease) !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.25);
}
.nav-cta svg { width: 16px; height: 16px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: 0.3s var(--ease);
}

/* ─── HERO ─── */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}
.hero-content {
  max-width: 720px;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tagline::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero h1 .gold-text {
  color: var(--gold);
  display: block;
}
.hero-subhead {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 560px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-description {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--off);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--steel);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── SECTIONS ─── */
section { padding: 100px 0; }
.bg-white { background: var(--white); }
.bg-off { background: var(--off); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-ink h2, .bg-ink h3 { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
  font-weight: 700;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--steel);
  font-weight: 300;
  line-height: 1.7;
}
.bg-ink .section-header p { color: rgba(255,255,255,0.7); }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: rgba(212,175,55,0.3);
}
.service-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  transition: gap 0.3s var(--ease);
}
.service-card:hover .service-link { gap: 14px; }
.service-link svg { width: 14px; height: 14px; }

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.why-item {
  text-align: center;
  padding: 24px 16px;
}
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease);
}
.why-item:hover .why-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}
.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: color 0.4s var(--ease);
}
.why-item:hover .why-icon svg { color: var(--ink); }
.why-item h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.why-item p {
  font-size: 0.95rem;
  color: var(--steel);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--ink);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,175,55,0.08), transparent 60%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 18px;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  padding: 18px 0;
  border-bottom: 2px solid var(--gold);
  transition: all 0.3s var(--ease);
}
.cta-phone:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateX(6px);
}
.cta-phone svg { width: 32px; height: 32px; }

/* ─── AREAS ─── */
.areas-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
}
.area-card:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.04);
  transform: translateX(4px);
}
.area-card svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--gold); margin-bottom: 16px; display: block; }
.footer-brand p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}
footer h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  font-weight: 300;
}
footer ul a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .header-inner { height: 64px; }
  .logo { font-size: 1.4rem; }
  .hamburger { display: block; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 24px;
    border-top: 1px solid rgba(212,175,55,0.15);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  }
  nav.main-nav.active { display: flex; }
  nav.main-nav a {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; }

  .hero { min-height: 500px; }
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
  }
  .hero-bg img { object-position: center; }

  section { padding: 64px 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ─── TESTIMONIAL ─── */
.testimonial-section { padding: 80px 0; }
.testimonial-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.4em;
  margin-bottom: 24px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.testimonial-highlight {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 700;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.testimonial-author strong {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.testimonial-source {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── AREAS MORE LINK ─── */
.areas-more {
  text-align: center;
  margin-top: 32px;
}
.areas-more a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: all 0.3s var(--ease);
}
.areas-more a:hover {
  color: var(--gold);
  transform: translateX(4px);
  display: inline-block;
}

/* ─── FLOATING CALL BUTTON ─── */
.floating-call {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 999;
  background: var(--gold);
  color: var(--ink);
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(212,175,55,0.4), 0 6px 12px rgba(0,0,0,0.15);
  transition: all 0.3s var(--ease);
}
.floating-call svg { width: 20px; height: 20px; flex-shrink: 0; }
.floating-call:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212,175,55,0.5);
}

@media (max-width: 992px) {
  .floating-call { display: inline-flex; }
}
@media (max-width: 480px) {
  .floating-call {
    bottom: 12px;
    right: 12px;
    left: 12px;
    justify-content: center;
    padding: 16px 20px;
  }
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(212,175,55,0.05));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.breadcrumbs a {
  color: var(--gold);
}
.breadcrumbs a:hover {
  color: var(--gold-light);
}
.breadcrumbs span {
  margin: 0 10px;
  opacity: 0.5;
}

/* ─── SERVICE BLOCKS (services page) ─── */
.service-block {
  padding: 80px 0;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-row.reverse .service-text { order: 2; }
.service-row.reverse .service-image { order: 1; }
.service-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}
.service-text p {
  font-size: 1rem;
  color: var(--steel);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-text .btn {
  margin-top: 8px;
}
.service-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-image:hover img {
  transform: scale(1.02);
}

/* ─── CHECK LIST ─── */
.check-list {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 400;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── AREAS IMAGE BLOCK ─── */
.areas-image-block {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  margin-bottom: 56px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.areas-image-block img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 50%;
}
.areas-grid.full {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-row.reverse .service-text { order: 1; }
  .service-row.reverse .service-image { order: 2; }
  .service-image img { height: 280px; }
  .areas-image-block img { height: 320px; }
  .page-hero { padding: 56px 0 40px; }
}

/* ─── FORMS ─── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.95rem;
  color: var(--steel);
  margin-bottom: 28px;
  font-weight: 300;
}

.step-indicator {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.step {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s var(--ease);
}
.step.active { color: var(--gold-dark); border-color: var(--gold); }
.step.done { color: var(--ink); border-color: var(--ink); }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-section { display: none; }
.form-section.active { display: block; }

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid);
  font-weight: 300;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-help {
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 6px;
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 24px;
  font-size: 0.78rem;
  color: var(--mid);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.vin-input-group {
  display: flex;
  gap: 12px;
}
.vin-input-group input {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vin-input-group .btn {
  padding: 14px 24px;
  white-space: nowrap;
}

.vin-loading {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--steel);
  font-size: 0.92rem;
}
.vin-loading.active { display: flex; }
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.vin-error {
  display: none;
  background: #FDF0EF;
  border: 1px solid #F5C6CB;
  color: #9B2C2C;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 16px;
  font-size: 0.9rem;
}
.vin-error.active { display: block; }

.vin-result {
  display: none;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  margin-top: 20px;
}
.vin-result.active { display: block; }
.vin-result h3 {
  color: var(--gold-dark);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.vin-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vin-detail {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 6px;
}
.vin-detail-label {
  font-size: 0.7rem;
  color: var(--mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.vin-detail-value {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
  margin-top: 2px;
}

.btn-group {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-group .btn { flex: 1; justify-content: center; min-width: 200px; }

.offer-box {
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
}
.offer-box h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.offer-box p {
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 0;
}

/* ─── HOW IT WORKS ─── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.how-step {
  text-align: center;
  padding: 24px;
  position: relative;
}
.how-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.how-step h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.how-step p {
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── BUY GRID ─── */
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.buy-item {
  background: var(--off);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--ink);
}

@media (max-width: 768px) {
  .form-card { padding: 28px 20px; }
  .step { padding: 12px 6px; font-size: 0.7rem; }
  .step-num { font-size: 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .vin-input-group { flex-direction: column; }
  .vin-detail-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .buy-grid { grid-template-columns: 1fr; }
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s var(--ease);
}
.contact-card:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.contact-card.primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--gold);
}
.contact-card.primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.2);
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card.primary .contact-icon {
  background: rgba(212,175,55,0.2);
}
.contact-icon svg { width: 22px; height: 22px; color: var(--gold); }
.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: inherit;
}
.contact-card.primary h3 { color: var(--gold); }
.contact-detail {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: inherit;
  line-height: 1.2;
}
.contact-card.primary .contact-detail { color: var(--white); }
.contact-sub {
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 300;
  margin-top: 2px;
}
.contact-card.primary .contact-sub {
  color: rgba(255,255,255,0.5);
}
.contact-image {
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.contact-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.contact-image-caption {
  padding: 16px 20px;
  background: var(--off);
  font-size: 0.88rem;
  color: var(--steel);
  font-style: italic;
  font-weight: 300;
  text-align: center;
}
.map-embed {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  height: 450px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ─── LEGAL CONTENT ─── */
.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-content h2:first-of-type { margin-top: 24px; }
.legal-content p {
  margin-bottom: 16px;
  color: var(--steel);
  font-weight: 300;
  line-height: 1.85;
}
.legal-content p strong { color: var(--ink); font-weight: 700; }

/* ─── LOGIN CARD ─── */
.login-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.login-card h1 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.login-card .subtitle {
  text-align: center;
  color: var(--steel);
  font-weight: 300;
  margin-bottom: 32px;
  font-size: 0.92rem;
}

/* ─── DASHBOARD ─── */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: rgba(212,175,55,0.3);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; }
.blog-card-body .category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card p {
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
}

/* ─── BLOG ARTICLE ─── */
.article {
  max-width: 780px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 24px;
  line-height: 1.2;
}
.article-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.article-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.article-body p {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.85;
  font-weight: 300;
}
.article-body p strong { font-weight: 700; }
.article-body h2 {
  font-size: 1.7rem;
  margin-top: 40px;
  margin-bottom: 14px;
}
.article-body h3 {
  font-size: 1.3rem;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}
.article-body ul {
  margin: 16px 0 24px;
  padding-left: 24px;
}
.article-body ul li {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}
.article-callout {
  background: var(--off);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}
.article-callout p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--ink);
}
.article-callout strong { color: var(--gold-dark); }

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-image { position: static; }
  .contact-image img { height: 320px; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-image img { height: 240px; }
  .login-card { padding: 28px 24px; }
  .dashboard-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .map-embed { height: 320px; }
}

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  padding: 28px 4px;
  border-bottom: 1px solid var(--border);
}
.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}
.faq-item p {
  color: var(--steel);
  font-weight: 300;
  line-height: 1.75;
  font-size: 1rem;
  margin: 0;
}
.faq-item p a {
  color: var(--gold-dark);
  font-weight: 700;
}
.faq-item p a:hover { color: var(--gold); }

/* ─── CASH FOR CARS BANNER ─── */
.cash-banner-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  max-width: 1100px;
  margin: 0 auto;
}
.cash-banner-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}
@media (max-width: 768px) {
  .cash-banner-image img { height: 240px; }
}

/* ─── PROPERTY MANAGEMENT PAGE ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.step-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.step-num-large {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.step-card p {
  color: var(--steel);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── BENEFIT GRID ─── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-item {
  padding: 28px 24px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}
.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.benefit-item p {
  color: var(--steel);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ─── CTA SPLIT ─── */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-split-card {
  padding: 40px 32px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
}
.cta-split-card.existing {
  background: var(--ink);
  color: var(--white);
  border-color: var(--gold);
}
.cta-split-card.existing h3 {
  color: var(--gold);
  margin-bottom: 12px;
}
.cta-split-card.existing p {
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 24px;
}
.cta-split-card.new {
  background: var(--off);
}
.cta-split-card.new h3 {
  color: var(--ink);
  margin-bottom: 12px;
}
.cta-split-card.new p {
  color: var(--steel);
  font-weight: 300;
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
}

/* ─── HOMEPAGE PROPERTY MANAGER CTA ─── */
.property-mgr-cta {
  text-align: center;
  padding: 24px 16px;
}
.property-mgr-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.property-mgr-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.property-mgr-cta p {
  color: var(--steel);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.property-mgr-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .property-mgr-buttons { flex-direction: column; }
  .property-mgr-buttons .btn { width: 100%; justify-content: center; }
}

/* ─── SUBURB PAGE FAQ SPACING FIX ─── */
/* Adds breathing room between the FAQ section title and the first question */
.suburb-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}
.suburb-content h2 + h3 {
  margin-top: 16px;
}
.suburb-content h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.suburb-content h3:first-of-type {
  margin-top: 16px;
}
.suburb-content p {
  margin-bottom: 18px;
  line-height: 1.75;
}

/* ─── LOGIN PAGE DIVIDER ─── */
.login-divider {
  border-top: 1px solid var(--border);
  margin: 28px 0 24px;
}

/* ─── CONTACT PAGE PHOTO HERO ─── */
.contact-photo-hero {
  position: relative;
  background-image: url('../images/contact-dispatcher.png?v=20260510b');
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  padding: 80px 5% 68px;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.contact-photo-hero-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  color: var(--white);
}
.contact-photo-hero-text-halo {
  display: inline-block;
  max-width: 560px;
  padding: 28px 32px;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0) 100%);
  border-radius: 8px;
}
.contact-photo-hero-inner .breadcrumbs {
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.contact-photo-hero-inner .breadcrumbs a {
  color: rgba(255,255,255,0.95);
}
.contact-photo-hero-inner h1 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.contact-photo-hero-inner p {
  color: rgba(255,255,255,0.95);
  font-size: 1.08rem;
  font-weight: 300;
  max-width: 540px;
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
  .contact-photo-hero {
    background-position: center top;
    min-height: 380px;
    padding: 56px 5% 48px;
  }
  .contact-photo-hero-text-halo {
    padding: 20px 22px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,0.1) 100%);
  }
  .contact-photo-hero-inner p {
    font-size: 0.95rem;
  }
}

/* Right column - replaces the old contact-image */
.contact-info-side {
  padding: 12px 0;
}
.contact-info-side h2 {
  color: var(--ink);
}


/* ─── REGISTER BUTTON ON LOGIN PAGE (dark on light) ─── */
.btn-register-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.btn-register-secondary:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ─── PORTAL SIGN IN NAV LINK (property-management-towing page only) ─── */
.nav-portal {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--ease);
  margin-right: 8px;
}
.nav-portal:hover {
  background: var(--gold);
  color: var(--white);
}
@media (max-width: 768px) {
  .nav-portal {
    margin-right: 0;
    margin-bottom: 8px;
    width: 100%;
    justify-content: center;
  }
}

/* ─── PORTAL: ACCESS BANNER ─── */
.access-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FEF9E7;
  border: 2px solid #F4D03F;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 24px;
  color: #7D6608;
}
.access-banner svg { flex-shrink: 0; margin-top: 2px; color: #B7950B; }
.access-banner-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: #7D6608;
}
.access-banner-sub {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: #9A7D0A;
}

/* ─── PORTAL: PASSWORD SHOW/HIDE ─── */
.password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.password-wrap input {
  flex: 1;
  padding-right: 48px;
}
.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.password-toggle:hover { color: var(--ink); background: rgba(0,0,0,0.04); }

/* ─── PORTAL: SUPPORT CARD ─── */
.support-card {
  margin-top: 32px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}
.support-card h3 {
  font-size: 1.1rem;
  margin: 0 0 14px;
  color: var(--ink);
}
.support-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.support-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--steel);
}
.support-list li svg { color: var(--gold-dark); flex-shrink: 0; }
.support-list a { color: var(--gold-dark); font-weight: 700; text-decoration: none; }
.support-list a:hover { text-decoration: underline; }

/* ─── PORTAL: PROPERTIES PAGE ─── */
.portal-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.property-card {
  position: relative;
  border: 2px solid;
  border-radius: 10px;
  padding: 22px 22px 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.property-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.main-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  color: white;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.property-card-body h3 {
  font-size: 1.25rem;
  margin: 0 0 8px;
  font-family: var(--font-display);
}
.property-address {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.property-citystate {
  margin: 0 0 14px;
  font-size: 0.85rem;
  color: var(--steel);
}
.property-card-actions {
  display: flex;
  gap: 6px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 12px;
  margin-top: 4px;
}
.property-action-btn {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.property-action-btn:hover { background: white; }
.property-action-btn.delete:hover { background: #FEE2E2; color: #991B1B; }

/* ─── PORTAL: MODAL ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal {
  background: white;
  border-radius: 12px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 { margin: 0; font-size: 1.4rem; }
.modal-close {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--steel);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.modal-close:hover { background: var(--off); color: var(--ink); }
.modal-body { padding: 22px 24px; }
.modal-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  padding: 10px 0;
}
.checkbox-row input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }

/* ─── PORTAL: EMPTY STATE ─── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border: 2px dashed var(--border);
  border-radius: 10px;
  color: var(--steel);
}
.empty-state svg { color: var(--mid); margin-bottom: 16px; }
.empty-state h3 { margin: 0 0 6px; color: var(--ink); }
.empty-state p { margin: 0 0 18px; }

/* ─── PORTAL: BUTTON VARIANTS ─── */
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover {
  background: var(--off);
  border-color: var(--ink);
}
.btn-danger {
  background: #DC2626;
  color: white;
  border: 2px solid #DC2626;
}
.btn-danger:hover { background: #B91C1C; border-color: #B91C1C; }
