/* =========================================================
   Perfection in Paint — Main Stylesheet
   ========================================================= */

/* --- Variables --- */
:root {
  --green-dark:    #0c533d;
  --green-primary: #087443;
  --green-med:     #34a34c;
  --green-light:   #e3fbcc;
  --green-pale:    #f0faf5;
  --text-dark:     #1a1a1a;
  --text-body:     #3d3d3d;
  --text-muted:    #6b7280;
  --border:        #d1d5db;
  --white:         #ffffff;
  --off-white:     #f9fafb;
  --hero-overlay:  rgba(0,0,0,0.48);
  --shadow-sm:     0 1px 3px rgba(0,0,0,.10);
  --shadow-md:     0 4px 12px rgba(0,0,0,.12);
  --shadow-lg:     0 8px 24px rgba(0,0,0,.14);
  --radius:        8px;
  --radius-lg:     14px;
  --font:          'Poppins', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w:         1200px;
  --transition:    .22s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text-body); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 { color: var(--text-dark); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { line-height: 1.75; }
.text-white   { color: var(--white) !important; }
.text-green   { color: var(--green-primary) !important; }
.text-center  { text-align: center; }
.text-muted   { color: var(--text-muted); }
strong { font-weight: 700; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-dark h1,.section-dark h2,.section-dark h3 { color: var(--white); }
.section-green { background: var(--green-primary); color: var(--white); }
.section-green h2,.section-green h3 { color: var(--white); }
.section-pale { background: var(--green-pale); }
.section-off { background: var(--off-white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 16px; }
.align-center { align-items: center; }

/* --- Buttons --- */
.btn, .btn-secondary, .btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn { background: var(--green-dark); color: var(--white); }
.btn:hover { background: var(--green-primary); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--green-dark); }
.btn-ghost { background: transparent; color: var(--green-dark); border: 2px solid var(--green-dark); }
.btn-ghost:hover { background: var(--green-dark); color: var(--white); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   NAVBAR
   ========================================================= */
.site-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo-link img { height: 52px; width: auto; }

.topbar-social { display: flex; align-items: center; gap: 8px; }
.topbar-social a { display: flex; align-items: center; }
.topbar-social img { height: 28px; width: auto; }

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 5px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--green-primary); background: var(--green-pale); }
.main-nav a.active { color: var(--green-primary); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-label {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: .9rem; font-weight: 600;
  color: var(--text-dark);
  border-radius: 5px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown > .nav-label:hover,
.nav-dropdown:hover > .nav-label { color: var(--green-primary); background: var(--green-pale); }
.nav-dropdown > .nav-label .chevron { transition: transform var(--transition); font-size: .75rem; }
.nav-dropdown:hover > .nav-label .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 18px;
  font-size: .875rem; font-weight: 500; color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--green-pale); color: var(--green-primary); }
.dropdown-menu a.divider { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 12px; }

/* Nav CTA buttons */
.nav-ctas { display: flex; align-items: center; gap: 10px; }
.nav-ctas .btn { padding: 10px 20px; font-size: .875rem; }
.nav-ctas .btn-ghost { padding: 9px 20px; font-size: .875rem; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-nav .mnav-label {
  display: block; padding: 12px 24px;
  font-size: .95rem; font-weight: 600; color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--green-primary); background: var(--green-pale); }
.mobile-nav .mnav-sub a { padding-left: 40px; font-weight: 500; }
.mobile-nav .nav-cta-group { padding: 16px 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav .nav-cta-group .btn, .mobile-nav .nav-cta-group .btn-ghost { text-align: center; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  background: var(--green-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: var(--hero-overlay);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 80px 24px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: .85rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; font-size: clamp(2rem, 5vw, 3.2rem); }
.hero p { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 32px; max-width: 580px; }

/* Page Hero (interior pages) */
.page-hero {
  position: relative; min-height: 320px;
  display: flex; align-items: flex-end;
  background: var(--green-dark);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 48px 24px;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.page-hero-content h1 { color: var(--white); font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.page-hero-content p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-top: 10px; }

/* =========================================================
   TRUST BADGES / LOGOS BAR
   ========================================================= */
.trust-bar {
  background: var(--green-dark);
  padding: 24px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.trust-bar-label {
  color: var(--white); font-weight: 700; font-size: 1rem;
  flex-shrink: 0; white-space: nowrap;
}
.trust-badges-row {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.trust-badges-row img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.trust-badges-row img:hover { opacity: 1; filter: none; }

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { color: var(--text-muted); font-size: .95rem; margin-bottom: 16px; }

/* =========================================================
   FEATURE / SPLIT SECTIONS
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-text { }
.split-text h2 { margin-bottom: 18px; }
.split-text p { margin-bottom: 16px; color: var(--text-body); }
.split-img img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); }

/* Value props list */
.value-list { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.value-item { display: flex; align-items: flex-start; gap: 10px; }
.value-item .check { color: var(--green-primary); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* =========================================================
   BEFORE / AFTER SLIDER
   ========================================================= */
.before-after-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
img-comparison-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
  --divider-width: 3px;
  --divider-color: var(--white);
  --default-handle-opacity: 1;
}
.slider-label {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.6); color: #fff;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em;
  padding: 4px 10px; border-radius: 4px; pointer-events: none;
}
.slider-label.before-label { left: 14px; }
.slider-label.after-label  { right: 14px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section { background: var(--green-dark); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg); padding: 28px;
}
.testimonial-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,.9); font-size: .95rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { color: var(--white); font-weight: 700; font-size: .9rem; }
.review-cta { margin-top: 36px; text-align: center; }

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.process-section { background: var(--green-primary); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.process-header h2 { color: var(--white); margin-bottom: 24px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
}
.step-content h4 { color: var(--white); margin-bottom: 6px; font-size: 1rem; }
.step-content p  { color: rgba(255,255,255,.8); font-size: .9rem; }

/* =========================================================
   GALLERY GRID
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay .zoom-icon { color: #fff; font-size: 1.5rem; }
.gallery-item a { display: block; width: 100%; height: 100%; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 1.05rem; }
.cta-banner .btn-group { justify-content: center; }

/* =========================================================
   WHY PROS STRIP
   ========================================================= */
.why-pros { background: var(--green-dark); padding: 48px 0; }
.why-pros-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  margin-top: 32px;
}
.why-item { text-align: center; }
.why-item .icon { font-size: 2rem; margin-bottom: 10px; color: var(--green-light); }
.why-item h4 { color: var(--white); font-size: .95rem; }

/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */
.service-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.service-intro-text h2 { margin-bottom: 18px; }
.service-intro-text p { margin-bottom: 16px; color: var(--text-body); }
.service-list-section { margin-top: 48px; }
.service-items-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 24px; }
.service-item-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.service-item-card .si-icon { font-size: 2rem; margin-bottom: 12px; color: var(--green-primary); }
.service-item-card h4 { margin-bottom: 8px; }
.service-item-card p { font-size: .9rem; color: var(--text-muted); }

/* =========================================================
   CONTACT / FORM
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 20px; }
.contact-info-item .ci-icon { color: var(--green-primary); font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-item p { color: var(--text-body); }
.contact-info-item strong { display: block; color: var(--text-dark); font-weight: 600; }

.form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font); font-size: .95rem; color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(8,116,67,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; }
.form-msg { margin-top: 16px; padding: 14px; border-radius: 6px; font-size: .9rem; }
.form-msg.success { background: var(--green-light); color: var(--green-dark); border: 1px solid var(--green-med); }
.form-msg.error { background: #fef2f2; color: #b91c1c; border: 1px solid #fca5a5; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-weight: 600; color: var(--text-dark); font-size: 1rem;
}
.faq-question .faq-icon { color: var(--green-primary); font-size: 1.25rem; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px 0; color: var(--text-body); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.85); }
.footer-top { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo img { height: 56px; margin-bottom: 18px; }
.footer-desc { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.75); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .85rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,.25); }
.footer-social a svg, .footer-social a img { width: 18px; height: 18px; }
.footer-col h4 { color: var(--white); margin-bottom: 18px; font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: .875rem; color: rgba(255,255,255,.75); }
.footer-contact-item strong { color: var(--white); display: block; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-bottom-inner a { color: rgba(255,255,255,.6); }
.footer-bottom-inner a:hover { color: var(--white); }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-lg); }
.core-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.value-card h4 { color: var(--green-primary); margin-bottom: 8px; }
.value-card p { font-size: .9rem; color: var(--text-muted); }
.charity-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* =========================================================
   AREA PAGE
   ========================================================= */
.area-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.area-service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.area-service-card h4 { color: var(--green-dark); margin-bottom: 8px; }
.area-service-card p { font-size: .9rem; color: var(--text-muted); }

/* =========================================================
   PRIVACY POLICY
   ========================================================= */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-size: 1.35rem; margin: 32px 0 12px; color: var(--green-dark); }
.policy-content p { margin-bottom: 16px; }
.policy-content ul { padding-left: 24px; list-style: disc; margin-bottom: 16px; }
.policy-content ul li { margin-bottom: 8px; color: var(--text-body); }

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header { margin-bottom: 40px; }
.section-header.centered { text-align: center; }
.section-eyebrow {
  display: inline-block;
  color: var(--green-primary); font-size: .8rem;
  font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 640px; }
.section-header.centered p { margin: 0 auto; }

/* =========================================================
   MISC UTILITIES
   ========================================================= */
.badge {
  display: inline-block; padding: 4px 12px;
  background: var(--green-light); color: var(--green-dark);
  border-radius: 20px; font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.divider { width: 56px; height: 4px; background: var(--green-primary); border-radius: 2px; margin: 14px 0 20px; }
.divider.centered { margin-left: auto; margin-right: auto; }

/* Alert/Notification bar */
.holiday-bar {
  background: var(--green-med); color: var(--white);
  text-align: center; padding: 10px;
  font-size: .9rem; font-weight: 600;
}
.holiday-bar a { color: var(--white); text-decoration: underline; }

/* =========================================================
   GLIGHTBOX OVERRIDES
   ========================================================= */
.glightbox-container .gslide-image img { border-radius: var(--radius); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 75vh; }
  .split, .service-intro, .grid-2, .about-story, .charity-section, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-img img { height: 280px; }
  .about-img img { height: 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .trust-badges-row { flex-wrap: wrap; gap: 16px; }
  .why-pros-grid { grid-template-columns: repeat(2,1fr); }
  .core-values { grid-template-columns: 1fr; }
  .service-items-grid { grid-template-columns: 1fr; }
  .area-services { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-social { display: none; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid, .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; }
  .btn, .btn-secondary, .btn-ghost { text-align: center; }
}
