/* ============================================================
   MINDFUL TALK THERAPY SCOTLAND
   mindfultalktherapyscotland.com
   Warm teal / sage green / soft white theme
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --teal:        #3aa8a0;
  --teal-dark:   #2a8880;
  --teal-light:  #eaf6f5;
  --teal-mid:    #b2deda;
  --sage:        #8db5b0;
  --warm:        #f9f6f0;
  --warm-dark:   #f2ede4;
  --peach:       #f4a261;
  --navy:        #1e3a3a;
  --navy-dark:   #162d2d;
  --text:        #4a5a58;
  --text-dark:   #2c3e3c;
  --white:       #ffffff;
  --grey-bg:     #f8faf9;
  --grey-light:  #f1f7f6;
  --grey-border: #d8e8e6;
  --font-body:   'Lato', sans-serif;
  --font-head:   'Lato', sans-serif;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 2px 18px rgba(0,0,0,.07);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.11);
  --max-w:       1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.75; background: var(--white); font-size: 16px; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dark); text-decoration: underline; }
ul   { padding-left: 1.4rem; }
li   { margin-bottom: .4rem; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--navy-dark); line-height: 1.22; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); margin-bottom: .9rem; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); margin-bottom: .6rem; }
h4 { font-size: 1.05rem; margin-bottom: .45rem; }
p  { margin-bottom: 1rem; color: var(--text); }

.eyebrow { display: inline-block; color: var(--teal); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: .75rem; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 13px 32px; border-radius: 50px; font-weight: 700; font-size: .96rem; cursor: pointer; border: 2px solid transparent; transition: all .22s ease; text-decoration: none !important; white-space: nowrap; font-family: var(--font-body); }
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(58,168,160,.35); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-white { background: #fff; color: var(--teal-dark); border-color: #fff; }
.btn-white:hover { background: var(--teal-light); }
.btn-sm { padding: 8px 20px; font-size: .86rem; }

/* ── NOTICE / CHIP ── */
.notice { background: var(--teal-light); border-left: 4px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; margin: 1.5rem 0; font-size: .93rem; color: var(--navy-dark); }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.chip { background: var(--teal-light); color: var(--teal-dark); padding: 5px 14px; border-radius: 50px; font-size: .8rem; font-weight: 700; border: 1px solid var(--teal-mid); }

/* ── TOP BAR ── */
.top-bar { background: var(--navy-dark); color: rgba(255,255,255,.72); font-size: .81rem; padding: 7px 0; }
.top-bar .tb-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.top-bar a { color: var(--teal-mid); }
.top-bar a:hover { color: #fff; text-decoration: none; }
.top-bar-right { display: flex; gap: 1.6rem; }
@media(max-width:640px){ .top-bar-right { display: none; } }

/* ── HEADER / NAV ── */
.site-header { background: #fff; box-shadow: 0 1px 0 var(--grey-border); position: sticky; top: 0; z-index: 999; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.site-logo { font-size: 1.12rem; font-weight: 900; color: var(--teal); letter-spacing: -.2px; line-height: 1.2; }
.site-logo small { display: block; font-size: .68rem; font-weight: 400; color: var(--text); letter-spacing: .2px; }
.site-logo:hover { text-decoration: none; color: var(--teal-dark); }
.nav-links { display: flex; gap: 1.4rem; list-style: none; padding: 0; margin: 0; align-items: center; }
.nav-links a { color: var(--text-dark); font-weight: 600; font-size: .87rem; padding: 4px 0; border-bottom: 2px solid transparent; transition: all .2s; }
.nav-links a:hover { color: var(--teal); text-decoration: none; border-bottom-color: var(--teal); }
.nav-links .nav-cta a { background: var(--teal); color: #fff; padding: 9px 22px; border-radius: 50px; font-size: .84rem; border-bottom: none; }
.nav-links .nav-cta a:hover { background: var(--teal-dark); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 25px; height: 2px; background: var(--navy-dark); border-radius: 2px; transition: all .3s; }
@media(max-width:960px){
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 20px 24px 24px; box-shadow: var(--shadow-lg); gap: .65rem; border-top: 1px solid var(--grey-border); z-index: 998; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: var(--navy-dark); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(22,45,45,.82) 0%, rgba(22,45,45,.55) 55%, rgba(22,45,45,.25) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 90px 0; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.12; margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--teal-mid); }
.hero .hero-sub { color: rgba(255,255,255,.88); font-size: 1.1rem; max-width: 580px; margin-bottom: 2.2rem; line-height: 1.75; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.8rem; flex-wrap: wrap; margin-top: 2.5rem; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: rgba(255,255,255,.78); }
.hero-trust-item .check { color: var(--teal-mid); font-size: 1rem; }

/* ── INFO BAR ── */
.info-bar { background: #fff; border-bottom: 1px solid var(--grey-border); padding: 26px 0; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.info-bar-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; align-items: center; }
@media(max-width:920px){ .info-bar-inner { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px){ .info-bar-inner { grid-template-columns: 1fr; } }
.info-bar-brand h3 { font-size: 1rem; color: var(--navy-dark); margin-bottom: .15rem; }
.info-bar-brand p { font-size: .8rem; color: var(--text); margin: 0; }
.info-item { }
.info-item-label { display: block; font-size: .69rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 3px; }
.info-item-value { font-size: .9rem; color: var(--text-dark); font-weight: 500; }
.info-item-value a { color: var(--text-dark); }
.info-item-value a:hover { color: var(--teal); text-decoration: none; }
.certs-row { display: flex; flex-wrap: wrap; gap: 5px; margin-top: .4rem; }
.cert-badge { background: var(--teal-light); color: var(--teal-dark); font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 50px; border: 1px solid var(--teal-mid); }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--warm); }
.section-alt2 { background: var(--grey-bg); }
.section-navy { background: var(--navy-dark); }
.section-teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-top: .4rem; }
.section-header p { color: var(--text); font-size: 1.02rem; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); padding: 30px; transition: all .25s ease; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transition: transform .3s ease; transform-origin: left; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card-icon { width: 54px; height: 54px; background: var(--teal-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.service-card h3 { color: var(--navy-dark); font-size: 1.08rem; margin-bottom: .5rem; }
.service-card p { color: var(--text); font-size: .91rem; margin-bottom: 1.2rem; }
.service-card-link { color: var(--teal); font-weight: 700; font-size: .86rem; }
.service-card-link:hover { text-decoration: underline; }

/* ── FEATURE ROW ── */
.feature-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.feature-chip { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 18px 20px; }
.feature-chip-icon { width: 42px; height: 42px; background: var(--teal-light); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.feature-chip h4 { font-size: .92rem; color: var(--navy-dark); margin-bottom: .2rem; }
.feature-chip p { font-size: .81rem; color: var(--text); margin: 0; }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-size: 2.8rem; font-weight: 900; color: var(--teal-mid); line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .87rem; color: rgba(255,255,255,.72); }

/* ── SPLIT LAYOUT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media(max-width:800px){ .split { grid-template-columns: 1fr; gap: 40px; } }
.split-img-box { border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; background: var(--teal-light); position: relative; }
.split-img-box img { width: 100%; height: 100%; object-fit: cover; }

/* ── WHY LIST ── */
.why-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.6rem; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-icon { width: 44px; height: 44px; background: var(--teal); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.15rem; flex-shrink: 0; }
.why-item h3 { font-size: 1rem; margin-bottom: .2rem; }
.why-item p { font-size: .88rem; color: var(--text); margin: 0; }

/* ── THERAPIST CARDS ── */
.therapists-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.therapist-card { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .25s; }
.therapist-card:hover { box-shadow: var(--shadow-lg); }
.therapist-photo { width: 100%; height: 280px; object-fit: cover; object-position: center top; display: block; }
.therapist-body { padding: 26px 28px; }
.therapist-body h3 { color: var(--navy-dark); font-size: 1.2rem; margin-bottom: .2rem; }
.t-role { color: var(--teal); font-size: .82rem; font-weight: 700; display: block; margin-bottom: .9rem; text-transform: uppercase; letter-spacing: .5px; }
.t-creds { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.t-cred-badge { background: var(--teal-light); color: var(--teal-dark); font-size: .72rem; font-weight: 700; padding: 4px 11px; border-radius: 50px; border: 1px solid var(--teal-mid); }
.therapist-body p { font-size: .9rem; color: var(--text); margin-bottom: .8rem; }
.t-specs-list { list-style: none; padding: 0; margin: .8rem 0; }
.t-specs-list li { font-size: .87rem; color: var(--text); padding: 4px 0; display: flex; gap: 7px; align-items: flex-start; }
.t-specs-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.t-contact-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1rem; }

/* ── THERAPIST BIO PAGE ── */
.bio-hero { background: var(--warm); padding: 72px 0; border-bottom: 1px solid var(--grey-border); }
.bio-grid { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: start; }
@media(max-width:860px){ .bio-grid { grid-template-columns: 1fr; } }
.bio-photo-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: sticky; top: 90px; }
.bio-photo-wrap img { width: 100%; display: block; }
.bio-cred-list { list-style: none; padding: 0; margin: 0; }
.bio-cred-list li { padding: 10px 14px; border-bottom: 1px solid var(--grey-border); font-size: .88rem; display: flex; gap: 10px; align-items: flex-start; }
.bio-cred-list li:last-child { border-bottom: none; }
.bio-cred-list li::before { content: '🏆'; flex-shrink: 0; }

/* ── APPROACH CARDS ── */
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 20px; }
.approach-card { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow .2s; }
.approach-card:hover { box-shadow: var(--shadow-lg); }
.ap-icon { font-size: 2rem; margin-bottom: .9rem; }
.approach-card h3 { font-size: 1rem; margin-bottom: .15rem; }
.ap-sub { font-size: .74rem; color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .7rem; display: block; }
.ap-list { list-style: none; padding: 0; margin-top: .6rem; }
.ap-list li { font-size: .83rem; color: var(--text); padding: 3px 0; display: flex; gap: 6px; }
.ap-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.step-card { text-align: center; padding: 32px 22px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--grey-border); }
.step-num { width: 54px; height: 54px; background: var(--teal); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.2rem; margin: 0 auto 1.2rem; }
.step-card h3 { font-size: 1rem; margin-bottom: .45rem; }
.step-card p { font-size: .87rem; color: var(--text); margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(295px, 1fr)); gap: 24px; }
.testimonial { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--grey-border); padding: 28px; box-shadow: var(--shadow); position: relative; }
.testimonial::before { content: '"'; font-size: 5rem; color: var(--teal); opacity: .1; position: absolute; top: -14px; left: 18px; line-height: 1; font-family: Georgia, serif; }
.stars { color: #f59e0b; margin-bottom: .8rem; font-size: .94rem; }
.t-text { font-style: italic; color: var(--text); font-size: .92rem; margin-bottom: 1rem; line-height: 1.7; }
.t-name { font-weight: 700; color: var(--navy-dark); font-size: .88rem; }
.t-loc { font-size: .79rem; color: var(--text); }

/* ── MAP EMBED ── */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 1.5rem; }
.map-wrap iframe { width: 100%; height: 340px; border: none; display: block; }

/* ── AREAS GRID ── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 10px; list-style: none; padding: 0; }
.areas-grid li { margin: 0; }
.areas-grid a { display: block; background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 11px 15px; color: var(--text-dark); font-weight: 500; font-size: .87rem; text-align: center; transition: all .2s; }
.areas-grid a:hover { border-color: var(--teal); color: var(--teal); box-shadow: var(--shadow); text-decoration: none; }

/* ── FAQ ── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-weight: 600; color: var(--navy-dark); font-size: .95rem; gap: 1rem; }
.faq-icon { color: var(--teal); font-size: 1.4rem; flex-shrink: 0; transition: transform .3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 0 18px; color: var(--text); font-size: .92rem; display: none; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); padding: 84px 0; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: .8rem; }
.cta-band p  { color: rgba(255,255,255,.92); max-width: 540px; margin: 0 auto 2rem; font-size: 1.04rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media(max-width:768px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-box { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; font-size: .86rem; color: var(--navy-dark); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 15px; border: 1.5px solid var(--grey-border); border-radius: var(--radius); font-family: var(--font-body); font-size: .94rem; color: var(--text-dark); background: #fff; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { min-height: 112px; resize: vertical; }
.ci-list { display: flex; flex-direction: column; gap: 1.4rem; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.1rem; flex-shrink: 0; }
.ci-label { font-size: .7rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.ci-val { font-size: .91rem; color: var(--text-dark); }
.ci-val a { color: var(--text-dark); }
.ci-val a:hover { color: var(--teal); text-decoration: none; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--warm); border-bottom: 1px solid var(--grey-border); padding: 11px 0; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 5px; font-size: .83rem; align-items: center; }
.breadcrumb li { color: var(--text); }
.breadcrumb li + li::before { content: '›'; margin-right: 5px; color: var(--sage); }
.breadcrumb a { color: var(--teal); }
[aria-current="page"] { color: var(--text); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { position: relative; padding: 0; min-height: 360px; display: flex; align-items: center; overflow: hidden; }
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(22,45,45,.88) 0%, rgba(22,45,45,.6) 60%, rgba(22,45,45,.3) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 68px 0 56px; max-width: 700px; }
.page-hero-content h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.page-hero-content p  { color: rgba(255,255,255,.85); max-width: 600px; font-size: 1.03rem; }
.hero-badge { display: inline-block; background: rgba(58,168,160,.25); color: var(--teal-mid); padding: 5px 15px; border-radius: 50px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: .9rem; border: 1px solid rgba(58,168,160,.4); }
.ph-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* ── CONTENT + SIDEBAR ── */
.content-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 54px; align-items: start; }
@media(max-width:920px){ .content-wrap { grid-template-columns: 1fr; } .sidebar { position: static !important; } }
.content-main h2 { margin-top: 2rem; color: var(--navy-dark); }
.content-main h3 { color: var(--navy-dark); margin-top: 1.5rem; }
.sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 18px; }
.sidebar-cta { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); border-radius: var(--radius-lg); padding: 26px; text-align: center; }
.sidebar-cta h4 { color: #fff; margin-bottom: .6rem; font-size: 1.05rem; }
.sidebar-cta p { color: rgba(255,255,255,.88); font-size: .86rem; margin-bottom: 1.2rem; }
.sidebar-card { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); }
.sidebar-card h4 { color: var(--navy-dark); margin-bottom: .9rem; font-size: .97rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
.hours-table tr { border-bottom: 1px solid var(--grey-border); }
.hours-table td { padding: 8px 4px; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--teal-dark); }
.svc-list { list-style: none; padding: 0; }
.svc-list li { padding: 5px 0; font-size: .87rem; display: flex; gap: 7px; }
.svc-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.68); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 42px; }
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: #fff; font-size: .92rem; margin-bottom: 1rem; font-weight: 700; }
.footer-col p  { font-size: .85rem; line-height: 1.72; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul a { color: rgba(255,255,255,.6); font-size: .85rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--teal-mid); text-decoration: none; }
.footer-logo { font-size: 1.1rem; font-weight: 900; color: #fff; margin-bottom: .7rem; }
.footer-logo span { color: var(--teal-mid); }
.footer-nap { font-size: .84rem; line-height: 2.1; margin-top: .8rem; }
.footer-certs { display: flex; flex-wrap: wrap; gap: 5px; margin-top: .8rem; }
.footer-cert { background: rgba(58,168,160,.18); border: 1px solid rgba(58,168,160,.35); color: var(--teal-mid); font-size: .69rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 44px; padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.38); }
.footer-bottom a:hover { color: var(--teal-mid); }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 4px 20px rgba(0,0,0,.28); z-index: 9999; transition: transform .2s; text-decoration: none !important; }
.wa-float:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media(max-width:640px){
  .section { padding: 58px 0; }
  .hero-btns, .cta-btns, .ph-btns { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 36px; }
}
