/* Modern, clean styling for LovelandCleaningServices.com */
:root {
  --primary-color: #4CAF50;
  --secondary-color: #2196F3;
  --accent-color: #FFC107;
  --text-color: #333333;
  --light-color: #f9f9f9;
  --dark-color: #1E3A5F;
  --font-main: 'Roboto', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.logo svg {
  height: 36px;
  width: 36px;
  margin-right: 10px;
}

.logo-text span {
  color: var(--secondary-color);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #e6f7ff, #f0fff4);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  width: 50%;
  padding-right: 20px;
}

.hero-image {
  width: 45%;
  display: flex;
  justify-content: center;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(76, 175, 80, 0.2);
}

.cta-button:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(76, 175, 80, 0.3);
}

.secondary-button {
  display: inline-block;
  background-color: transparent;
  color: var(--dark-color);
  padding: 11px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 15px;
  border: 1px solid var(--dark-color);
  transition: all 0.3s;
}

.secondary-button:hover {
  background-color: var(--dark-color);
  color: white;
}

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

.section-title {
  text-align: center;
  font-family: var(--font-heading);
  margin-bottom: 50px;
  color: var(--dark-color);
}

.section-title h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

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

.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

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

.service-icon {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 15px;
}

.service-icon svg {
  height: 60px;
  width: 60px;
  color: var(--primary-color);
}

.service-content {
  padding: 0 25px 30px;
  text-align: center;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-description {
  color: #666;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
  background-color: #e8f5e9;
  padding: 80px 0;
}

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

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
  position: relative;
}

.testimonial-text::before {
  content: '❝';
  font-size: 2rem;
  color: var(--primary-color);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ddd;
  margin-right: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-weight: 600;
  color: var(--dark-color);
}

.author-info p {
  font-size: 0.9rem;
  color: #777;
}

/* About Section */
.about {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--dark-color);
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
}

.feature-list {
  list-style: none;
  margin: 25px 0;
}

.feature-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  font-weight: 500;
}

.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Call to Action Section */
.cta-section {
  background-color: var(--dark-color);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  opacity: 0.9;
}

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

.cta-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-primary:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

.cta-secondary {
  background-color: transparent;
  color: white;
  padding: 11px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid white;
  transition: all 0.3s;
}

.cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Related Resources */
.resources-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.resources-container {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.resources-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  text-align: center;
}

.resources-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.resources-links a {
  color: var(--secondary-color);
  text-decoration: none;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.3s;
}

.resources-links a:hover {
  background-color: #f0f7ff;
  color: var(--dark-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 70px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-about {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: white;
  text-decoration: none;
}

.footer-logo svg {
  height: 32px;
  width: 32px;
  margin-right: 10px;
}

.footer-description {
  opacity: 0.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: white;
}

.contact-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.contact-info svg {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-bottom {
  margin-top: 60px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text, .hero-image {
    width: 100%;
  }
  
  .hero-text {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    transition: 0.3s;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .resources-links {
    grid-template-columns: 1fr;
  }
}

.hidden {
  display: none !important;
}
