:root {
  --dark-green: #1F3823;
  --accent: #E77E23;
  --accent-hover: #cf6c1e;
  --cream: #FCF7EE;
  --light-bg: #f9f7f0;
  --shadow: rgba(0, 0, 0, 0.1);
  --orange-light: #f4b861;
  --deep-green: #163820;
}

/* ───────────────────────────── RESET ───────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--dark-green);
  line-height: 1.5;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ───────────────────────────── NAVIGATION ───────────────────────────── */
.top-trust-bar {
  background: var(--dark-green);
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  padding: 6px 10px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.top-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0.5rem;
}
.top-trust-bar span:nth-child(1) i { color: #a5d6a7; }
.top-trust-bar span:nth-child(2) i { color: #81c784; }
.top-trust-bar span:nth-child(3) i { color: #ffd54f; }

nav {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  z-index: 100;
}
nav.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 50px;
  display: block !important;
  width: auto !important;
  margin: 0 !important;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: var(--dark-green);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  font-weight: 600;
  color: var(--dark-green);
  transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-links .btn-nav-quote {
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 600;
}
.nav-links .btn-nav-quote:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

/* Hide hamburger nav on desktop */
@media (min-width: 768px) {
  .menu-toggle { display: none !important; }
  .nav-links { display: flex !important; }
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0; }
  .btn-nav-quote { width: 100%; text-align: center; }
  .nav-logo img {
    height: 50px;
    width: auto;
    margin: 0 auto;
    display: block;
  }
}
/* ───────────────────────────── HERO ───────────────────────────── */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 10%;
  background: linear-gradient(to right, #e6eddf, var(--light-bg));
}
.hero .left, .hero .right {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

/* Responsive Hero Image */
.hero-left img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
  height: auto;
}

@media (min-width: 768px) {
  .hero-left img {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left img {
    max-width: 220px;
  }

  .hero-title {
    font-size: 2rem;
  }
}


/* Title */
.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark-green);
}

/* Trust Text & Stars */
.trust-rating {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.rating-stars {
  font-size: 1.2rem;
  color: #f5b301;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.rating-stars i {
  color: #f5b301 !important;
}
.rating-text {
  font-weight: 700;
  color: var(--dark-green);
}
.rating-sub {
  font-size: 0.9rem;
  color: #444;
}

/* Email Quote Box */
.hero .quote-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  width: 100%;
}
.hero .quote-box input[type="email"] {
  width: 100%;
  padding: 0 1rem 0 3rem;
  height: 3rem;
  font-size: 1rem;
  border: 2px solid var(--accent);
  border-radius: 6px;
  box-sizing: border-box;
}
.hero .quote-box .fa-envelope {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--accent);
}
.input-with-icon {
  position: relative;
  width: 100%;
}

/* ───────────── Buttons Consistency ───────────── */
.btn-main,
.btn-hero-quote,
.btn-call,
.btn-limited,
.btn-facebook {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

/* Button Colors */
.btn-hero-quote {
  background: var(--accent);
  color: #fff;
}
.btn-hero-quote:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn-call {
  background: var(--dark-green);
  color: #fff;
}
.btn-call:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn-limited {
  background: linear-gradient(90deg, var(--orange-light), var(--accent));
  color: #fff;
}
.btn-limited:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.btn-facebook {
  background: #1877f2;
  color: #fff;
}
.btn-facebook:hover {
  background: #1558c0;
}

/* Facebook icon */
.btn-facebook i {
  font-size: 1.25rem;
}
/* Button click animation */
.btn-main,
.btn-hero-quote,
.btn-call,
.btn-limited,
.btn-facebook {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.btn-main:active,
.btn-hero-quote:active,
.btn-call:active,
.btn-limited:active,
.btn-facebook:active {
  transform: scale(0.98) translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


/* ───────────────────────────── SERVICES ───────────────────────────── */
.services {
  padding: 4rem 10%;
}
.services h2 {
  text-align: center;
  font-size: 2rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
.services h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-item {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s ease;
}
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px var(--shadow);
}
.service-item h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  color: var(--dark-green);
}
.service-item h3 i {
  color: var(--accent);
  font-size: 1.5rem;
  animation: pulseIcon 2.5s infinite ease-in-out;
}
@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}
.services,
.gallery {
  display: block;
}

/* ───────────────────────────── GALLERY ───────────────────────────── */
.gallery {
  padding: 4rem 10%;
}
.gallery h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 0.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px var(--shadow);
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ───────────────────────────── FOOTER ───────────────────────────── */
footer {
  background: var(--deep-green);
  color: #fff;
  padding: 2rem 10% 2rem;
  text-align: center;
}

.footer-contact p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--accent);
  font-size: 1.1rem;
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: var(--accent-hover);
}

.footer-social {
  margin: 1rem 0;
}
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}
.footer-social a:hover {
  transform: scale(1.25);
  color: var(--accent);
}

.footer-copy {
  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
}

.powered-by {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.powered-by a {
  color: #fff;
  text-decoration: underline;
}
.powered-by a:hover {
  color: var(--accent-hover);
}

.sphere-logo {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231, 126, 35, 0.7); }
  50% { box-shadow: 0 0 0 12px rgba(231, 126, 35, 0); }
}

/* ───────────────────────────── RESPONSIVE ───────────────────────────── */
.hero-left img.hero-logo {
  display: block;
  /* fill its column but never overflow */
  width: 48%;        /* same split as your hero grid */
  max-width: 1000px;  /* tweak this max if you want it bigger or smaller */
  height: auto;      /* maintain aspect ratio */
  margin: 0 auto;    /* center within its column */
}
@media (min-width: 768px) {
  .hero-left img {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left img {
    max-width: 220px;
  }

  .hero-title {
    font-size: 2rem;
  }
}

.contact-form-wrapper {
  background: var(--light-bg);
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}
.contact-form-content {
  max-width: 500px;
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.contact-form-content h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.contact-form-content p {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #444;
}
.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}
.form-group i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--accent);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 2px solid var(--accent);
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s ease;
}
.form-group textarea {
  resize: vertical;
  padding-top: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-hover);
  background-color: var(--cream);
}
/* ───────────── CONTACT PAGE STYLES ───────────── */
/* Overall page theme for contact */
body.contact-page {
  background: var(--cream);
  color: var(--dark-green);
  font-family: 'Poppins', sans-serif;
}

/* Hero section with background gradient and intro text */
.contact-hero {
  background: linear-gradient(to right, #e6eddf, var(--light-bg));
  padding: 4rem 10% 2rem;
  text-align: center;
  animation: fadeIn 1.2s ease;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark-green);
}

.contact-hero p {
  font-size: 1.125rem;
  color: #444;
}

/* Quiz wrapper (older version, can be reused if repurposing) */
.quiz-section {
  padding: 3rem 10%;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 900px;
  animation: fadeUp 0.8s ease;
}

.quiz-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--dark-green);
}

/* Form field layout for quiz/form fields */
.quiz-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}

/* Label styling for all form fields */
.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

/* Input/select/textarea consistency */
.form-group select,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--accent);
  border-radius: 6px;
  font-size: 1rem;
}

/* Service checkbox grid for "What services are you interested in?" */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.checkbox-grid label {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Optional: Highlight checked options (if styling checkboxes more) */
/* 
.checkbox-grid input[type="checkbox"]:checked + label {
  font-weight: 600;
  color: var(--accent-hover);
}
*/

/* Simple fade-in animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  .quiz-section {
    padding: 2rem 1.25rem;
  }
}

/* Updated and modern form section */
.contact-form-container {
  padding: 4rem 10%;
  background: var(--light-bg);
  border-top: 1px solid var(--shadow);
}

.contact-form-container h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
}

.contact-form-container label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  color: var(--dark-green);
}

/* Inputs & selects in contact form */
.contact-form-container input,
.contact-form-container select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--accent);
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: #fff;
}

.contact-form-container input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

/* Responsive grid for form layout */
.contact-form-container .quote-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .contact-form-container .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-container .full-width {
    grid-column: span 2;
  }
}

#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  border: none;
  background-color: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#backToTop i {
  margin-top: 2px;
}

#backToTop:hover {
  background-color: var(--accent-hover);
  transform: scale(1.1);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}
.sticky-call {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 1rem;
  z-index: 999;
  display: none;
  text-decoration: none;
  transition: background 0.3s;
}

@media (max-width: 768px) {
  .sticky-call {
    display: block;
  }
}

.sticky-call:hover {
  background: var(--accent-hover);
}
.footer-social {
  text-align: center;
  margin-top: 1.5rem;
}

.footer-social p {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1877f2;
  text-decoration: none;
  transition: color 0.3s;
}

.fb-link i {
  font-size: 1.5rem;
}

.fb-link:hover {
  color: #145dbf;
}
  :root {
    --dark-green: #1F3823;
    --accent: #E77E23;
    --accent-hover: #cf6c1e;
    --cream: #FCF7EE;
    --light-bg: #f9f7f0;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: var(--dark-green);
    margin: 0;
    padding: 0;
  }

/* /* SERVICES PAGE STYLES */
.services-hero {
  background: var(--light-bg);
  padding: 4rem 10% 2rem;
  text-align: center;
  animation: fadeIn 1.2s ease forwards;
}
.services-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 0.75rem;
}
.services-hero p {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 10%;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--shadow);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h2 {
  font-size: 1.75rem;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}
.service-card .tagline {
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1rem;
}
.service-card ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}
.service-card ul li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}
.service-card p {
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* CTA Section */
.services-cta {
  background: var(--light-bg);
  padding: 3rem 10%;
  text-align: center;
  border-top: 1px solid var(--shadow);
}
.services-cta h3 {
  font-size: 1.8rem;
  color: var(--dark-green);
  margin-bottom: 1rem;
}
.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Anchor Navigation */
.services-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 10%;
  background: var(--cream);
  border-top: 1px solid var(--shadow);
  border-bottom: 1px solid var(--shadow);
}
.services-nav a {
  color: var(--dark-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.services-nav a:hover {
  color: var(--accent);
}

/* Blog Teaser Carousel */
.services-blog-teaser {
  padding: 2rem 10%;
  background: #fff;
  text-align: center;
}
.services-blog-teaser h4 {
  font-size: 1.4rem;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

/* Blog Carousel */
.blog-carousel {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.blog-slide {
  display: none;
  font-size: 1rem;
  color: var(--dark-green);
}
.blog-slide.active {
  display: block;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--accent);
  cursor: pointer;
  font-weight: bold;
}
#prevBlog { left: 10px; }
#nextBlog { right: 10px; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .services-hero h1 { font-size: 2rem; }
  .service-card { padding: 1.5rem; }
  .services-cta h3 { font-size: 1.5rem; }
  .services-cta p { font-size: 1rem; }
}
/* Blog Carousel Enhanced */
.services-blog-teaser {
  padding: 3rem 10%;
  background: var(--light-bg);
  text-align: center;
  position: relative;
}

.services-blog-teaser h4 {
  font-size: 1.6rem;
  color: var(--dark-green);
  margin-bottom: 2rem;
}

.blog-carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: auto;
  background: var(--cream);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.blog-slide {
  display: none;
  padding: 1rem 2rem;
  text-align: left;
  transition: opacity 0.5s ease;
}

.blog-slide.active {
  display: block;
}

.blog-slide a {
  text-decoration: none;
  color: var(--dark-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-slide img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 2;
}

#prevBlog { left: 0.5rem; }
#nextBlog { right: 0.5rem; }

@media (max-width: 768px) {
  .blog-slide {
    flex-direction: column;
    text-align: center;
  }

  .blog-slide a {
    flex-direction: column;
  }

  .blog-slide img {
    width: 100%;
    height: auto;
  }
}
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 10%;
}

.post-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.post-card h2 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: var(--dark-green);
}

.post-card p {
  font-size: 1rem;
  color: #555;
}
.post-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.post-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.blog-hero img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-bottom: 4px solid var(--accent);
}

.blog-article {
  padding: 3rem 10%;
  background-color: #fcf9f2;
}
.blog-article h1 {
  font-size: 2rem;
  color: var(--dark-green);
}
.blog-article .byline {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 2rem;
}
.blog-article h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  color: var(--deep-green);
}
.blog-article p {
  line-height: 1.6;
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #444;
}
.btn-orange-wide {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 1rem 2rem;
  background-color: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-orange-wide:hover {
  background-color: var(--accent-hover);
}
filter: brightness(1.15);
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  font-size: 2rem;
  color: white;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(5px);}
  60% {transform: translateY(3px);}
}
.hero-video::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--light-bg));
  z-index: 1;
}
.hero-video h1, .hero-video p, .hero-video a {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1s ease forwards;
}
.hero-video p { animation-delay: 0.2s; }
.hero-video a:first-of-type { animation-delay: 0.4s; }
.hero-video a:last-of-type { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services {
  padding-top: 4rem;
}
.hero-video a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.section-divider {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  margin-top: -2px;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}
.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.zoomable:hover {
  transform: scale(1.1);
}
.testimonials {
  background: var(--light-bg);
  padding: 4rem 5%;
  text-align: center;
}
.testimonial-list {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.testimonial-item p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.75rem;
}
.testimonial-item span {
  font-weight: bold;
  color: var(--dark-green);
  font-size: 0.95rem;
}
.zoomable {
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zoomable:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.testimonial-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
}
.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  border: 3px solid var(--light-bg);
}
.testimonial-item p {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
}
.testimonials {
  background: linear-gradient(to bottom, #fcf7ee, #ffffff);
}
.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  font-weight: 400;
}
.cookie-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.cookie-box {
  background: #ffffff;
  color: #1F3823;
  max-width: 400px;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  text-align: center;
  font-size: 1rem;
  animation: fadeIn 0.3s ease-out;
}

.cookie-box button {
  margin-top: 1rem;
  padding: 0.6rem 1.25rem;
  background-color: #E77E23;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
html, body {
  margin: 0;
  padding: 0;
}
:root {
  --green: #1F3823;
  --accent: #E4B93E;
  --light: #FCF7EE;
  --white: #ffffff;
  --facebook: #1877F2;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  margin: 0;
  color: #222;
}

.top-trust-bar {
  background: var(--green);
  color: #fff;
  font-size: 0.9rem;
  padding: 0.5rem;
  text-align: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.nav-logo img {
  height: 50px;
}

.thank-you-section {
  max-width: 700px;
  margin: 3rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}
.thank-you-section h1 {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.thank-you-section p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.checkmark {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 1rem;
  animation: pop 0.6s ease-in-out;
}
@keyframes pop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

.btn-back-home {
  background: var(--green);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 1.5rem;
  transition: background 0.3s;
}
.btn-back-home:hover {
  background: #163820;
}

footer {
  background: var(--green);
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}
footer p, footer a {
  margin: 0.4rem 0;
  color: #fff;
}
footer a {
  text-decoration: underline;
}
