/* ═══════════════════════════════════════════════════════════
   DENT-ISTS CARDIFF — style.css
   Fonts: Nunito (headings) · Nunito Sans (body)
═══════════════════════════════════════════════════════════ */

:root {
  --green:   #7DC24B;
  --green-l: #96d468;
  --green-d: #5fa335;
  --dark:    #0d0f0a;
  --surf:    #141810;
  --card:    #181d13;
  --card-h:  #1e2418;
  --bord:    #2a3020;
  --bord-l:  #344028;
  --text:    #eef0ea;
  --muted:   #8a9680;
  --dim:     #5a6652;
  --white:   #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green-d); border-radius: 3px; }

/* ─── LAYOUT HELPERS ─── */
.sec { padding: 5rem 1.5rem; }
.si  { max-width: 1240px; margin: 0 auto; }
.div-line { height: 1px; background: linear-gradient(90deg, transparent, var(--bord-l), transparent); }
.hl { color: var(--green); }

/* ─── SECTION LABELS & TITLES ─── */
.stag {
  display: inline-block;
  font-size: .72rem; font-weight: 800; letter-spacing: 2.5px;
  color: var(--green); text-transform: uppercase;
  background: rgba(125,194,75,.1); border: 1px solid rgba(125,194,75,.2);
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: .85rem;
}
.stitle {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.2;
  color: var(--white); margin-bottom: 1rem;
}
.ssub {
  color: var(--muted); font-size: 1rem;
  max-width: 580px; line-height: 1.75;
  margin-bottom: 3rem; font-weight: 400;
}
.section-cta { text-align: center; margin-top: 2.5rem; }
.section-cta p { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }

/* ─── BUTTONS ─── */
.btnp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #0d0f0a;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 800; font-size: .95rem;
  text-decoration: none; transition: all .2s;
  border: 2px solid var(--green);
  font-family: 'Nunito', sans-serif;
}
.btnp:hover {
  background: var(--green-l); border-color: var(--green-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(125,194,75,.3);
}
.btno {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: all .2s;
  border: 2px solid var(--bord-l);
  font-family: 'Nunito', sans-serif;
}
.btno:hover { border-color: var(--green); color: var(--green); background: rgba(125,194,75,.05); transform: translateY(-2px); }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(13,15,10,.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bord); transition: all .3s;
}
nav.scrolled { background: rgba(13,15,10,.98); box-shadow: 0 4px 30px rgba(0,0,0,.4); }
.ni {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--green); letter-spacing: 1px; }
.nav-logo-sub  { font-size: .6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-top: 2px; }
.nlinks { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nlinks a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: .85rem; padding: 8px 12px; border-radius: 6px; transition: all .2s; }
.nlinks a:hover { color: var(--text); background: rgba(125,194,75,.08); }
.nlinks a.act   { color: var(--green); }
.nav-cta {
  background: var(--green) !important; color: #0d0f0a !important;
  padding: 9px 20px !important; border-radius: 8px !important;
  font-weight: 800 !important; margin-left: .5rem;
}
.nav-cta:hover { background: var(--green-l) !important; transform: translateY(-1px); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(13,15,10,.99); backdrop-filter: blur(20px);
  padding: 1rem 1.5rem 2rem; border-bottom: 1px solid var(--bord); z-index: 998;
  animation: slideDown .2s ease;
}
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
.mobile-menu.open { display: block; }
.mobile-menu a { display: flex; align-items: center; gap: 10px; padding: 14px 0; color: var(--text); text-decoration: none; font-weight: 600; font-size: 1rem; border-bottom: 1px solid var(--bord); transition: color .2s; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--green); }
.mob-cta { padding-top: 1rem; }
.mob-cta a { background: var(--green) !important; color: #0d0f0a !important; border-radius: 10px !important; padding: 14px 20px !important; font-weight: 800 !important; justify-content: center; border: none !important; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../images/hero/hero-bg.jpg');
  background-size: cover; background-position: center 40%;
  background-repeat: no-repeat; background-color: #0d1a0a;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,9,3,.93) 0%,
    rgba(7,12,4,.88) 40%,
    rgba(9,16,5,.78) 70%,
    rgba(5,9,3,.88) 100%
  );
}
.hero-dots {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(circle, rgba(125,194,75,.055) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 6rem 1.5rem 4rem; position: relative; z-index: 2;
  display: grid; grid-template-columns: 58% 42%; gap: 3rem; align-items: center;
}

/* eyebrow badge */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(125,194,75,.12); border: 1px solid rgba(125,194,75,.3);
  border-radius: 50px; padding: 8px 18px;
  font-size: .8rem; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
}
.eyebrow-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.4);} }
.eyebrow-stars { color: #FFB800; font-size: .85rem; letter-spacing: 2px; }

/* ── HERO HEADLINE ─────────────────────────
   No underline/pseudo-element on the green
   words — just clean colour change
─────────────────────────────────────────── */
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease .1s both;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  /* No letter-spacing — keeps it punchy */
}
/* The green highlight spans — plain colour, no underline */
.hero h1 .hl {
  color: var(--green);
  /* Explicitly remove any underline/pseudo decoration */
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow: none;
}
.hero h1 .hl::after,
.hero h1 .hl::before { display: none !important; content: none !important; }

.hero-p {
  font-size: 1.1rem; color: rgba(238,240,234,.8); line-height: 1.75;
  margin-bottom: 2rem; max-width: 520px; font-weight: 400;
  animation: fadeUp .6s ease .2s both;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* stat bar */
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  margin-bottom: 2.5rem; padding: 1.25rem 1.75rem;
  background: rgba(13,15,10,.75); backdrop-filter: blur(12px);
  border: 1px solid rgba(125,194,75,.2); border-radius: 14px;
  width: fit-content; animation: fadeUp .6s ease .3s both;
}
.stat-div { width: 1px; background: var(--bord-l); align-self: stretch; }
.stat-num { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num .star-suf { color: var(--green); font-size: 1.1rem; }
.stat-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; font-weight: 600; }

/* CTA row */
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .6s ease .4s both; }
.btn-hero-p {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #0d0f0a;
  padding: 16px 32px; border-radius: 12px;
  font-weight: 900; font-size: 1rem; text-decoration: none;
  transition: all .2s; border: 2px solid var(--green);
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 8px 30px rgba(125,194,75,.35);
}
.btn-hero-p:hover { background: var(--green-l); border-color: var(--green-l); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(125,194,75,.45); }
.btn-hero-o {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,15,10,.7); backdrop-filter: blur(8px);
  color: var(--text); padding: 16px 32px; border-radius: 12px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: all .2s; border: 2px solid rgba(255,255,255,.2);
  font-family: 'Nunito', sans-serif;
}
.btn-hero-o:hover { border-color: var(--green); color: var(--green); background: rgba(125,194,75,.08); transform: translateY(-3px); }

/* trust strip */
.hero-trust { display: flex; align-items: center; gap: .75rem; margin-top: 1.5rem; flex-wrap: wrap; animation: fadeUp .6s ease .5s both; }
.trust-item { font-size: .82rem; color: var(--muted); font-weight: 600; }
.trust-sep  { color: var(--dim); }

/* right visual */
.hero-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; animation: fadeIn .8s ease .3s both; }
.hero-logo-glow {
  filter: drop-shadow(0 0 60px rgba(125,194,75,.3)) drop-shadow(0 20px 40px rgba(0,0,0,.6));
  position: relative;
}
.hero-logo-img { max-width: 340px; width: 100%; height: auto; }
.hero-badges { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hbadge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(13,15,10,.8); backdrop-filter: blur(10px);
  border: 1px solid rgba(125,194,75,.2); border-radius: 50px;
  padding: 8px 16px; font-size: .8rem; font-weight: 700; color: var(--text);
}
.hbadge .hs { color: #FFB800; font-size: .75rem; }

/* scroll indicator */
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; text-align: center; animation: fadeIn 1s ease 1s both; }
.scroll-hint span { font-size: .68rem; color: var(--dim); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.scroll-arrow { width: 18px; height: 18px; margin: 0 auto; border-right: 2px solid var(--dim); border-bottom: 2px solid var(--dim); transform: rotate(45deg); animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0);} 50%{transform:rotate(45deg) translateY(5px);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.ticker-bar { background: var(--surf); border-top: 1px solid var(--bord); border-bottom: 1px solid var(--bord); overflow: hidden; position: relative; }
.ticker-bar::before,.ticker-bar::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; }
.ticker-bar::before { left:0;  background: linear-gradient(90deg,  var(--surf), transparent); }
.ticker-bar::after  { right:0; background: linear-gradient(270deg, var(--surf), transparent); }
.ticker-track { display:flex; animation: ticker 30s linear infinite; width:max-content; }
@keyframes ticker { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.ti { display:flex; align-items:center; gap:10px; padding:18px 2.5rem; white-space:nowrap; font-size:.85rem; font-weight:600; color:var(--muted); border-right:1px solid var(--bord); }
.ti strong { color: var(--green); }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card {
  background: var(--card); border: 1px solid var(--bord);
  border-radius: 14px; overflow: hidden; transition: all .3s; position: relative;
}
.service-card:hover { border-color: rgba(125,194,75,.4); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.4); background: var(--card-h); }

/* ── placeholder AND real image share same height/fit ── */
.service-img,
.service-img-ph {
  width: 100%; height: 200px; display: block;
  object-fit: cover; /* for real <img> */
}
.service-img-ph {
  /* SVG placeholder background */
  background: url('../images/services/dent-removal.jpg') center/cover no-repeat, linear-gradient(135deg,#1a2012,#222c18);
}
/* Individual overrides for each card set in HTML via inline style or specific class */

.svc-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(125,194,75,.92); color: #0d0f0a;
  font-size: .65rem; font-weight: 800; padding: 4px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; z-index: 1;
}
.sb { padding: 1.5rem; }
.sb h3 { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: .6rem; }
.sb p  { color: var(--muted); font-size: .875rem; line-height: 1.65; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-img-col { position: relative; }
/* real or placeholder team photo */
.about-photo {
  width: 100%; height: 460px;
  object-fit: cover; /* if real <img> */
  background: url('../images/about-team.jpg') center/cover no-repeat, linear-gradient(135deg,#1a2012,#222c18);
  border-radius: 16px; border: 1px solid var(--bord);
  display: block;
}
.about-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--green); color: #0d0f0a;
  border-radius: 12px; padding: 1.25rem 1.5rem;
  text-align: center; min-width: 150px;
  box-shadow: 0 15px 40px rgba(125,194,75,.3);
}
.af-num   { font-family: 'Nunito', sans-serif; font-size: 2.5rem; font-weight: 900; line-height: 1; }
.af-label { font-size: .75rem; font-weight: 700; margin-top: 4px; opacity: .8; line-height: 1.4; }
.about-lead {
  font-size: 1.05rem; font-weight: 600; color: var(--text); line-height: 1.75;
  margin-bottom: 1.25rem; border-left: 3px solid var(--green); padding-left: 1.25rem;
}
.about-body { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 1.1rem; }
.about-promises { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 2rem 0; }
.promise {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--surf); border: 1px solid var(--bord);
  border-radius: 10px; padding: 1rem; transition: border-color .2s;
}
.promise:hover { border-color: rgba(125,194,75,.3); }
.pcheck { color: var(--green); font-size: 1rem; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.promise strong { display: block; font-size: .85rem; font-weight: 800; color: var(--white); margin-bottom: 2px; }
.promise p { font-size: .78rem; color: var(--muted); }
.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   INSTAGRAM
═══════════════════════════════════════ */
.insta-sec { background: var(--surf); border-top: 1px solid var(--bord); border-bottom: 1px solid var(--bord); }
.insta-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.insta-handle { display: flex; align-items: center; gap: 12px; }
.insta-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.insta-handle strong { font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; color: var(--white); display: block; }
.insta-handle span  { font-size: .78rem; color: var(--muted); }
.insta-btn { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg,#e6683c,#dc2743,#cc2366); color: white; padding: 12px 24px; border-radius: 10px; font-weight: 800; font-size: .9rem; text-decoration: none; transition: all .2s; font-family: 'Nunito', sans-serif; }
.insta-btn:hover { opacity: .9; transform: translateY(-2px); }
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 6px; border-radius: 12px; overflow: hidden; }
.insta-cell { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; transition: all .2s; text-decoration: none; display: block; background: var(--card); }
.insta-cell:hover .insta-overlay { opacity: 1; }
.insta-cell:hover { transform: scale(1.04); z-index: 2; }
.insta-ph { width: 100%; height: 100%; background: linear-gradient(135deg,#1a2012,#222c18); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.insta-overlay { position: absolute; inset: 0; background: rgba(125,194,75,.88); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; font-size: .8rem; font-weight: 800; color: #0d0f0a; font-family: 'Nunito', sans-serif; }
.insta-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: .75rem; }
.insta-cta { display: flex; justify-content: center; margin-top: 2rem; }

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.why-sec { background: linear-gradient(180deg, transparent, rgba(125,194,75,.02), transparent); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1rem; }
.why-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--card); border: 1px solid var(--bord); border-radius: 12px; padding: 1.25rem; transition: all .2s; }
.why-item:hover { border-color: rgba(125,194,75,.35); background: var(--card-h); transform: translateX(4px); }
.why-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(125,194,75,.1); border: 1px solid rgba(125,194,75,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.why-item h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .95rem; color: var(--white); margin-bottom: 3px; }
.why-item p  { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.why-right { text-align: center; }
.why-logo { filter: drop-shadow(0 15px 50px rgba(125,194,75,.2)); display: inline-block; margin-bottom: 1.5rem; }
.why-logo img { max-width: 280px; width: 100%; }
.call-card { background: var(--card); border: 1px solid var(--bord); border-radius: 14px; padding: 2rem; text-align: center; }
.hours-pill { display: inline-block; background: rgba(125,194,75,.1); border: 1px solid rgba(125,194,75,.2); color: var(--green); border-radius: 6px; padding: 5px 14px; font-size: .78rem; font-weight: 700; margin-bottom: 1.25rem; }
.call-num { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 900; color: var(--green); display: block; margin-bottom: .5rem; text-decoration: none; transition: color .2s; }
.call-num:hover { color: var(--green-l); }
.call-card > p { color: var(--muted); font-size: .85rem; margin-bottom: 1.25rem; }

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.reviews-sec { background: linear-gradient(180deg, transparent, rgba(125,194,75,.025), transparent); }
.rating-row { display: flex; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.rating-badge { flex:1; min-width:180px; background:var(--card); border:1px solid var(--bord); border-radius:14px; padding:1.5rem 2rem; display:flex; align-items:center; gap:1.25rem; transition:border-color .2s; }
.rating-badge:hover { border-color: rgba(125,194,75,.3); }
.rb-icon  { font-size: 2rem; flex-shrink: 0; }
.rb-score { font-family: 'Nunito', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.rb-stars { color: #FFB800; font-size: .9rem; letter-spacing: 1px; }
.rb-label { font-size: .75rem; color: var(--muted); margin-top: 2px; font-weight: 600; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.review-card { background: var(--card); border: 1px solid var(--bord); border-radius: 14px; padding: 1.75rem; transition: all .2s; display: flex; flex-direction: column; }
.review-card:hover { border-color: rgba(125,194,75,.3); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,.3); }
.rev-top  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.rev-stars { color: #FFB800; font-size: 1rem; letter-spacing: 2px; }
.rev-plat  { font-size: .7rem; color: var(--dim); font-weight: 600; text-transform: uppercase; }
.rev-text  { font-size: .9rem; color: var(--muted); line-height: 1.7; flex: 1; font-style: italic; margin-bottom: 1.25rem; }
.rev-text::before { content: open-quote; color: var(--green); font-size: 1.5rem; line-height: 0; vertical-align: -6px; margin-right: 2px; font-style: normal; }
.rev-foot  { display: flex; align-items: center; gap: 10px; }
.rev-av    { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,var(--green-d),var(--green)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem; color: #0d0f0a; flex-shrink: 0; }
.rev-name  { font-weight: 700; font-size: .875rem; color: var(--white); }
.rev-loc   { font-size: .72rem; color: var(--muted); }

/* ═══════════════════════════════════════
   AREAS
═══════════════════════════════════════ */
.areas-top { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.areas-info-card { background: var(--card); border: 1px solid var(--bord); border-radius: 14px; padding: 2rem; }
.areas-info-card h3 { font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: .75rem; }
.areas-info-card p  { color: var(--muted); font-size: .85rem; line-height: 1.65; margin-bottom: 1rem; }
.hours-row { display: flex; align-items: center; gap: 10px; padding: 12px; background: rgba(125,194,75,.08); border: 1px solid rgba(125,194,75,.2); border-radius: 8px; }
.hours-row span:last-child { font-size: .82rem; color: var(--text); font-weight: 600; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(155px,1fr)); gap: .6rem; }
.area-chip { background: var(--card); border: 1px solid var(--bord); border-radius: 8px; padding: 10px 14px; font-size: .83rem; font-weight: 600; color: var(--muted); text-align: center; transition: all .2s; cursor: default; }
.area-chip:hover { border-color: var(--green); color: var(--green); background: rgba(125,194,75,.05); transform: translateY(-1px); }
.adot { color: var(--green); margin-right: 4px; }

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.blog-sec { background: linear-gradient(180deg, transparent, rgba(125,194,75,.02), transparent); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card { background: var(--card); border: 1px solid var(--bord); border-radius: 14px; overflow: hidden; transition: all .3s; display: flex; flex-direction: column; }
.blog-card:hover { border-color: rgba(125,194,75,.35); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.blog-img-wrap { height: 190px; overflow: hidden; position: relative; flex-shrink: 0; }
/* real or placeholder blog image */
.blog-img,
.blog-img-ph {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-img,
.blog-card:hover .blog-img-ph { transform: scale(1.05); }
.blog-tag { position: absolute; top: 12px; left: 12px; background: rgba(13,15,10,.88); backdrop-filter: blur(8px); color: var(--green); font-size: .65rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; border: 1px solid rgba(125,194,75,.3); }
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 { font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; color: var(--white); line-height: 1.35; margin-bottom: .75rem; }
.blog-preview p { color: var(--muted); font-size: .83rem; line-height: 1.65; margin-bottom: 1rem; }
.blog-full { margin-top: .5rem; }
.blog-full p  { color: var(--muted); font-size: .83rem; line-height: 1.7; margin-bottom: .65rem; }
.blog-full ul { color: var(--muted); font-size: .83rem; line-height: 1.7; padding-left: 1.2rem; }
.read-more-btn { background: none; border: 1px solid rgba(125,194,75,.3); color: var(--green); font-size: .8rem; font-weight: 700; padding: 8px 14px; border-radius: 6px; cursor: pointer; transition: all .2s; margin-top: auto; font-family: 'Nunito', sans-serif; display: inline-block; }
.read-more-btn:hover { background: rgba(125,194,75,.1); border-color: var(--green); }
.read-more-btn.open { background: rgba(125,194,75,.1); border-color: var(--green); }

/* ═══════════════════════════════════════
   CONTACT / FORM
═══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 38% 62%; gap: 4rem; align-items: start; }
.contact-card { display: flex; align-items: center; gap: 14px; padding: 1rem 1.25rem; background: var(--card); border: 1px solid var(--bord); border-radius: 12px; margin-bottom: .75rem; text-decoration: none; color: var(--text); transition: all .2s; }
.contact-card:hover { border-color: rgba(125,194,75,.4); background: var(--card-h); }
.cc-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(125,194,75,.1); border: 1px solid rgba(125,194,75,.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-card strong { display: block; font-size: .72rem; color: var(--dim); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.contact-card span   { font-weight: 700; font-size: .9rem; color: var(--green); }
.cc-plain { color: var(--text) !important; font-weight: 500 !important; }

/* form */
form { background: var(--card); border: 1px solid var(--bord); border-radius: 16px; padding: 2.5rem; }
.form-title { font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--white); margin-bottom: .5rem; }
.form-sub   { color: var(--muted); font-size: .85rem; margin-bottom: 1.75rem; line-height: 1.5; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
label { display: block; font-size: .75rem; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.label-note { color: var(--dim); font-weight: 400; text-transform: none; font-size: .72rem; }
input, textarea, select { width: 100%; background: var(--dark); border: 1px solid var(--bord); border-radius: 8px; padding: 12px 14px; color: var(--text); font-family: 'Nunito Sans', sans-serif; font-size: .93rem; transition: border-color .2s, box-shadow .2s; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(125,194,75,.12); }
input::placeholder, textarea::placeholder { color: var(--dim); }
select { cursor: pointer; }
select option { background: #111; }
textarea { resize: vertical; min-height: 100px; }
.file-drop { border: 2px dashed var(--bord); border-radius: 10px; padding: 1.75rem; text-align: center; cursor: pointer; transition: all .2s; position: relative; background: var(--dark); }
.file-drop:hover { border-color: var(--green); background: rgba(125,194,75,.03); }
.file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.fd-icon { font-size: 2rem; margin-bottom: 8px; }
.fd-text { font-size: .88rem; color: var(--muted); line-height: 1.5; }
.fd-text strong { color: var(--green); }
.fd-note  { font-size: .72rem; color: var(--dim); margin-top: 4px; }
.fd-names { font-size: .78rem; color: var(--green); margin-top: 8px; min-height: 1.2rem; }
.submit-btn { width: 100%; background: var(--green); color: #0d0f0a; border: none; padding: 16px; border-radius: 10px; font-weight: 900; font-size: 1rem; cursor: pointer; transition: all .2s; margin-top: .75rem; font-family: 'Nunito', sans-serif; display: flex; align-items: center; justify-content: center; gap: 8px; }
.submit-btn:hover { background: var(--green-l); box-shadow: 0 8px 25px rgba(125,194,75,.3); transform: translateY(-1px); }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }
.form-legal { text-align: center; font-size: .72rem; color: var(--dim); margin-top: 1rem; line-height: 1.5; }

/* inline success */
.form-success-block { display: none; background: rgba(125,194,75,.08); border: 1px solid rgba(125,194,75,.25); border-radius: 16px; padding: 3rem 2.5rem; text-align: center; }
.fsb-icon { font-size: 4rem; margin-bottom: 1rem; animation: pop .5s cubic-bezier(.175,.885,.32,1.275); }
@keyframes pop { 0%{transform:scale(0);opacity:0;} 100%{transform:scale(1);opacity:1;} }
.form-success-block h3 { font-family: 'Nunito', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--green); margin-bottom: .75rem; }
.form-success-block p  { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: var(--surf); border-top: 1px solid var(--bord); padding: 4rem 1.5rem 2rem; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid  { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo  { display: inline-flex; margin-bottom: .25rem; }
.footer-desc  { color: var(--muted); font-size: .85rem; line-height: 1.75; margin: 1rem 0 1.5rem; max-width: 300px; }
.footer-social { display: flex; gap: .75rem; }
.social-btn { width: 38px; height: 38px; border-radius: 9px; background: var(--card); border: 1px solid var(--bord); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1rem; color: var(--text); transition: all .2s; }
.social-btn:hover { border-color: var(--green); color: var(--green); background: rgba(125,194,75,.05); }
.fc h4 { font-family: 'Nunito', sans-serif; font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 1.25rem; }
.fc ul { list-style: none; }
.fc li { margin-bottom: 9px; }
.fc a  { color: var(--muted); text-decoration: none; font-size: .85rem; transition: color .2s; font-weight: 500; }
.fc a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--bord); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--dim); font-size: .78rem; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid  { grid-template-columns: repeat(2,1fr); }
  .blog-grid     { grid-template-columns: repeat(2,1fr); }
  .insta-grid    { grid-template-columns: repeat(4,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-visual     { display: none; }
  .about-grid      { grid-template-columns: 1fr; }
  .about-float     { display: none; }
  .why-grid        { grid-template-columns: 1fr; }
  .why-right       { display: none; }
  .contact-grid    { grid-template-columns: 1fr; }
  .areas-top       { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row        { grid-template-columns: 1fr; }
  .about-promises  { grid-template-columns: 1fr; }
  nav .nlinks      { display: none; }
  .hamburger       { display: flex; }
  .hero-stats      { flex-wrap: wrap; gap: 1.25rem; }
  .rating-row      { flex-direction: column; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .insta-grid    { grid-template-columns: repeat(3,1fr); }
  .footer-grid   { grid-template-columns: 1fr; }
  .sec           { padding: 3.5rem 1rem; }
  .hero-inner    { padding: 3rem 1rem 2rem; }
  .hero h1       { font-size: clamp(2.4rem, 9vw, 3.2rem); }
}
