/*
Theme Name: Sam Good Price Tree Service
Theme URI: https://samgoodpricetreeservice.com.au
Author: Sam Good Price Tree Service
Description: Custom WordPress theme for Sam Good Price Tree Service.
Version: 1.0
*/

/* ============================================================
   PASTE YOUR ORIGINAL styles.css CONTENT BELOW THIS LINE.
   This file is enqueued automatically by functions.php via
   get_stylesheet_uri(), so anything you paste here will load
   correctly on every page.
   ============================================================ */
/* ==========================================================================
   SAM GOOD PRICE TREE SERVICE - Master Stylesheet
   Pure CSS for easy editing, modern aesthetics, responsive layout
   ========================================================================== */

/* 1. CSS Variables & Theme */
:root {
  --primary: #1F5F24;          /* Official Brand Forest Green */
  --primary-dark: #144018;     /* Deep Forest Green */
  --primary-light: #2d8234;    /* Light Forest Green */
  --accent: #5E9F18;           /* Official Brand Lime Green */
  --accent-light: #7bc726;     /* Vibrant Lime Hover */
  --accent-pale: #eaf5de;      /* Pale Lime tint */
  --dark: #101A16;             /* Official Brand Dark Charcoal */
  --dark-surface: #17241f;     /* Dark Card Background */
  --dark-elevated: #1e3029;    /* Dark Card Border/Highlight */
  --light-bg: #F8FAF7;         /* Soft Natural Canvas */
  --light-card: #FFFFFF;       /* Pure White Card */
  --light-tint: #EDF5E9;       /* Eco Green Wash */
  --border-light: #E2ECE0;     /* Subtle Border */
  --text-main: #1C2B22;        /* Dark Readable Body Text */
  --text-muted: #556B5C;       /* Subdued secondary text */
  --text-light: #9BB3A2;       /* Light text on dark bg */
  --gold: #F59E0B;             /* Star rating gold */
  
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-display: 'Montserrat', var(--font-sans);
  
  --shadow-sm: 0 1px 3px rgba(16, 26, 22, 0.08);
  --shadow-md: 0 4px 12px rgba(16, 26, 22, 0.09);
  --shadow-lg: 0 12px 28px rgba(16, 26, 22, 0.12);
  --shadow-xl: 0 20px 40px rgba(16, 26, 22, 0.16);
  --shadow-glow: 0 0 24px rgba(94, 159, 24, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1240px;
}

/* 2. Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--light-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* 3. Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-lime {
  color: var(--accent);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--light-tint);
  border: 1px solid rgba(31, 95, 36, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
}

/* 4. Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-align: center;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(31, 95, 36, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 95, 36, 0.4);
}

.btn-accent {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(94, 159, 24, 0.3);
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-dark {
  background: var(--dark);
  color: #FFFFFF;
}

.btn-dark:hover {
  background: #000000;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--light-tint);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.badge-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #FFFFFF;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

/* 5. Top Bar */
.top-bar {
  background: var(--dark);
  color: #FFFFFF;
  font-size: 0.82rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-light);
}

.top-bar-item a {
  color: #FFFFFF;
  font-weight: 600;
}

.top-bar-item a:hover {
  color: var(--accent);
}

.top-bar-badge {
  background: var(--primary);
  color: #FFFFFF;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* 6. Navigation Header */
.site-header {
  padding-top: 20px;
  height: 120px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-tint);
  border: 2px solid rgba(31, 95, 36, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: var(--transition);
}

.brand-logo:hover .brand-emblem {
  transform: scale(1.05);
  border-color: var(--primary);
}

.brand-name-group {
  display: flex;
  flex-direction: column;
}

.brand-name-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.brand-name-sub {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone-btn {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  background: var(--light-tint);
  border: 1px solid rgba(31, 95, 36, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
}

.header-phone-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.nav-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--light-tint);
}

.nav-toggle-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

@media (min-width: 1040px) {
  .nav-menu {
    display: flex;
  }
  .header-phone-btn {
    display: inline-flex;
  }
  .nav-toggle-btn {
    display: none;
  }
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 26, 22, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--dark);
}

.drawer-nav-list {
  list-style: none;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-nav-link {
  display: block;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
}

.drawer-nav-link:hover {
  background: var(--light-tint);
  color: var(--primary);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* 7. Hero Banner Slider Section */
.hero-slider-section {
  position: relative;
  background: var(--dark);
  color: #FFFFFF;
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-slider-container {
    min-height: 680px;
  }
}

/* Slide track & slides */
.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 5.5rem;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  position: relative;
}

/* Background image with parallax scale & dark arborist gradient */
.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 6s cubic-bezier(0.1, 1, 0.1, 1);
  filter: brightness(0.72) saturate(1.15);
}

.hero-slide.active .hero-slide-bg img {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(16, 26, 22, 0.95) 0%,
    rgba(16, 26, 22, 0.88) 45%,
    rgba(16, 26, 22, 0.55) 75%,
    rgba(16, 26, 22, 0.85) 100%
  );
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-slide-overlay {
    background: linear-gradient(
      180deg,
      rgba(16, 26, 22, 0.92) 0%,
      rgba(16, 26, 22, 0.85) 60%,
      rgba(16, 26, 22, 0.95) 100%
    );
  }
}

/* Content Layout inside Slide */
.hero-slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(94, 159, 24, 0.2);
  border: 1px solid var(--accent);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: var(--accent);
  background: linear-gradient(135deg, #7bc726 0%, #5E9F18 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.3rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.6rem;
  }
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #E2ECE0;
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
}

.hero-guarantee-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #101A16;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Banner Slider Navigation Controls */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(16, 26, 22, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-slider-btn:hover {
  background: var(--accent);
  color: #101A16;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-glow);
}

.hero-slider-btn.prev {
  left: 20px;
}

.hero-slider-btn.next {
  right: 20px;
}

@media (max-width: 767px) {
  .hero-slider-btn {
    display: none;
  }
}

/* Slider Bottom Controls & Dots */
.hero-slider-controls {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero-slider-dot {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.hero-slider-dot.active {
  background: var(--accent);
  color: #101A16;
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  padding: 6px 18px;
}

/* Progress bar */
.hero-slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%;
  z-index: 20;
  transition: width 0.1s linear;
}

/* Official Logo Display Card in Hero */
.hero-visual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 2rem 1.8rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(12px);
}

.hero-visual-badge {
  position: absolute;
  top: -13px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.hero-image-wrap {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 1.2rem;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(16, 26, 22, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-logo-box {
  width: 100%;
}

.hero-logo-emblem {
  max-width: 220px;
  margin: 0 auto 0.6rem;
}

.hero-logo-title {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1;
}

.hero-logo-sub {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-services-mini-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin: 1rem 0;
  padding: 0.65rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.hero-mini-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  text-align: center;
}

.hero-mini-icon {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

/* 8. Trust Banner Strip */
.trust-strip {
  background: var(--dark);
  color: #FFFFFF;
  padding: 1.5rem 0;
  border-top: 2px solid var(--primary);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-strip-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-strip-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(94, 159, 24, 0.15);
  border: 1px solid rgba(94, 159, 24, 0.3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  shrink-0: 0;
}

.trust-strip-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.trust-strip-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 2px;
}

/* 9. About Section */
.about-section {
  padding: 5.5rem 0;
  background: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1.05fr;
  }
}

.about-image-stack {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--dark);
  color: #FFFFFF;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-xl);
  max-width: 280px;
}

.about-floating-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.about-floating-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
  width: 100%;
}

@media (max-width: 600px) {
  .about-features-list {
    grid-template-columns: 1fr;
  }
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--light-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}

.about-feature-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* 10. Services Section */
.services-section {
  padding: 5.5rem 0;
  background: var(--light-bg);
}

.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(31, 95, 36, 0.3);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.06);
}

.service-number-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(16, 26, 22, 0.85);
  backdrop-filter: blur(6px);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.service-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.service-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.service-benefit-icon {
  color: var(--accent);
  font-size: 0.85rem;
}

.service-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
}

/* 11. Cost Estimator / Instant Price Calculator */
.calculator-section {
  padding: 5rem 0;
  background: var(--dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .calc-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.calc-form-box {
  background: var(--dark-surface);
  border: 1px solid var(--dark-elevated);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-xl);
}

.calc-group {
  margin-bottom: 1.5rem;
}

.calc-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.6rem;
}

.calc-option-btn {
  background: var(--dark-elevated);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
}

.calc-option-btn:hover {
  border-color: var(--accent);
}

.calc-option-btn.active {
  background: var(--primary);
  border-color: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(94, 159, 24, 0.3);
}

.calc-result-card {
  background: linear-gradient(145deg, #182C22 0%, #101A16 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc-result-badge {
  background: var(--accent);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.calc-price-display {
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.calc-price-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
  max-width: 320px;
}

/* 12. Interactive Before / After Section */
.before-after-section {
  padding: 5.5rem 0;
  background: #FFFFFF;
}

.ba-selector-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ba-tab-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  color: var(--dark);
}

.ba-tab-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.ba-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--light-bg);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.ba-slider-wrapper {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}

@media (max-width: 600px) {
  .ba-slider-wrapper {
    height: 300px;
  }
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.ba-before-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
}

.ba-badge {
  position: absolute;
  top: 14px;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  z-index: 5;
  backdrop-filter: blur(6px);
}

.ba-badge-before {
  left: 14px;
  background: rgba(16, 26, 22, 0.85);
  color: #FFFFFF;
}

.ba-badge-after {
  right: 14px;
  background: rgba(31, 95, 36, 0.9);
  color: #FFFFFF;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #FFFFFF;
  z-index: 10;
  cursor: ew-resize;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transform: translateX(-50%);
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.1rem;
}

.ba-info-footer {
  margin-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ba-job-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark);
}

.ba-job-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* 13. Why Choose Us (6 Pillars) */
.why-us-section {
  padding: 5.5rem 0;
  background: var(--light-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--light-tint);
  border: 1px solid rgba(31, 95, 36, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.why-card:hover .why-icon-box {
  background: var(--primary);
  color: #FFFFFF;
}

.why-card-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.why-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 14. 4-Step Process Section */
.process-section {
  padding: 5.5rem 0;
  background: #FFFFFF;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  border: 1px solid var(--border-light);
  position: relative;
}

.process-step-badge {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 1rem;
}

.process-card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.process-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 15. Gallery Section */
.gallery-section {
  padding: 5.5rem 0;
  background: var(--light-bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--dark);
}

.gallery-filter-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 26, 22, 0.9) 0%, rgba(16, 26, 22, 0.2) 60%, transparent 100%);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
}

.gallery-item-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.gallery-item-title {
  font-size: 1.1rem;
  font-weight: 800;
}

/* 16. Reviews Section */
.reviews-section {
  padding: 5.5rem 0;
  background: #FFFFFF;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.review-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--gold);
  display: flex;
  gap: 3px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex-grow: 1;
  font-style: italic;
}

.review-author-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
 
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
}

.review-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
}

.review-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* 17. FAQs Section */
.faqs-section {
  padding: 5.5rem 0;
  background: var(--light-bg);
}

.faqs-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #FAFCFA;
  padding: 0 1.6rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.6rem 1.4rem;
}

.faq-answer p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 18. Free Quote Request Section */
.quote-section {
  padding: 5.5rem 0;
  background: #FFFFFF;
  position: relative;
}

.quote-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 992px) {
  .quote-card-grid {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 3.5rem;
  }
}

.quote-info-side {
  display: flex;
  flex-direction: column;
}

.quote-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quote-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--light-tint);
  border: 1px solid rgba(31, 95, 36, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.quote-info-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.quote-info-val {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
}

/* Form Styles */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 95, 36, 0.15);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.service-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.6rem;
}

.service-check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.service-check-label:hover {
  border-color: var(--primary);
}

.service-check-label input:checked + span {
  color: var(--primary);
}

/* 19. Footer */
.site-footer {
  background: var(--dark);
  color: #FFFFFF;
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--primary);
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* 20. Mobile Floating Bottom Call Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(16, 26, 22, 0.96);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.mobile-bottom-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
}

/* 21. Modal & Lightbox */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 26, 22, 0.8);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2.2rem;
  box-shadow: var(--shadow-xl);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
}

.modal-close-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
}

/* Notification Toast */
.toast-msg {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--primary);
  color: #FFFFFF;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--accent);
  z-index: 4000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}


/* ---------- Breadcrumbs ---------- */
.sgptree-breadcrumbs {
  background: var(--light-bg, #f7f8f5);
  border-bottom: 1px solid var(--border-light, #e5e5e5);
  padding: 14px 0;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-list a {
  color: var(--text-muted, #697064);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: var(--primary, #4d7c32);
}

.breadcrumb-list .crumb-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.breadcrumb-list .crumb-sep {
  color: var(--border-light, #c9d0c5);
  font-weight: 700;
  margin-right: 6px;
}

.breadcrumb-list .crumb-current {
  color: var(--dark, #172315);
  font-weight: 700;
}

@media (max-width: 600px) {
  .sgptree-breadcrumbs { padding: 10px 0; }
  .breadcrumb-list { font-size: 0.8rem; }
}


/* =========================================================
   SAM GOOD PRICE TREE SERVICES
   BREADCRUMB
========================================================= */

.sam-page-breadcrumb {

    position: relative;

    width: 100%;

    min-height: 300px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #10291d 0%,
            #163b28 48%,
            #0b2016 100%
        );

    border-bottom: 1px solid rgba(197,160,89,0.25);

}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.sam-page-breadcrumb::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(197,160,89,0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(76,130,91,0.18),
            transparent 35%
        );

    pointer-events: none;

}


/* =========================================================
   GOLD BOTTOM LINE
========================================================= */

.sam-page-breadcrumb::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 90px;

    height: 3px;

    transform: translateX(-50%);

    background: #c5a059;

}


/* =========================================================
   CONTAINER
========================================================= */

.sam-breadcrumb-container {

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 70px 25px;

}


/* =========================================================
   CONTENT
========================================================= */

.sam-breadcrumb-content {

    text-align: center;

}


/* =========================================================
   LABEL
========================================================= */

.sam-breadcrumb-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 15px;

    color: #c5a059;

    font-family: "Inter", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

}


/* Label lines */

.sam-breadcrumb-label::before,
.sam-breadcrumb-label::after {

    content: "";

    width: 35px;

    height: 1px;

    background: #c5a059;

}


/* =========================================================
   TITLE
========================================================= */

.sam-breadcrumb-title {

    margin: 0 0 22px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: clamp(40px, 5vw, 62px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -1.5px;

    text-shadow:
        0 3px 20px rgba(0,0,0,0.25);

}


/* =========================================================
   BREADCRUMB NAVIGATION
========================================================= */

.sam-breadcrumb-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 600;

}


/* Home link */

.sam-breadcrumb-nav a {

    color: rgba(255,255,255,0.90);

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}


.sam-breadcrumb-nav a:hover {

    color: #c5a059;

    transform: translateY(-1px);

}


/* Arrow */

.sam-breadcrumb-separator {

    color: #c5a059;

    font-size: 16px;

    font-weight: 700;

}


/* Current page */

.sam-breadcrumb-current {

    color: rgba(255,255,255,0.55);

}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.sam-breadcrumb-circle {

    position: absolute;

    width: 430px;

    height: 430px;

    right: -180px;

    top: -230px;

    border-radius: 50%;

    border: 1px solid rgba(197,160,89,0.15);

    box-shadow:
        0 0 0 35px rgba(197,160,89,0.025),
        0 0 0 70px rgba(197,160,89,0.018);

    z-index: 1;

}


/* =========================================================
   ORGANIC LEAF SHAPES
========================================================= */

.sam-breadcrumb-leaf {

    position: absolute;

    z-index: 2;

    width: 170px;

    height: 75px;

    border-radius: 100% 0 100% 0;

    background: rgba(75,130,91,0.10);

    border: 1px solid rgba(120,170,130,0.10);

    transform: rotate(-25deg);

}


.sam-leaf-one {

    left: -45px;

    bottom: 35px;

}


.sam-leaf-two {

    right: 50px;

    bottom: -35px;

    transform:
        rotate(155deg)
        scale(0.75);

    opacity: 0.7;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .sam-page-breadcrumb {

        min-height: 250px;

    }


    .sam-breadcrumb-container {

        padding: 55px 20px;

    }


    .sam-breadcrumb-label {

        font-size: 10px;

        letter-spacing: 2px;

    }


    .sam-breadcrumb-label::before,
    .sam-breadcrumb-label::after {

        width: 22px;

    }


    .sam-breadcrumb-title {

        font-size: 40px;

        letter-spacing: -1px;

        margin-bottom: 18px;

    }


    .sam-breadcrumb-nav {

        font-size: 13px;

        gap: 9px;

    }


    .sam-breadcrumb-circle {

        width: 300px;

        height: 300px;

        right: -160px;

        top: -180px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .sam-page-breadcrumb {

        min-height: 220px;

    }


    .sam-breadcrumb-container {

        padding: 45px 15px;

    }


    .sam-breadcrumb-title {

        font-size: 34px;

    }


    .sam-breadcrumb-label {

        margin-bottom: 12px;

    }


    .sam-breadcrumb-circle {

        opacity: 0.6;

    }

}

/* =========================================
   SAM TREE SERVICE - REVIEW CTA
========================================= */

.sam-review-cta {
    position: relative;
    padding: 105px 20px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #173d24 0%,
            #245d35 48%,
            #173d24 100%
        );
    isolation: isolate;
}

/* Decorative background circles */
.sam-review-cta::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -300px;
    left: -180px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    z-index: -1;
}

.sam-review-cta::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -300px;
    bottom: -360px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    z-index: -1;
}


/* =========================================
   CONTAINER
========================================= */

.sam-review-cta .sam-reviews-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================================
   CONTENT
========================================= */

.sam-cta-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}


/* Small label */

.sam-cta-content > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #d7eadb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}


/* Small line beside label */

.sam-cta-content > span::before,
.sam-cta-content > span::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,.45);
}


/* Heading */

.sam-cta-content h2 {
    max-width: 750px;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.2px;
}


/* Paragraph */

.sam-cta-content p {
    max-width: 650px;
    margin: 0 auto 35px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   BUTTONS
========================================= */

.sam-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* Base button */

.sam-review-cta .sam-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 205px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: .1px;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        color .25s ease;
    overflow: hidden;
}


/* Google Review Button */

.sam-review-cta .sam-btn-google {
    background: #ffffff;
    color: #183521;
    border: 1px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}


/* Google button hover */

.sam-review-cta .sam-btn-google:hover {
    transform: translateY(-4px);
    background: #f5f8f5;
    color: #173d24;
    box-shadow: 0 15px 35px rgba(0,0,0,.20);
}


/* Quote button */

.sam-review-cta .sam-btn-quote {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.55);
}


/* Quote button hover */

.sam-review-cta .sam-btn-quote:hover {
    transform: translateY(-4px);
    background: #ffffff;
    color: #173d24;
    border-color: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,.16);
}


/* =========================================
   BUTTON ARROW EFFECT
========================================= */

.sam-review-cta .sam-btn-quote::after {
    content: "→";
    margin-left: 9px;
    font-size: 17px;
    transition: transform .25s ease;
}

.sam-review-cta .sam-btn-quote:hover::after {
    transform: translateX(4px);
}


/* =========================================
   GOOGLE STAR
========================================= */

.sam-review-cta .sam-btn-google:first-letter {
    color: #f5b942;
}


/* =========================================
   BOTTOM DECORATIVE LINE
========================================= */

.sam-review-cta .sam-cta-content::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 45px auto 0;
    border-radius: 10px;
    background: rgba(255,255,255,.35);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .sam-review-cta {
        padding: 80px 20px;
    }

    .sam-cta-content h2 {
        font-size: 40px;
        letter-spacing: -.7px;
    }

    .sam-cta-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .sam-review-cta .sam-btn {
        min-height: 54px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sam-review-cta {
        padding: 70px 18px;
    }


    /* Hide large decorations on mobile */

    .sam-review-cta::before {
        width: 350px;
        height: 350px;
        top: -220px;
        left: -220px;
    }

    .sam-review-cta::after {
        width: 400px;
        height: 400px;
        right: -280px;
        bottom: -250px;
    }


    /* Label */

    .sam-cta-content > span {
        margin-bottom: 15px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .sam-cta-content > span::before,
    .sam-cta-content > span::after {
        width: 18px;
    }


    /* Heading */

    .sam-cta-content h2 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -.5px;
        margin-bottom: 18px;
    }


    /* Paragraph */

    .sam-cta-content p {
        max-width: 500px;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 28px;
    }


    /* Buttons */

    .sam-cta-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }


    .sam-review-cta .sam-btn {
        width: 100%;
        min-width: 0;
        min-height: 55px;
        padding: 0 20px;
        font-size: 15px;
        border-radius: 7px;
    }


    /* Bottom line */

    .sam-review-cta .sam-cta-content::after {
        margin-top: 35px;
        width: 55px;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .sam-review-cta {
        padding: 60px 15px;
    }

    .sam-cta-content h2 {
        font-size: 30px;
    }

    .sam-cta-content p {
        font-size: 14px;
    }

    .sam-review-cta .sam-btn {
        min-height: 52px;
        font-size: 14px;
    }

}

.tree-video-section { padding: 90px 20px; background: #f7f8f5; }
  .tree-video-container { max-width: 1250px; margin: 0 auto; }
  .tree-video-heading { text-align: center; max-width: 750px; margin: 0 auto 50px; }
  .tree-video-subtitle { display: inline-block; margin-bottom: 12px; color: #4d7c32; font-size: 14px; font-weight: 700; letter-spacing: 2px; }
  .tree-video-heading h2 { margin: 0 0 15px; color: #172315; font-size: 42px; line-height: 1.2; font-weight: 800; }
  .tree-video-heading p { margin: 0; color: #697064; font-size: 17px; line-height: 1.7; }
  .tree-video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .tree-video-card { overflow: hidden; background: #ffffff; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .tree-video-card:hover { transform: translateY(-7px); box-shadow: 0 18px 40px rgba(0,0,0,0.13); }
  .tree-video-wrapper { position: relative; width: 100%; aspect-ratio: 9 / 16; background: #111; overflow: hidden; }
  .tree-video-wrapper video { display: block; width: 100%; height: 100%; object-fit: cover; }
  .tree-video-content { padding: 20px; }
  .tree-video-content h3 { margin: 0 0 8px; color: #172315; font-size: 20px; font-weight: 700; }
  .tree-video-content p { margin: 0; color: #737970; font-size: 14px; line-height: 1.6; }
  .tree-video-button { margin-top: 45px; text-align: center; }
  .tree-video-cta { display: inline-flex; align-items: center; gap: 12px; padding: 15px 28px; background: #4d7c32; color: #fff; border-radius: 6px; text-decoration: none; font-size: 16px; font-weight: 700; transition: all 0.3s ease; }
  .tree-video-cta:hover { background: #365b23; color: #fff; transform: translateY(-2px); }
  .tree-video-cta span { font-size: 20px; line-height: 1; }
  @media (max-width: 1000px) {
    .tree-video-grid { grid-template-columns: repeat(2, 1fr); }
    .tree-video-heading h2 { font-size: 36px; }
  }
  @media (max-width: 600px) {
    .tree-video-section { padding: 65px 15px; }
    .tree-video-grid { grid-template-columns: 1fr; gap: 20px; }
    .tree-video-heading { margin-bottom: 35px; }
    .tree-video-heading h2 { font-size: 30px; }
    .tree-video-heading p { font-size: 15px; }
    .tree-video-wrapper { aspect-ratio: 16 / 10; }
  }