/* ===== RESET & ROOT ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #2d6a2d;
  --green-light: #3d8b3d;
  --green-dark: #1a4a1a;
  --green-pale: #e8f5e8;
  --gold: #c8960a;
  --gold-light: #f0b429;
  --black: #111111;
  --dark: #1e1e1e;
  --white: #ffffff;
  --off-white: #f9faf7;
  --gray: #666;
  --gray-light: #f4f4f4;
  --border: #e0e0e0;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== FLOATING LEAVES ===== */
.leaves-container {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.leaf {
  position: absolute;
  font-size: 1.8rem;
  animation: leafFall linear infinite;
  opacity: 0;
  user-select: none;
}

@keyframes leafFall {
  0%   { transform: translateY(-60px) rotate(0deg) translateX(0); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(110vh) rotate(720deg) translateX(60px); opacity: 0; }
}

.leaf-1  { left: 5%;   animation-duration: 8s;  animation-delay: 0s;    font-size: 2rem; }
.leaf-2  { left: 12%;  animation-duration: 11s; animation-delay: 1.5s; }
.leaf-3  { left: 22%;  animation-duration: 9s;  animation-delay: 3s;    font-size: 2.2rem; }
.leaf-4  { left: 30%;  animation-duration: 13s; animation-delay: 0.5s; }
.leaf-5  { left: 42%;  animation-duration: 7s;  animation-delay: 2s;    font-size: 1.5rem; }
.leaf-6  { left: 55%;  animation-duration: 10s; animation-delay: 4s; }
.leaf-7  { left: 63%;  animation-duration: 12s; animation-delay: 1s;    font-size: 2.4rem; }
.leaf-8  { left: 72%;  animation-duration: 8.5s;animation-delay: 3.5s; }
.leaf-9  { left: 80%;  animation-duration: 9.5s;animation-delay: 0.8s;  font-size: 2rem; }
.leaf-10 { left: 88%;  animation-duration: 11s; animation-delay: 5s; }
.leaf-11 { left: 95%;  animation-duration: 7.5s;animation-delay: 2.5s;  font-size: 2.2rem; }
.leaf-12 { left: 38%;  animation-duration: 14s; animation-delay: 6s;    font-size: 1.6rem; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(45,106,45,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }

.logo-circle {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,10,0.25), 0 4px 18px rgba(0,0,0,0.15);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.logo-circle:hover { transform: scale(1.05); box-shadow: 0 0 0 4px rgba(200,150,10,0.35), 0 6px 20px rgba(0,0,0,0.18); }

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  padding: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.3rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--green);
  background: var(--green-pale);
}

.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 0.5rem;
}

.nav-cta:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(45,106,45,0.35); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* ===== PAGES ===== */
.page { display: none; padding-top: 110px; position: relative; z-index: 1; }
.page.active { display: block; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-label.light { color: rgba(255,255,255,0.8); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.text-green { color: var(--green); }
.text-gold  { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--green);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(45,106,45,0.4); }
.btn-primary.pulse { animation: pulsate 2s infinite; }
@keyframes pulsate { 0%,100%{box-shadow:0 0 0 0 rgba(45,106,45,0.35);} 50%{box-shadow:0 0 0 12px rgba(45,106,45,0);} }

.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover { background: var(--green); color: white; transform: translateY(-2px); }

.btn-service {
  background: var(--green-pale);
  color: var(--green);
  border: 2px solid var(--green);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem;
  width: 100%;
}
.btn-service:hover { background: var(--green); color: white; }

.full-btn { width: 100%; text-align: center; }
.small-btn { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 90px);
  background: linear-gradient(135deg, #f9fff4 0%, #e8f5e8 40%, #fff9e6 100%);
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-content { flex: 1; max-width: 600px; }

.hero-badge-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-pale), #fff9e6);
  border: 1.5px solid rgba(45,106,45,0.3);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: white;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  width: fit-content;
}
.stat { text-align: center; padding: 0 1.5rem; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--green); font-family: 'Playfair Display', serif; }
.stat-label { display: block; font-size: 0.72rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-right { flex: 1; display: flex; justify-content: center; align-items: center; }

/* Hero single image */
.hero-single-img {
  position: relative;
  width: 480px;
  animation: floatLogo 5s ease-in-out infinite;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}
@keyframes floatLogo { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

.hero-single-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s ease;
}
.hero-single-img:hover img { transform: scale(1.03); }

.hero-img-badge-eco {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: white;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(45,106,45,0.4);
}

.hero-img-badge-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--gold);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(200,150,10,0.4);
  border: 3px solid white;
}

.eco-badge {
  background: var(--green);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(45,106,45,0.4);
  display: inline-block;
}

/* ===== WHY CHOOSE US ===== */
.why-us { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.why-card h3 { font-weight: 800; font-size: 1rem; margin-bottom: 0.5rem; color: var(--dark); }
.why-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ===== SERVICES PREVIEW ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.services-grid.big {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,106,45,0.04), rgba(200,150,10,0.04));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--green); }
.service-card:hover::after { opacity: 1; }

.service-icon-wrap { font-size: 2.5rem; margin-bottom: 1rem; display: block; transition: transform 0.3s; }
.service-card:hover .service-icon-wrap { transform: scale(1.15) rotate(-5deg); }
.service-card h3 { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--dark); }
.service-card p { font-size: 0.88rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.6; }
.service-price { display: inline-block; background: var(--green-pale); color: var(--green); font-weight: 800; font-size: 0.85rem; padding: 0.3rem 0.8rem; border-radius: 50px; border: 1px solid rgba(45,106,45,0.2); margin-bottom: 0.75rem; }
.service-arrow { color: var(--green); font-weight: 700; font-size: 0.88rem; opacity: 0; transform: translateX(-6px); transition: all 0.3s; }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* Big service cards on services page */
.big-card { padding: 0; overflow: hidden; }
.big-card-img { 
  height: 220px; 
  background-size: cover; 
  background-position: center; 
  position: relative;
  transition: transform 0.4s ease;
  overflow: hidden;
}
.big-card:hover .big-card-img { transform: scale(1.03); }
.big-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
/* 
  debris  : branches/shrubs piled up in yard
  raking  : person raking autumn leaves  
  edging  : lawn mower edging green grass
  flowerbed: blooming colorful flower bed
  hedge   : neatly trimmed green hedges
  fall    : carpet of fallen autumn leaves
*/
.debris-bg   { background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/derbis.jpg') center/cover no-repeat; }
.raking-bg   { background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/raking.jpg') center/cover no-repeat; }
.edging-bg   { background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/lawn.jpg') center/cover no-repeat; }
.flowerbed-bg{ background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/flower.jpeg') center/cover no-repeat; }
.hedge-bg    { background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/trim.jpg') center/cover no-repeat; }
.fall-bg     { background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/fall clean.jpg') center/cover no-repeat; }

/* emoji placeholder removed - using real background images */
.big-card-body { padding: 1.5rem 2rem 2rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, #1e5a1e 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-leaves { font-size: 2rem; margin-bottom: 1rem; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: white; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-row { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-phone { color: white; text-decoration: none; font-weight: 800; font-size: 1.1rem; border: 2px solid rgba(255,255,255,0.4); padding: 0.75rem 1.5rem; border-radius: 50px; transition: all 0.3s; }
.cta-phone:hover { background: rgba(255,255,255,0.15); }
.cta-banner .btn-primary { background: var(--gold); }
.cta-banner .btn-primary:hover { background: var(--gold-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-preview { background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}
.testi-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--green-pale); position: absolute; top: -10px; left: 1.5rem; line-height: 1; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-card.large { background: white; }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testi-card p, .testi-body { font-size: 0.92rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; color: white; flex-shrink: 0; }
.av-g    { background: var(--green); }
.av-gold { background: var(--gold); }
.av-o    { background: #e67e22; }
.testi-author strong { display: block; font-weight: 800; font-size: 0.9rem; }
.testi-author small  { color: var(--gray); font-size: 0.78rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #2a5a2a 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '🍁 🍂 🍁 🍂 🍁';
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  opacity: 0.3;
  letter-spacing: 1rem;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: white; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

/* ===== SERVICE DETAIL ===== */
.back-btn {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: all 0.2s;
  display: inline-block;
}
.back-btn:hover { background: rgba(255,255,255,0.25); }
.detail-icon-big { font-size: 3.5rem; margin-bottom: 0.5rem; }
.detail-sub { color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; }

.detail-section-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.detail-desc { color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.detail-checklist { list-style: none; }
.detail-checklist li { padding: 0.4rem 0; color: var(--gray); font-size: 0.92rem; display: flex; align-items: center; gap: 0.5rem; }
.detail-checklist li::before { content: '✅'; font-size: 0.9rem; }

.ba-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center; }
.ba-img-box {
  border-radius: var(--radius);
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.before-box { background: linear-gradient(135deg, #c9a96e, #8B6914); }
.after-box  { background: linear-gradient(135deg, #3d8b3d, #1a5a1a); }
.ba-placeholder-content { text-align: center; color: white; }
.ba-placeholder-content span { font-size: 3rem; display: block; margin-bottom: 0.5rem; }
.ba-placeholder-content p { font-size: 0.85rem; opacity: 0.8; }
.ba-overlay-label { position: absolute; top: 10px; left: 10px; padding: 0.3rem 0.8rem; border-radius: 50px; font-weight: 800; font-size: 0.78rem; letter-spacing: 1px; }
.before-lbl { background: #8B6914; color: white; }
.after-lbl  { background: var(--green-dark); color: white; }
.ba-arrow-big { font-size: 2rem; color: var(--green); font-weight: 900; }

.video-box {
  background: linear-gradient(135deg, var(--dark), #2a2a2a);
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px dashed rgba(255,255,255,0.15);
}
.video-box:hover { border-color: var(--green); }
.video-play { font-size: 3rem; background: var(--green); width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; transition: transform 0.3s; }
.video-box:hover .video-play { transform: scale(1.1); }
.video-box p { font-weight: 700; }
.video-box small { opacity: 0.5; font-size: 0.8rem; }

/* Quote sidebar */
.quote-sidebar-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.qsc-header {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  padding: 1.5rem;
  color: white;
}
.qsc-header h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.25rem; }
.qsc-header p { font-size: 0.9rem; opacity: 0.9; }
.quote-sidebar-card .form-group { padding: 0 1.5rem; margin-bottom: 1rem; }
.quote-sidebar-card .form-group:first-of-type { margin-top: 1.5rem; }
.quote-sidebar-card .btn-primary { margin: 0 1.5rem 1rem; width: calc(100% - 3rem); }
.quote-sidebar-card .form-note { padding: 0 1.5rem 1.5rem; text-align: center; }

.sidebar-contact-card {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1.5px solid rgba(45,106,45,0.2);
}
.sidebar-contact-card h4 { font-weight: 800; margin-bottom: 0.75rem; color: var(--dark); }
.sidebar-phone { display: block; font-size: 1.3rem; font-weight: 900; color: var(--green); text-decoration: none; margin-bottom: 0.75rem; }
.sidebar-contact-card p { font-size: 0.85rem; color: var(--gray); margin-bottom: 0.25rem; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 700; font-size: 0.82rem; color: var(--dark); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,45,0.12);
}
.form-group textarea { height: 90px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--gray); text-align: center; margin-top: 0.75rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== ABOUT ===== */
.about-intro-grid { display: grid; grid-template-columns: 350px 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.about-logo-col { display: flex; justify-content: center; }
.about-logo-wrap { position: relative; }
.about-logo-wrap img { width: 280px; height: 280px; object-fit: cover; border-radius: 50%; border: 5px solid var(--gold); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.est-badge { position: absolute; bottom: 15px; right: 15px; background: var(--green); color: white; padding: 0.4rem 0.9rem; border-radius: 50px; font-weight: 800; font-size: 0.85rem; }
.about-text-col h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1.5rem; }
.about-text-col p { color: var(--gray); margin-bottom: 1rem; line-height: 1.8; }

.values-section { margin-bottom: 4rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.value-card { background: white; border-radius: var(--radius); padding: 2rem; border: 1.5px solid var(--border); text-align: center; transition: all 0.3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green); }
.val-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-weight: 800; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

.sa-card { background: var(--green); border-radius: var(--radius); padding: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; color: white; }
.sa-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }
.sa-card p { opacity: 0.9; line-height: 1.7; margin-bottom: 1.5rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tags span { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; }
.sa-right h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 1.25rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.15); font-size: 0.9rem; }
.hours-phone { display: block; margin-top: 1.5rem; color: var(--gold-light); font-size: 1.2rem; font-weight: 800; text-decoration: none; }

/* ===== TESTIMONIALS PAGE ===== */
.testi-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
}
.ts { text-align: center; padding: 0 3rem; }
.ts-num { display: block; font-size: 2.5rem; font-weight: 900; color: var(--green); font-family: 'Playfair Display', serif; }
.ts .stars { color: var(--gold); margin: 0.25rem 0; }
.ts p { font-size: 0.82rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.ts-div { width: 1px; height: 60px; background: var(--border); }
.testi-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.testi-bottom-cta { text-align: center; padding: 3rem; background: var(--green-pale); border-radius: var(--radius); }
.testi-bottom-cta h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-info-col h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1rem; }
.contact-info-col > p { color: var(--gray); margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.c-card { display: flex; align-items: center; gap: 1rem; background: white; border-radius: var(--radius-sm); padding: 1.2rem; border: 1.5px solid var(--border); transition: all 0.2s; }
.c-card:hover { border-color: var(--green); box-shadow: 0 4px 15px rgba(45,106,45,0.1); }
.c-icon { font-size: 1.8rem; flex-shrink: 0; }
.c-card h4 { font-weight: 800; font-size: 0.85rem; margin-bottom: 0.2rem; color: var(--dark); }
.c-card a, .c-card span { color: var(--green); font-weight: 700; font-size: 0.92rem; text-decoration: none; }
.c-card a:hover { text-decoration: underline; }
.hours-card-contact { background: var(--green-pale); border-radius: var(--radius-sm); padding: 1.5rem; border: 1.5px solid rgba(45,106,45,0.2); }
.hours-card-contact h4 { font-weight: 800; margin-bottom: 1rem; color: var(--dark); }
.hours-card-contact .hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(45,106,45,0.1); font-size: 0.88rem; color: var(--dark); }
.contact-form-card { background: white; border-radius: var(--radius); padding: 2.5rem; border: 1.5px solid var(--border); box-shadow: var(--shadow); }
.contact-form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--dark); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-box {
  background: white;
  border-radius: 20px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from{opacity:0;transform:scale(0.92) translateY(20px);} to{opacity:1;transform:scale(1) translateY(0);} }
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--gray-light); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; z-index: 1; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.modal-close:hover { background: #e0e0e0; }
.modal-header { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 2rem; text-align: center; border-radius: 20px 20px 0 0; }
.modal-logo { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--gold); margin-bottom: 1rem; object-fit: cover; }
.modal-header h2 { color: white; font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 0.3rem; }
.modal-header p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.modal-body { padding: 2rem; }

/* ===== CHATBOT ===== */
#chatbot-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 1500; display: flex; flex-direction: column; align-items: flex-end; }

.chat-fab {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(45,106,45,0.5);
  transition: all 0.3s;
  position: relative;
}
.chat-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(45,106,45,0.6); }
.chat-notify {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e74c3c;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.chat-window {
  position: fixed;
  bottom: 90px;
  right: 2rem;
  width: 360px;
  max-height: 85vh;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow: hidden;
  border: 1.5px solid var(--border);
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
}
@keyframes slideUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }

.chat-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-logo { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.chat-header-info strong { display: block; color: white; font-size: 0.95rem; }
.chat-header-info small { color: rgba(255,255,255,0.75); font-size: 0.78rem; }
.chat-min { margin-left: auto; background: rgba(255,255,255,0.15); border: none; color: white; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 1rem; }
.chat-min:hover { background: rgba(255,255,255,0.25); }

.chat-messages { height: 280px; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; background: #f8fdf8; }
.chat-msg { max-width: 88%; }
.bot-msg { align-self: flex-start; }
.user-msg { align-self: flex-end; }
.bubble { padding: 0.75rem 1rem; border-radius: 16px; font-size: 0.88rem; line-height: 1.5; }
.bot-msg .bubble { background: white; border: 1.5px solid var(--border); color: var(--dark); border-radius: 4px 16px 16px 16px; }
.user-msg .bubble { background: var(--green); color: white; border-radius: 16px 4px 16px 16px; }
.typing .bubble { background: white; border: 1.5px solid var(--border); }
.typing-dots { display: flex; gap: 4px; }
.typing-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--gray); animation: blink 1.4s infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%,80%,100%{opacity:0.2;} 40%{opacity:1;} }

.quick-replies { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.quick-replies button { background: white; border: 1.5px solid var(--green); color: var(--green); padding: 0.3rem 0.7rem; border-radius: 50px; font-size: 0.78rem; font-family: 'Nunito', sans-serif; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.quick-replies button:hover { background: var(--green); color: white; }

.chat-input-wrap { padding: 0.75rem; border-top: 1.5px solid var(--border); display: flex; gap: 0.5rem; }

/* Chat tabs */
.chat-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  background: #f8fdf8;
}
.chat-tab {
  flex: 1;
  padding: 0.7rem;
  border: none;
  background: transparent;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.chat-tab:hover { color: var(--green); background: var(--green-pale); }
.chat-tab.active { color: var(--green); border-bottom-color: var(--green); background: white; }

/* Chat quote form */
.chat-quote-form {
  padding: 1rem;
  overflow-y: auto;
  max-height: 380px;
}
.chat-quote-intro {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1rem;
  text-align: center;
  background: var(--green-pale);
  padding: 0.5rem;
  border-radius: 8px;
}
.chat-form-group {
  margin-bottom: 0.75rem;
}
.chat-form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.chat-form-group input,
.chat-form-group select,
.chat-form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: "Nunito", sans-serif;
  font-size: 0.85rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.chat-form-group input:focus,
.chat-form-group select:focus,
.chat-form-group textarea:focus { border-color: var(--green); }
.chat-form-group textarea { height: 65px; resize: none; }
.chat-quote-btn {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}
.chat-quote-btn:hover { background: var(--green-light); transform: translateY(-1px); }
.chat-form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 0.5rem;
}
.chat-input-wrap input { flex: 1; border: 1.5px solid var(--border); border-radius: 50px; padding: 0.6rem 1rem; font-family: 'Nunito', sans-serif; font-size: 0.88rem; outline: none; }
.chat-input-wrap input:focus { border-color: var(--green); }
.chat-send { background: var(--green); border: none; color: white; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 1rem; transition: all 0.2s; flex-shrink: 0; }
.chat-send:hover { background: var(--green-light); transform: scale(1.05); }

/* ===== WHY BANNER ===== */
.why-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.why-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  margin-bottom: 2.5rem;
  gap: 0;
  flex-wrap: wrap;
  box-shadow: 0 8px 25px rgba(45,106,45,0.25);
}
.why-banner-item {
  color: white;
  font-weight: 800;
  font-size: 1rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
}
.why-banner-item span { font-size: 1.3rem; }
.why-banner-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.35);
}

/* ===== FOOTER MAP ===== */
.footer-map {
  background: var(--dark);
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.map-title {
  color: white;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-align: center;
  letter-spacing: 0.5px;
}
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.08);
}

/* ===== FOOTER BOTTOM ===== */

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: white; }
.footer-main { padding: 4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; max-width: 1200px; margin: 0 auto; }
.footer-logo { width: 90px; height: 90px; border-radius: 50%; border: 3px solid var(--gold); object-fit: cover; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.insta-btn { display: inline-block; background: linear-gradient(135deg, #E1306C, #C13584); color: white; padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.82rem; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.insta-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(193,53,132,0.4); }
.footer h4 { color: white; font-weight: 800; font-size: 0.95rem; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 0.6rem; }
.footer-list a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-list a:hover { color: var(--gold); }
.footer > div:last-child p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer > div:last-child a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer > div:last-child a:hover { color: var(--gold); }

.footer-bottom { background: rgba(0,0,0,0.3); padding: 1.25rem 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-left p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom-right p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.byrock-link { color: var(--gold-light); text-decoration: none; font-weight: 700; transition: color 0.2s; }
.byrock-link:hover { color: var(--gold); text-decoration: underline; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ===== SUCCESS STATE ===== */
.form-success {
  background: var(--green-pale);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  animation: fadeIn 0.4s ease;
}
.form-success h3 { color: var(--green); font-size: 1.3rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--gray); }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px);} to{opacity:1;transform:translateY(0);} }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { order: -1; }
  .quote-sidebar-card .form-group { padding: 0; }
  .quote-sidebar-card .btn-primary { margin: 0 0 1rem; width: 100%; }
  .quote-sidebar-card .form-note { padding: 0 0 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; text-align: center; }
  .about-logo-col { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .sa-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-container { height: 90px; }
  .logo-circle { width: 78px; height: 78px; }
  .page { padding-top: 90px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 75px; left: 0; right: 0; background: white; padding: 1.5rem 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 0.25rem; border-top: 2px solid var(--green-pale); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { flex-direction: column; padding: 2rem 1.5rem; gap: 2rem; text-align: center; }
  .hero-right { display: none; }
  .hero-single-img { width: 100%; }
  .hero-stats { margin: 0 auto; }
  .stat { padding: 0 1rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid.big { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-full-grid { grid-template-columns: 1fr; }
  .ba-row { grid-template-columns: 1fr; }
  .ba-arrow-big { display: none; }
  .testi-stats-bar { flex-direction: column; gap: 1.5rem; }
  .ts-div { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .chat-window { width: 310px; right: 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { justify-content: center; }
  .stat { padding: 0 0.75rem; }
  .modal-box { border-radius: 16px; }
  .modal-header { padding: 1.5rem; border-radius: 16px 16px 0 0; }
}


/* ByRock logo in footer */





/* Hero business name badge */
.hero-business-name {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(45,106,45,0.3);
  letter-spacing: 0.5px;
}





/* ByRock footer credit */
.byrock-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.byrock-footer-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-family: "Nunito", sans-serif;
}
.byrock-footer-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.byrock-footer-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  font-family: "Nunito", sans-serif;
}