/* 
  718JUNKOUT - Main Stylesheet
  A modern, responsive design for a junk removal business
*/

/* Import Lato font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

/* ---------- Base Styles ---------- */
:root {
  --primary-color: #2196f3;     /* Blue */
  --secondary-color: #073b4c;   /* Keep dark blue for footer */
  --accent-color: #1b5e20;      /* Dark Green */
  --light-color: #e3f2fd;       /* Light Blue */
  --light-accent: #f5f7fa;      /* Light gray-blue instead of light green */
  --dark-color: #424242;        /* Dark Gray */
  --text-color: #424242;        /* Dark Gray for text */
  --gray-color: #757575;        /* Medium gray */
  --light-gray: #e0e0e0;        /* Light gray */
  --success-color: #1b5e20;     /* Dark Green */
  --warning-color: #ffd166;     /* Gold */
  --danger-color: #ef476f;      /* Pink-red */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius: 5px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --heading-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --body-font: 'Lato', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  line-height: 1.7; /* Slightly increased for better readability with Lato */
  font-weight: 400; /* Regular weight for body text */
  color: var(--text-color);
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Set headings to use the heading font */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  line-height: 1.3; /* Tighter line height for headings */
}

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

a:hover {
  color: #1976d2; /* Darker shade of primary blue */
}

ul {
  list-style: none;
}

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

p {
  margin-bottom: 1.2em; /* Consistent paragraph spacing */
  font-size: 1.05rem; /* Slightly larger for better readability */
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 45px; /* Increased spacing below section titles */
  font-size: 2.2rem;
  position: relative;
  color: var(--secondary-color);
}

/* Apply lighter weight for certain text elements */
.hero p, 
.feature p, 
.service-card p, 
.gallery-caption p,
.testimonial-content p {
  font-weight: 300;
}

/* Apply bold weight for navigation and buttons */
.nav-links a,
.btn,
.footer-links a {
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--gray-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 14px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #1976d2; /* Darker shade of primary blue */
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #052c3a; /* Darker shade of secondary color */
  color: white;
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ---------- Header & Navigation ---------- */
/* Add default rule to hide mobile button */
.mobile-menu-btn {
  display: none;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
  margin: 0;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo a:hover .logo-img, 
.logo a:hover .logo-text {
  transform: scale(1.03);
}

.logo-img {
  max-height: 60px;
  width: auto;
  transition: all 0.3s ease;
  vertical-align: middle;
  margin-right: 10px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 30px;
  position: relative;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Dropdown menu styles */
.nav-links .has-dropdown {
  position: relative;
}

.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 250px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links .dropdown-services {
  width: 900px;
  left: -350px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 25px;
}

.nav-links .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.nav-links .dropdown-column {
  padding: 0 15px;
}

.nav-links .dropdown-column h3 {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-accent);
  font-weight: 700;
}

.nav-links .dropdown li {
  margin: 0;
  padding: 0;
}

.nav-links .dropdown a {
  display: block;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-color);
  transition: all 0.2s ease;
  border-radius: 6px;
}

.nav-links .dropdown a:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
  transform: translateX(3px);
}

.nav-links .dropdown a.active {
  background-color: var(--light-color);
  color: var(--primary-color);
  font-weight: 500;
}

.nav-links .dropdown a::after {
  display: none;
}

.dropdown-toggle {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 5px;
  color: var(--gray-color);
  font-size: 0.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.has-dropdown:hover .dropdown-toggle {
  color: var(--primary-color);
  transform: rotate(180deg);
}

@media (max-width: 1200px) {
  .nav-links .dropdown-services {
    width: 700px;
    left: -250px;
  }
}

@media (max-width: 991px) {
  .nav-links .dropdown-services {
    width: 500px;
    left: -150px;
  }
}

@media (max-width: 768px) {
  /* Mobile menu button base styling */
  .mobile-menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
  }
  
  .mobile-menu-btn:hover {
    transform: scale(1.05);
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
  }
  
  .mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Mobile menu display */
  .mobile-menu-btn {
    display: block;
  }
  
  /* Mobile nav styling */
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 20px 20px;
    transition: all 0.4s ease;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 0 0 15px 0;
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 10px 0;
    width: 100%;
  }
  
  /* Mobile dropdown styling */
  .nav-links .dropdown {
    position: static;
    background-color: var(--light-color);
    box-shadow: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
  }

  .nav-links .dropdown-services {
    width: 100%;
    left: 0;
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .nav-links .has-dropdown.open .dropdown {
    display: block;
  }

  .dropdown-toggle {
    position: absolute;
    right: 0;
    top: 10px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    text-align: center;
    z-index: 10;
    color: var(--gray-color);
  }

  .dropdown-toggle i {
    transition: all 0.3s ease;
  }
  
  .dropdown-toggle.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
  }
  
  .nav-links .dropdown li {
    margin: 0;
  }
  
  .nav-links .dropdown-column {
    padding: 5px 0;
    margin-bottom: 15px;
  }
  
  .nav-links .dropdown-column h3 {
    padding: 10px 5px;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .nav-links .dropdown a {
    padding: 8px 10px;
    margin-bottom: 5px;
  }
  
  .nav-links .dropdown a:hover {
    transform: none;
  }
  
  /* Other mobile styles */
  section {
    padding: 40px 0;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-item {
    flex-direction: column;
  }
  
  .service-icon {
    padding: 30px;
    width: 100%;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  color: white;
  text-align: center;
  padding: 180px 0;
  overflow: hidden;
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 25%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}

.slideshow-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.slideshow-slide.active {
  opacity: 1;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  font-weight: 300;
}

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

/* ---------- Features Section ---------- */
.features {
  background-color: var(--light-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr)); /* Force exactly 3 columns */
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  width: 90%;
  grid-auto-flow: row; /* Ensure items flow row by row */
  grid-auto-rows: auto; /* Allow rows to size automatically */
}

/* Add responsive breakpoints */
@media (max-width: 991px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
}

@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

.feature {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.feature p {
  font-weight: 300;
}

/* ---------- Services Preview Section ---------- */
.services-preview {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-img.residential {
  background-image: url('../images/furniture.jpeg');
}

.service-img.commercial {
  background-image: url('../images/storageunit.jpg');
}

.service-img.specialty {
  background-image: url('../images/hoarderhouse.jpg');
}

.service-card h3 {
  color: var(--secondary-color);
  margin: 20px 20px 10px;
}

.service-card p {
  margin: 0 20px 20px;
  color: var(--gray-color);
  font-weight: 300;
}

.service-card .btn {
  margin: 0 20px 20px;
}

.services-cta {
  text-align: center;
  margin-top: 20px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/garagecleanup-after.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* ---------- Page Header ---------- */
.page-header {
  background-color: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
}

/* ---------- Services Page ---------- */
.services-section {
  padding: 60px 0;
}

.service-category {
  margin-bottom: 60px;
}

.service-category h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
}

.service-category-header {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
  align-items: center;
}

.service-category-text {
  flex: 2;
  min-width: 300px;
}

.service-category-img {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.service-category-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.service-item {
  display: flex;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 2rem;
}

.service-content {
  padding: 20px;
  flex: 1;
}

.service-content h3 {
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.pricing-info {
  background-color: var(--light-accent);
  text-align: center;
  padding: 60px 0;
}

.pricing-info h2 {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.pricing-info p {
  max-width: 800px;
  margin: 0 auto 30px;
}

.pricing-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.how-it-works {
  padding: 80px 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* ---------- Gallery Page ---------- */
.gallery-section {
  padding: 60px 0;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-img-container {
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

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

.gallery-caption {
  padding: 15px;
  background-color: white;
}

.gallery-caption h3 {
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.gallery-caption p {
  color: var(--gray-color);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Update styles for simple side-by-side display */
.before-after-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 500px; /* Added max-width to make container smaller */
  margin: 0 auto; /* Center the container */
}

/* Service pages: side-by-side layout */
.service-image .before-after-container {
  display: flex; /* Use flexbox for side-by-side layout on service pages */
  gap: 20px; /* Increased gap between images */
  max-width: 1000px; /* Increased from 800px to make container even bigger */
  margin: 0 auto;
}

.service-image .before-img,
.service-image .after-img {
  width: 48%; /* Set width to just under half for the gap */
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative; /* For label positioning */
}

/* Media query for mobile devices - stack images vertically */
@media (max-width: 768px) {
  .service-image .before-after-container {
    flex-direction: column; /* Stack images vertically */
    gap: 30px; /* Increase gap between stacked images */
  }
  
  .service-image .before-img,
  .service-image .after-img {
    width: 100%; /* Full width when stacked */
  }
}

/* Gallery pages: hover effect */
.gallery-section .before-after-container {
  display: block; /* Reset to block for gallery pages */
  cursor: pointer; /* Show pointer cursor for hover interaction */
  height: 250px; /* Match the height of gallery-img-container */
}

.gallery-section .toggle-indicator {
  display: none; /* Hide toggle indicators on gallery pages */
}

.gallery-section .gallery-img-container.before-after-container {
  height: 250px; /* Ensure height is set for gallery containers */
  position: relative;
}

.gallery-section .before-img,
.gallery-section .after-img {
  width: 100%; /* Full width for gallery pages */
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  object-fit: cover; /* Make sure images cover the container */
}

.gallery-section .after-img {
  opacity: 0; /* Hide after image initially */
}

.gallery-section .before-after-container:hover .before-img {
  opacity: 0; /* Hide before image on hover */
}

.gallery-section .before-after-container:hover .after-img {
  opacity: 1; /* Show after image on hover */
}

/* Add before/after labels */
.before-img::before,
.after-img::before {
  content: 'BEFORE';
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
}

.after-img::before {
  content: 'AFTER';
  background-color: rgba(33, 150, 243, 0.8);
}

/* Hide slider handle since we're showing images side by side or using hover */
.slider-handle {
  display: none;
}

.before-after-caption {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: #666;
  font-size: 15px;
}

/* Service page image section */
.service-image {
  position: relative;
  margin-bottom: 30px;
  max-width: 100%; /* Increased from 90% to full width for maximum size */
  margin-left: auto;
  margin-right: auto;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.image-caption {
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  color: #666;
  font-size: 14px;
}

.testimonials-preview {
  background-color: var(--light-accent);
  padding: 80px 0;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 10px;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  font-weight: 300;
}

.testimonial-content::before {
  content: '\201C';
  font-size: 60px;
  color: var(--light-gray);
  position: absolute;
  left: -20px;
  top: -20px;
}

.testimonial-author {
  text-align: right;
  color: var(--secondary-color);
  font-weight: 600;
}

/* ---------- About Page ---------- */
.about-intro {
  padding: 60px 0;
}

.about-intro .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content.full-width {
  flex: 1 1 100%;
}

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-image .image-caption {
  margin-top: 10px;
  text-align: center;
  font-style: italic;
  color: #666;
}

.about-content h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Add style for About service areas section */
.about-service-areas {
  background-color: var(--light-accent);
}

.rounded-img {
  border-radius: var(--border-radius);
}

.mission-vision {
  background-color: var(--light-accent);
  padding: 80px 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.mission, .vision {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.icon-container i {
  font-size: 2.5rem;
  color: white;
}

.mission h2, .vision h2 {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.values {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value {
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: white;
  transition: var(--transition);
}

.value:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 1.8rem;
  color: white;
}

.value h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.team {
  background-color: var(--light-accent);
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-photo {
  height: 250px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-photo img {
  transform: scale(1.1);
}

.team-member h3 {
  margin: 20px 20px 5px;
  color: var(--secondary-color);
}

.team-member .position {
  margin: 0 20px 10px;
  color: var(--primary-color);
  font-weight: 600;
}

.team-member .bio {
  margin: 0 20px 20px;
  color: var(--gray-color);
}

.why-choose {
  padding: 80px 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.reason {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.reason:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reason-icon {
  margin-right: 20px;
}

.reason-icon i {
  font-size: 2rem;
  color: var(--success-color);
}

.reason-content h3 {
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.faq {
  background-color: var(--light-accent);
  padding: 80px 0;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin: 0;
  color: var(--secondary-color);
}

.accordion-icon {
  color: var(--primary-color);
  transition: var(--transition);
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 0 20px 20px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* ---------- Contact Page ---------- */
.contact-info {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-details {
  padding-right: 30px;
}

.contact-details h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.contact-details > p {
  margin-bottom: 30px;
  color: var(--gray-color);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 22px;
  color: var(--primary-color);
  margin-right: 15px;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 18px;
}

.contact-text p {
  margin: 0;
}

.contact-text p.small {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.contact-image {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-image .image-caption {
  margin-top: 10px;
  text-align: center;
  font-style: italic;
  color: #666;
  font-size: 14px;
}

.hours-list li {
  margin-bottom: 5px;
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-status {
  padding: 15px;
  margin-top: 20px;
  border-radius: 5px;
  display: none;
}

.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.map-section {
  padding: 60px 0;
  background-color: var(--light-accent);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-areas {
  padding: 80px 0;
}

.service-areas h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-areas > p {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.area {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.area h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.area ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.area ul li::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.contact-faq {
  background-color: var(--light-accent);
  padding: 80px 0;
}

.contact-faq h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* ---------- Footer ---------- */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3,
.footer-links h3,
.footer-hours h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.footer-info p {
  margin-bottom: 15px;
}

.footer-info a,
.footer-links a {
  color: white;
}

.footer-info a:hover,
.footer-links a:hover {
  color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-hours ul li {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.address i,
.phone i {
  margin-right: 10px;
  color: var(--primary-color);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-details {
    padding-right: 0;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .about-grid,
  .feature-grid,
  .services-grid,
  .gallery-grid,
  .team-grid,
  .why-choose-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-filter {
    flex-direction: column;
    align-items: center;
  }
}

/* Animation keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease;
}

.slide-up {
  animation: slideUp 1s ease;
}

/* ---------- Service Detail Pages ---------- */
.service-detail-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.service-content h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.service-content h3 {
  color: var(--secondary-color);
  margin: 30px 0 15px;
}

.service-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-benefits {
  background-color: var(--light-color);
  padding: 20px 30px;
  border-radius: var(--border-radius);
  margin: 20px 0;
}

.service-benefits li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.service-benefits i {
  color: var(--success-color);
  margin-right: 12px;
  margin-top: 3px;
}

.service-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.image-caption {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: var(--gray-color);
}

.service-cta {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.service-faq {
  background-color: var(--light-accent);
  padding: 60px 0;
}

@media (max-width: 991px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

.slideshow-controls {
  display: none;
}

.slideshow-fullscreen {
  display: none !important;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  justify-content: center;
}

.hero-badges .badge {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--secondary-color);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-badges .badge i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 1rem;
}

/* Service List in Service Cards */
.service-list {
  margin: 15px 0;
  padding-left: 5px;
}

.service-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.service-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.85rem;
}

/* Process Section */
.process-section {
  background-color: var(--light-accent);
  padding: 80px 0;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  text-align: center;
  position: relative;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin: 15px 0;
}

.process-step h3 {
  margin: 15px 0;
  color: var(--secondary-color);
  font-weight: 700;
}

.process-step p {
  color: var(--gray-color);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  opacity: 0;
  position: absolute;
  width: 100%;
  transition: opacity 0.5s ease;
  padding: 0 20px;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
}

.rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.quote {
  font-style: italic;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
}

.quote:before,
.quote:after {
  content: '\201C';
  font-size: 3rem;
  position: absolute;
  color: rgba(33, 150, 243, 0.1);
  font-family: Georgia, serif;
}

.quote:before {
  top: -20px;
  left: -10px;
}

.quote:after {
  content: '\201D';
  bottom: -40px;
  right: -10px;
}

.client {
  font-weight: 700;
  color: var(--secondary-color);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin: 0 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
}

.prev-testimonial,
.next-testimonial {
  background-color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
  background-color: var(--primary-color);
  color: white;
}

.review-cta {
  text-align: center;
  margin-top: 40px;
}

/* Service Areas Section */
.service-areas {
  padding: 80px 0;
  background-color: white;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.area-column {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.area-column h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(33, 150, 243, 0.2);
}

.area-column ul li {
  padding: 5px 0;
  font-size: 0.95rem;
  color: var(--text-color);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.area-column ul li:last-child {
  border-bottom: none;
}

.areas-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: var(--gray-color);
}

.areas-note a {
  font-weight: 700;
}

/* FAQ Section */
.faq-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.faq-toggle {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--gray-color);
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

/* Quick Quote Section */
.quick-quote {
  padding: 80px 0;
  background-color: white;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background-color: var(--light-accent);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.quote-form {
  padding: 40px;
  background-color: white;
}

.quote-form h2 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.quote-form p {
  color: var(--gray-color);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-family: var(--body-font);
  font-size: 0.95rem;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
}

.quote-info {
  padding: 40px;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-contact h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.quote-contact p {
  margin-bottom: 15px;
}

.phone-number {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.phone-number i {
  margin-right: 8px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.business-hours {
  margin-top: 20px;
}

.business-hours h4 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1rem;
}

.business-hours ul li {
  padding: 5px 0;
  font-size: 0.9rem;
}

.trust-badges {
  margin-top: 40px;
}

.trust-badges .badge {
  background-color: rgba(27, 94, 32, 0.1);
  color: var(--secondary-color);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-badges .badge i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Enhanced Footer */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(33, 150, 243, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-services {
  margin-top: 0;
}

.footer-services h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-services ul li {
  margin-bottom: 10px;
}

.footer-services a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-services a:hover {
  color: white;
  padding-left: 5px;
}

.payment-methods {
  margin-top: 20px;
}

.payment-methods p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-terms {
  display: flex;
  gap: 20px;
}

.footer-terms a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-terms a:hover {
  color: white;
}

/* New Service Image */
.service-img.specialty {
  background-image: url('../images/hoarderhouse.jpg');
}

/* Media Queries for Responsiveness */
@media (max-width: 991px) {
  .process-steps,
  .area-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .testimonial-content {
    padding: 20px;
  }
  
  .quote {
    font-size: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-terms {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .area-grid {
    grid-template-columns: 1fr;
  }
  
  .quote-form,
  .quote-info {
    padding: 25px;
  }
  
  .testimonial-content {
    padding: 15px;
  }
  
  .quote {
    font-size: 0.95rem;
  }
  
  .quote:before,
  .quote:after {
    font-size: 2rem;
  }
}

/* Media query for touch devices */
@media (hover: none) and (pointer: coarse) {
  /* For devices that don't support hover (like mobile) */
  .gallery-section .before-after-container {
    cursor: pointer;
  }
  
  /* Add tap-to-toggle functionality for mobile */
  .gallery-section .before-after-container.show-after .before-img {
    opacity: 0;
  }
  
  .gallery-section .before-after-container.show-after .after-img {
    opacity: 1;
  }
}

.service-areas-full {
    padding: 60px 0;
}

.area-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.area-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.area-cta h3 {
    margin-bottom: 20px;
}

.area-cta .cta-buttons {
    margin-top: 30px;
}

.area-accordion {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.area-accordion .accordion-btn {
    width: 100%;
    padding: 1rem;
    background: #f8f8f8;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.area-accordion .accordion-btn:hover {
    background: #f0f0f0;
}

.area-accordion .accordion-btn h3 {
    margin: 0;
    color: var(--secondary-color);
}

.area-accordion .accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.area-accordion .accordion-btn.active {
    background-color: #e9f5ff;
}

.area-accordion .accordion-content {
    display: none;
    padding: 1rem;
    background-color: white;
    border-top: 1px solid #e5e5e5;
}

.area-accordion .accordion-content.active {
    display: block;
}

.area-accordion .accordion-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

