/* =============================================
   WATERS & CO. LAWYERS — Main Stylesheet
   waterscolawyers.com.au
   ============================================= */

:root {
  --navy:      #14463A;
  --blue:      #1F6B52;
  --gold:      #B0894F;
  --gold-lt:   #F2EAD6;
  --white:     #FFFFFF;
  --offwhite:  #F7F8FA;
  --grey:      #6B7280;
  --dark:      #1F2937;
  --border:    #E5E7EB;
  --shadow:    0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg: 0 8px 40px rgba(27,58,107,0.15);
  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --font:      'Inter', 'Segoe UI', Arial, sans-serif;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--grey { background: var(--offwhite); }
.section--navy { background: var(--navy); color: var(--white); }

/* ── TYPOGRAPHY ───────────────────────────── */
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-title--white { color: var(--white); }
.section-subtitle { color: var(--grey); font-size: 1.1rem; max-width: 680px; }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  text-decoration: none; line-height: 1;
}
.btn-primary {
  background: #B0894F; color: var(--white);
  border-color: #B0894F;
}
.btn-primary:hover {
  background: #96703F; border-color: #96703F; color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(5,150,105,0.35);
}
.btn-secondary {
  background: var(--white); color: var(--navy);
  border-color: var(--white);
  font-weight: 700;
}
.btn-secondary:hover {
  background: #B0894F; color: var(--white);
  border-color: #B0894F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.35);
}
.btn-outline {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy); color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── TOP BAR ──────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 10px 0;
  font-size: 0.85rem;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar__left, .topbar__right {
  display: flex; align-items: center; gap: 20px; color: rgba(255,255,255,0.85);
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold); }
.topbar__phone {
  color: var(--gold) !important;
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; gap: 6px;
}

/* ── HEADER / NAV ─────────────────────────── */
.header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 1000;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0; height: 72px; }
.nav__logo { display: flex; flex-direction: column; }
.nav__logo-name {
  font-size: 1.3rem; font-weight: 800;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.1;
}
.nav__logo-tag {
  font-size: 0.7rem; color: var(--grey); font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  padding: 8px 14px; border-radius: 6px;
  font-weight: 500; font-size: 0.9rem; color: var(--dark);
  display: flex; align-items: center; gap: 4px;
  transition: all var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--navy); background: var(--offwhite); }
.nav__link svg { width: 14px; height: 14px; }

/* Dropdown */
.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 240px; opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: all var(--transition);
  z-index: 200;
}
/* Invisible bridge across the 8px gap so the menu doesn't close before you reach it */
.nav__dropdown::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav__item:hover .nav__dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav__dropdown-link {
  display: block; padding: 10px 16px;
  font-size: 0.875rem; color: var(--dark);
  transition: all var(--transition); border-radius: 4px; margin: 4px;
}
.nav__dropdown-link:hover { background: var(--offwhite); color: var(--navy); }
.nav__cta { margin-left: 12px; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin: 5px 0;
  transition: all var(--transition);
}

/* ── HERO ─────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2E24 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,146,42,0.2); border: 1px solid rgba(200,146,42,0.4);
  color: var(--gold); padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 520px; }
.hero__card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-lg);
}
.hero__card-title { color: var(--navy); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.hero__form { display: flex; flex-direction: column; gap: 12px; }
.hero__form input,
.hero__form select,
.hero__form textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 0.9rem;
  font-family: var(--font); color: var(--dark);
  transition: border-color var(--transition); background: var(--white);
}
.hero__form input:focus,
.hero__form select:focus,
.hero__form textarea:focus {
  outline: none; border-color: var(--blue);
}
.hero__form textarea { resize: vertical; min-height: 80px; }
.hero__form .btn { width: 100%; justify-content: center; }
.hero__triage {
  text-align: center; margin-top: 12px;
  font-size: 0.8rem; color: var(--grey);
}
.hero__triage a { color: var(--gold); font-weight: 600; }

/* ── TRUST BAR ────────────────────────────── */
.trustbar {
  background: var(--gold);
  padding: 20px 0;
}
.trustbar__inner {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px;
}
.trustbar__item {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 600; font-size: 0.9rem;
}
.trustbar__item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── SERVICES GRID ────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--offwhite);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.6rem;
}
.service-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: var(--grey); font-size: 0.9rem; margin-bottom: 20px; }
.service-card__link {
  color: var(--blue); font-weight: 600; font-size: 0.875rem;
  display: flex; align-items: center; gap: 6px;
}
.service-card__link:hover { color: var(--gold); }

/* ── WHY CHOOSE US ────────────────────────── */
.reasons-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.reason {
  display: flex; gap: 20px;
}
.reason__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--gold-lt); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.reason__body h4 { color: var(--navy); margin-bottom: 6px; }
.reason__body p { color: var(--grey); font-size: 0.9rem; }

/* ── DIVISIONS ────────────────────────────── */
.divisions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.division-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}
.division-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold); transform: translateY(-3px);
}
.division-card__icon { font-size: 2rem; margin-bottom: 14px; }
.division-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.division-card p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 16px; }
.division-card__link {
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}

/* ── CONVEYANCING CTA ─────────────────────── */
.conv-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #96703F 100%);
  border-radius: var(--radius-lg); padding: 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.conv-cta h2 { color: var(--white); margin-bottom: 8px; }
.conv-cta p { color: rgba(255,255,255,0.85); margin: 0; }
.conv-cta .btn {
  background: var(--white); color: var(--gold);
  border-color: var(--white); flex-shrink: 0;
}
.conv-cta .btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── SUBURBS ──────────────────────────────── */
.suburbs-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.suburb-tag {
  background: var(--offwhite); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.85rem; color: var(--dark);
  transition: all var(--transition);
}
.suburb-tag:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy); text-decoration: none;
}

/* ── REVIEWS ──────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow);
}
.review-card__stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.review-card__text { color: var(--grey); font-size: 0.9rem; font-style: italic; margin-bottom: 16px; }
.review-card__author { font-weight: 600; color: var(--navy); font-size: 0.875rem; }
.review-card__service { color: var(--grey); font-size: 0.8rem; }

/* ── STATS BAR ────────────────────────────── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--white); padding: 32px 24px; text-align: center;
}
.stat__number { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat__label { color: var(--grey); font-size: 0.85rem; margin-top: 6px; }

/* ── PAGE HERO ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2E24 100%);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--gold);
}
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 640px; }

/* ── URGENT BANNER ────────────────────────── */
.urgent-banner {
  background: #DC2626; color: var(--white);
  padding: 16px 24px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.urgent-banner__icon { font-size: 1.4rem; flex-shrink: 0; }
.urgent-banner strong { display: block; margin-bottom: 2px; }
.urgent-banner a { color: var(--gold-lt); font-weight: 700; text-decoration: underline; }
.urgent-banner a:hover { color: var(--white); }

/* ── FEE BOX ──────────────────────────────── */
.fee-box {
  background: var(--gold-lt); border: 2px solid var(--gold);
  border-radius: var(--radius-lg); padding: 36px;
  margin: 40px 0;
}
.fee-box h3 { color: var(--navy); margin-bottom: 20px; }
.fee-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(200,146,42,0.3);
}
.fee-row:last-child { border-bottom: none; padding-bottom: 0; }
.fee-row__label { font-weight: 500; }
.fee-row__price { font-weight: 700; color: var(--navy); font-size: 1.1rem; }

/* ── SERVICE DETAIL ───────────────────────── */
.service-list { display: flex; flex-direction: column; gap: 16px; }
.service-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--offwhite);
  border-radius: var(--radius); border-left: 4px solid var(--gold);
}
.service-item__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.service-item h4 { color: var(--navy); margin-bottom: 4px; }
.service-item p { color: var(--grey); font-size: 0.9rem; }

/* ── FAQ ──────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  width: 100%; background: var(--white);
  border: none; padding: 20px 24px;
  text-align: left; font-weight: 600; font-size: 0.95rem;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: background var(--transition);
}
.faq__q:hover { background: var(--offwhite); }
.faq__q.open { background: var(--navy); color: var(--white); }
.faq__q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); }
.faq__q.open svg { transform: rotate(180deg); }
.faq__a {
  display: none; padding: 20px 24px;
  color: var(--grey); font-size: 0.9rem; line-height: 1.7;
  background: var(--offwhite);
  border-top: 1px solid var(--border);
}
.faq__a.open { display: block; }

/* ── SIDEBAR LAYOUT ───────────────────────── */
.sidebar-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start;
}
.sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.sidebar-card h4 { color: var(--navy); margin-bottom: 16px; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.sidebar-card--gold {
  background: var(--gold); border-color: var(--gold); color: var(--white);
}
.sidebar-card--gold h4 { color: var(--white); }
.sidebar-card--gold p { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin-bottom: 16px; }
.sidebar-card--gold .btn { background: var(--white); color: var(--gold); border-color: var(--white); }
.sidebar-card--gold .btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sidebar__services h4 { color: var(--navy); margin-bottom: 12px; font-size: 0.95rem; }
.sidebar__services a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; color: var(--dark); font-size: 0.875rem;
  border-bottom: 1px solid var(--border); transition: color var(--transition);
}
.sidebar__services a:last-child { border-bottom: none; }
.sidebar__services a:hover { color: var(--gold); }
.sidebar__services a svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ── CONTACT ──────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail__icon {
  width: 44px; height: 44px; background: var(--offwhite);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.95rem; }
.contact-detail p, .contact-detail a { color: var(--grey); font-size: 0.9rem; }
.contact-detail a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 0.9rem;
  font-family: var(--font); color: var(--dark);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--grey); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); }

/* ── FEES TABLE ───────────────────────────── */
.fees-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; }
.fees-table th {
  background: var(--navy); color: var(--white);
  padding: 14px 20px; text-align: left; font-size: 0.875rem;
}
.fees-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.fees-table tr:last-child td { border-bottom: none; }
.fees-table tr:nth-child(even) td { background: var(--offwhite); }
.fees-table tr:hover td { background: var(--gold-lt); }
.price { font-weight: 700; color: var(--navy); }
.free { font-weight: 700; color: #1F6B52; }

/* ── ABOUT ────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.value-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
}
.value-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.15rem; }
.value-card p { color: var(--grey); font-size: 0.9rem; }

/* ── FOOTER ───────────────────────────────── */
.footer { background: #0D2E24; color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer__brand-name {
  font-size: 1.2rem; font-weight: 800; color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-tag { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer__brand-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer__phone { color: var(--gold) !important; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
.footer__col-title { color: var(--white); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__address { font-size: 0.875rem; line-height: 1.8; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(255,255,255,0.4); }
.footer__bottom-links a:hover { color: var(--gold); }
.footer__disclaimer {
  background: rgba(0,0,0,0.25); padding: 16px 0;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  text-align: center; line-height: 1.6;
}

/* ── SCROLL TO TOP ────────────────────────── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--gold); color: var(--white);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer;
  opacity: 0; pointer-events: none; transition: all var(--transition);
  border: none; z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ── COOKIE NOTICE ────────────────────────── */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark); color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  z-index: 2000; font-size: 0.85rem;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie.show { transform: translateY(0); }
.cookie__text a { color: var(--gold); }
.cookie__btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie__accept {
  background: var(--gold); color: var(--white);
  border: none; padding: 8px 20px; border-radius: 6px;
  cursor: pointer; font-weight: 600; font-size: 0.85rem;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 480px; }
  .divisions-grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .topbar__left { display: none; }
  .nav__menu { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-lg); padding: 16px; gap: 4px; z-index: 999; }
  .nav__menu.open { display: flex; }
  .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__dropdown { position: static; box-shadow: none; border: none; opacity: 1; pointer-events: all; transform: none; background: var(--offwhite); margin-top: 4px; }
  .hero { padding: 60px 0; }
  .divisions-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .conv-cta { flex-direction: column; text-align: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .trustbar__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .hero__inner { gap: 40px; }
}


/* ── FLOATING URGENT CALLBACK ─────────────────────────────────────*/
#urgent-float-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 900;
  background: #DC2626;
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(220,38,38,0.45);
  transition: all 0.25s ease;
  user-select: none;
  min-width: 110px;
}
#urgent-float-btn:hover {
  background: #b91c1c;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(220,38,38,0.5);
}
.ufb-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #fbbf24;
  border-radius: 50%;
  animation: ufb-pulse 1.8s infinite;
}
@keyframes ufb-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}
.ufb-icon { font-size: 1.3rem; line-height: 1; }
.ufb-text { font-size: 0.78rem; font-weight: 700; line-height: 1.2; letter-spacing: 0.02em; }

/* ── CALLBACK MODAL ───────────────────────────────────────────────*/
#callback-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}
#callback-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cbm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.cbm-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  z-index: 1;
}
#callback-modal.open .cbm-box {
  transform: translateY(0);
}
.cbm-header {
  background: linear-gradient(135deg, #14463A 0%, #0D2E24 100%);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.cbm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220,38,38,0.25);
  border: 1px solid rgba(220,38,38,0.5);
  color: #fca5a5;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.cbm-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cbm-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
.cbm-phone {
  color: #B0894F;
  font-weight: 700;
  text-decoration: none;
}
.cbm-phone:hover { text-decoration: underline; }
.cbm-close {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
  line-height: 1;
}
.cbm-close:hover { background: rgba(255,255,255,0.25); }
.cbm-body {
  padding: 0;
  overflow: hidden;
}

/* Hide Bigin's own branding bar inside modal */
.cbm-body .wform-poweredby-container { display: none !important; }

@media (max-width: 600px) {
  #callback-modal { padding: 0; align-items: flex-end; }
  .cbm-box { border-radius: 16px 16px 0 0; max-height: 92vh; overflow-y: auto; }
  .cbm-header { padding: 20px 20px 16px; }
  .cbm-title { font-size: 1.1rem; }
  #urgent-float-btn { bottom: 72px; right: 16px; }
}

/* ── BIGIN FORM STYLE OVERRIDES (match brand) ─────────────────────*/
.bigin-form-wrap .wf-parent {
  background-color: transparent !important;
  padding: 0 !important;
}
.bigin-form-wrap .wf-wrapper {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}
.bigin-form-wrap .wf-field-input:focus {
  border-color: #1F6B52 !important;
}
.bigin-form-wrap .wf-btn[data-ux-btn-type='primary'] {
  background-color: #B0894F !important;
  border-color: #B0894F !important;
  color: #fff !important;
  font-size: 1rem !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  width: 100% !important;
}
.bigin-form-wrap .wf-btn[data-ux-btn-type='primary']:hover {
  background-color: #96703F !important;
  border-color: #96703F !important;
}
.bigin-form-wrap .wf-field-mandatory .wf-field-inner::before {
  background-color: #B0894F !important;
}
.bigin-form-wrap .wf-field-input:focus,
.bigin-form-wrap .wf-field-dropdown:focus {
  border-color: #14463A !important;
  box-shadow: 0 0 0 3px rgba(27,58,107,0.15) !important;
}
.bigin-form-wrap .wf-field-error-active.wf-field .wf-field-input {
  border-color: #DC2626 !important;
}

.nav__logo{flex-direction:row;align-items:center;gap:11px}.nav__logo-seal{height:46px;width:46px;flex:0 0 auto;display:block}.nav__logo-txt{display:flex;flex-direction:column;line-height:1.18}


/* Book Online CTA (last button in the brass sidebar box) must stand out */
.sidebar-card--gold a.btn:last-of-type{background:#14463a !important;color:#f2ead6 !important;border-color:#14463a !important;box-shadow:0 6px 16px rgba(20,46,36,.28)}
.sidebar-card--gold a.btn:last-of-type:hover{background:#0d2e24 !important;color:#f2ead6 !important;border-color:#0d2e24 !important}

.footer__areas{border-top:1px solid rgba(255,255,255,.12);padding:16px 0}
.footer__areas .footer__col-title{margin-bottom:10px}
.footer__areas-links{display:flex;flex-wrap:wrap;gap:7px 16px}
.footer__areas-links a{color:rgba(255,255,255,.82);font-size:.82rem;text-decoration:underline;text-decoration-color:rgba(201,168,106,.55);text-underline-offset:3px}
.footer__areas-links a:hover{color:#fff;text-decoration-color:#c9a86a}
.footer__areas-note{color:rgba(255,255,255,.5);font-size:.78rem;margin:10px 0 0}

/* --- ORLA trust strip (why-choose differentiators + real Google reviews link) --- */
.wtrust{background:linear-gradient(160deg,#14463A,#0E3328);color:#e7ecdf;padding:46px 0}
.wtrust .wt-eye{text-align:center;color:#C9A86A;font-weight:700;font-size:12px;letter-spacing:.16em;text-transform:uppercase}
.wtrust .wt-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;max-width:1080px;margin:22px auto 0;padding:0 22px}
@media(max-width:820px){.wtrust .wt-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.wtrust .wt-grid{grid-template-columns:1fr}}
.wtrust .wt-i{background:rgba(255,255,255,.06);border:1px solid rgba(201,168,106,.25);border-radius:12px;padding:16px}
.wtrust .wt-i b{display:block;color:#F6EFDC;font-size:15.5px;margin-bottom:3px}
.wtrust .wt-i span{color:#c3ccbf;font-size:13.5px;line-height:1.5}
.wtrust .wt-rev{text-align:center;margin-top:22px}
.wtrust .wt-rev a{display:inline-block;background:#C9A86A;color:#241a06;font-weight:700;padding:11px 20px;border-radius:6px;font-size:14px;text-decoration:none}

/* ── MOBILE TOP-BAR PHONE FIX ───────────────────────────────
   Stack the phone links cleanly on small screens and never
   break a phone number mid-line (also stops horizontal overflow). */
.topbar__phone { white-space: nowrap; }
@media (max-width: 768px) {
  .topbar { padding: 8px 0; }
  .topbar__inner { justify-content: center; flex-wrap: wrap; gap: 6px 14px; }
  .topbar__right { flex-wrap: wrap; justify-content: center; gap: 6px 14px; width: 100%; }
  .topbar__phone { font-size: 0.8rem; margin-left: 0 !important; }
}
@media (max-width: 380px) { .topbar__phone { font-size: 0.74rem; } }
/* trust-strip phone line: keep each number intact */
.wtrust .wt-phone a { white-space: nowrap; }

/* ── MOBILE HERO FIX: single column + no horizontal overflow ── */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__badge { white-space: normal; max-width: 100%; }
  .hero h1 { overflow-wrap: anywhere; }
}
