/* ============================================================
   TEAM 2 PLUS — Global Stylesheet
   Brand: Navy #1B2A4A | Gold #C9A84C | White #FFFFFF
   ============================================================ */

:root {
  --navy: #1B2A4A;
  --navy-dark: #111d34;
  --navy-light: #253660;
  --gold: #C9A84C;
  --gold-light: #e0c278;
  --gold-dark: #a88830;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --light-grey: #f0f2f5;
  --mid-grey: #8a9ab5;
  --text: #1a1a2e;
  --text-muted: #5a6a84;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(27,42,74,0.10);
  --shadow-lg: 0 8px 40px rgba(27,42,74,0.16);
  --transition: 0.25s ease;
  --max-w: 1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { font-size: 1rem; color: var(--text-muted); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 6px; font-size: 0.95rem;
  font-weight: 600; font-family: var(--font-body);
  transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  letter-spacing: 0.02em;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.35); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { display: flex; width: 100%; margin-bottom: 12px; }

/* ---- NAV ---- */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.nav-logo img { height: 92px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 0.88rem; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.09); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; font-weight: 700 !important; padding: 10px 20px !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2a3f6e 100%);
  position: relative; padding: 120px 0 80px;
}
.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-content { position: relative; z-index: 1; max-width: 700px; }
.hero-tag { display: inline-block; background: rgba(201,168,76,0.18); color: var(--gold); border: 1px solid rgba(201,168,76,0.35); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.hero-brand-name { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); letter-spacing: 0.01em; margin-bottom: 8px; line-height: 1.1; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 560px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-proof { display: flex; align-items: center; gap: 0; }
.proof-item { display: flex; flex-direction: column; padding: 0 28px; }
.proof-item:first-child { padding-left: 0; }
.proof-num { font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.proof-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ---- TRUST STRIP ---- */
.trust-strip { background: var(--navy); padding: 20px 0; border-bottom: 3px solid var(--gold); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 16px; color: var(--white); font-size: 0.88rem; font-weight: 600; border-right: 1px solid rgba(255,255,255,0.1); }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ---- SECTIONS ---- */
.section { padding: 96px 0; }
.section-light { background: var(--off-white); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-tag { display: inline-block; color: var(--gold-dark); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid rgba(27,42,74,0.08);
  transition: all var(--transition); display: block;
  box-shadow: var(--shadow);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 24px; height: 24px; color: var(--gold-dark); }
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; margin-bottom: 16px; }
.card-link { color: var(--gold-dark); font-size: 0.85rem; font-weight: 600; }

/* ---- CTA SECTION ---- */
.cta-section { background: var(--navy); padding: 96px 0; }
.cta-inner { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.cta-text h2 { color: var(--white); margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 24px; }
.cta-text strong { color: var(--gold); }
.cta-bullets { list-style: none; }
.cta-bullets li { color: rgba(255,255,255,0.8); padding: 6px 0; font-size: 0.95rem; }
.cta-card { background: var(--white); border-radius: var(--radius); padding: 36px 32px; }
.cta-card-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.cta-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 28px; }
.cta-hours { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; }

/* ---- ABOUT STRIP ---- */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-strip-text .section-tag { display: block; margin-bottom: 12px; }
.about-strip-text h2 { color: var(--navy); margin-bottom: 20px; }
.about-strip-text p { margin-bottom: 16px; font-size: 1rem; }
.about-strip-text .btn { margin-top: 12px; }
.about-strip-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(27,42,74,0.06); border-top: 3px solid var(--gold); }
.stat-num { display: block; font-size: 2rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-top: 6px; display: block; }

/* ---- CHECKLIST TEASER ---- */
.checklist-teaser { background: linear-gradient(135deg, var(--navy) 0%, #253660 100%); padding: 72px 0; }
.checklist-inner { display: flex; align-items: center; gap: 40px; }
.checklist-icon { font-size: 3.5rem; flex-shrink: 0; }
.checklist-teaser h2 { color: var(--white); margin-bottom: 12px; }
.checklist-teaser p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 24px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 140px 0 72px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a { color: var(--gold); font-size: 0.82rem; font-weight: 600; }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* ---- ABOUT PAGE ---- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 96px 0; }
.about-intro-text h2 { color: var(--navy); margin-bottom: 20px; }
.about-intro-text p { margin-bottom: 16px; }
.about-img-wrap { border-radius: var(--radius); overflow: hidden; background: var(--light-grey); min-height: 360px; display: flex; align-items: center; justify-content: center; border: 4px solid var(--gold); }
.about-img-placeholder { text-align: center; padding: 40px; color: var(--text-muted); }
.about-img-placeholder span { font-size: 4rem; display: block; margin-bottom: 16px; }
.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 96px; }
.credential-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid rgba(27,42,74,0.08); box-shadow: var(--shadow); text-align: center; }
.credential-icon { font-size: 2rem; margin-bottom: 12px; }
.credential-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.credential-card p { font-size: 0.88rem; }

/* ---- SERVICES PAGE ---- */
.service-detail { padding: 96px 0; }
.service-detail + .service-detail { padding-top: 0; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-text h2 { color: var(--navy); margin-bottom: 16px; }
.service-row-text p { margin-bottom: 16px; }
.service-list { margin-top: 20px; }
.service-list li { padding: 8px 0; padding-left: 20px; position: relative; font-size: 0.95rem; color: var(--text-muted); }
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }
.service-visual { background: var(--off-white); border-radius: var(--radius); min-height: 280px; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(27,42,74,0.07); }
.service-visual-inner { text-align: center; padding: 32px; }
.service-visual-inner .icon { font-size: 3.5rem; margin-bottom: 16px; }
.service-visual-inner h3 { color: var(--navy); font-size: 1.1rem; }

/* ---- PRICING PAGE ---- */
.pricing-section { padding: 96px 0; }
.pricing-intro { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.pricing-intro h2 { color: var(--navy); margin-bottom: 16px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.pricing-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; border: 1px solid rgba(27,42,74,0.08); box-shadow: var(--shadow); }
.pricing-card.featured { border: 2px solid var(--gold); position: relative; }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 0.72rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.pricing-tag { font-size: 0.72rem; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.pricing-card h3 { color: var(--navy); margin-bottom: 12px; }
.pricing-from { font-size: 0.8rem; color: var(--text-muted); }
.pricing-price { font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-divider { height: 1px; background: var(--light-grey); margin: 24px 0; }
.pricing-includes { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-features { list-style: none; }
.pricing-features li { padding: 7px 0; padding-left: 20px; position: relative; font-size: 0.9rem; color: var(--text-muted); }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }
.pricing-note { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25); border-radius: var(--radius-sm); padding: 20px 24px; text-align: center; }
.pricing-note p { font-size: 0.92rem; color: var(--text); }
.pricing-note strong { color: var(--navy); }

/* ---- CHECKLIST PAGE ---- */
.checklist-page { padding: 72px 0 96px; }
.checklist-container { max-width: 800px; margin: 0 auto; }
.checklist-intro { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); margin-bottom: 32px; border-left: 4px solid var(--gold); }
.checklist-intro h2 { color: var(--navy); margin-bottom: 12px; font-size: 1.5rem; }
.checklist-intro p { font-size: 0.95rem; }
.checklist-section { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); margin-bottom: 20px; border: 1px solid rgba(27,42,74,0.07); }
.checklist-section h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: flex; align-items: center; gap: 10px; }
.checklist-section h3 .icon { font-size: 1.2rem; }
.checklist-items { display: flex; flex-direction: column; gap: 10px; }
.checklist-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(27,42,74,0.07); background: var(--off-white); font-size: 0.9rem; color: var(--text-muted); }
.checklist-item input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--navy); cursor: pointer; }
.checklist-note { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-sm); padding: 14px 18px; margin-top: 16px; font-size: 0.85rem; color: var(--text-muted); }
.upload-box { background: var(--off-white); border: 2px dashed rgba(27,42,74,0.2); border-radius: var(--radius); padding: 32px; text-align: center; margin-top: 32px; }
.upload-box h3 { color: var(--navy); margin-bottom: 8px; }
.upload-box p { font-size: 0.9rem; margin-bottom: 20px; }

/* ---- CONTACT PAGE ---- */
.contact-page { padding: 80px 0 96px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { color: var(--navy); margin-bottom: 20px; }
.contact-info > p { margin-bottom: 32px; font-size: 1.05rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--gold-dark); }
.contact-detail-text strong { display: block; color: var(--navy); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text p { color: var(--text-muted); font-size: 0.95rem; }
.contact-detail-text a:hover { color: var(--navy); }
.contact-hours { background: var(--navy); border-radius: var(--radius); padding: 24px; margin-top: 32px; }
.contact-hours h4 { color: var(--gold); margin-bottom: 12px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hours-row:last-child { border-bottom: none; }
.hours-row span { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid rgba(27,42,74,0.07); }
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 28px; font-size: 0.9rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(27,42,74,0.15);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text); background: var(--white); transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; margin-top: 8px; font-size: 1rem; padding: 16px; }
.form-disclaimer { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ---- BADGES STRIP ---- */
.badges-strip { background: var(--off-white); border-top: 1px solid rgba(27,42,74,0.08); border-bottom: 1px solid rgba(27,42,74,0.08); padding: 32px 0; }
.badges-label { text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
.badges-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.badges-row img { height: 52px; width: auto; object-fit: contain; filter: grayscale(20%); opacity: 0.88; transition: all var(--transition); }
.badges-row img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

/* ---- ABOUT HEADSHOT ---- */
.about-img-wrap img.headshot { width: 100%; height: 100%; object-fit: cover; object-position: center top; min-height: 400px; display: block; }
.about-img-wrap { overflow: hidden; border-radius: var(--radius); border: 4px solid var(--gold); }

/* ---- HERO WITH BG IMAGE ---- */
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,29,52,0.92) 0%, rgba(27,42,74,0.85) 60%, rgba(37,54,96,0.75) 100%); }
.hero-content { position: relative; z-index: 2; }

/* ---- SERVICE IMAGES ---- */
.service-visual.has-img { padding: 0; overflow: hidden; min-height: 300px; }
.service-visual.has-img img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; border-radius: var(--radius); }

/* ---- FOOTER ---- */
.footer { background: var(--navy-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 100px; margin-bottom: 16px; background: white; padding: 10px 14px; border-radius: 8px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }
.footer-abn { color: rgba(255,255,255,0.35) !important; font-size: 0.78rem !important; margin-top: 12px; }
.footer-links h4, .footer-contact h4 { color: var(--gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-hours { color: rgba(255,255,255,0.45) !important; font-size: 0.8rem !important; margin-top: 12px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.8rem; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-strip { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 20px 24px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-cta { margin-top: 8px; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-btns { flex-direction: column; }
  .hero-proof { flex-wrap: wrap; gap: 20px; }
  .proof-divider { display: none; }
  .proof-item { padding: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .services-grid { grid-template-columns: 1fr; }
  .about-intro, .service-row, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-row.reverse { direction: ltr; }
  .about-strip-stats { grid-template-columns: 1fr 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .checklist-inner { flex-direction: column; text-align: center; }
  .cta-inner { text-align: center; }
}
