/* ============================================
   ROYALL HYGIENE — Main Stylesheet v2.0
   Refined design + Core Web Vitals optimised
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #0a2e1c;
  --green-mid:    #165235;
  --green-light:  #27794e;
  --green-pale:   #eaf4ef;
  --green-glass:  rgba(22, 82, 53, 0.08);
  --accent:       #c9a84c;
  --accent-dark:  #a37830;
  --accent-pale:  #fdf6e3;
  --white:        #ffffff;
  --off-white:    #f8faf9;
  --text-dark:    #0d1f18;
  --text-mid:     #35524a;
  --text-muted:   #6e8c80;
  --border:       #d4e8dd;
  --shadow-sm:    0 2px 8px rgba(10,46,28,0.08);
  --shadow-md:    0 8px 32px rgba(10,46,28,0.12);
  --shadow-lg:    0 20px 60px rgba(10,46,28,0.18);
  --radius:       8px;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'DM Sans', system-ui, -apple-system, sans-serif;
  --nav-h:        72px;
}

/* ── BASE ── */
html  { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body  { font-family: var(--sans); color: var(--text-dark); background: var(--off-white); overflow-x: hidden; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; }
::selection { background: var(--accent); color: var(--green-dark); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; letter-spacing: -0.02em; color: var(--text-dark); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { line-height: 1.8; }

/* ── FOCUS (accessibility) ── */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* ── BUTTONS ── */
.rh-btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: var(--green-dark);
  padding: 0.875rem 2rem; border-radius: var(--radius);
  font-family: var(--sans); font-weight: 700; font-size: 0.95rem;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  cursor: pointer; border: none; letter-spacing: 0.01em;
}
.rh-btn-primary:hover {
  background: var(--accent-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.rh-btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.45); color: var(--white);
  padding: 0.85rem 1.75rem; border-radius: var(--radius);
  font-weight: 500; font-size: 0.95rem; transition: all 0.2s;
}
.rh-btn-outline:hover {
  border-color: var(--white); background: rgba(255,255,255,0.12); color: var(--white);
}

.rh-btn-green {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; background: var(--green-light); color: var(--white);
  padding: 1rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; transition: background 0.2s, transform 0.18s, box-shadow 0.2s;
  border: none; cursor: pointer; letter-spacing: 0.01em;
}
.rh-btn-green:hover {
  background: var(--green-mid); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(22,82,53,0.35); color: var(--white);
}

/* ── SECTION UTILITIES ── */
.rh-section { padding: 6rem 0; }
.rh-section--dark { background: var(--green-dark); }
.rh-section--tinted { background: var(--off-white); }
.rh-container { max-width: 1180px; margin: 0 auto; padding: 0 5%; }

.rh-section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-light);
  margin-bottom: 0.6rem; display: block; font-family: var(--sans);
}
.rh-section-label--gold { color: var(--accent); }

.rh-section-intro {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.8;
  max-width: 560px; margin-bottom: 3rem;
}
.rh-section-intro--light { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
#rh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(10, 46, 28, 0.96);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: box-shadow 0.3s, background 0.3s;
  height: var(--nav-h);
}
#rh-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
  background: rgba(10, 46, 28, 0.99);
}

.rh-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; max-width: 1280px; margin: 0 auto; height: 100%;
}

.rh-logo-wrap { display: block; line-height: 0; flex-shrink: 0; transition: opacity 0.2s; }
.rh-logo-wrap:hover { opacity: 0.85; }

.rh-nav-links {
  display: flex; align-items: center; gap: 1.75rem; list-style: none;
}
.rh-nav-links a {
  color: rgba(255,255,255,0.72); font-size: 0.87rem; font-weight: 500;
  letter-spacing: 0.02em; transition: color 0.2s; position: relative;
}
.rh-nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transition: transform 0.25s; transform-origin: left;
}
.rh-nav-links a:hover { color: var(--accent); }
.rh-nav-links a:hover::after { transform: scaleX(1); }

.rh-nav-cta {
  background: var(--accent) !important;
  color: var(--green-dark) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.rh-nav-cta::after { display: none !important; }
.rh-nav-cta:hover {
  background: var(--accent-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(201,168,76,0.4) !important;
}

.rh-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.rh-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.25s; }
.rh-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rh-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.rh-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#rh-hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--green-dark);
  padding: calc(var(--nav-h) + 2rem) 5% 4rem;
}

/* Subtle grid pattern overlay */
#rh-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Radial glow */
.rh-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 60% 50%, rgba(39,121,78,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.rh-hero-inner {
  position: relative; z-index: 1;
  max-width: 1180px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center;
}

.rh-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--accent); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: 999px; margin-bottom: 1.5rem;
}

.rh-hero-text h1 {
  color: var(--white); margin-bottom: 1.25rem; line-height: 1.1;
}
.rh-hero-text h1 em {
  font-style: italic; color: var(--accent); font-weight: 400;
}

.rh-hero-sub {
  color: rgba(255,255,255,0.68); font-size: 1.08rem; line-height: 1.8;
  max-width: 520px; margin-bottom: 2.25rem;
}

.rh-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.rh-hero-stats {
  display: flex; flex-direction: column; gap: 1rem;
  flex-shrink: 0; min-width: 200px;
}

.rh-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem; border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}
.rh-stat-card:hover { background: rgba(255,255,255,0.08); }

.rh-stat-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--accent); line-height: 1; margin-bottom: 0.3rem;
}
.rh-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.rh-trust-bar {
  background: var(--accent); overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.rh-trust-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; gap: 0; flex-wrap: nowrap;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rh-trust-inner::-webkit-scrollbar { display: none; }

.rh-trust-item {
  display: flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--green-dark);
  padding: 0.85rem 1.5rem; position: relative;
}
.rh-trust-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 25%; bottom: 25%;
  width: 1px; background: rgba(10,46,28,0.2);
}
.rh-trust-icon { font-size: 0.9rem; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
#rh-services { background: var(--white); }

.rh-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.rh-service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.rh-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--green-light), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.rh-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.rh-service-card:hover::before { transform: scaleX(1); }

.rh-service-icon {
  font-size: 2.25rem; margin-bottom: 1rem; display: block;
  transition: transform 0.2s;
}
.rh-service-card:hover .rh-service-icon { transform: scale(1.1); }

.rh-service-card h3 { margin-bottom: 0.65rem; color: var(--text-dark); font-size: 1.15rem; }
.rh-service-card p  { color: var(--text-mid); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.25rem; }

.rh-service-link {
  font-size: 0.85rem; font-weight: 700; color: var(--green-light);
  letter-spacing: 0.03em; transition: gap 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.rh-service-link:hover { color: var(--accent); }

/* ══════════════════════════════
   WHY ROYALL — dark section
══════════════════════════════ */
#rh-why { background: var(--green-dark); position: relative; overflow: hidden; }
#rh-why::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(39,121,78,0.18) 0%, transparent 70%);
}

#rh-why h2, #rh-why .rh-section-label { color: var(--white); }

.rh-why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2rem;
}

.rh-why-item {
  padding: 1.75rem; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s, border-color 0.25s;
}
.rh-why-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.3); }

.rh-why-num {
  font-family: var(--serif); font-size: 2.75rem; font-weight: 700;
  color: var(--accent); line-height: 1; margin-bottom: 0.5rem;
}
.rh-why-item h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 1rem; }
.rh-why-item p  { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; }

/* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
#rh-how { background: var(--off-white); }

.rh-steps { display: flex; flex-direction: column; gap: 0; counter-reset: step; }

.rh-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem;
  align-items: flex-start; padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.rh-step:last-child { border-bottom: none; }

.rh-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-dark); color: var(--accent);
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 2px solid rgba(201,168,76,0.25);
  transition: background 0.2s, box-shadow 0.2s;
}
.rh-step:hover .rh-step-num {
  background: var(--green-mid); box-shadow: 0 0 0 6px rgba(39,121,78,0.12);
}

.rh-step h3 { margin-bottom: 0.4rem; color: var(--text-dark); }
.rh-step p  { color: var(--text-mid); font-size: 0.93rem; }

/* connector line between steps */
.rh-steps { position: relative; }

/* ══════════════════════════════
   SERVICE AREAS
══════════════════════════════ */
#rh-areas { background: var(--white); }

.rh-areas-grid {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}

.rh-area-pill {
  display: flex; flex-direction: column;
  padding: 0.75rem 1.25rem; border-radius: var(--radius);
  background: var(--off-white); border: 1px solid var(--border);
  font-weight: 600; font-size: 0.9rem; color: var(--text-dark);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: default;
}
.rh-area-pill:hover {
  background: var(--green-dark); color: var(--white);
  border-color: var(--green-dark); transform: translateY(-2px);
}
.rh-area-pill:hover span { color: var(--accent); }

.rh-area-pill span {
  font-size: 0.72rem; font-weight: 400; color: var(--text-muted);
  margin-top: 0.15rem; transition: color 0.2s;
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
#rh-testimonials { background: var(--off-white); }

.rh-testi-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}

.rh-testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.rh-testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Quote mark */
.rh-testi-card::before {
  content: '\201C';
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: var(--serif); font-size: 5rem; line-height: 1;
  color: var(--green-pale); pointer-events: none;
}

.rh-stars { color: var(--accent); font-size: 1rem; letter-spacing: 0.1em; }

.rh-testi-text {
  font-size: 0.93rem; color: var(--text-mid); line-height: 1.8;
  font-style: italic; flex: 1;
}

.rh-testi-author { font-weight: 700; color: var(--text-dark); font-size: 0.9rem; }
.rh-testi-role   { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ══════════════════════════════
   QUOTE / CONTACT
══════════════════════════════ */
#rh-quote { background: var(--green-dark); position: relative; overflow: hidden; }
#rh-quote::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 80% at 20% 50%, rgba(39,121,78,0.15) 0%, transparent 65%);
}

.rh-quote-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; position: relative; z-index: 1;
}

#rh-quote h2 { color: var(--white); }

.rh-contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.rh-contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.rh-contact-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.2rem; }
.rh-contact-val   { font-weight: 600; color: var(--white); font-size: 1rem; }
.rh-contact-sub   { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; }

/* Quote Form */
.rh-quote-form {
  background: var(--white); border-radius: 16px;
  padding: 2.25rem; box-shadow: var(--shadow-lg);
}
.rh-form-title {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}

.rh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rh-form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.rh-form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--text-mid);
  letter-spacing: 0.02em;
}
.rh-form-group input,
.rh-form-group select,
.rh-form-group textarea {
  padding: 0.75rem 0.875rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--sans); font-size: 0.9rem;
  color: var(--text-dark); background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.rh-form-group input:focus,
.rh-form-group select:focus,
.rh-form-group textarea:focus {
  outline: none; border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(39,121,78,0.1); background: var(--white);
}
.rh-form-group textarea { min-height: 90px; resize: vertical; }
.rh-form-group select { cursor: pointer; }
.rh-form-group input::placeholder,
.rh-form-group textarea::placeholder { color: var(--text-muted); font-size: 0.87rem; }

/* Honeypot */
.rh-honeypot { display: none; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
#rh-faq { background: var(--white); }

.rh-faq-list { max-width: 720px; margin: 0 auto; }

.rh-faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}

.rh-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.35rem 0; cursor: pointer; gap: 1rem;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  color: var(--text-dark); transition: color 0.2s;
}
.rh-faq-q:hover { color: var(--green-light); }
.rh-faq-item.open .rh-faq-q { color: var(--green-mid); }

.rh-faq-icon {
  font-size: 1.25rem; font-weight: 300; color: var(--green-light);
  flex-shrink: 0; transition: transform 0.3s; line-height: 1;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1.5px solid var(--border);
}
.rh-faq-item.open .rh-faq-icon { transform: rotate(45deg); background: var(--green-dark); color: var(--accent); border-color: transparent; }

.rh-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.94rem; color: var(--text-mid); line-height: 1.8;
  padding: 0;
}
.rh-faq-item.open .rh-faq-a { max-height: 300px; padding-bottom: 1.35rem; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
#rh-footer {
  background: #07200f;
  color: rgba(255,255,255,0.55);
  padding: 5rem 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.rh-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.25fr; gap: 3rem; margin-bottom: 3.5rem;
}

.rh-footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; margin-top: 1rem; }

.rh-footer-logo-wrap { display: block; line-height: 0; margin-bottom: 0.5rem; transition: opacity 0.2s; }
.rh-footer-logo-wrap:hover { opacity: 0.8; }

.rh-footer-col h4 {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.25rem;
}
.rh-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.rh-footer-col ul li a {
  color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: color 0.2s;
}
.rh-footer-col ul li a:hover { color: var(--white); }

.rh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
}
.rh-footer-legal { display: flex; gap: 1.5rem; }
.rh-footer-legal a { color: rgba(255,255,255,0.4); transition: color 0.2s; font-size: 0.8rem; }
.rh-footer-legal a:hover { color: var(--white); }

/* ══════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════ */
.rh-whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: rh-pulse 3s ease-in-out infinite;
}
.rh-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.rh-whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

@keyframes rh-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ══════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════ */
.rh-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.rh-reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════ */
@media (max-width: 960px) {
  .rh-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .rh-hero-stats { flex-direction: row; flex-wrap: wrap; }
  .rh-stat-card  { flex: 1; min-width: 140px; }

  .rh-quote-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .rh-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .rh-footer-brand { grid-column: 1 / -1; }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════ */
@media (max-width: 680px) {
  .rh-section { padding: 4rem 0; }

  .rh-nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--green-dark); flex-direction: column; gap: 0;
    padding: 1rem 0; transform: translateY(-100%);
    opacity: 0; pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  }
  .rh-nav-links.mobile-open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .rh-nav-links li { width: 100%; }
  .rh-nav-links a { display: block; padding: 0.9rem 5%; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.95rem; }
  .rh-nav-links a::after { display: none; }
  .rh-nav-cta { margin: 0.75rem 5% !important; display: block !important; text-align: center !important; }
  .rh-hamburger { display: flex; }

  .rh-hero-stats { flex-direction: column; }
  .rh-stat-card  { min-width: 0; }

  .rh-services-grid { grid-template-columns: 1fr; }
  .rh-why-grid      { grid-template-columns: 1fr; }
  .rh-testi-grid    { grid-template-columns: 1fr; }

  .rh-form-row { grid-template-columns: 1fr; }

  .rh-footer-grid { grid-template-columns: 1fr; }
  .rh-footer-brand { grid-column: auto; }

  .rh-footer-bottom { flex-direction: column; align-items: flex-start; }
  .rh-footer-legal  { flex-wrap: wrap; gap: 1rem; }

  .rh-trust-inner { padding: 0 0; }

  .rh-hero-btns { flex-direction: column; }
  .rh-btn-primary, .rh-btn-outline { justify-content: center; }
}

/* ══════════════════════════════
   PRINT
══════════════════════════════ */
@media print {
  #rh-nav, .rh-whatsapp-float, .rh-hero-btns { display: none; }
  body { color: #000; }
}

/* ══════════════════════════════
   IMAGE LAYOUT ADDITIONS v2.1
══════════════════════════════ */

/* ── Hero background image ── */
.rh-hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.32) saturate(.6);
  transform: scale(1.04);
  transition: transform 9s ease;
}
#rh-hero:hover .rh-hero-bg-img { transform: scale(1); }
.rh-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,46,28,.9) 0%, rgba(10,46,28,.55) 60%, rgba(39,121,78,.25) 100%);
}
.rh-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Service cards with image header ── */
.rh-service-card { padding: 0; overflow: hidden; }
.rh-svc-img-wrap { overflow: hidden; position: relative; }
.rh-svc-img-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(transparent, var(--off-white));
  pointer-events: none;
}
.rh-svc-img {
  width: 100%; height: 210px; object-fit: cover;
  display: block; transition: transform .5s ease;
}
.rh-service-card:hover .rh-svc-img { transform: scale(1.06); }
.rh-svc-body { padding: 1.5rem; }
.rh-svc-body h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.rh-svc-body p  { color: var(--text-mid); font-size: .9rem; line-height: 1.7; margin-bottom: 1.1rem; }

/* ── Why section — split layout with photo ── */
.rh-why-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center; position: relative; z-index: 1;
}
.rh-why-img-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.4); position: relative;
}
.rh-why-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.rh-why-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--accent); color: var(--green-dark);
  font-weight: 700; font-size: .78rem; letter-spacing: .06em;
  text-transform: uppercase; padding: .55rem 1rem; border-radius: 6px;
}

/* ── How It Works — split with image stack ── */
.rh-how-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.rh-how-img-stack { position: relative; }
.rh-how-img-main  { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.rh-how-img-main img { width: 100%; height: 420px; object-fit: cover; display: block; }
.rh-how-img-float {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 190px; border-radius: 12px; overflow: hidden;
  border: 4px solid var(--white); box-shadow: var(--shadow-md);
}
.rh-how-img-float img { width: 100%; height: 130px; object-fit: cover; display: block; }

/* ── Service Areas — split with image ── */
.rh-areas-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
}
.rh-areas-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.rh-areas-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
.rh-areas-caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(10,46,28,.85); backdrop-filter: blur(8px);
  border-radius: 8px; padding: 1rem 1.25rem; color: var(--white);
}
.rh-areas-caption strong {
  display: block; font-size: .72rem; color: var(--accent);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .25rem;
  font-family: var(--sans);
}
.rh-areas-caption p { font-size: .85rem; color: rgba(255,255,255,.7); margin: 0; }

/* ── Reveal animation class ── */
.rh-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.rh-reveal.visible { opacity: 1; transform: none; }

/* ══ RESPONSIVE OVERRIDES FOR NEW LAYOUTS ══ */
@media (max-width: 960px) {
  .rh-why-split,
  .rh-how-split,
  .rh-areas-wrap   { grid-template-columns: 1fr; gap: 2.5rem; }
  .rh-how-img-stack { display: none; }
  .rh-why-img-wrap img { height: 340px; }
  .rh-areas-img   { display: none; }
}
@media (max-width: 680px) {
  .rh-services-grid { grid-template-columns: 1fr; }
  .rh-why-grid      { grid-template-columns: 1fr; }
  .rh-svc-img       { height: 180px; }
}

/* ═══════════════════════════════
   SERVICE & LOCATION PAGE STYLES
═══════════════════════════════ */

/* Service hero (inner pages) */
.rh-svc-hero {
  min-height: 55vh; display: flex; align-items: center;
  background-size: cover; background-position: center;
  position: relative; padding: calc(var(--nav-h) + 3rem) 0 4rem;
}
.rh-svc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,46,28,.9) 0%, rgba(10,46,28,.6) 100%);
}
.rh-svc-hero-inner { max-width: 700px; }
.rh-svc-hero-inner h1 { color: var(--white); margin-bottom: 1rem; }
.rh-svc-hero-intro { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }
.rh-svc-price-badge {
  display: inline-block; background: var(--accent); color: var(--green-dark);
  font-weight: 700; font-size: .85rem; padding: .45rem 1rem; border-radius: 999px;
  letter-spacing: .04em; margin-top: .5rem;
}

/* Service page 2-col grid */
.rh-svc-content-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start;
}

/* Prose body (WP editor content) */
.rh-prose h2 { font-size: clamp(1.5rem,3vw,2rem); margin: 2.5rem 0 1rem; color: var(--green-dark); }
.rh-prose h3 { font-size: 1.2rem; margin: 1.75rem 0 .6rem; }
.rh-prose p  { color: var(--txt-mid); line-height: 1.85; margin-bottom: 1.2rem; }
.rh-prose ul, .rh-prose ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.rh-prose li { color: var(--txt-mid); line-height: 1.8; margin-bottom: .4rem; }
.rh-prose strong { color: var(--txt); }
.rh-prose a  { color: var(--green-light); text-decoration: underline; }
.rh-prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .92rem; }
.rh-prose th, .rh-prose td { padding: .75rem 1rem; border: 1px solid var(--border); text-align: left; }
.rh-prose th { background: var(--off-white); font-weight: 700; color: var(--green-dark); }

/* Sidebar CTA box */
.rh-svc-sidebar { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.rh-svc-cta-box {
  background: var(--green-dark); border-radius: 14px; padding: 2rem;
  box-shadow: var(--shadow-lg); margin-bottom: 1.5rem;
}
.rh-svc-cta-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.rh-svc-cta-box h3 { color: var(--white); margin-bottom: .5rem; font-size: 1.2rem; }
.rh-svc-cta-box p  { color: rgba(255,255,255,.6); font-size: .88rem; }
.rh-svc-price { font-size: 1.1rem; font-weight: 700; color: var(--accent); margin: .75rem 0; }
.rh-svc-call-btn, .rh-svc-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .75rem 1rem; border-radius: var(--r); margin-top: .75rem;
  font-weight: 600; font-size: .9rem; transition: all .2s;
}
.rh-svc-call-btn { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.15); }
.rh-svc-call-btn:hover { background: rgba(255,255,255,.14); color: var(--white); }
.rh-svc-wa-btn { background: #25D366; color: var(--white); }
.rh-svc-wa-btn:hover { background: #1ebe5d; }

.rh-svc-trust-list { background: var(--off-white); border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border); }
.rh-svc-trust-list h4 { font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-light); margin-bottom: 1rem; }
.rh-svc-trust-list ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.rh-svc-trust-list li { font-size: .88rem; color: var(--txt-mid); }

/* Suburb list */
.rh-suburb-list { display: flex; flex-wrap: wrap; gap: .4rem .75rem; list-style: none; padding: 0; margin-bottom: 1.5rem; }
.rh-suburb-list li { background: var(--g-pale); padding: .25rem .75rem; border-radius: 999px; font-size: .85rem; color: var(--green-mid); font-weight: 500; }

/* Breadcrumbs */
.rh-breadcrumbs { background: var(--off-white); border-bottom: 1px solid var(--border); padding: .6rem 5%; }
.rh-breadcrumbs ol { list-style: none; display: flex; align-items: center; gap: .3rem; font-size: .8rem; color: var(--txt-muted); max-width: 1180px; margin: 0 auto; }
.rh-breadcrumbs a { color: var(--green-light); }
.rh-bc-sep { color: var(--txt-muted); }

/* Responsive */
@media (max-width: 900px) {
  .rh-svc-content-grid { grid-template-columns: 1fr; }
  .rh-svc-sidebar { position: static; }
}
