/* ===== CANBERRA SMILE CENTRE — SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2f45;
  --teal: #00897b;
  --teal-bright: #00bfa5;
  --teal-pale: #e0f2f1;
  --sand: #faf8f4;
  --sand-dark: #f2ede4;
  --ivory: #fffef9;
  --charcoal: #1c2b3a;
  --slate: #4a5e72;
  --silver: #8fa3b1;
  --border: #e4e9ed;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', sans-serif;
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 40px;
  --shadow-sm: 0 2px 12px rgba(13,27,42,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,42,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.15);
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--alt { background: var(--sand); }
.section--dark { background: var(--navy); color: white; }

/* TYPOGRAPHY */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.section-label--white { color: var(--teal-bright); }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.15; color: var(--navy); margin-bottom: 16px; }
.section-title--white { color: white; }
.section-title em { font-style: italic; color: var(--teal); }
.section-title--white em { color: var(--teal-bright); }
.section-desc { font-size: 17px; color: var(--slate); line-height: 1.7; max-width: 560px; }
.section-desc--white { color: rgba(255,255,255,0.7); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--r-xl); font-family: var(--font-sans); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.25s; border: 2px solid transparent; }
.btn-primary { background: var(--teal); color: white; border-color: var(--teal); box-shadow: 0 4px 16px rgba(0,137,123,0.25); }
.btn-primary:hover { background: #00796b; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,137,123,0.35); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; }
.btn-ghost-white { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }
.btn-ghost-white:hover { border-color: white; color: white; background: rgba(255,255,255,0.08); }

/* ANNOUNCE */
.announce { background: var(--navy); color: rgba(255,255,255,0.85); text-align: center; font-size: 13px; font-weight: 500; padding: 10px 24px; }
.announce strong { color: var(--teal-bright); }
.announce a { color: var(--teal-bright); text-decoration: underline; }

/* NAV */
nav.main-nav { background: rgba(255,254,249,0.95); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; backdrop-filter: blur(10px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--teal), var(--teal-bright)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 4px 12px rgba(0,137,123,0.3); }
.logo-text-main { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--navy); line-height: 1.1; }
.logo-text-sub { font-size: 11px; color: var(--silver); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--slate); padding: 8px 14px; border-radius: var(--r-sm); transition: all 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-pale); }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; color: var(--navy); padding: 8px 16px; border-radius: var(--r-xl); border: 1.5px solid var(--border); transition: all 0.2s; }
.nav-phone:hover { border-color: var(--teal); color: var(--teal); }
.btn-book { background: var(--teal); color: white; font-size: 14px; font-weight: 600; padding: 10px 22px; border-radius: var(--r-xl); transition: all 0.25s; white-space: nowrap; box-shadow: 0 4px 16px rgba(0,137,123,0.25); }
.btn-book:hover { background: #00796b; transform: translateY(-1px); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: white; padding: 72px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(0,191,165,0.07); top: -200px; right: -100px; pointer-events: none; }
.breadcrumb { font-size: 13px; margin-bottom: 20px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 8px; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 580px; margin-bottom: 32px; }
.page-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* TRUST STRIP */
.trust-strip { background: white; border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; align-items: stretch; border-left: 1px solid var(--border); overflow-x: auto; }
.trust-item { flex: 1; min-width: 160px; display: flex; align-items: center; gap: 12px; padding: 18px 24px; border-right: 1px solid var(--border); transition: background 0.2s; }
.trust-item:hover { background: var(--teal-pale); }
.trust-item-icon { font-size: 20px; flex-shrink: 0; }
.trust-item-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); }
.trust-item-text span { font-size: 12px; color: var(--silver); }

/* CONTENT LAYOUT */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.prose h2 { font-size: 1.7rem; margin: 40px 0 14px; color: var(--navy); }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--navy); }
.prose p { color: var(--slate); margin-bottom: 18px; font-size: 15px; line-height: 1.8; }
.prose ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.prose ul li { display: flex; gap: 10px; font-size: 15px; color: var(--slate); align-items: flex-start; line-height: 1.6; }
.prose ul li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.prose a { color: var(--teal); font-weight: 500; }
.prose a:hover { text-decoration: underline; }

/* SIDEBAR */
.sticky-sidebar { position: sticky; top: 90px; }
.sidebar-card { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.sidebar-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 18px; }
.sidebar-price-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px; align-items: center; }
.sidebar-price-row:last-child { border-bottom: none; }
.sidebar-price-label { color: var(--slate); }
.sidebar-price { font-weight: 700; color: var(--teal); }
.sidebar-links { display: flex; flex-direction: column; gap: 2px; }
.sidebar-links a { font-size: 14px; color: var(--slate); font-weight: 500; display: flex; align-items: center; gap: 6px; padding: 9px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--teal); }

/* PROCESS STEPS */
.process-steps { display: flex; flex-direction: column; gap: 0; margin: 28px 0; }
.process-step { display: flex; gap: 20px; position: relative; padding-bottom: 28px; }
.process-step:last-child { padding-bottom: 0; }
.process-step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 44px; bottom: 0; width: 2px; background: var(--border); }
.process-num { width: 40px; height: 40px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.process-step h4 { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 4px; color: var(--navy); }
.process-step p { font-size: 14px; color: var(--slate); margin: 0; }

/* TYPE GRID */
.type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.type-card { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px; transition: all 0.25s; }
.type-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.type-card h4 { font-family: var(--font-serif); color: var(--teal); margin-bottom: 8px; font-size: 1rem; }
.type-card p { font-size: 13px; color: var(--slate); margin: 0; line-height: 1.6; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; background: none; border: none; font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background 0.2s; }
.faq-q:hover { background: var(--sand); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 18px; font-weight: 300; flex-shrink: 0; transition: all 0.3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 22px 18px; font-size: 14px; color: var(--slate); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: white; }

/* RELATED SERVICES */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.related-card { background: white; border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px; text-align: center; transition: all 0.25s; }
.related-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.related-card-icon { font-size: 28px; margin-bottom: 10px; }
.related-card h4 { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 4px; color: var(--navy); }
.related-card-link { font-size: 13px; color: var(--teal); font-weight: 600; }

/* FOOTER */
footer { background: #060e17; color: rgba(255,255,255,0.55); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand { font-family: var(--font-serif); font-size: 1.4rem; color: white; margin-bottom: 14px; }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-col-head { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-contact-line { display: flex; gap: 10px; font-size: 14px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-line a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-line a:hover { color: white; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* MOBILE BAR */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 1px solid var(--border); padding: 12px 20px; gap: 10px; z-index: 300; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
.mobile-bar a { flex: 1; text-align: center; padding: 13px; border-radius: 10px; font-size: 14px; font-weight: 700; }
.mobile-bar-call { border: 1.5px solid var(--teal); color: var(--teal); }
.mobile-bar-book { background: var(--teal); color: white; box-shadow: 0 4px 12px rgba(0,137,123,0.3); }
.chat-btn { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 4px 20px rgba(0,137,123,0.4); cursor: pointer; z-index: 250; border: none; transition: all 0.25s; }
.chat-btn:hover { transform: scale(1.1); background: #00796b; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 14px; }
.cta-banner h2 em { font-style: italic; color: var(--teal-bright); }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.cta-banner-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .nav-links { display: none; } .nav-phone { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
  .type-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { flex-wrap: wrap; }
  .trust-item { min-width: 50%; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  .chat-btn { bottom: 88px; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
}
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr; } .trust-item { min-width: 100%; } }
