/* ==========================================================================
   MOP & MOW TEAM - CORE DESIGN SYSTEM & STYLES
   ========================================================================== */

:root {
  --navy-darkest: #04142a;
  --navy-primary: #072246;
  --navy-light: #0d386d;
  --navy-accent: #134b8c;
  
  --green-vibrant: #7ed93b;
  --green-glow: #8ae345;
  --green-dark: #63c025;
  
  --text-white: #ffffff;
  --text-muted: #d0deee;
  --text-nav: #162a45;
  --text-nav-hover: #072246;
  
  --bg-nav: #ffffff;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-accent: 'Caveat', cursive;
  
  --radius-pill: 9999px;
  --radius-card: 16px;
  --radius-chip: 12px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--navy-darkest);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* ==========================================================================
   0. PRELOADER & HOMEPAGE REVEAL ANIMATION
   ========================================================================== */

/* Body state while preloading */
body.preloading {
  overflow: hidden !important;
}

body.preloading #siteHeader,
body.preloading main,
body.preloading footer {
  opacity: 0;
  transform: translateY(32px);
  pointer-events: none;
}

/* Homepage reveal with smooth upward transition */
body.loaded #siteHeader,
body.loaded main,
body.loaded footer {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fullscreen Preloader Overlay */
.site-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, #0d386d 0%, #072246 55%, #04142a 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s ease;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.site-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-backdrop {
  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='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%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/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.preloader-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

/* Ambient glow atmosphere behind logo and ring */
.preloader-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 217, 59, 0.32) 0%, rgba(56, 189, 248, 0.16) 42%, transparent 70%);
  filter: blur(35px);
  pointer-events: none;
  animation: preloaderAmbientPulse 3s ease-in-out infinite alternate;
}

@keyframes preloaderAmbientPulse {
  0% {
    transform: translate(-50%, -58%) scale(0.85);
    opacity: 0.65;
  }
  100% {
    transform: translate(-50%, -58%) scale(1.15);
    opacity: 0.95;
  }
}

/* Ring and orbit wrapper */
.preloader-ring-wrap {
  position: relative;
  width: 230px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG Circular Loading Ring */
.preloader-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 3.5;
}

.ring-progress {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-dasharray: 180 430;
  transform-origin: center;
}

.ring-secondary {
  fill: none;
  stroke: #38bdf8;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 75 545;
  transform-origin: center;
}

.ring-spin {
  animation: preloaderRingSpin 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.ring-spin-reverse {
  animation: preloaderRingSpinReverse 2.4s linear infinite;
}

@keyframes preloaderRingSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloaderRingSpinReverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Rotating Sparkle / Shine Orbit */
.preloader-sparkle-orbit {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  pointer-events: none;
  animation: preloaderOrbitRotate 4.8s linear infinite;
}

@keyframes preloaderOrbitRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.sparkle-star {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sparkleTwinkle 1.5s ease-in-out infinite alternate;
}

.sparkle-star svg {
  display: block;
}

.sparkle-1 {
  top: 14px;
  right: 28px;
  width: 20px;
  height: 20px;
  color: #7ed93b;
  filter: drop-shadow(0 0 8px rgba(126, 217, 59, 0.95));
  animation-delay: 0s;
}

.sparkle-2 {
  bottom: 22px;
  left: 24px;
  width: 17px;
  height: 17px;
  color: #38bdf8;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.95));
  animation-delay: 0.5s;
}

.sparkle-3 {
  top: 48px;
  left: 12px;
  width: 14px;
  height: 14px;
  color: #ffea79;
  filter: drop-shadow(0 0 6px rgba(255, 234, 121, 0.95));
  animation-delay: 0.9s;
}

@keyframes sparkleTwinkle {
  0% {
    transform: scale(0.65) rotate(0deg);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.25) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) rotate(90deg);
    opacity: 0.65;
  }
}

/* Specular Rotating Shine Sweep */
.preloader-shine-sweep {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 280deg,
    rgba(255, 255, 255, 0.15) 320deg,
    rgba(126, 217, 59, 0.45) 350deg,
    transparent 360deg
  );
  animation: preloaderOrbitRotate 3.2s linear infinite;
  mask: radial-gradient(farthest-side, transparent 86%, black 90%, black 98%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent 86%, black 90%, black 98%, transparent 100%);
}

/* Centered Logo Box & Scale Up on Start */
.preloader-logo-box {
  position: relative;
  z-index: 5;
  width: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloaderLogoEnter 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards, preloaderLogoBreath 3s ease-in-out infinite alternate 1.25s;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.preloader-logo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Entrance: Starts slightly small and smoothly scales up */
@keyframes preloaderLogoEnter {
  0% {
    transform: scale(0.75);
    opacity: 0;
    filter: blur(5px);
  }
  65% {
    transform: scale(1.04);
    opacity: 1;
    filter: blur(0px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0px);
  }
}

/* Gentle resting breathing float */
@keyframes preloaderLogoBreath {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.03) translateY(-3px);
  }
}

/* Exit Effect: Logo Scale + Rotate + Fade Out */
.site-preloader.fade-out .preloader-logo-box {
  transform: scale(1.22) rotate(6deg) !important;
  opacity: 0 !important;
  filter: blur(6px) !important;
}

.site-preloader.fade-out .preloader-ring-wrap svg,
.site-preloader.fade-out .preloader-sparkle-orbit,
.site-preloader.fade-out .preloader-shine-sweep {
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.site-preloader.fade-out .preloader-caption {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Caption & Tagline Underneath: “We Mop It. We Mow It.” */
.preloader-caption {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: preloaderTextEnter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes preloaderTextEnter {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-tagline {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 16px rgba(126, 217, 59, 0.45);
}

/* Loading Bar Track & Fill */
.preloader-bar-track {
  width: 140px;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #38bdf8 0%, #7ed93b 70%, #8ae345 100%);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(126, 217, 59, 0.8);
  animation: preloaderBarProgress 1.45s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@keyframes preloaderBarProgress {
  0% {
    width: 0%;
  }
  45% {
    width: 65%;
  }
  85% {
    width: 92%;
  }
  100% {
    width: 100%;
  }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .preloader-ring-wrap {
    width: 195px;
    height: 195px;
  }

  .preloader-logo-box {
    width: 120px;
  }

  .preloader-tagline {
    font-size: 0.86rem;
    letter-spacing: 1.8px;
  }

  .preloader-bar-track {
    width: 120px;
  }
}

/* ==========================================================================
   TOP NAVIGATION BAR
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  background-color: var(--bg-nav);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1540px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  position: relative;
}

/* BRAND LOGO: Straddling Header and Hero Section */
.brand-logo-link {
  position: absolute;
  left: 44px;
  top: 10px;
  width: 228px;
  z-index: 1100;
  display: block;
  transition: transform var(--transition-normal), filter var(--transition-normal);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}

.brand-logo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform var(--transition-bounce);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.04) rotate(-0.5deg);
}

/* NAVIGATION MENU */
.main-nav {
  margin-left: clamp(420px, 34vw, 560px); /* Shifted right to balance nicely between logo and right action */
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-nav);
  padding: 8px 2px;
  position: relative;
  transition: color var(--transition-fast);
  display: inline-block;
}

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

/* Active Link Indicator (Signature Green Underline from Design) */
.nav-link.active {
  color: var(--navy-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--green-vibrant);
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(126, 217, 59, 0.4);
}

.nav-link:not(.active)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--green-vibrant);
  border-radius: 4px;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:not(.active):hover::after {
  width: 100%;
  left: 0;
}

/* RIGHT ACTION (PHONE CALL PILL) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--navy-primary);
  color: var(--text-white);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast), background-color var(--transition-fast);
  box-shadow: 0 4px 12px rgba(7, 34, 70, 0.25);
}

.phone-icon-wrap {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.phone-icon {
  width: 17px;
  height: 17px;
}

.phone-cta-btn:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(7, 34, 70, 0.38);
}

.phone-cta-btn:hover .phone-icon-wrap {
  animation: ringWiggle 0.6s ease-in-out infinite alternate;
}

@keyframes ringWiggle {
  0% { transform: rotate(-12deg); }
  100% { transform: rotate(12deg); }
}

/* HAMBURGER TOGGLE (Mobile) */
.hamburger-btn {
  display: none;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  padding: 0;
  z-index: 1200;
}

.hamburger-btn .bar {
  width: 100%;
  height: 3px;
  background-color: var(--navy-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-btn.active .bar-1 {
  transform: translateY(9.5px) rotate(45deg);
}

.hamburger-btn.active .bar-2 {
  opacity: 0;
}

.hamburger-btn.active .bar-3 {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* MOBILE DRAWER */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  padding: 24px 32px 32px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-direction: column;
  gap: 18px;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 999;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-nav);
  display: inline-block;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.mobile-nav-link.active {
  color: var(--green-dark);
}

.mobile-drawer-cta {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.mobile-phone-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1.05rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy-primary);
}

/* Background Photo Layer */
.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 48% center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: transform 0.8s ease-out;
}

/* Reduced Navy Blend Gradient Overlay (Ensures both the girl mopping and mower man are clearly visible) */
.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(7, 34, 70, 0.96) 0%,
    rgba(7, 34, 70, 0.88) 22%,
    rgba(7, 34, 70, 0.55) 32%,
    rgba(7, 34, 70, 0.16) 40%,
    rgba(7, 34, 70, 0.0) 48%
  );
  z-index: 2;
  pointer-events: none;
}

/* Ambient glow disabled to preserve natural sunlight and colors of the picture */
.hero-light-glow {
  display: none;
}

/* HERO CONTAINER & GRID */
.hero-container {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 44px 50px;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 580px;
  display: flex;
  flex-direction: column;
}

/* Space reserved for overlapping logo */
.logo-space-holder {
  height: 125px; /* Matches the lower hanging portion of logo badge */
  width: 100%;
}

/* HERO HEADLINES */
.hero-headline-group {
  margin-bottom: 12px;
}

.hero-title-main {
  font-size: clamp(2.8rem, 4.8vw, 4.3rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text-white);
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.hero-title-sub {
  font-family: var(--font-accent);
  font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--green-vibrant);
  margin-top: 2px;
  text-shadow: 0 4px 14px rgba(126, 217, 59, 0.35);
  transform: rotate(-1.5deg);
  display: inline-block;
  transform-origin: left bottom;
}

/* TAGLINE */
.hero-tagline {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 28px;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* FEATURE BADGES */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 13px;
  transition: transform var(--transition-normal);
}

.badge-item:hover {
  transform: translateY(-2px);
}

.badge-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--green-vibrant);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(126, 217, 59, 0.45);
  transition: transform var(--transition-bounce);
}

.badge-item:hover .badge-icon-circle {
  transform: scale(1.12) rotate(8deg);
}

.badge-icon-circle .check-icon {
  width: 22px;
  height: 22px;
  color: var(--navy-primary);
  stroke-width: 3.2;
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.badge-line-1 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.1px;
}

.badge-line-2 {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-muted);
}

.badge-separator {
  display: none;
}

.hero-mobile-swoosh {
  display: none;
}

/* PRIMARY CTA BUTTON (Get a Free Quote) */
.hero-cta-wrap {
  display: flex;
  align-items: center;
}

.primary-quote-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: var(--green-vibrant);
  color: var(--navy-primary);
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(126, 217, 59, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.primary-quote-btn .btn-arrow {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.primary-quote-btn .btn-arrow svg {
  width: 20px;
  height: 20px;
}

/* Shimmer Sweep Animation */
.btn-shimmer {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-22deg);
  pointer-events: none;
  animation: buttonShimmer 4s infinite ease-in-out;
}

@keyframes buttonShimmer {
  0%, 65% { left: -120%; }
  100% { left: 180%; }
}

.primary-quote-btn:hover {
  background-color: var(--green-glow);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(126, 217, 59, 0.6), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.primary-quote-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.primary-quote-btn:active {
  transform: translateY(-1px) scale(0.99);
}

/* ENTRANCE ANIMATION CLASSES */
.animate-slide-up {
  opacity: 0;
  transform: translateY(28px);
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   INTERACTIVE QUOTE MODAL
   ========================================================================== */

.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 20, 42, 0.78);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.quote-modal-card {
  position: relative;
  background: #ffffff;
  color: #1a202c;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-card);
  padding: 36px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.quote-modal-overlay.open .quote-modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #f1f5f9;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #64748b;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

.modal-badge {
  display: inline-block;
  background: #e6f9dc;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.modal-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.92rem;
  color: #64748b;
  margin-bottom: 24px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.flex-1 {
  flex: 1;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1e293b;
  background: #f8fafc;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-input:focus {
  border-color: var(--green-dark);
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(126, 217, 59, 0.2);
}

/* SERVICE SELECTION CHIPS */
.service-chips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.service-chip {
  position: relative;
  display: block;
  cursor: pointer;
}

.service-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-chip);
  background: #f8fafc;
  transition: all var(--transition-fast);
}

.service-chip:hover .chip-content {
  border-color: #cbd5e1;
  background: #ffffff;
}

.service-chip.active .chip-content,
.service-chip input:checked ~ .chip-content {
  border-color: var(--green-dark);
  background: #f3fdf0;
  box-shadow: 0 2px 8px rgba(126, 217, 59, 0.15);
}

.chip-icon {
  font-size: 1.4rem;
}

.chip-text {
  display: flex;
  flex-direction: column;
}

.chip-text strong {
  font-size: 0.92rem;
  color: #1e293b;
}

.chip-text small {
  font-size: 0.8rem;
  color: #64748b;
}

/* LIVE ESTIMATE DISPLAY */
.quote-estimate-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f5f9;
  padding: 14px 18px;
  border-radius: 12px;
  border-left: 4px solid var(--green-dark);
}

.est-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
}

.est-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-primary);
}

/* SUBMIT BUTTON */
.modal-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--navy-primary);
  color: var(--text-white);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  margin-top: 6px;
}

.modal-submit-btn:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7, 34, 70, 0.35);
}

.submit-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.modal-submit-btn:hover .submit-arrow {
  transform: translateX(4px);
}

/* SUCCESS STATE */
.quote-success-state {
  text-align: center;
  padding: 24px 10px 10px;
}

.success-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #e6f9dc;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.success-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.quote-success-state h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 10px;
}

.quote-success-state p {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.success-done-btn {
  margin: 0 auto;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large Tablets & Small Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 28px;
  }
  
  .brand-logo-link {
    left: 28px;
    width: 200px;
  }
  
  .main-nav {
    margin-left: 310px;
  }

  .nav-list {
    gap: 22px;
  }

  .hero-container {
    padding: 20px 28px 40px;
  }

  .hero-content {
    max-width: 520px;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .header-container {
    padding: 0 24px;
    justify-content: flex-end;
  }

  .header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .hamburger-btn {
    display: flex;
    margin-left: auto;
  }

  .mobile-drawer {
    display: flex;
  }

  .brand-logo-link {
    left: 24px;
    width: 180px;
    top: 8px;
  }

  .hero-bg-layer {
    background-position: 45% center;
  }

  .hero-gradient-overlay {
    background: linear-gradient(
      90deg,
      rgba(7, 34, 70, 0.95) 0%,
      rgba(7, 34, 70, 0.85) 32%,
      rgba(7, 34, 70, 0.35) 48%,
      rgba(7, 34, 70, 0.0) 60%
    );
  }

  .hero-content {
    max-width: 480px;
  }

  .logo-space-holder {
    height: 100px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .site-header {
    height: 68px;
  }

  .header-container {
    padding: 0 20px;
    justify-content: flex-end;
  }

  .mobile-drawer {
    top: 68px;
  }

  .brand-logo-link {
    width: 155px;
    top: 8px;
    left: 18px;
  }

  .header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .header-actions .phone-cta-btn {
    display: none;
  }

  .hamburger-btn {
    display: flex;
    margin-left: auto;
    width: 32px;
    height: 22px;
    cursor: pointer;
    z-index: 1200;
  }

  /* Mobile Hero Section: Picture at top with natural daylight, blueish gradient fade in middle, text on blue background */
  .hero-section {
    position: relative;
    min-height: auto;
    padding: 0 0 55px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #072246;
    overflow: hidden;
  }

  /* Photo at top half showing both workers clearly */
  .hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
  }

  /* Blueish gradient filter starting below workers and blending down into deep navy */
  .hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(7, 34, 70, 0) 0%,
      rgba(7, 34, 70, 0) 30%,
      rgba(7, 34, 70, 0.28) 42%,
      rgba(7, 34, 70, 0.85) 52%,
      rgba(7, 34, 70, 0.98) 60%,
      #072246 66%,
      #072246 100%
    );
    z-index: 2;
    pointer-events: none;
  }

  .logo-space-holder {
    display: none;
  }

  /* Content placed below the top photo on the deep blue background */
  .hero-container {
    position: relative;
    z-index: 10;
    padding: 270px 22px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-headline-group {
    margin-bottom: 8px;
  }

  .hero-title-main {
    font-size: clamp(2.35rem, 10.5vw, 2.85rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }

  .hero-title-sub {
    font-family: var(--font-accent);
    font-size: clamp(2.9rem, 13vw, 3.5rem);
    color: var(--green-vibrant);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 12px;
    display: block;
  }

  .hero-tagline {
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 20px;
  }

  /* Horizontal Badges with Vertical Divider */
  .hero-badges {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
  }

  .badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .badge-icon-circle {
    width: 32px;
    height: 32px;
    background-color: var(--green-vibrant);
    color: var(--navy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .badge-icon-circle .check-icon {
    width: 17px;
    height: 17px;
    stroke-width: 3.5;
  }

  .badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .badge-line-1 {
    font-size: 0.86rem;
    font-weight: 700;
    color: #ffffff;
  }

  .badge-line-2 {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
  }

  .badge-separator {
    display: block;
    width: 1.5px;
    height: 32px;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
  }

  /* CTA Button on Mobile */
  .hero-cta-wrap {
    width: 100%;
  }

  .primary-quote-btn {
    width: 100%;
    max-width: 310px;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1.05rem;
    font-weight: 800;
    background-color: var(--green-vibrant);
    color: var(--navy-primary);
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 24px rgba(126, 217, 59, 0.5);
  }

  /* Bottom decorative curve on mobile */
  .hero-mobile-swoosh {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 36px;
    line-height: 0;
    z-index: 12;
    pointer-events: none;
  }

  .hero-mobile-swoosh svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .quote-modal-card {
    padding: 28px 20px;
  }
}

/* Very Small Screens (max-width: 420px) */
@media (max-width: 420px) {
  .header-actions .phone-cta-btn {
    display: none;
  }

  .brand-logo-link {
    width: 135px;
  }

  .hero-container {
    padding: 245px 16px 20px;
  }

  .hero-title-main {
    font-size: 2.2rem;
  }

  .hero-title-sub {
    font-size: 2.7rem;
  }

  .hero-tagline {
    font-size: 1.02rem;
  }

  .badge-line-1 {
    font-size: 0.82rem;
  }

  .badge-line-2 {
    font-size: 0.72rem;
  }

  .primary-quote-btn {
    max-width: 100%;
  }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
  background-color: #ffffff;
  padding: 100px 44px 110px;
  position: relative;
  z-index: 20;
}

.services-container {
  max-width: 1540px;
  margin: 0 auto;
}

/* SECTION HEADER */
.section-header-wrap {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

/* Scroll Reveal Transitions */
.section-header-wrap,
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.section-header-wrap.in-view,
.service-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .service-card:nth-child(2) {
  transition-delay: 0.15s;
}

.section-subtitle-tag {
  color: #00a63e;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  color: #072246;
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  color: #475569;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}

/* SERVICES 2-CARD GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 1460px;
  margin: 0 auto;
}

/* SERVICE CARD BASE */
.service-card {
  display: flex;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(7, 34, 70, 0.12);
}

/* CARD 1: MOPING SERVICES (Light Sky Blue Tint) */
.service-card-mopping {
  background-color: #f1f8fe;
  border: 1.5px solid #ddecfa;
}

.service-card-mopping:hover {
  border-color: #b9ddfc;
}

/* CARD 2: MOWING SERVICES (Light Mint Green Tint) */
.service-card-mowing {
  background-color: #f2fbf4;
  border: 1.5px solid #dcf3e2;
}

.service-card-mowing:hover {
  border-color: #bee8c8;
}

/* CARD IMAGE WRAPPER */
.card-img-wrap {
  width: 46%;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

/* Precise framing to clearly center the girl mopping and the guy mowing */
.service-card-mopping .card-img {
  object-position: 59% 2%;
  transform-origin: 59% 25%;
}

.service-card-mowing .card-img {
  object-position: 74% 0%;
  transform-origin: 74% 20%;
}

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

/* CARD BODY / CONTENT */
.card-body {
  flex: 1;
  padding: 42px 40px 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* CARD ICONS */
.card-icon-wrap {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

.service-svg-icon {
  width: 38px;
  height: 38px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-svg-icon {
  transform: scale(1.14) rotate(4deg);
}

.icon-mopping .service-svg-icon {
  color: #0c4a8a;
}

.icon-mowing .service-svg-icon {
  color: #16a34a;
}

/* CARD HEADINGS */
.card-title {
  color: #072246;
  font-size: clamp(1.6rem, 2.2vw, 1.95rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card-subhead {
  color: #1e293b;
  font-size: 1.0rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 22px;
}

/* FEATURE CHECKLIST */
.card-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.card-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  color: #334155;
}

.feature-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #16a34a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
  transition: transform 0.3s ease;
}

.service-card:hover .feature-check-icon {
  transform: scale(1.08);
}

.feature-check-icon svg {
  width: 13px;
  height: 13px;
}

/* SLOGAN / TAGLINE */
.card-tagline {
  color: #072246;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 28px;
}

/* ACTION BUTTON */
.card-cta-wrap {
  margin-top: auto;
}

.card-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  width: fit-content;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background-color 0.25s ease;
}

.action-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.card-action-btn:hover .action-arrow {
  transform: translateX(5px);
}

/* BUTTON COLORS */
.btn-mopping {
  background-color: #0963ae;
  box-shadow: 0 6px 18px rgba(9, 99, 174, 0.32);
}

.btn-mopping:hover {
  background-color: #07508e;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(9, 99, 174, 0.45);
}

.btn-mowing {
  background-color: #15803d;
  box-shadow: 0 6px 18px rgba(21, 128, 61, 0.32);
}

.btn-mowing:hover {
  background-color: #116932;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21, 128, 61, 0.45);
}

/* ==========================================================================
   RESPONSIVE SERVICES STYLES
   ========================================================================== */

/* Laptops & Tablets (max-width: 1180px) */
@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 860px;
  }

  .card-img-wrap {
    width: 42%;
    min-height: 400px;
  }
}

/* Tablets (max-width: 820px) */
@media (max-width: 820px) {
  .services-section {
    padding: 70px 24px 80px;
  }

  .service-card {
    flex-direction: column;
    border-radius: 22px;
  }

  .card-img-wrap {
    width: 100%;
    height: 310px;
    min-height: auto;
  }

  .service-card-mopping .card-img {
    object-position: 60% 5%;
  }

  .service-card-mowing .card-img {
    object-position: 74% 2%;
  }

  .card-body {
    padding: 32px 28px 34px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .services-section {
    padding: 55px 18px 65px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .card-img-wrap {
    height: 230px;
  }

  .card-body {
    padding: 24px 20px 28px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-action-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */

.about-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy-primary);
  z-index: 20;
}

/* Background Photo Layer */
.about-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right 6% center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: transform 0.8s ease-out;
}

/* Deep Navy Blend Gradient Overlay */
.about-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #072246 0%,
    #072246 36%,
    rgba(7, 34, 70, 0.96) 46%,
    rgba(7, 34, 70, 0.72) 56%,
    rgba(7, 34, 70, 0.22) 67%,
    rgba(7, 34, 70, 0.0) 76%
  );
  z-index: 2;
  pointer-events: none;
}

/* Corner Swoosh Decoration (Bottom Right) */
.about-corner-swoosh {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 340px;
  height: 240px;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(-4px -4px 14px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s ease;
}

.about-corner-swoosh svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ABOUT CONTAINER & CONTENT */
.about-container {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 85px 44px 105px;
  position: relative;
  z-index: 10;
}

.about-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-content.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about-tag {
  color: var(--green-vibrant);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  text-shadow: 0 2px 8px rgba(126, 217, 59, 0.3);
}

.about-title {
  color: var(--text-white);
  font-size: clamp(2.2rem, 3.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.about-text {
  color: #e2ecf8;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.72;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* SLOGAN (Clean homes. Green lawns. Happy spaces.) */
.about-slogan-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  font-family: var(--font-accent);
  color: var(--green-vibrant);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.0vw, 2.75rem);
  line-height: 1.15;
  transform: rotate(-1.5deg);
  transform-origin: left bottom;
  text-shadow: 0 3px 12px rgba(126, 217, 59, 0.3);
}

.about-slogan-line {
  display: block;
}

.slogan-underline {
  width: 155px;
  height: 14px;
  margin-top: 1px;
  filter: drop-shadow(0 2px 6px rgba(126, 217, 59, 0.45));
}

/* ==========================================================================
   RESPONSIVE ABOUT STYLES
   ========================================================================== */

/* Laptops & Tablets (max-width: 1180px) */
@media (max-width: 1180px) {
  .about-container {
    padding: 70px 32px 80px;
  }

  .about-content {
    max-width: 540px;
  }

  .about-corner-swoosh {
    width: 270px;
    height: 190px;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .about-bg-layer {
    background-position: right 20% center;
  }

  .about-gradient-overlay {
    background: linear-gradient(
      90deg,
      #072246 0%,
      #072246 48%,
      rgba(7, 34, 70, 0.94) 62%,
      rgba(7, 34, 70, 0.60) 78%,
      rgba(7, 34, 70, 0.15) 92%,
      transparent 100%
    );
  }

  .about-corner-swoosh {
    width: 220px;
    height: 150px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .about-section {
    min-height: auto;
  }

  .about-container {
    padding: 60px 20px 70px;
  }

  .about-bg-layer {
    background-position: center center;
    opacity: 0.35;
  }

  .about-gradient-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 34, 70, 0.92) 0%,
      rgba(7, 34, 70, 0.96) 60%,
      rgba(7, 34, 70, 0.98) 100%
    );
  }

  .about-title {
    font-size: 2.1rem;
  }

  .about-slogan-wrap {
    font-size: 2.1rem;
  }

  .about-corner-swoosh {
    width: 160px;
    height: 110px;
  }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */

.why-us-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
  position: relative;
  overflow: hidden;
  z-index: 20;
  padding: 85px 0 95px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid #edf4ee;
}

.why-us-wrapper {
  display: flex;
  align-items: center;
  max-width: 1540px;
  margin: 0 auto;
  width: 100%;
  padding: 0 44px;
}

/* LEFT VISUAL IMAGE */
.why-us-visual {
  width: 32%;
  min-height: 390px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(7, 34, 70, 0.08);
}

.why-us-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-wrapper:hover .why-us-img {
  transform: scale(1.04);
}

/* Smooth edge fade on the right side of the photo */
.why-us-fade-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 55%, #ffffff 100%);
  pointer-events: none;
}

/* RIGHT CONTENT & FEATURE GRID */
.why-us-content {
  flex: 1;
  padding: 10px 20px 10px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-header {
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

.why-us-title {
  color: #072246;
  font-size: clamp(2.1rem, 3.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

/* 4-COLUMN FEATURE GRID */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.why-us-card {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(30px);
}

.why-us-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-card:nth-child(1) { transition-delay: 0.05s; }
.why-us-card:nth-child(2) { transition-delay: 0.15s; }
.why-us-card:nth-child(3) { transition-delay: 0.25s; }
.why-us-card:nth-child(4) { transition-delay: 0.35s; }

.why-us-card:hover {
  transform: translateY(-6px);
}

/* Vertical divider lines between feature columns */
.why-us-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8%;
  height: 84%;
  width: 1px;
  background-color: #e2e8f0;
}

/* ICON CIRCLE */
.why-us-icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #00a63e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 166, 62, 0.32);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
}

.why-us-card:hover .why-us-icon-circle {
  transform: scale(1.14) rotate(6deg);
  background-color: #00b845;
}

.why-us-icon-circle svg {
  width: 28px;
  height: 28px;
}

/* ITEM TYPOGRAPHY */
.why-us-item-title {
  color: #072246;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why-us-item-desc {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 400;
}

/* ==========================================================================
   RESPONSIVE WHY CHOOSE US STYLES
   ========================================================================== */

/* Laptops & Tablets (max-width: 1280px) */
@media (max-width: 1280px) {
  .why-us-card {
    padding: 0 18px;
  }

  .why-us-item-title {
    font-size: 1.15rem;
  }
}

/* Medium Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 0;
  }

  .why-us-card:nth-child(2)::after {
    display: none;
  }

  .why-us-card:nth-child(even)::after {
    display: none;
  }
}

/* Small Tablets & Mobile (max-width: 820px) */
@media (max-width: 820px) {
  .why-us-section {
    padding: 60px 0 70px;
  }

  .why-us-wrapper {
    flex-direction: column;
    padding: 0 20px;
  }

  .why-us-visual {
    width: 100%;
    height: 260px;
    min-height: auto;
    border-radius: 20px;
  }

  .why-us-fade-overlay {
    width: 100%;
    height: 60px;
    top: auto;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  }

  .why-us-content {
    padding: 35px 4px 10px;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .why-us-card {
    padding: 0;
  }

  .why-us-card::after {
    display: none !important;
  }

  .why-us-icon-circle {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }

  .why-us-icon-circle svg {
    width: 24px;
    height: 24px;
  }

  .why-us-item-title {
    font-size: clamp(0.96rem, 3.8vw, 1.1rem);
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .why-us-item-desc {
    font-size: 0.84rem;
    line-height: 1.45;
  }
}

/* ==========================================================================
   PROJECTS SECTION
   ========================================================================== */

.projects-section {
  background-color: #072246;
  padding: 95px 44px 100px;
  position: relative;
  overflow: hidden;
  z-index: 20;
}

.projects-container {
  max-width: 1540px;
  margin: 0 auto;
  width: 100%;
}

/* HEADER ROW */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 42px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

.projects-tag {
  color: var(--green-vibrant);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  text-shadow: 0 2px 8px rgba(126, 217, 59, 0.3);
}

.projects-title {
  color: var(--text-white);
  font-size: clamp(2.2rem, 3.4vw, 3.0rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.projects-desc {
  color: #c9d8ea;
  font-size: 1.05rem;
  font-weight: 400;
}

/* VIEW ALL PROJECTS BUTTON (Green Outline Pill) */
.view-all-projects-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid var(--green-vibrant);
  color: var(--text-white);
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.view-all-projects-btn .toggle-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.view-all-projects-btn:hover {
  background-color: var(--green-vibrant);
  color: var(--navy-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 217, 59, 0.45);
}

.view-all-projects-btn:hover .toggle-arrow {
  transform: translateX(4px);
}

.view-all-projects-btn.expanded {
  background-color: var(--green-vibrant);
  color: var(--navy-primary);
}

.view-all-projects-btn.expanded .toggle-arrow {
  transform: rotate(-90deg);
}

/* 4-COLUMN PROJECTS GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* PROJECT CARD */
.project-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  background-color: #0b2c54;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(28px);
}

.project-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:nth-child(1) { transition-delay: 0.06s; }
.project-card:nth-child(2) { transition-delay: 0.14s; }
.project-card:nth-child(3) { transition-delay: 0.22s; }
.project-card:nth-child(4) { transition-delay: 0.30s; }

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.45);
}

/* IMAGE WRAP */
.project-img-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
  transform: scale(1.08);
}

/* PROJECT BADGE (Dark Blue Pill) */
.project-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #082850;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  z-index: 3;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.project-card:hover .project-badge {
  background: #0d386d;
  border-color: var(--green-vibrant);
  transform: translateY(-2px);
}

/* HOVER OVERLAY WITH ZOOM ICON */
.project-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 34, 70, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.project-card:hover .project-hover-overlay {
  opacity: 1;
}

.project-zoom-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* EXTRA PROJECTS (Hidden initially, displayed when .show-all is active) */
.extra-project {
  display: none;
}

.projects-grid.show-all .extra-project {
  display: block;
  animation: projectFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes projectFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects-grid.show-all .extra-project:nth-child(5) { animation-delay: 0.05s; }
.projects-grid.show-all .extra-project:nth-child(6) { animation-delay: 0.10s; }
.projects-grid.show-all .extra-project:nth-child(7) { animation-delay: 0.15s; }
.projects-grid.show-all .extra-project:nth-child(8) { animation-delay: 0.20s; }
.projects-grid.show-all .extra-project:nth-child(9) { animation-delay: 0.25s; }
.projects-grid.show-all .extra-project:nth-child(10) { animation-delay: 0.30s; }

/* LIGHTBOX MODAL */
.project-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 18, 38, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-card {
  position: relative;
  max-width: 920px;
  width: 100%;
  max-height: 88vh;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  background-color: #072246;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.project-lightbox-overlay.open .lightbox-card {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(7, 34, 70, 0.75);
  color: #ffffff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close-btn:hover {
  background: var(--green-vibrant);
  color: var(--navy-primary);
  transform: rotate(90deg);
}

.lightbox-img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background-color: #04142a;
  display: block;
}

.lightbox-caption {
  padding: 16px 24px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  background: #072246;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   RESPONSIVE PROJECTS STYLES
   ========================================================================== */

/* Laptops & Tablets (max-width: 1180px) */
@media (max-width: 1180px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .project-img-wrap {
    height: 230px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .projects-section {
    padding: 60px 20px 70px;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-img-wrap {
    height: 220px;
  }

  .view-all-projects-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION - PREMIUM STYLING
   ========================================================================== */

.testimonials-section {
  position: relative;
  background-color: #ffffff;
  padding: 85px 44px 105px;
  overflow: hidden;
}

/* Foliage Decorative Accents */
.foliage-accent {
  position: absolute;
  top: 0;
  width: 145px;
  height: 200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.92;
  transition: transform 0.6s ease;
}

.foliage-left {
  left: 0;
  transform-origin: top left;
  animation: foliageSwayLeft 7s ease-in-out infinite alternate;
}

.foliage-right {
  right: 0;
  transform-origin: top right;
  transform: scaleX(-1);
  animation: foliageSwayRight 7.5s ease-in-out infinite alternate;
}

@keyframes foliageSwayLeft {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(2.5deg) scale(1.02);
  }
  100% {
    transform: rotate(-1.5deg) scale(0.99);
  }
}

@keyframes foliageSwayRight {
  0% {
    transform: scaleX(-1) rotate(0deg) scale(1);
  }
  50% {
    transform: scaleX(-1) rotate(-2.5deg) scale(1.02);
  }
  100% {
    transform: scaleX(-1) rotate(1.5deg) scale(0.99);
  }
}

.testimonials-container {
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-subtitle {
  display: inline-block;
  color: #00a63e;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.testimonials-title {
  color: #072246;
  font-size: clamp(2.1rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

/* 3-Column Reviews Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Individual Testimonial Card */
.testimonial-card {
  background-color: #ffffff;
  border: 1.5px solid #ddecfa;
  border-radius: 20px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(7, 34, 70, 0.035);
  position: relative;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease;
  opacity: 0;
  transform: translateY(32px);
}

.testimonial-card:nth-child(1) {
  transition-delay: 0.05s;
}

.testimonial-card:nth-child(2) {
  transition-delay: 0.15s;
}

.testimonial-card:nth-child(3) {
  transition-delay: 0.25s;
}

.testimonial-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #bee0fc;
  box-shadow: 0 20px 42px rgba(7, 34, 70, 0.08), 0 4px 12px rgba(0, 166, 62, 0.05);
}

/* Card Body (Quote icon & text) */
.testimonial-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.testimonial-quote-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: #00a63e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: transform 0.3s ease;
}

.testimonial-quote-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-card:hover .testimonial-quote-icon {
  transform: scale(1.15) rotate(-3deg);
}

.testimonial-quote {
  color: #1e3a5f;
  font-size: 0.98rem;
  line-height: 1.62;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.1px;
}

/* Client / Author Info at Bottom */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
}

.author-avatar-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #e9f2fa;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 14px rgba(7, 34, 70, 0.12);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.testimonial-card:hover .author-avatar-wrap {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(7, 34, 70, 0.16);
}

.author-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* 5-Star Rating */
.author-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 3px;
}

.author-rating .star-icon {
  color: #ffb703;
  font-size: 1.05rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover .author-rating .star-icon:nth-child(1) { transform: scale(1.18); transition-delay: 0.03s; }
.testimonial-card:hover .author-rating .star-icon:nth-child(2) { transform: scale(1.18); transition-delay: 0.06s; }
.testimonial-card:hover .author-rating .star-icon:nth-child(3) { transform: scale(1.18); transition-delay: 0.09s; }
.testimonial-card:hover .author-rating .star-icon:nth-child(4) { transform: scale(1.18); transition-delay: 0.12s; }
.testimonial-card:hover .author-rating .star-icon:nth-child(5) { transform: scale(1.18); transition-delay: 0.15s; }

.author-name {
  color: #072246;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.2px;
}

.author-location {
  color: #718096;
  font-size: 0.83rem;
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE TESTIMONIALS STYLES
   ========================================================================== */

/* Tablets & Medium Desktops (max-width: 1100px) */
@media (max-width: 1100px) {
  .testimonials-section {
    padding: 70px 32px 85px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 2;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 20px 75px;
  }

  .foliage-accent {
    width: 90px;
    height: 130px;
    opacity: 0.7;
  }

  .testimonials-header {
    margin-bottom: 35px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }

  .testimonial-card {
    padding: 26px 22px 24px;
    border-radius: 18px;
  }

  .testimonial-quote {
    font-size: 0.94rem;
  }
}

/* ==========================================================================
   CONTACT SECTION - SPLIT 2-COLUMN LAYOUT & FORM
   ========================================================================== */

.contact-section {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(7, 34, 70, 0.06);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 540px;
  position: relative;
}

/* LEFT COLUMN: Image background, gradient overlay, contact details */
.contact-info-col {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px 50px 65px 80px;
  color: #ffffff;
}

.contact-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.contact-info-col:hover .contact-bg-layer {
  transform: scale(1.03);
}

.contact-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #072246 0%, #072246 38%, rgba(7, 34, 70, 0.9) 60%, rgba(7, 34, 70, 0.5) 85%, rgba(7, 34, 70, 0.3) 100%);
  z-index: 1;
}

/* Grass Blades Accent at bottom right of left column */
.contact-grass-accent {
  position: absolute;
  bottom: 0;
  right: 15px;
  width: 155px;
  height: 80px;
  z-index: 2;
  pointer-events: none;
  transform-origin: bottom center;
  animation: grassBreeze 6s ease-in-out infinite alternate;
}

@keyframes grassBreeze {
  0% {
    transform: rotate(0deg) skewX(0deg);
  }
  50% {
    transform: rotate(2deg) skewX(1.5deg);
  }
  100% {
    transform: rotate(-1.5deg) skewX(-1deg);
  }
}

.contact-grass-accent svg {
  width: 100%;
  height: 100%;
}

.contact-info-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-content.in-view {
  opacity: 1;
  transform: translateX(0);
}

.contact-title {
  font-size: clamp(2.1rem, 3.2vw, 2.65rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.02rem;
  color: #e2e8f0;
  line-height: 1.55;
  margin-bottom: 34px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.contact-link:hover {
  transform: translateX(5px);
  opacity: 0.95;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ed93b;
  background: rgba(126, 217, 59, 0.14);
  border: 1.5px solid rgba(126, 217, 59, 0.3);
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-link:hover .contact-icon-wrap {
  transform: scale(1.1);
  background-color: rgba(126, 217, 59, 0.25);
  box-shadow: 0 0 14px rgba(126, 217, 59, 0.4);
}

.contact-svg {
  width: 22px;
  height: 22px;
}

.contact-phone-text {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact-email-text {
  font-size: 1.15rem;
  font-weight: 700;
  word-break: break-all;
}

.contact-location-text {
  font-size: 1.15rem;
  font-weight: 700;
}

/* Cursive Handwritten Tagline */
.contact-cursive-wrap {
  position: relative;
  display: inline-block;
  margin-top: 8px;
}

.contact-cursive-text {
  font-family: var(--font-accent);
  font-size: 2rem;
  line-height: 1.15;
  color: #ffffff;
  display: block;
}

.cursive-underline-swoosh {
  width: 220px;
  height: 18px;
  display: block;
  margin-top: -3px;
  margin-left: 18px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* RIGHT COLUMN: Send Us a Message Form */
.contact-form-col {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px 80px 65px 65px;
  position: relative;
}

.contact-form-inner {
  max-width: 580px;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-inner.in-view {
  opacity: 1;
  transform: translateX(0);
}

.contact-form-title {
  color: #072246;
  font-size: clamp(1.85rem, 2.8vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.contact-direct-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field-group {
  width: 100%;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1.5px solid #ddecfa;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 0.98rem;
  color: #072246;
  background-color: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #64748b;
  font-weight: 500;
  opacity: 0.85;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
  outline: none;
  background-color: #fbfdfc;
}

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

.contact-submit-btn {
  width: 100%;
  background-color: #16a34a;
  color: #ffffff;
  border-radius: 10px;
  padding: 16px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.contact-submit-btn:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.35);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.submit-btn-arrow {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
  display: inline-block;
}

.contact-submit-btn:hover .submit-btn-arrow {
  transform: translateX(5px);
}

/* Contact Form Success State */
.contact-form-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: 34px 26px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.success-check-icon {
  width: 54px;
  height: 54px;
  background: #16a34a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-check-icon svg {
  width: 28px;
  height: 28px;
}

.success-heading {
  color: #14532d;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.success-message {
  color: #166534;
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.btn-send-another {
  background: #16a34a;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-send-another:hover {
  background: #15803d;
  transform: translateY(-1px);
}

/* ==========================================================================
   RESPONSIVE CONTACT STYLES
   ========================================================================== */

/* Medium Desktops & Tablets (max-width: 1080px) */
@media (max-width: 1080px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-col {
    padding: 60px 40px;
  }

  .contact-form-col {
    padding: 50px 40px 60px;
  }

  .contact-form-inner {
    max-width: 100%;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .contact-info-col {
    padding: 50px 24px;
  }

  .contact-form-col {
    padding: 40px 20px 50px;
  }

  .contact-input-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-phone-text {
    font-size: 1.2rem;
  }

  .contact-email-text {
    font-size: 1rem;
  }

  .contact-location-text {
    font-size: 1rem;
  }

  .contact-cursive-text {
    font-size: 1.7rem;
  }

  .cursive-underline-swoosh {
    width: 180px;
  }
}

/* ==========================================================================
   SITE FOOTER - BRAND NAVY & CONTINUOUS GRASS LAWN BORDER
   ========================================================================== */

.site-footer {
  background-color: #072246;
  position: relative;
  padding: 48px 0 0 0;
  color: #ffffff;
  overflow: hidden;
  border-top: 2px solid rgba(126, 217, 59, 0.2);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 2;
}

/* Main Horizontal Row */
.footer-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand Logo */
.footer-logo-wrap {
  flex-shrink: 0;
}

.footer-logo-img {
  width: 145px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo-wrap:hover .footer-logo-img {
  transform: scale(1.05) rotate(-1deg);
}

/* Navigation Links */
.footer-nav {
  display: flex;
  align-items: center;
}

.footer-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-link {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
  letter-spacing: -0.1px;
}

.footer-nav-link:hover {
  color: #7ed93b;
  transform: translateY(-2px);
}

/* Vertical Separator */
.footer-vertical-divider {
  width: 1.5px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 10px;
  flex-shrink: 0;
}

/* Contact Information & Socials */
.footer-contact-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-link:hover {
  color: #7ed93b;
  transform: translateX(3px);
}

.footer-contact-icon {
  color: #7ed93b;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.footer-contact-link:hover .footer-contact-icon {
  transform: scale(1.15);
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
}

.footer-contact-text {
  letter-spacing: 0.2px;
}

/* Social Icon Buttons (Facebook & Instagram) */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #072246;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.25s ease, 
              color 0.25s ease, 
              box-shadow 0.25s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}

.social-icon-btn svg {
  width: 19px;
  height: 19px;
  transition: transform 0.25s ease;
}

.social-icon-btn:hover {
  background: #7ed93b;
  color: #072246;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 18px rgba(126, 217, 59, 0.45);
}

.social-icon-btn:hover svg {
  transform: scale(1.08);
}

/* Copyright Row */
.footer-copyright-row {
  text-align: center;
  margin-top: 26px;
  margin-bottom: 12px;
}

.footer-copyright-row p {
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin: 0;
}

/* Continuous Grass Lawn Border Along Entire Bottom */
.footer-grass-border {
  position: relative;
  width: 100%;
  height: 55px;
  line-height: 0;
  overflow: hidden;
  margin-top: 4px;
}

.grass-svg {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: bottom center;
  animation: grassWave 8s ease-in-out infinite alternate;
}

@keyframes grassWave {
  0% {
    transform: scaleY(1) skewX(0deg);
  }
  50% {
    transform: scaleY(1.03) skewX(0.8deg);
  }
  100% {
    transform: scaleY(0.98) skewX(-0.8deg);
  }
}

/* ==========================================================================
   RESPONSIVE FOOTER STYLES
   ========================================================================== */

/* Medium Desktops & Tablets (max-width: 1120px) */
@media (max-width: 1120px) {
  .footer-main-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    text-align: center;
  }

  .footer-vertical-divider {
    display: none;
  }

  .footer-contact-wrap {
    flex-direction: row;
    gap: 24px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .site-footer {
    padding: 38px 0 0 0;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-main-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-logo-img {
    width: 120px;
  }

  .footer-nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
  }

  .footer-nav-link {
    font-size: 0.95rem;
  }

  .footer-contact-wrap {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .footer-contact-list {
    align-items: center;
    text-align: center;
  }

  .footer-grass-border {
    height: 40px;
  }

  .footer-copyright-row p {
    font-size: 0.82rem;
  }
}
