/* ============================================================
   Anti Wrinkle Melbourne,  Shared Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #0d2545;
  --navy-light: #1a3a6b;
  --gold:     #c4922a;
  --gold-light: #e8b84b;
  --white:    #ffffff;
  --off-white:#f7f8fb;
  --grey:     #e4e8f0;
  --text:     #1e2d3d;
  --text-muted: #5a6a7a;
  --radius:   6px;
  --shadow:   0 2px 16px rgba(13,37,69,0.10);
  --font:     -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.6rem; }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 0.5rem; margin-top: 2.5rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
p  { margin-bottom: 1rem; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); text-decoration: none; }

.btn-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.88rem;
  text-align: center;
}

.topbar a {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1rem;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-logo {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.site-logo span { color: var(--gold-light); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone a {
  color: var(--gold-light);
  font-size: 0.9rem;
  white-space: nowrap;
  font-weight: 700;
  text-decoration: none;
}

.header-phone a:hover { color: var(--white); }

.header-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.header-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--gold-light); }

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  color: var(--white);
  padding: 60px 0 70px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.hero-text h1 { color: var(--white); }
.hero-text h1 span { color: var(--gold-light); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-top: 0.5rem;
  margin-bottom: 0;
  max-width: 520px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust span::before { content: "✓"; color: var(--gold-light); font-weight: 700; }

/* ---------- Quote Form ---------- */
.quote-form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.quote-form-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.form-group { margin-bottom: 12px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--grey);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.form-submit:hover { background: var(--navy-light); }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--grey);
  padding: 16px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Section Layouts ---------- */
.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 { margin-top: 0; }

.section-title .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* ---------- Service Content ---------- */
.service-block {
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 2.5rem;
}

.service-block h2 { margin-top: 0; }

/* ---------- Service Cards Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--grey);
  border-radius: 8px;
  padding: 22px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.service-card h3 { margin-bottom: 0.4rem; color: var(--navy); }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ---------- Practitioner Box ---------- */
.practitioner-box {
  background: var(--white);
  border: 1.5px solid var(--grey);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.practitioner-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Areas Served Grid ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 1.5rem;
}

.area-pill {
  background: var(--off-white);
  border: 1.5px solid var(--grey);
  border-radius: 30px;
  padding: 8px 14px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.area-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  text-decoration: none;
}

/* ---------- FAQ Section ---------- */
.faq-list { margin-top: 1.5rem; }

.faq-item {
  border-bottom: 1px solid var(--grey);
  padding: 20px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h2 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.faq-item p { color: var(--text-muted); margin-bottom: 0; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  color: var(--white);
  text-align: center;
  padding: 56px 20px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 1.8rem; }

.cta-phone-big {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  display: block;
  margin-bottom: 1.2rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #071929;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.footer-brand span { color: var(--gold-light); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.8rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  max-width: 700px;
  margin-top: 12px;
  line-height: 1.5;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--grey);
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin: 0; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item strong { display: block; color: var(--navy); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

.ahpra-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196,146,42,0.1);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1rem;
}

/* ---------- Afterpay Badge ---------- */
.afterpay-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .site-header .container { justify-content: space-between; }
  .hero { padding: 40px 0 48px; }
  .section { padding: 44px 0; }
  .trust-bar .container { gap: 20px; }
}

@media (max-width: 480px) {
  .btn-cta-group { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .practitioner-stats { gap: 16px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Image additions ---- */
.hero-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.service-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
  display: block;
}

.practitioner-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.feature-strip {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.feature-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.page-hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,37,69,0.84);
}

.page-hero-bg .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .feature-strip { height: 200px; }
}
