/* ============================================================
   Blackpool Surveyors — Main Stylesheet
   https://blackpoolsurveyors.com
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:       #0d2b4e;
  --navy-dark:  #091d36;
  --gold:       #c9a84c;
  --gold-light: #e0bb6e;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --light-grey: #e8ecf0;
  --mid-grey:   #6c7a8d;
  --dark-grey:  #2d3748;
  --text:       #1a2433;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(13,43,78,.12);
  --shadow-lg:  0 8px 40px rgba(13,43,78,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w:      1200px;
  --header-h:   72px;
}

/* ---------- Reset & Base ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter','Segoe UI',Arial,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{cursor:pointer;border:none;background:none;font:inherit}
ul,ol{list-style:none}
p{margin-bottom:1rem}
p:last-child{margin-bottom:0}

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6{
  font-family:'Inter',sans-serif;
  font-weight:700;
  line-height:1.25;
  color:var(--navy);
  margin-bottom:.75em;
}
h1{font-size:clamp(2rem,5vw,3.2rem)}
h2{font-size:clamp(1.5rem,3.5vw,2.4rem)}
h3{font-size:clamp(1.2rem,2.5vw,1.6rem)}
h4{font-size:1.15rem}
.lead{font-size:1.125rem;color:var(--mid-grey);line-height:1.8}
.text-gold{color:var(--gold)}
.text-navy{color:var(--navy)}
.text-white{color:var(--white)}
.text-centre{text-align:center}
.text-small{font-size:.875rem}

/* ---------- Layout Helpers ---------- */
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 1.5rem}
.container--narrow{max-width:860px}
.container--wide{max-width:1400px}
.section{padding:5rem 0}
.section--sm{padding:3rem 0}
.section--lg{padding:7rem 0}
.section--dark{background:var(--navy);color:var(--white)}
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4{color:var(--white)}
.section--grey{background:var(--off-white)}
.grid{display:grid;gap:2rem}
.grid-2{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.grid-4{grid-template-columns:repeat(auto-fit,minmax(200px,1fr))}
.flex{display:flex;gap:1.5rem}
.flex-centre{display:flex;align-items:center;justify-content:center}
.flex-between{display:flex;align-items:center;justify-content:space-between}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.75rem 1.75rem;border-radius:var(--radius);
  font-weight:600;font-size:.95rem;
  transition:all var(--transition);
  text-decoration:none;white-space:nowrap;
}
.btn--primary{background:var(--gold);color:var(--navy)}
.btn--primary:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 6px 20px rgba(201,168,76,.4)}
.btn--navy{background:var(--navy);color:var(--white)}
.btn--navy:hover{background:var(--navy-dark);transform:translateY(-2px);box-shadow:var(--shadow)}
.btn--outline{border:2px solid var(--gold);color:var(--gold)}
.btn--outline:hover{background:var(--gold);color:var(--navy)}
.btn--outline-white{border:2px solid var(--white);color:var(--white)}
.btn--outline-white:hover{background:var(--white);color:var(--navy)}
.btn--lg{padding:1rem 2.25rem;font-size:1.05rem}

/* ---------- Header / Navigation ---------- */
#site-header{
  position:fixed;top:0;left:0;width:100%;z-index:1000;
  height:var(--header-h);
  transition:all var(--transition);
}
#site-header.scrolled{
  background:var(--navy);
  box-shadow:0 2px 20px rgba(0,0,0,.3);
}
#site-header:not(.scrolled){
  background:rgba(13,43,78,.7);
  backdrop-filter:blur(6px);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:var(--header-h);padding:0 1.5rem;
  max-width:var(--max-w);margin:0 auto;
}
.logo{display:flex;align-items:center;gap:.75rem;text-decoration:none}
.logo-mark{
  width:42px;height:42px;border-radius:50%;
  background:var(--gold);display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;font-weight:800;color:var(--navy);flex-shrink:0;
}
.logo-text{display:flex;flex-direction:column;line-height:1.1}
.logo-name{font-size:1rem;font-weight:700;color:var(--white);letter-spacing:.02em}
.logo-sub{font-size:.65rem;color:var(--gold);font-weight:500;letter-spacing:.08em;text-transform:uppercase}
nav#main-nav{display:flex;align-items:center;gap:.25rem}
nav#main-nav a{
  color:var(--white);font-size:.9rem;font-weight:500;
  padding:.5rem .85rem;border-radius:var(--radius);
  transition:all var(--transition);position:relative;
}
nav#main-nav a:hover,nav#main-nav a.active{color:var(--gold)}
nav#main-nav a.active::after{
  content:'';position:absolute;bottom:-2px;left:.85rem;right:.85rem;
  height:2px;background:var(--gold);border-radius:2px;
}
.header-cta{margin-left:1rem}
.nav-toggle{
  display:none;flex-direction:column;gap:5px;padding:.5rem;
  background:none;border:none;cursor:pointer;
}
.nav-toggle span{
  display:block;width:24px;height:2px;background:var(--white);
  transition:all var(--transition);border-radius:2px;
}

/* ---------- Hero ---------- */
#hero{
  position:relative;min-height:100vh;
  display:flex;align-items:center;
  overflow:hidden;
  padding-top:var(--header-h);
}

/* ---- Hero Image Slider ---- */
.hero-slider{
  position:absolute;inset:0;z-index:0;
  background:var(--navy);overflow:hidden;
}
.hero-slide{
  position:absolute;inset:0;
  background-size:cover;background-position:center center;background-repeat:no-repeat;
  opacity:0;
  transition:opacity 1.4s ease-in-out;
  animation:heroZoom 22s ease-in-out infinite alternate;
  will-change:opacity,transform;
}
.hero-slide.active{
  opacity:1;
}
.hero-slide:nth-child(2){animation-delay:-5s;}
.hero-slide:nth-child(3){animation-delay:-10s;}
.hero-slide:nth-child(4){animation-delay:-15s;}
.hero-slider-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(135deg,rgba(5,15,35,.90) 0%,rgba(8,22,55,.72) 50%,rgba(5,15,35,.88) 100%);
}
/* Slider navigation dots */
.hero-slider-dots{
  position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  display:flex;gap:.65rem;z-index:10;
}
.hero-dot{
  width:10px;height:10px;border-radius:50%;
  background:rgba(255,255,255,.4);border:2px solid rgba(255,255,255,.6);
  cursor:pointer;transition:all .3s ease;padding:0;
}
.hero-dot.active,
.hero-dot:hover{
  background:var(--gold);border-color:var(--gold);transform:scale(1.25);
}
/* Legacy .hero-bg support (other pages keep static bg) */
.hero-bg{
  position:absolute;inset:0;z-index:0;
  background:var(--navy);overflow:hidden;
}
.hero-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(5,15,35,.92) 0%,rgba(8,22,55,.78) 50%,rgba(5,15,35,.90) 100%);
  z-index:1;
}
.hero-bg-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;z-index:0;
  animation:heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom{
  0%{transform:scale(1) translate(0,0)}
  100%{transform:scale(1.08) translate(-1%,-1%)}
}
.hero-particles{
  position:absolute;inset:0;z-index:2;pointer-events:none;
}
.hero-content{
  position:relative;z-index:3;
  display:grid;grid-template-columns:1fr 1fr;
  gap:3rem;align-items:start;
  width:100%;max-width:var(--max-w);margin:0 auto;padding:4rem 1.5rem 3rem;
}
.hero-text{
  padding-top:0;
  align-self:start;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(201,168,76,.25);border:1px solid rgba(201,168,76,.7);
  color:#ffe87a !important;padding:.4rem 1rem;border-radius:99px;
  font-size:.8rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  margin-bottom:1.5rem;
  text-shadow:0 1px 6px rgba(0,0,0,.5);
}
#hero .hero-text h1,
#hero h1{
  color:#ffffff !important;
  margin-bottom:1.25rem;
  text-shadow:0 2px 20px rgba(0,0,0,.8),0 1px 6px rgba(0,0,0,.6);
}
#hero .hero-text h1 .highlight,
#hero h1 .highlight{
  color:#f0c040 !important;
  text-shadow:0 2px 14px rgba(0,0,0,.6);
}
#hero .hero-text .lead,
#hero .lead{
  color:#ffffff !important;
  opacity:1 !important;
  text-shadow:0 1px 10px rgba(0,0,0,.7);
  margin-bottom:2rem;
}
.hero-ctas{display:flex;gap:1rem;flex-wrap:wrap}
.hero-trust{
  display:flex;align-items:center;gap:1.5rem;
  margin-top:2rem;flex-wrap:wrap;
}
.trust-item{
  display:flex;align-items:center;gap:.5rem;
  color:#ffffff !important;font-size:.85rem;font-weight:500;
  text-shadow:0 1px 8px rgba(0,0,0,.65);
}
.trust-icon{
  width:32px;height:32px;border-radius:50%;
  background:rgba(201,168,76,.2);display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:.9rem;flex-shrink:0;
}
.hero-form-panel{
  background:rgba(255,255,255,.97);border-radius:var(--radius-lg);
  padding:2rem;box-shadow:var(--shadow-lg);
  align-self:start;
}
.hero-form-panel h3{color:var(--navy);margin-bottom:.25rem;font-size:1.3rem}
.hero-form-panel p{color:var(--mid-grey);font-size:.875rem;margin-bottom:1.5rem}

/* ---------- Accreditation Bar ---------- */
#accreditation-bar{
  background:var(--navy-dark);padding:1rem 0;
}
.accreditation-inner{
  display:flex;align-items:center;justify-content:center;
  gap:3rem;flex-wrap:wrap;
}
.accred-item{
  display:flex;align-items:center;gap:.75rem;
  color:rgba(255,255,255,.85);font-size:.85rem;font-weight:500;
}
.accred-badge{
  background:var(--gold);color:var(--navy);
  font-weight:800;font-size:.75rem;padding:.3rem .6rem;
  border-radius:4px;letter-spacing:.05em;
}

/* ---------- Cards ---------- */
.card{
  background:var(--white);border-radius:var(--radius-lg);
  box-shadow:var(--shadow);overflow:hidden;
  transition:transform var(--transition),box-shadow var(--transition);
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.card-img{width:100%;height:220px;object-fit:cover}
.card-body{padding:1.75rem}
.card-icon{
  width:56px;height:56px;border-radius:var(--radius);
  background:linear-gradient(135deg,var(--navy),var(--navy-dark));
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:1.4rem;margin-bottom:1.25rem;
}
.card h3{margin-bottom:.5rem;font-size:1.2rem}
.card p{color:var(--mid-grey);font-size:.9rem;margin-bottom:1.25rem}
.card-link{
  color:var(--gold);font-weight:600;font-size:.875rem;
  display:inline-flex;align-items:center;gap:.35rem;
  transition:gap var(--transition);
}
.card-link:hover{gap:.6rem}

/* ---------- Service Cards ---------- */
.service-card{
  background:var(--white);border-radius:var(--radius-lg);
  border:1px solid var(--light-grey);padding:2rem;
  transition:all var(--transition);
}
.service-card:hover{
  border-color:var(--gold);
  box-shadow:0 8px 32px rgba(201,168,76,.15);
  transform:translateY(-3px);
}
.service-icon{
  width:60px;height:60px;border-radius:var(--radius);
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-dark) 100%);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:1.5rem;margin-bottom:1.5rem;
}
.service-label{
  font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;
  color:var(--gold);margin-bottom:.5rem;
}
.service-card h3{margin-bottom:.75rem}
.service-card p{color:var(--mid-grey);font-size:.9rem;margin-bottom:1.25rem}
.service-features{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1.5rem}
.service-feature{
  display:flex;align-items:center;gap:.5rem;
  font-size:.875rem;color:var(--dark-grey);
}
.service-feature::before{
  content:'✓';color:var(--gold);font-weight:700;flex-shrink:0;
}
.price-tag{
  display:inline-block;background:var(--off-white);
  border:1px solid var(--light-grey);border-radius:var(--radius);
  padding:.5rem 1rem;font-weight:700;color:var(--navy);font-size:.9rem;
}

/* ---------- Why Choose Us / Stats ---------- */
.stat-number{
  font-size:3rem;font-weight:800;color:var(--gold);
  line-height:1;margin-bottom:.25rem;
}
.stat-label{color:rgba(255,255,255,.75);font-size:.875rem}
.stats-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:2rem;text-align:center;
}

/* ---------- Testimonials ---------- */
.testimonial-card{
  background:var(--white);border-radius:var(--radius-lg);
  padding:2rem;box-shadow:var(--shadow);
  position:relative;
  border-top:4px solid var(--gold);
}
.testimonial-stars{color:#f59e0b;font-size:1rem;margin-bottom:1rem;letter-spacing:.1em}
.testimonial-text{
  font-style:italic;color:var(--dark-grey);
  margin-bottom:1.5rem;line-height:1.7;font-size:.95rem;
}
.testimonial-author{display:flex;align-items:center;gap:.75rem}
.author-avatar{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--navy),var(--gold));
  display:flex;align-items:center;justify-content:center;
  color:var(--white);font-weight:700;font-size:1rem;
  flex-shrink:0;
}
.author-name{font-weight:700;font-size:.9rem;color:var(--navy)}
.author-location{font-size:.8rem;color:var(--mid-grey)}
.testimonial-badge{
  position:absolute;top:1.5rem;right:1.5rem;
  background:var(--off-white);border-radius:4px;
  padding:.25rem .5rem;font-size:.7rem;font-weight:600;
  color:var(--mid-grey);text-transform:uppercase;letter-spacing:.05em;
}

/* ---------- Team Cards ---------- */
.team-card{
  background:var(--white);border-radius:var(--radius-lg);
  overflow:hidden;box-shadow:var(--shadow);
  transition:transform var(--transition);
}
.team-card:hover{transform:translateY(-4px)}
.team-img{width:100%;height:320px;object-fit:cover;object-position:top center}
.team-body{padding:1.75rem}
.team-name{font-size:1.2rem;font-weight:700;color:var(--navy);margin-bottom:.25rem}
.team-role{color:var(--gold);font-size:.875rem;font-weight:600;margin-bottom:.75rem}
.team-bio{color:var(--mid-grey);font-size:.875rem;line-height:1.7;margin-bottom:1rem}
.team-accred{
  display:flex;gap:.5rem;flex-wrap:wrap;
}
.accred-tag{
  background:var(--navy);color:var(--gold);
  font-size:.7rem;font-weight:700;padding:.3rem .6rem;
  border-radius:4px;letter-spacing:.05em;
}

/* ---------- FAQ Accordion ---------- */
.faq-item{
  border:1px solid var(--light-grey);border-radius:var(--radius);
  overflow:hidden;margin-bottom:.75rem;
}
.faq-question{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  padding:1.25rem 1.5rem;background:var(--white);
  font-weight:600;font-size:.95rem;color:var(--navy);
  cursor:pointer;transition:background var(--transition);
  text-align:left;gap:1rem;
}
.faq-question:hover{background:var(--off-white)}
.faq-item.open .faq-question{background:var(--navy);color:var(--white)}
.faq-icon{
  width:24px;height:24px;border-radius:50%;
  background:var(--light-grey);display:flex;align-items:center;justify-content:center;
  font-size:.8rem;flex-shrink:0;transition:all var(--transition);
}
.faq-item.open .faq-icon{background:var(--gold);color:var(--navy);transform:rotate(45deg)}
.faq-answer{
  max-height:0;overflow:hidden;
  transition:max-height .4s ease,padding var(--transition);
}
.faq-answer-inner{padding:0 1.5rem 1.25rem;color:var(--dark-grey);font-size:.9rem;line-height:1.8}
.faq-item.open .faq-answer{max-height:400px}

/* ---------- Article Inline FAQ (non-accordion) ---------- */
.article-content .faq-item{
  border:none;border-radius:0;overflow:visible;
  border-left:3px solid var(--gold);padding-left:1rem;margin-bottom:1.75rem;
}
.article-content .faq-q{
  color:var(--navy);font-size:1rem;font-weight:700;margin-top:0;margin-bottom:.5rem;
}
.article-content .faq-item p{margin-bottom:0}

/* ---------- Areas Map Section ---------- */
.area-chip{
  display:inline-flex;align-items:center;gap:.4rem;
  background:var(--white);border:1px solid var(--light-grey);
  border-radius:99px;padding:.4rem 1rem;font-size:.85rem;
  font-weight:500;color:var(--dark-grey);
  transition:all var(--transition);margin:.3rem;
}
.area-chip:hover,.area-chip.active{
  background:var(--navy);color:var(--white);border-color:var(--navy);
}
.area-chip svg,.area-chip i{color:var(--gold);font-size:.75rem}

/* ---------- Blog Cards ---------- */
.blog-card{
  background:var(--white);border-radius:var(--radius-lg);
  overflow:hidden;box-shadow:var(--shadow);
  transition:transform var(--transition),box-shadow var(--transition);
  display:flex;flex-direction:column;
}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.blog-img{width:100%;height:200px;object-fit:cover}
.blog-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.blog-tag{
  display:inline-block;background:rgba(201,168,76,.15);
  color:var(--gold);border-radius:99px;
  padding:.25rem .75rem;font-size:.75rem;font-weight:700;
  letter-spacing:.05em;text-transform:uppercase;margin-bottom:.75rem;
}
.blog-card h3{font-size:1.05rem;margin-bottom:.5rem;line-height:1.4}
.blog-card p{color:var(--mid-grey);font-size:.875rem;margin-bottom:1rem;flex:1}
.blog-meta{
  display:flex;align-items:center;gap:.75rem;
  font-size:.8rem;color:var(--mid-grey);
  border-top:1px solid var(--light-grey);padding-top:1rem;margin-top:auto;
}
.blog-meta i{color:var(--gold)}
.blog-read-link{
  color:var(--gold);font-weight:600;font-size:.875rem;
  display:inline-flex;align-items:center;gap:.35rem;
  margin-top:.75rem;
}
.blog-read-link:hover{gap:.6rem}

/* ---------- Contact Form Section ---------- */
.contact-grid{
  display:grid;grid-template-columns:1fr 1.4fr;gap:3rem;
  align-items:start;
}
.contact-info h2{margin-bottom:1rem}
.contact-detail{
  display:flex;align-items:flex-start;gap:1rem;
  margin-bottom:1.5rem;padding:1rem;
  background:var(--off-white);border-radius:var(--radius);
}
.contact-detail-icon{
  width:44px;height:44px;border-radius:var(--radius);
  background:var(--navy);display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:1rem;flex-shrink:0;
}
.contact-detail h4{font-size:.95rem;margin-bottom:.25rem}
.contact-detail p{font-size:.875rem;color:var(--mid-grey);margin:0}
.hs-form-frame{
  background:var(--white);border-radius:var(--radius-lg);
  padding:2.5rem;box-shadow:var(--shadow);
}

/* ---------- Footer ---------- */
#site-footer{
  background:var(--navy-dark);color:rgba(255,255,255,.8);
  padding:4rem 0 2rem;
}
.footer-grid{
  display:grid;grid-template-columns:1.5fr repeat(3,1fr);
  gap:3rem;margin-bottom:3rem;
}
.footer-brand{}
.footer-logo-text{
  color:var(--white);font-size:1.25rem;font-weight:700;
  margin-bottom:.5rem;
}
.footer-tagline{color:var(--gold);font-size:.8rem;font-weight:500;margin-bottom:1rem}
.footer-desc{color:rgba(255,255,255,.65);font-size:.85rem;line-height:1.7;margin-bottom:1.5rem}
.footer-accreds{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:1rem}
.footer-accred-badge{
  background:rgba(201,168,76,.2);border:1px solid rgba(201,168,76,.3);
  color:var(--gold);font-size:.7rem;font-weight:700;
  padding:.3rem .65rem;border-radius:4px;letter-spacing:.05em;
}
.footer-col h4{
  color:var(--white);font-size:.9rem;font-weight:700;
  margin-bottom:1.25rem;padding-bottom:.5rem;
  border-bottom:2px solid var(--gold);display:inline-block;
}
.footer-links{display:flex;flex-direction:column;gap:.6rem}
.footer-links a{
  color:rgba(255,255,255,.65);font-size:.875rem;
  transition:color var(--transition);
  display:flex;align-items:center;gap:.5rem;
}
.footer-links a:hover{color:var(--gold)}
.footer-links a i{font-size:.75rem;color:var(--gold)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:1.5rem;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:1rem;
}
.footer-bottom p{color:rgba(255,255,255,.5);font-size:.8rem;margin:0}
.footer-bottom-links{display:flex;gap:1.5rem}
.footer-bottom-links a{color:rgba(255,255,255,.5);font-size:.8rem;transition:color var(--transition)}
.footer-bottom-links a:hover{color:var(--gold)}

/* ---------- Breadcrumb ---------- */
.breadcrumb{
  padding:1rem 0;font-size:.85rem;
  display:flex;align-items:center;gap:.5rem;flex-wrap:wrap;
}
.breadcrumb a{color:var(--gold);font-weight:500}
.breadcrumb span{color:var(--mid-grey)}
.breadcrumb .sep{color:var(--mid-grey)}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero{
  background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%);
  padding:calc(var(--header-h) + 3rem) 0 3rem;
  text-align:center;position:relative;overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background:url('../images/blackpool-terraced-houses.jpg') center/cover;
  opacity:.08;
}
.page-hero-content{position:relative;z-index:1}
.page-hero h1{color:var(--white);margin-bottom:1rem}
.page-hero .lead{color:rgba(255,255,255,.8);max-width:640px;margin:0 auto 1.5rem}
.page-hero-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(201,168,76,.15);border:1px solid rgba(201,168,76,.35);
  color:var(--gold);padding:.4rem 1rem;border-radius:99px;
  font-size:.8rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  margin-bottom:1rem;
}

/* ---------- Section Titles ---------- */
.section-label{
  font-size:.75rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.12em;color:var(--gold);margin-bottom:.5rem;display:block;
}
.section-title{margin-bottom:.75rem}
.section-intro{color:var(--mid-grey);max-width:640px;margin:0 auto 3rem;line-height:1.8}
.text-centre .section-intro{text-align:center}

/* ---------- Scroll Animations ---------- */
.reveal{
  opacity:0;transform:translateY(30px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-left{opacity:0;transform:translateX(-40px);transition:opacity .7s ease,transform .7s ease}
.reveal-left.visible{opacity:1;transform:translateX(0)}
.reveal-right{opacity:0;transform:translateX(40px);transition:opacity .7s ease,transform .7s ease}
.reveal-right.visible{opacity:1;transform:translateX(0)}

/* ---------- Progress Bar ---------- */
#reading-progress{
  position:fixed;top:0;left:0;height:3px;
  background:var(--gold);z-index:2000;
  transition:width .1s linear;
}

/* ---------- Back to Top ---------- */
#back-to-top{
  position:fixed;bottom:2rem;right:2rem;z-index:999;
  width:44px;height:44px;border-radius:50%;
  background:var(--gold);color:var(--navy);
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;box-shadow:var(--shadow);
  opacity:0;pointer-events:none;
  transition:all var(--transition);
}
#back-to-top.visible{opacity:1;pointer-events:auto}
#back-to-top:hover{transform:translateY(-3px);background:var(--gold-light)}

/* ---------- Cookie Banner ---------- */
#cookie-banner{
  position:fixed;bottom:0;left:0;width:100%;
  background:var(--navy-dark);color:var(--white);
  padding:1rem 1.5rem;z-index:1100;
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;flex-wrap:wrap;
  transform:translateY(100%);transition:transform .4s ease;
}
#cookie-banner.show{transform:translateY(0)}
#cookie-banner p{margin:0;font-size:.85rem;color:rgba(255,255,255,.85)}
#cookie-banner .btn{font-size:.85rem;padding:.5rem 1.25rem}

/* ---------- Blog Article Page ---------- */
.article-header{
  background:linear-gradient(135deg,var(--navy-dark),var(--navy));
  padding:calc(var(--header-h) + 2rem) 0 3rem;
}
.article-tag{
  display:inline-block;background:rgba(201,168,76,.15);border:1px solid rgba(201,168,76,.3);
  color:var(--gold);border-radius:99px;padding:.3rem .9rem;
  font-size:.75rem;font-weight:700;text-transform:uppercase;margin-bottom:1rem;
}
.article-header h1{color:var(--white);max-width:760px;margin-bottom:1rem}
.article-meta{
  display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;
  color:rgba(255,255,255,.7);font-size:.85rem;
}
.article-meta i{color:var(--gold)}
.article-hero-img{
  width:100%;max-height:480px;object-fit:cover;
  border-radius:var(--radius-lg);margin-bottom:2.5rem;
}
.article-content{
  max-width:780px;margin:0 auto;
  font-size:1rem;line-height:1.85;color:var(--dark-grey);
}
.article-content h2{margin-top:2.5rem;margin-bottom:1rem;color:var(--navy)}
.article-content h3{margin-top:1.75rem;margin-bottom:.75rem;color:var(--navy)}
.article-content ul,.article-content ol{margin-left:1.5rem;margin-bottom:1.25rem}
.article-content ul{list-style:disc}
.article-content ol{list-style:decimal}
.article-content li{margin-bottom:.5rem}
.article-content blockquote{
  border-left:4px solid var(--gold);padding:1rem 1.5rem;
  background:var(--off-white);border-radius:0 var(--radius) var(--radius) 0;
  margin:1.5rem 0;font-style:italic;color:var(--dark-grey);
}
.article-content .callout{
  background:linear-gradient(135deg,var(--navy),var(--navy-dark));
  color:var(--white);border-radius:var(--radius-lg);
  padding:1.5rem 2rem;margin:2rem 0;
}
.article-content .callout h4{color:var(--gold);margin-bottom:.5rem}
.article-content .callout p{color:rgba(255,255,255,.85);margin:0}
.article-cta-box{
  background:var(--off-white);border:2px solid var(--gold);
  border-radius:var(--radius-lg);padding:2rem;margin:2.5rem 0;
  text-align:center;
}
.article-cta-box h3{color:var(--navy);margin-bottom:.5rem}
.article-cta-box p{color:var(--mid-grey);margin-bottom:1.25rem}

/* ---------- Sidebar ---------- */
.content-with-sidebar{
  display:grid;grid-template-columns:1fr 320px;gap:3rem;
  align-items:start;
}
.sidebar{}
.sidebar-widget{
  background:var(--white);border-radius:var(--radius-lg);
  padding:1.5rem;box-shadow:var(--shadow);margin-bottom:1.5rem;
}
.sidebar-widget h4{
  color:var(--navy);font-size:1rem;margin-bottom:1rem;
  padding-bottom:.5rem;border-bottom:2px solid var(--gold);
}
.sidebar-links{display:flex;flex-direction:column;gap:.5rem}
.sidebar-links a{
  color:var(--dark-grey);font-size:.875rem;
  padding:.4rem .5rem;border-radius:4px;
  transition:all var(--transition);
  display:flex;align-items:center;gap:.5rem;
}
.sidebar-links a:hover{background:var(--off-white);color:var(--gold)}
.sidebar-links a i{color:var(--gold);font-size:.8rem}

/* ---------- Map Embed ---------- */
.map-container{
  border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow);height:400px;
}
.map-container iframe{width:100%;height:100%;border:0}

/* ---------- Step Process ---------- */
.steps{display:flex;flex-direction:column;gap:0}
.step{
  display:flex;gap:1.5rem;padding-bottom:2rem;
  position:relative;
}
.step:not(:last-child)::before{
  content:'';position:absolute;left:19px;top:44px;
  bottom:0;width:2px;background:var(--light-grey);z-index:0;
}
.step-num{
  width:40px;height:40px;border-radius:50%;flex-shrink:0;
  background:var(--navy);color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.9rem;position:relative;z-index:1;
}
.step-body h4{margin-bottom:.4rem;font-size:1rem}
.step-body p{color:var(--mid-grey);font-size:.875rem;margin:0}

/* ---------- Comparison Table ---------- */
.compare-table{width:100%;border-collapse:collapse;font-size:.9rem}
.compare-table th{
  background:var(--navy);color:var(--white);
  padding:1rem;text-align:left;font-weight:600;
}
.compare-table th:first-child{border-radius:var(--radius) 0 0 0}
.compare-table th:last-child{border-radius:0 var(--radius) 0 0}
.compare-table td{
  padding:.875rem 1rem;border-bottom:1px solid var(--light-grey);
  vertical-align:middle;
}
.compare-table tr:hover td{background:var(--off-white)}
.compare-table .check{color:#22c55e;font-size:1.1rem}
.compare-table .cross{color:#ef4444;font-size:1.1rem}
.compare-table .recommended{
  background:rgba(201,168,76,.08);
}
.compare-table .rec-badge{
  background:var(--gold);color:var(--navy);
  font-size:.7rem;font-weight:700;padding:.2rem .5rem;
  border-radius:4px;margin-left:.5rem;
}

/* ---------- Utility ---------- */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}
.gap-sm{gap:.75rem}
.highlight-box{
  background:linear-gradient(135deg,rgba(201,168,76,.1),rgba(201,168,76,.05));
  border:1px solid rgba(201,168,76,.3);border-radius:var(--radius-lg);
  padding:2rem;
}
.divider{height:1px;background:var(--light-grey);margin:2rem 0}
.tag{
  display:inline-block;background:var(--off-white);border:1px solid var(--light-grey);
  color:var(--mid-grey);font-size:.75rem;font-weight:600;
  padding:.25rem .6rem;border-radius:4px;
}
.skip-link{
  position:absolute;left:-9999px;top:1rem;
  background:var(--gold);color:var(--navy);
  padding:.5rem 1rem;border-radius:var(--radius);
  font-weight:700;z-index:9999;
}
.skip-link:focus{left:1rem}

/* ============================================================
   COMPREHENSIVE RESPONSIVE DESIGN — BLACKPOOL SURVEYORS
   Breakpoints:
     XXL:  min-width 1400px (Large Desktops)
     XL:   max-width 1200px (Laptops)
     LG:   max-width 968px  (Small Laptops / Tablet Landscape)
     MD:   max-width 768px  (Tablets)
     SM:   max-width 600px  (Mobile Landscape)
     XS:   max-width 480px  (Mobile Portrait)
   ============================================================ */

/* ---------- Global Mobile Safeguards ---------- */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
* { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- XXL: Large Desktops (min-width: 1400px) ---------- */
@media (min-width: 1400px) {
  .container { max-width: 1360px; }
  #hero { min-height: 100vh; }
  .hero-content { padding: 5rem 2rem 4rem; }
}

/* ---------- XL: Laptops (max-width: 1200px) ---------- */
@media (max-width: 1200px) {
  .hero-content { gap: 2rem; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 2rem; }
}

/* ---------- LG: Small Laptops / Tablet Landscape (max-width: 968px) ---------- */
@media (max-width: 968px) {
  /* Hero: stack vertically */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem 3rem;
  }
  .hero-form-panel {
    display: block !important;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  .hero-text { text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  #hero .hero-text h1 { font-size: 2.2rem; }

  /* Grids */
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Sidebar: hide on smaller devices */
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Blog grid */
  .blog-grid-layout { grid-template-columns: repeat(2, 1fr) !important; }

  /* Areas grid */
  .areas-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Feature grid */
  .feature-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ---------- MD: Tablets (max-width: 768px) ---------- */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Base */
  html { font-size: 15px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  /* Sections */
  .section { padding: 3.5rem 0; }
  .section--sm { padding: 2.5rem 0; }
  .section--lg { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .section-intro { margin-bottom: 2rem; }

  /* Navigation */
  nav#main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle {
    display: flex;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    padding: 0.5rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
  }
  .nav-toggle span {
    width: 22px; height: 2px;
  }

  /* Hero */
  #hero { min-height: auto; padding-bottom: 2rem; }
  .hero-content { padding: 2rem 1.25rem 2.5rem; }
  #hero .hero-text h1,
  #hero h1 { font-size: 1.9rem; }
  #hero .hero-text .lead,
  #hero .lead { font-size: 1rem; }
  .hero-ctas { flex-direction: column; gap: 0.75rem; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .hero-trust { flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
  .hero-badge { font-size: 0.75rem; }
  .hero-form-panel { padding: 1.5rem; max-width: 100%; }

  /* Accreditation bar */
  .accreditation-inner { gap: 1.25rem; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .footer-accreds { justify-content: flex-start; }

  /* Blog article sidebar */
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }

  /* Map */
  .map-container { height: 280px; }

  /* Comparison table */
  .compare-table { display: block; overflow-x: auto; white-space: nowrap; }

  /* Page hero */
  .page-hero { padding: calc(var(--header-h) + 1.5rem) 0 2rem; }
  .page-hero h1 { font-size: 1.8rem; }

  /* Article header */
  .article-header { padding: calc(var(--header-h) + 1rem) 0 2rem; }
  .article-header h1 { font-size: 1.6rem; }
  .article-meta { gap: 1rem; }
}

/* ---------- SM: Mobile Landscape (max-width: 600px) ---------- */
@media (max-width: 600px) {
  /* Grids */
  .grid-3 { grid-template-columns: 1fr; gap: 1rem; }
  .grid-4 { grid-template-columns: 1fr; gap: 1rem; }
  .blog-grid-layout { grid-template-columns: 1fr !important; }
  .areas-grid { grid-template-columns: 1fr !important; }
  .feature-grid { grid-template-columns: 1fr !important; }

  /* Service items */
  .service-card { padding: 1.25rem; }
  .service-icon { font-size: 2rem; width: 48px; height: 48px; }
  .service-card h3 { font-size: 1.1rem; }

  /* Hero */
  #hero .hero-text h1,
  #hero h1 { font-size: 1.6rem; }
  #hero .hero-text .lead,
  #hero .lead { font-size: 0.9rem; }
  #hero { padding-bottom: 1.5rem; }
  .hero-content { padding: 1.5rem 1rem 2rem; }
  .hero-badge {
    font-size: 0.72rem;
    padding: 0.4rem 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }
  .hero-form-panel { padding: 1.25rem; }
  .hero-form-panel h3 { font-size: 1.1rem; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* Buttons */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-height: 44px;
  }
  .btn--lg { padding: 0.875rem 1.75rem; font-size: 0.95rem; }

  /* Typography */
  .section-label { font-size: 0.72rem; }

  /* CTA sections */
  .article-cta-box { padding: 1.25rem; margin: 1.5rem 0; }
  .article-cta-box h3 { font-size: 1.1rem; }
  .article-cta-box .btn { width: 100%; justify-content: center; }

  /* Callout boxes */
  .article-content .callout { padding: 1.25rem; }

  /* Blog */
  .blog-card h3 { font-size: 1rem; }
  .blog-meta { flex-wrap: wrap; gap: 0.5rem; }

  /* Blog article page */
  .article-hero-img { max-height: 250px; }
  .article-content { font-size: 0.95rem; }
  .article-content h2 { font-size: 1.3rem; margin-top: 2rem; }
  .article-content h3 { font-size: 1.1rem; }

  /* FAQ */
  .faq-item { margin-bottom: 0.75rem; }
  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .faq-answer-inner { padding: 0 1rem 1rem; font-size: 0.875rem; }
  .faq-icon { width: 20px; height: 20px; font-size: 0.75rem; }

  /* Footer */
  .footer-grid { gap: 1.5rem; }
  .footer-accreds { flex-wrap: wrap; gap: 0.4rem; }
  .footer-col h4 { font-size: 0.875rem; }

  /* Contact */
  .contact-detail { padding: 0.875rem; }
  .hs-form-frame { padding: 1.25rem; }

  /* HubSpot form */
  .hs-form-field { margin-bottom: 0.75rem !important; }
  .hs-input {
    padding: 0.65rem !important;
    font-size: 16px !important;
  }
  .hs-button {
    width: 100% !important;
    padding: 0.75rem !important;
    font-size: 1rem !important;
  }
  .hs-form-field label { font-size: 0.875rem !important; }

  /* Section headers */
  .section-intro { font-size: 0.9rem; }

  /* Team cards */
  .team-img { height: 260px; }

  /* Cookie banner */
  #cookie-banner { flex-direction: column; text-align: center; }
  #cookie-banner .btn { width: 100%; justify-content: center; }

  /* Tables */
  table { display: block; overflow-x: auto; white-space: nowrap; }

  /* Stats */
  .stat-number { font-size: 2.2rem; }

  /* Step process */
  .step { gap: 1rem; }
  .step-body h4 { font-size: 0.95rem; }
}

/* ---------- XS: Mobile Portrait (max-width: 480px) ---------- */
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  p { font-size: 0.95rem; line-height: 1.65; }

  .container { padding: 0 1rem; }
  .section { padding: 2.5rem 0; }
  .section--lg { padding: 3rem 0; }
  .section-header { margin-bottom: 1.5rem; }

  /* Hero */
  #hero .hero-text h1,
  #hero h1 { font-size: 1.35rem; }
  #hero .hero-text .lead,
  #hero .lead { font-size: 0.875rem; }
  .hero-content { padding: 1.25rem 1rem 1.75rem; }
  .hero-form-panel { padding: 1rem; }
  .hero-form-panel h3 { font-size: 1rem; margin-bottom: 0.25rem; }
  .hero-form-panel p { font-size: 0.8rem; margin-bottom: 1rem; }
  .hero-badge { font-size: 0.68rem; padding: 0.35rem 0.7rem; }

  /* Nav toggle larger touch target */
  .nav-toggle {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.12);
  }

  /* Buttons — full width on XS */
  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  .btn--lg { padding: 0.85rem 1.5rem; }

  /* Footer */
  .footer-bottom-links { flex-direction: column; align-items: center; gap: 0.5rem; }

  /* Accreditation bar */
  .accred-item { font-size: 0.8rem; gap: 0.5rem; }
  .accreditation-inner { gap: 0.875rem; flex-direction: column; align-items: flex-start; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }

  /* Areas */
  .area-chip { font-size: 0.8rem; padding: 0.35rem 0.85rem; }

  /* Blog article */
  .article-header h1 { font-size: 1.4rem; }
  .article-meta { flex-direction: column; gap: 0.5rem; }
  .article-hero-img { max-height: 200px; }

  /* Page hero */
  .page-hero h1 { font-size: 1.5rem; }
  .page-hero .lead { font-size: 0.9rem; }

  /* Card */
  .card-img { height: 180px; }
  .card-body { padding: 1.25rem; }

  /* Testimonials */
  .testimonial-card { padding: 1.25rem; }
  .testimonial-badge { position: static; display: inline-block; margin-bottom: 0.75rem; }

  /* Map */
  .map-container { height: 240px; }

  /* Feature items */
  .feature-item { padding: 1rem; text-align: center; }

  /* CTA section */
  .cta-section {
    padding: 2rem 1.25rem;
    border-radius: 10px;
    margin: 0 0.5rem;
  }

  /* Highlight box */
  .highlight-box { padding: 1.25rem; }

  /* Sidebar (shown on article pages at xs if visible) */
  .content-with-sidebar { gap: 1.5rem; }

  /* Mobile-nav full screen refinement */
  #mobile-nav { padding: calc(var(--header-h) + 0.75rem) 1rem 2rem; }
  .mobile-nav-links a { font-size: 1rem; padding: 0.875rem 1rem; }
}

/* ---------- Mobile Nav ---------- */
#mobile-nav{
  position:fixed;top:0;left:0;width:100%;height:100%;
  background:var(--navy-dark);z-index:999;
  display:flex;flex-direction:column;
  padding:calc(var(--header-h) + 1rem) 1.5rem 2rem;
  transform:translateX(-100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}
#mobile-nav.open{transform:translateX(0)}

/* Overlay behind mobile nav */
#mobile-nav-overlay{
  display:none;position:fixed;inset:0;z-index:998;
  background:rgba(0,0,0,.55);backdrop-filter:blur(2px);
  transition:opacity .3s ease;opacity:0;
}
#mobile-nav-overlay.show{display:block;opacity:1}

.mobile-nav-links{display:flex;flex-direction:column;gap:.35rem;margin-bottom:2rem}
.mobile-nav-links a{
  color:var(--white);font-size:1.1rem;font-weight:500;
  padding:1rem 1.25rem;border-radius:var(--radius);
  transition:all var(--transition);
  border-bottom:1px solid rgba(255,255,255,.08);
  min-height:48px;display:flex;align-items:center;gap:.75rem;
}
.mobile-nav-links a:hover,.mobile-nav-links a.active{
  background:rgba(201,168,76,.12);color:var(--gold);
}
.mobile-nav-links a i{color:var(--gold);font-size:.9rem;width:18px;text-align:center}

/* Hamburger active animation */
.nav-toggle.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}
.nav-toggle.active span:nth-child(2){
  opacity:0;transform:scaleX(0);
}
.nav-toggle.active span:nth-child(3){
  transform:rotate(-45deg) translate(5px,-5px);
}

/* ---------- HubSpot Form Overrides ---------- */
.hs-form-frame .hs-form input[type=text],
.hs-form-frame .hs-form input[type=email],
.hs-form-frame .hs-form textarea,
.hs-form-frame .hs-form select{
  width:100%!important;
  border:1px solid var(--light-grey)!important;
  border-radius:var(--radius)!important;
  padding:.75rem 1rem!important;
  font-size:.9rem!important;
  color:var(--text)!important;
  background:var(--white)!important;
}
.hs-form-frame .hs-button{
  background:var(--gold)!important;
  color:var(--navy)!important;
  border:none!important;
  border-radius:var(--radius)!important;
  padding:.85rem 2rem!important;
  font-weight:700!important;
  font-size:.95rem!important;
  cursor:pointer!important;
  transition:all var(--transition)!important;
}
.hs-form-frame .hs-button:hover{background:var(--gold-light)!important}

/* ---------- Chart Containers ---------- */
.chart-container{
  position:relative;background:var(--white);
  border-radius:var(--radius-lg);padding:2rem;
  box-shadow:var(--shadow);
}
.chart-container canvas{max-width:100%}

/* ---------- Animated Counter ---------- */
.counter-val{
  display:inline-block;
  transition:all .1s;
}
