/* Fonts */
:root {
    --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    --heading-font: "Bangers", "Impact", sans-serif;
    --nav-font: "Inter", sans-serif;
    --accent-font: "Inter", sans-serif;
}

/* Global Colors - Sleek Black & Green Landscaping Theme */
:root { 
  --background-color: #0a0a0a; /* Deep black background for modern, sleek look */
  --default-color: #e8e8e8; /* Light gray text for excellent readability on dark background */
  --heading-color: #ffffff; /* Pure white headings for maximum impact */
  --accent-color: #22c55e; /* Vibrant green representing growth, nature, and landscaping */
  --secondary-accent: #16a34a; /* Darker green for hover states and depth */
  --surface-color: #1a1a1a; /* Slightly lighter black for cards and sections */
  --contrast-color: #0a0a0a; /* Dark text for light backgrounds */
  --border-color: #2a2a2a; /* Subtle borders */
  --success-color: #10b981; /* Success states */
  --warning-color: #f59e0b; /* Warning/attention */
}

/* Nav Menu Colors - Professional and Clean */
:root {
  --nav-color: #e8e8e8; /* Light gray for nav links */
  --nav-hover-color: #22c55e; /* Green hover effect */
  --nav-active-color: #22c55e; /* Active nav state */
  --nav-mobile-background-color: #0a0a0a; /* Dark mobile menu */
  --nav-dropdown-background-color: #1a1a1a; /* Dark dropdown background */
  --nav-dropdown-color: #e8e8e8; /* Light dropdown text */
  --nav-dropdown-hover-color: #22c55e; /* Green dropdown hover */
}

/* Color Presets - Enhanced for Landscaping Business */

.light-background {
  --background-color: #f8fafc;
  --default-color: #334155;
  --heading-color: #0f172a;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --border-color: #e2e8f0;
}

.dark-background {
  --background-color: #0f172a;
  --default-color: #cbd5e1;
  --heading-color: #f8fafc;
  --surface-color: #1e293b;
  --contrast-color: #0f172a;
  --border-color: #334155;
}

.accent-background {
  --background-color: #22c55e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #16a34a;
  --contrast-color: #0a0a0a;
  --border-color: #16a34a;
}

.nature-background {
  --background-color: #064e3b;
  --default-color: #d1fae5;
  --heading-color: #ffffff;
  --surface-color: #065f46;
  --contrast-color: #064e3b;
  --border-color: #047857;
}

/* Premium gradient backgrounds for hero sections */
.gradient-background {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #22c55e 100%);
  --background-color: transparent;
}

.nature-gradient {
  background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #22c55e 100%);
  --background-color: transparent;
  --default-color: #ffffff;
  --heading-color: #ffffff;
}

/* Smooth scroll with enhanced performance */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes - Enhanced for Landscaping
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Enhanced link styling */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

a:hover {
  color: var(--secondary-accent);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Premium button styling */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
  color: var(--contrast-color);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

/* Enhanced heading styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

/* Card and surface styling */
.card,
.surface {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

/* Utility classes for landscaping business */
.text-accent { color: var(--accent-color); }
.text-success { color: var(--success-color); }
.bg-gradient { background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent)); }
.shadow-green { box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2); }

/* Responsive typography */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .card,
  .surface {
    padding: 1.5rem;
    border-radius: 8px;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes - Enhanced for Landscaping
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Enhanced link styling */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

a:hover {
  color: var(--secondary-accent);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Premium button styling */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
  color: var(--contrast-color);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

/* Enhanced heading styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

/* Card and surface styling */
.card,
.surface {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}


/* PHP Email Form Messages - Landscaping Theme
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  text-align: left;
  padding: 15px 20px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
  border-left: 4px solid #991b1b;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
  text-align: center;
  padding: 15px 20px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-accent);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px 20px;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Global Header - Landscaping Theme
--------------------------------------------------------------*/
.header {
  --background-color: rgba(10, 10, 10, 0.95);
  --default-color: #e8e8e8;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;  /* Increased from 15px */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}


.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
}

.header .logo img {
  max-height: 60px;  /* Increased from 40px */
  margin-right: 16px;  /* Increased spacing */
  filter: brightness(1.1);
}

.header .logo h1 {
  font-size: 32px;  /* Increased from 28px to match larger logo */
  margin: 0;
  font-weight: 800;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.scrolled .header {
  --background-color: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

/*--------------------------------------------------------------
# Navigation Menu - Enhanced Landscaping Theme
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigation Menu - Enhanced Landscaping Theme
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
  }

  .navmenu a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
    transform: translateY(-2px);
  }

  .navmenu li:hover > a::before,
  .navmenu .active::before {
    width: 100%;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 8px 0;
    background: var(--surface-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
  }

  .navmenu .dropdown ul li {
    min-width: 220px;
  }

  .navmenu .dropdown ul a {
    padding: 12px 20px;
    margin: 4px 8px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    border-radius: 8px;
  }

  .navmenu .dropdown ul a::before {
    display: none;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--contrast-color);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
    transform: translateX(4px);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    transform: translateY(4px);
  }
}

/* Mobile Navigation - Fixed */
@media (max-width: 1199px) {
  
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    border-radius: 6px;
    position: relative;
    z-index: 10000;
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
    background: rgba(34, 197, 94, 0.1);
  }

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: fixed;
    top: 80px;
    right: 20px;
    left: 20px;
    max-height: calc(100vh - 100px);
    padding: 20px 0;
    margin: 0;
    border-radius: 16px;
    background: var(--surface-color);
    overflow-y: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 24px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 2px 12px;
    border-radius: 10px;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
    transform: translateX(4px);
  }

  /* Dropdown styles for mobile */
  .navmenu .dropdown .toggle-dropdown {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-block;
    color: var(--nav-dropdown-color);
    padding: 4px;
    border-radius: 4px;
  }

  .navmenu .dropdown .toggle-dropdown:hover {
    color: var(--accent-color);
    background: rgba(34, 197, 94, 0.1);
  }

  .navmenu .dropdown.active .toggle-dropdown {
    transform: rotate(180deg);
    color: var(--accent-color);
  }

  /* Dropdown submenu - hidden by default with smooth animation */
  .navmenu .dropdown ul {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0 20px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color);
    border-radius: 8px;
    margin: 2px 10px;
    transform: none;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--contrast-color);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
    transform: translateX(4px);
  }

  /* Show dropdown when active - smooth slide down animation */
  .navmenu .dropdown.active ul {
    max-height: 400px; /* Adjust based on your content */
    padding: 10px 0;
    margin: 10px 20px;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--accent-color);
    background: var(--surface-color);
    border-radius: 50%;
    position: fixed;
    top: 20px;
    right: 20px;
  }

  .mobile-nav-active .navmenu ul {
    display: block;
  }

  /* Mobile nav overlay - semi-transparent dark background */
  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
  }

  .mobile-nav-active .mobile-nav-overlay {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer - Landscaping Theme
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  font-size: 14px;
  position: relative;
  border-top: 1px solid var(--border-color);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.footer .footer-top {
  padding: 60px 0 40px 0;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 12px;
  filter: brightness(1.1);
}

.footer .footer-about .logo span {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .footer-about p {
  font-size: 15px;
  font-family: var(--default-font);
  line-height: 1.7;
  color: rgba(232, 232, 232, 0.9);
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 18px;
  color: var(--default-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--surface-color);
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 20px; /* Add padding to push links to the right */
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .footer-links ul li:hover {
  transform: translateX(4px);
}

.footer .footer-links ul a {
  color: rgba(232, 232, 232, 0.8);
  display: inline-block;
  line-height: 1.6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

/* Modern Service List Styles */
.footer .footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-services ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .footer-services ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.footer .footer-services ul li:hover::before {
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.footer .footer-services ul li a {
  color: rgba(232, 232, 232, 0.8);
  display: inline-block;
  line-height: 1.6;
  padding-left: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.footer .footer-services ul li:hover a {
  color: var(--accent-color);
  padding-left: 28px;
}

/* Footer Logo Section */
.footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.footer .footer-logo:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
  transform: translateY(-2px);
}

.footer .footer-logo img {
  max-height: 80px;
  width: auto;
  margin-bottom: 15px;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}

.footer .footer-logo:hover img {
  filter: brightness(1.1);
  transform: scale(1.05);
}

.footer .footer-logo p {
  margin: 0;
  font-size: 13px;
  color: rgba(232, 232, 232, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.footer .copyright {
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  background: rgba(10, 10, 10, 0.5);
}

.footer .copyright p {
  margin-bottom: 0;
  color: rgba(232, 232, 232, 0.7);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer .footer-top {
    padding: 40px 0 30px 0;
  }
  
  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-services,
  .footer .footer-logo {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer .footer-about .logo {
    justify-content: center;
  }
  
  .footer .social-links {
    justify-content: center;
  }
  
  .footer .footer-links ul {
    padding-left: 0; /* Remove the padding on mobile */
  }
  
  .footer .footer-links ul li,
  .footer .footer-services ul li {
    justify-content: center;
  }
  
  .footer .footer-services ul li::before {
    display: none;
  }
  
  .footer .footer-services ul li a {
    padding-left: 0;
  }
  
  .footer .footer-services ul li:hover a {
    padding-left: 0;
  }
  
  .footer .footer-logo {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .footer {
    text-align: center;
  }
  
  .footer .footer-about .logo span {
    font-size: 24px;
  }
  
  .footer h4 {
    font-size: 16px;
  }
  
  .footer .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# Preloader - Landscaping Theme
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  position: relative;
  border: 4px solid var(--border-color);
  border-color: var(--accent-color) transparent var(--secondary-accent) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button - Enhanced
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
  width: 50px;
  height: 50px;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top i {
  font-size: 20px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs - Enhanced
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 180px 0 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
}

.page-title h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 12px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 12px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Global Sections - Enhanced
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 74px;
  overflow: clip;
  position: relative;
}

/*--------------------------------------------------------------
# Global Section Titles - Landscaping Theme
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  color: rgba(232, 232, 232, 0.9);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Utility classes for landscaping business */
.text-accent { color: var(--accent-color); }
.text-success { color: var(--success-color); }
.bg-gradient { background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent)); }
.shadow-green { box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2); }

/* Responsive typography */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .card,
  .surface {
    padding: 1.5rem;
    border-radius: 8px;
  }
  
  .page-title {
    padding: 140px 0 80px 0;
  }
  
  section,
  .section {
    padding: 60px 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-logo {
  position: relative;
  z-index: 3;
  width: 500px;
  height: auto;
  margin: 0 auto 40px auto;
  display: block;
  filter: drop-shadow(-1px 0 2px #2f4d5a);
  animation: logo-float 3s ease-in-out infinite;
}


.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  text-shadow: -1px 0 2px #2f4d5a;
}

.hero p {
  color: var(--default-color);
  margin: 10px 0 0 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: -1px 0 2px #2f4d5a;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 30px;
    line-height: 36px;
  }
  .hero .hero-logo {
    width: 350px;
    margin-bottom: 30px;
  }

}
.hero .btn-scroll {
  transition: 0.4s;
  color: var(--default-color);
  display: block;
  margin-top: 30px;
  animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
}

.hero .btn-scroll i {
  font-size: 48px;
}

.hero .btn-scroll:hover {
  color: var(--accent-color);
}

@keyframes btn-up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.about-lists-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #48bb78;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(72, 187, 120, 0.5);
}

/* Hover effect */
.about-list li:hover::before {
  transform: scale(1.3);
  transition: transform 0.3s ease;
}

.about .content h3 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about .content p {
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
}

.about .stats-container {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

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

.about .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about .stat-label {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .content .about-btn {
  padding: 12px 32px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
  text-decoration: none;
  letter-spacing: 0.5px;
  background: transparent;
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 8px;
  transition: transform 0.3s ease;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.about .content .about-btn:hover i {
  transform: translateX(4px);
}

/* Icon Box Styles with Fixed Spacing */
.about .icon-box {
  background: rgba(26, 26, 26, 0.6);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about .icon-box:hover::before {
  opacity: 1;
}

.about .icon-box:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.about .icon-box i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.3s ease;
}

.about .icon-box:hover i {
  transform: scale(1.1);
  color: var(--secondary-accent);
}

.about .icon-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
  text-decoration: none;
}

.about .icon-box p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/* Ensure even spacing between icon box rows */
.about .row.gy-4 {
  --bs-gutter-y: 1.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about .stats-container {
    gap: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .about .stat-number {
    font-size: 1.8rem;
  }
  
  .about .icon-box {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }
  
  .about .icon-box i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .about .content .about-btn {
    padding: 10px 28px;
    font-size: 12px;
  }
  
  .about .row.gy-4 {
    --bs-gutter-y: 1.25rem;
  }
}

@media (max-width: 576px) {
  .about-lists-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about .stats-container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
  
  .about .stat-item {
    align-items: center;
  }
  
  .about .content {
    text-align: center;
  }
  
  .about .row.gy-4 {
    --bs-gutter-y: 1rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services {
  background: var(--background-color);
  position: relative;
}

.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 3rem 2rem;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
  inset: 100% 0 0 0;
  z-index: -1;
  border-radius: 16px;
  transition: inset 0.1s ease;
}

.services .service-item .icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 2.5rem;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.3;
}

.services .service-item h4 a {
  color: var(--heading-color);
  text-decoration: none;
}

.services .service-item p {
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Menu Icon - Three Lines */
.services .service-item .menu-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none; /* Allow clicks to pass through */
}

.services .service-item .menu-icon span {
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  display: block;
  transition: all 0.1s ease;
  opacity: 0.7;
}

/* Hover Effects */
.services .service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.services .service-item:hover .icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.services .service-item:hover h4 a,
.services .service-item:hover .icon i,
.services .service-item:hover p {
  color: var(--contrast-color);
}

.services .service-item:hover:before {
  inset: 0;
}

/* Menu icon changes on hover */
.services .service-item:hover .menu-icon span {
  background-color: var(--contrast-color);
  opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .services .service-item {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }
  
  .services .service-item .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
    border-radius: 12px;
  }
  
  .services .service-item .icon i {
    font-size: 2rem;
  }
  
  .services .service-item h4 {
    font-size: 1.25rem;
  }
  
  .services .service-item p {
    font-size: 0.9rem;
  }
  
  .services .service-item .menu-icon {
    top: 15px;
    right: 15px;
    width: 25px;
    height: 20px;
  }
}
.services-carousel {
 margin-top: 60px;
 background: transparent;
 border-radius: 25px;
 overflow: hidden;
 box-shadow: 0 20px 60px rgba(0,0,0,0.15);
 border: none;
}

.carousel-title {
 text-align: center;
 padding: 25px 20px 20px;
 background: linear-gradient(135deg, rgba(40, 167, 69, 0.95), rgba(32, 201, 151, 0.95));
 position: relative;
 overflow: hidden;
 border-radius: 25px 25px 0 0;
}

.carousel-title::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
 backdrop-filter: blur(10px);
}

.carousel-title h3 {
 font-size: 2rem;
 font-weight: 800;
 margin: 0;
 color: white;
 text-shadow: 0 2px 10px rgba(0,0,0,0.3);
 letter-spacing: 1px;
 text-transform: uppercase;
 position: relative;
 z-index: 2;
}

.title-underline {
 width: 60px;
 height: 3px;
 background: white;
 margin: 10px auto 0;
 border-radius: 2px;
 position: relative;
 z-index: 2;
 box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.carousel-inner {
 height: 500px;
 position: relative;
 padding: 0;
 margin: 0;
 border-radius: 0 0 25px 25px;
 overflow: hidden;
}

.carousel-item {
 transition: transform 0.6s ease-in-out;
 padding: 0;
 margin: 0;
}

.carousel-item img {
 height: 500px;
 object-fit: cover;
 width: 100%;
 transition: transform 0.3s ease;
 display: block;
 padding: 0;
 margin: 0;
 border: none;
 outline: none;
}

.carousel-item img:hover {
 transform: scale(1.05);
}

.carousel-indicators {
 bottom: 30px;
 margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
 width: 12px;
 height: 12px;
 border-radius: 50%;
 background-color: rgba(255,255,255,0.6);
 border: 2px solid rgba(255,255,255,0.8);
 margin: 0 6px;
 opacity: 0.7;
 transition: all 0.4s ease;
 backdrop-filter: blur(5px);
}

.carousel-indicators .active {
 opacity: 1;
 transform: scale(1.3);
 background-color: #28a745;
 border-color: white;
 box-shadow: 0 0 15px rgba(40, 167, 69, 0.6);
}

/* Touch/Swipe Support */
.carousel-inner {
 touch-action: pan-y;
}

/* Remove any default spacing */
#servicesCarousel {
 margin: 0;
 padding: 0;
 border-radius: 0 0 25px 25px;
 overflow: hidden;
}

#servicesCarousel .carousel-inner {
 margin: 0;
 padding: 0;
}

@media (max-width: 768px) {
 .services-carousel {
   margin-top: 40px;
   border-radius: 20px;
 }
 
 .carousel-title {
   padding: 20px 15px 15px;
   border-radius: 20px 20px 0 0;
 }
 
 .carousel-title h3 {
   font-size: 1.6rem;
   letter-spacing: 0.5px;
 }
 
 .title-underline {
   width: 50px;
   height: 2px;
   margin: 8px auto 0;
 }
 
 .carousel-inner {
   height: 350px;
   border-radius: 0 0 20px 20px;
 }
 
 .carousel-item img {
   height: 350px;
 }
 
 .carousel-indicators {
   bottom: 25px;
 }
 
 .carousel-indicators [data-bs-target] {
   width: 10px;
   height: 10px;
   margin: 0 4px;
 }
 
 #servicesCarousel {
   border-radius: 0 0 20px 20px;
 }
}

@media (max-width: 480px) {
 .carousel-title {
   padding: 15px 15px 12px;
 }
 
 .carousel-title h3 {
   font-size: 1.3rem;
 }
 
 .title-underline {
   width: 40px;
   height: 2px;
   margin: 6px auto 0;
 }
 
 .carousel-inner {
   height: 280px;
 }
 
 .carousel-item img {
   height: 280px;
 }
 
 .carousel-indicators {
   bottom: 20px;
 }
}

@media (max-width: 576px) {
 .services .service-item {
   padding: 1.5rem 1.25rem;
   text-align: center;
 }
 
 .services .service-item .icon {
   margin: 0 auto 1rem auto;
 }
}
@media (max-width: 576px) {
 .services .service-item {
   padding: 1.5rem 1.25rem;
   text-align: center;
 }
 
 .services .service-item .icon {
   margin: 0 auto 1rem auto;
 }
}
/*--------------------------------------------------------------
# Reviews Section - Landscaping Theme
--------------------------------------------------------------*/
.reviews {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.reviews .review-item {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  position: relative;
  overflow: hidden;
}

.reviews .review-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.reviews .review-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
}

.reviews .review-item:hover::before {
  opacity: 1;
}

.reviews .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.reviews .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews .client-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviews .client-avatar i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.reviews .client-details h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.reviews .client-details span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.reviews .rating {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.reviews .rating i {
  font-size: 1rem;
  color: #fbbf24;
}

.reviews .review-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
  font-style: italic;
  position: relative;
}

.reviews .review-content p::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: -15px;
  font-family: serif;
  opacity: 0.3;
}

/* Reviews Stats */
.reviews .reviews-stats {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid var(--border-color);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.reviews .reviews-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
}

.reviews .reviews-stats .stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.reviews .reviews-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  position: relative;
}



.reviews .reviews-stats .stat-label {
  font-size: 0.9rem;
  color: var(--default-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.reviews .reviews-stats .rating {
  justify-content: center;
  margin-top: 0.5rem;
}

.reviews .reviews-stats .rating i {
  font-size: 1.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .reviews .review-item {
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  .reviews .review-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .reviews .client-info {
    width: 100%;
  }
  
  .reviews .rating {
    align-self: flex-start;
  }
  
  .reviews .reviews-stats {
    padding: 2rem 1rem;
    border-radius: 16px;
  }
  
  .reviews .reviews-stats .stat-number {
    font-size: 2rem;
  }
  
  .reviews .reviews-stats .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .reviews .reviews-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .reviews .reviews-stats .stat-item {
    width: 100%;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .reviews .reviews-stats .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .reviews .client-avatar {
    width: 45px;
    height: 45px;
  }
  
  .reviews .client-avatar i {
    font-size: 1.5rem;
  }
  
  .reviews .review-content p::before {
    font-size: 2.5rem;
    top: -8px;
    left: -12px;
  }
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
  overflow: hidden;
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.75), rgba(27, 94, 32, 0.5));
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.call-to-action p {
  color: white;
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 10px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.call-to-action .cta-btn.primary {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  border: 3px solid transparent;
}

.call-to-action .cta-btn.primary:hover {
  background: linear-gradient(45deg, #f7931e, #ff6b35);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
  color: white;
}

.call-to-action .cta-btn.secondary {
  background: transparent;
  color: white;
  border: 3px solid white;
}

.call-to-action .cta-btn.secondary:hover {
  background: white;
  color: #2e7d32;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  color: white;
  opacity: 0.9;
  margin-top: 20px;
}

.cta-guarantee i {
  font-size: 1.5rem;
  color: #4caf50;
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 80px 0;
  }
  
  .call-to-action h3 {
    font-size: 2.2rem;
  }
  
  .call-to-action p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .call-to-action .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
@keyframes primaryGlow {
  0% { box-shadow: 0 0 15px rgba(255, 107, 53, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3); }
  100% { box-shadow: 0 0 25px rgba(255, 107, 53, 0.5), 0 8px 25px rgba(0, 0, 0, 0.3); }
}

@keyframes secondaryGlow {
  0% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 8px 25px rgba(0, 0, 0, 0.3); }
  100% { box-shadow: 0 0 35px rgba(255, 255, 255, 0.7), 0 8px 25px rgba(0, 0, 0, 0.3); }
}

.call-to-action .cta-btn.primary {
  animation: primaryGlow 2s ease-in-out infinite alternate;
}

.call-to-action .cta-btn.secondary {
  animation: secondaryGlow 2s ease-in-out infinite alternate;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
}

.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact .info-item {
  margin-bottom: 30px;
}

.contact .info-item:last-of-type {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--default-color);
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* Map Container */
.contact .map-container {
  margin-top: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact .map-container iframe {
  border-radius: 8px;
}

/* Form Styling */
.contact .php-email-form {
  background-color: #1e1e1e;
  padding: 40px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  height: 100%;
}

/* Form Grid Layout */
.contact .php-email-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact .php-email-form .form-group {
  width: 100%;
}

/* Message field spans full width */
.contact .php-email-form .form-message {
  grid-column: 1 / -1;
}

/* Submit button spans full width */
.contact .php-email-form .form-submit {
  grid-column: 1 / -1;
  margin-top: 10px;
}

/* Form Controls */
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  width: 100%;
  font-size: 14px;
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 8px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid #4a5568;
  transition: all 0.3s ease;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #48bb78;
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #a0aec0;
}

.contact .php-email-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact .php-email-form button[type=submit] {
  color: #ffffff;
  background: linear-gradient(135deg, #48bb78, #38a169);
  border: 0;
  padding: 14px 50px;
  transition: all 0.3s ease;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 0 20px rgba(72, 187, 120, 0.3),
    0 0 40px rgba(72, 187, 120, 0.2),
    0 0 80px rgba(72, 187, 120, 0.1);
}

.contact .php-email-form button[type=submit]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, #38a169, #2f855a);
  transform: translateY(-2px);
  box-shadow: 
    0 4px 25px rgba(72, 187, 120, 0.4),
    0 0 30px rgba(72, 187, 120, 0.3),
    0 0 60px rgba(72, 187, 120, 0.2),
    0 0 100px rgba(72, 187, 120, 0.1);
}

.contact .php-email-form button[type=submit]:hover::before {
  left: 100%;
}

.contact .php-email-form button[type=submit]:active {
  transform: translateY(0);
}

.contact .php-email-form .loading,
.contact .php-email-form .error-message,
.contact .php-email-form .sent-message {
  display: none;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #ffffff;
  text-align: center;
}

.contact .php-email-form .loading {
  background: rgba(72, 187, 120, 0.1);
  border: 1px solid #48bb78;
}

.contact .php-email-form .error-message {
  background: rgba(245, 101, 101, 0.1);
  border: 1px solid #f56565;
}

.contact .php-email-form .sent-message {
  background: rgba(72, 187, 120, 0.1);
  border: 1px solid #48bb78;
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact .info-wrap {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact .php-email-form .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact .info-wrap,
  .contact .php-email-form {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .contact .info-wrap,
  .contact .php-email-form {
    padding: 25px;
  }
  
  .contact .php-email-form button[type=submit] {
    padding: 12px 40px;
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Service Details Page Styles
--------------------------------------------------------------*/
.service-details {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.service-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Service Detail Item */
.service-detail-item {
  margin-bottom: 100px;
  position: relative;
}

.service-detail-item:last-child {
  margin-bottom: 0;
}

/* Service Content */
.service-content {
  padding: 40px 40px 40px 0;
}

.service-detail-item.reverse .service-content {
  padding: 40px 0 40px 40px;
}

.service-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-content h2 i {
  font-size: 2.2rem;
  -webkit-text-fill-color: var(--accent-color);
}

.service-content > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 30px;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.service-features li {
  padding: 12px 0 12px 40px;
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.service-features li i {
  position: absolute;
  left: 0;
  top: 14px;
  font-size: 1.2rem;
  color: var(--accent-color);
}

.service-features li:hover {
  transform: translateX(5px);
  color: #ffffff;
}

/* Service Quote Button */
.btn-service-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-service-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
  color: var(--contrast-color);
}

.btn-service-quote i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-service-quote:hover i {
  transform: translateX(4px);
}

/* Service Image */
.service-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: var(--surface-color);
  padding: 10px;
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

/* Service Badge */
.service-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-accent) 100%);
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.service-badge span {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Decorative Elements */
.service-detail-item::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.service-detail-item:last-child::after {
  display: none;
}

/* Responsive Design */
@media (max-width: 991px) {
  .service-detail-item {
    margin-bottom: 80px;
  }
  
  .service-content {
    padding: 30px 0;
  }
  
  .service-detail-item.reverse .service-content {
    padding: 30px 0;
  }
  
  .service-content h2 {
    font-size: 2rem;
  }
  
  .service-image {
    margin-top: 30px;
  }
  
  .service-detail-item.reverse .service-image {
    margin-top: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .service-details {
    padding: 80px 0;
  }
  
  .service-detail-item {
    margin-bottom: 60px;
  }
  
  .service-content {
    padding: 20px 0;
    text-align: center;
  }
  
  .service-detail-item.reverse .service-content {
    padding: 20px 0;
  }
  
  .service-content h2 {
    font-size: 1.8rem;
    justify-content: center;
  }
  
  .service-content h2 i {
    font-size: 1.8rem;
  }
  
  .service-content > p {
    font-size: 1rem;
  }
  
  .service-features {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 30px;
  }
  
  .service-features li {
    font-size: 0.95rem;
  }
  
  .btn-service-quote {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
  
  .service-image img {
    height: 300px;
  }
  
  .service-badge {
    top: 20px;
    right: 20px;
    padding: 8px 16px;
  }
  
  .service-badge span {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .service-detail-item {
    margin-bottom: 50px;
  }
  
  .service-content h2 {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .service-features li {
    padding-left: 35px;
  }
  
  .service-image {
    padding: 8px;
    border-radius: 16px;
  }
  
  .service-image img {
    height: 250px;
    border-radius: 12px;
  }
}

/* Animation for service items */
.service-detail-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-item.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Add hover effect for entire service item */
.service-detail-item:hover .service-content h2 {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.service-detail-item:hover .service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  z-index: 1;
  border-radius: 20px;
}