/* ----- Global Styles ----- */
:root {
  --primary-color: #3498db;
  --primary-dark: #2980b9;
  --primary-rgb: 52, 152, 219;
  --secondary-color: #2ecc71;
  --accent-color: #f39c12;
  --background-color: #f9f9f9;
  --text-color: #333;
  --text-light: #666;
  --border-color: #ddd;
  --white: #fff;
  --black: #000;
  --dark-color: #333;
  --light-color: #f4f4f4;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --gray-color: #6c757d;
  --gray-light: #e9ecef;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #fff;
}

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

ul {
  list-style: none;
}

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

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #3d8b40;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #0b7dda;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

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

.section-header p {
  color: var(--gray-color);
  font-size: 1.1rem;
}

/* ----- Header & Navigation ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--shadow);
  z-index: 1000;
}

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

.logo {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.logo span {
  font-size: 0.8rem;
  color: var(--gray-color);
}

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

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  font-weight: 500;
  padding: 8px 0;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a.btn-primary {
  color: white;
  padding: 8px 16px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--dark-color);
  transition: var(--transition);
}

/* ----- Hero Section ----- */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  padding-top: 70px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* ----- Services Section ----- */
.services {
  padding: 100px 0;
  background-color: var(--light-color);
}

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

.service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.service-icon i {
  font-size: 30px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card p {
  margin-bottom: 20px;
  color: var(--gray-color);
}

.service-card ul {
  margin-bottom: 20px;
  text-align: left;
  padding-left: 40px;
  list-style: disc;
}

.service-card ul li {
  margin-bottom: 5px;
  color: var(--dark-color);
}

/* ----- Bundles Section ----- */
.bundles {
  padding: 100px 0;
}

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

.bundle-card {
  background-color: white;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.bundle-card:hover {
  transform: scale(1.03);
}

.bundle-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.bundle-card p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.bundle-price {
  margin-bottom: 20px;
}

.bundle-price .original {
  text-decoration: line-through;
  color: var(--gray-color);
  margin-right: 10px;
}

.bundle-price .discount {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ----- About Section ----- */
.about {
  padding: 100px 0;
  background-color: var(--light-color);
}

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

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 15px;
}

.team-roles {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.role h4 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.role p {
  color: var(--gray-color);
  font-size: 0.9rem;
}

/* ----- Testimonials Section ----- */
.testimonials {
  padding: 100px 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: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.stars {
  color: var(--warning-color);
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author span {
  font-weight: 600;
  color: var(--dark-color);
}

.testimonial-author small {
  color: var(--gray-color);
}

/* ----- Booking Section ----- */
.booking {
  padding: 100px 0;
  background-color: var(--light-color);
}

.booking-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  transition: opacity 0.3s ease;
}

.booking-form .form-group:nth-child(7),
.booking-form .form-group:nth-child(8),
.booking-form .form-note,
.booking-form button[type="submit"] {
  grid-column: 1 / -1;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form .form-note {
  font-size: 0.9em;
  color: #666;
}

/* Booking confirmation styles */
.booking-confirmation {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  animation: fadeIn 0.5s ease-out forwards;
}

.booking-confirmation.active {
  opacity: 1;
}

.booking-confirmation i.fa-check-circle {
  font-size: 5em;
  color: #4CAF50;
  margin-bottom: 20px;
  animation: scaleIn 0.5s ease-out forwards;
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

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

/* Form validation states */
.booking-form .form-group.valid input,
.booking-form .form-group.valid select,
.booking-form .form-group.valid textarea {
  border-color: #4CAF50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

.booking-form .form-group.invalid input,
.booking-form .form-group.invalid select,
.booking-form .form-group.invalid textarea {
  border-color: #f44336;
  box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.1);
}

.validation-icon {
  position: absolute;
  right: 10px;
  top: 40px;
  font-size: 1em;
}

.validation-icon .check-icon,
.validation-icon .times-icon {
  display: none;
}

.form-group.valid .validation-icon .check-icon {
  display: inline-block;
  color: #4CAF50;
}

.form-group.invalid .validation-icon .times-icon {
  display: inline-block;
  color: #f44336;
}

.validation-message {
  color: #f44336;
  font-size: 0.85em;
  margin-top: 5px;
}

/* Confetti effect */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #f44336;
  top: -10px;
  animation: confetti-fall 3s linear forwards;
  opacity: 0.8;
  transform: rotate(0deg);
}

@keyframes confetti-fall {
  0% {
    top: -10px;
    transform: rotate(0deg);
  }
  100% {
    top: 100vh;
    transform: rotate(360deg);
  }
}

/* Required star marker */
.required-star {
  color: #f44336;
}

/* Date availability guide */
.date-availability-guide {
  margin-top: 8px;
  font-size: 0.85em;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.date-availability-guide.visible {
  opacity: 1;
  height: auto;
}

.availability-legend {
  display: flex;
  gap: 15px;
}

.availability-legend span {
  position: relative;
  padding-left: 20px;
}

.availability-legend span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.availability-legend .available::before {
  background-color: #4CAF50;
}

.availability-legend .busy::before {
  background-color: #FF9800;
}

.availability-legend .unavailable::before {
  background-color: #f44336;
}

/* Form group animation */
.form-group {
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-group.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Contact Section ----- */
.contact {
  padding: 100px 0;
}

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

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

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

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: var(--dark-color);
}

.contact-card p {
  margin-bottom: 10px;
  color: var(--gray-color);
}

.contact-card a,
.contact-card span {
  color: var(--dark-color);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-5px);
  background-color: var(--dark-color);
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.footer-logo p {
  opacity: 0.7;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: white;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* ----- Responsive Styles ----- */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }
  
  .nav-menu.active {
    top: 70px;
  }
  
  .nav-menu li {
    margin: 10px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .booking-form {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-links ul {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* Form validation styles */
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
  border-color: #4CAF50;
  background-color: rgba(76, 175, 80, 0.05);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #f44336;
  background-color: rgba(244, 67, 54, 0.05);
}

.form-group .required-star {
  color: #f44336;
  font-weight: bold;
}

/* Smooth transitions */
#bookingForm {
  transition: opacity 0.3s ease-in-out;
}

#bookingConfirmation {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: none;
}

#bookingConfirmation.active {
  opacity: 1;
}

/* Improve service cards visual feedback */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

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

.service-card.active {
  border-color: #4CAF50;
  border-width: 2px;
  box-shadow: 0 8px 16px rgba(76, 175, 80, 0.2);
}

/* Loading spinner animation */
@keyframes spinner {
  to {transform: rotate(360deg);}
}

.fa-spinner {
  animation: spinner 1s linear infinite;
}

/* More obvious form buttons */
button[type="submit"] {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

button[type="submit"]:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  z-index: 1;
}

button[type="submit"]:hover:before {
  left: 100%;
}

button[type="submit"] i {
  margin-right: 5px;
}

/* Mobile responsiveness improvements */
@media screen and (max-width: 767px) {
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    margin-bottom: 8px;
    display: block;
  }
  
  .booking-confirmation {
    padding: 20px;
  }
  
  .booking-confirmation h3 {
    font-size: 1.4em;
  }
  
  .service-card {
    margin-bottom: 15px;
  }
}

/* Improved booking confirmation styling */
.confirmation-content {
  padding: 30px;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.confirmation-content i.fa-check-circle {
  font-size: 3em;
  color: #4CAF50;
  margin-bottom: 15px;
}

.confirmation-content h3 {
  color: #4CAF50;
  margin-bottom: 15px;
}

.confirmation-content button {
  margin-top: 20px;
}

/* Better form spacing */
.form-group {
  margin-bottom: 18px;
  position: relative;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
  outline: none;
}

.form-note {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
  font-size: 0.9em;
}

.form-note p {
  margin: 5px 0;
}

/* Loading state for buttons */
.btn-primary:disabled,
.btn-secondary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Admin panel enhancements */
.booking-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.controls button {
  transition: background-color 0.2s;
}

.controls button:hover {
  filter: brightness(1.1);
}

/* Enhanced service cards */
.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

/* Testimonials animation */
.testimonial-card {
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Date and time picker enhancement */
input[type="date"],
input[type="time"] {
  cursor: pointer;
}

/* Bundle cards enhancement */
.bundle-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

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

/* End of additions */

/* Section highlight effect */
.section-highlight {
  animation: section-highlight 1.5s ease-out;
}

@keyframes section-highlight {
  0% { background-color: rgba(var(--primary-rgb), 0); }
  25% { background-color: rgba(var(--primary-rgb), 0.1); }
  100% { background-color: rgba(var(--primary-rgb), 0); }
}

/* Service cards enhancements */
.service-card {
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.service-card.active:before,
.service-card:hover:before {
  transform: translateX(0);
}

.service-card.selected {
  animation: card-pulse 2s;
}

@keyframes card-pulse {
  0% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
  50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); }
  100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
}

/* Form animations */
.form-group {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-group.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Form validation styles */
.form-group {
  position: relative;
}

.validation-icon {
  position: absolute;
  right: 10px;
  top: 38px;
  z-index: 2;
  display: none;
}

.form-group.valid .validation-icon,
.form-group.invalid .validation-icon {
  display: block;
}

.form-group.valid .validation-icon .check-icon {
  display: block;
  color: #28a745;
}

.form-group.valid .validation-icon .times-icon {
  display: none;
}

.form-group.invalid .validation-icon .check-icon {
  display: none;
}

.form-group.invalid .validation-icon .times-icon {
  display: block;
  color: #dc3545;
}

.validation-message {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 5px;
  animation: fadeIn 0.3s ease-in-out;
}

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

/* Form error animation */
.form-error {
  animation: form-shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes form-shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

.form-success {
  animation: form-success 0.5s ease-in-out;
}

@keyframes form-success {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Date availability guide */
.date-availability-guide {
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.date-availability-guide.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.availability-legend {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.availability-legend span {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}

.availability-legend span:before {
  content: '';
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
}

.availability-legend .available:before {
  background-color: #28a745;
}

.availability-legend .busy:before {
  background-color: #ffc107;
}

.availability-legend .unavailable:before {
  background-color: #dc3545;
}

/* Confetti animation */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.confetti {
  position: absolute;
  top: -20px;
  width: 10px;
  height: 20px;
  opacity: 0.7;
  animation: confetti-fall 6s linear forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(calc(100vh + 20px)) rotate(720deg);
    opacity: 0;
  }
}

/* Enhanced form styles */
input.valid, select.valid, textarea.valid {
  border-color: #28a745;
  background-color: rgba(40, 167, 69, 0.05);
}

input.invalid, select.invalid, textarea.invalid {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

/* Required fields */
.required-star {
  color: #dc3545;
}

/* Mobile enhancements */
@media (max-width: 768px) {
  .form-group .validation-icon {
    top: 32px;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .service-card:active {
    transform: scale(0.98);
  }
}

/* Testimonial carousel styles */
.testimonial-grid.carousel-mode {
  display: block;
  position: relative;
  overflow: hidden;
  height: 280px;
  margin: 0 auto;
  max-width: 800px;
}

.testimonial-card.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.testimonial-card.carousel-item.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}

.prev-btn, .next-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
  background: var(--primary-dark);
}

.carousel-indicators {
  display: flex;
  gap: 8px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-indicator.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonial-grid.carousel-mode {
    height: 320px;
  }
  
  .prev-btn, .next-btn {
    width: 36px;
    height: 36px;
  }
}

/* Time Slots for Enhanced Booking */
.time-slots {
  margin-top: 15px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.time-slots h4 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #4CAF50;
  font-size: 1rem;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.time-slot {
  border: none;
  padding: 8px 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot.available {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.time-slot.unavailable {
  background-color: #f5f5f5;
  color: #9e9e9e;
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.7;
}

.time-slot.available:hover {
  background-color: #c8e6c9;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.time-slot.active {
  background-color: #4CAF50;
  color: white;
  font-weight: bold;
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.error-message {
  color: #f44336;
  font-size: 0.9rem;
  margin: 5px 0;
}

/* Mobile Optimization Enhancements */
@media (max-width: 768px) {
  .time-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }
  
  .time-slot {
    padding: 10px 5px;
    font-size: 0.8rem;
  }
  
  .booking-form {
    padding: 15px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 0.9rem;
  }
  
  .btn-primary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .service-grid,
  .bundle-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 15px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image,
  .about-text {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo,
  .footer-links,
  .footer-contact {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Service Details Button */
.btn-details {
  background: none;
  border: none;
  color: #2196F3;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 5px 10px;
  margin-top: 10px;
  display: block;
  width: 100%;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-details:hover {
  color: #0d47a1;
  text-decoration: none;
}

/* Service Modal & Details */
.service-modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.service-modal .modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 1000px;
  max-height: 85vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
  position: relative;
}

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

.service-details {
  display: none;
}

.service-details.active {
  display: block;
}

.service-details h2 {
  text-align: center;
  color: #4CAF50;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
}

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

.detail-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-card h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.detail-card h4 {
  color: #4CAF50;
  margin: 20px 0 10px;
  font-size: 1.2rem;
}

/* Package details for car detailing */
.package-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.package {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  background-color: #fff;
  position: relative;
}

.package h5 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: inline-block;
}

/* Book Service Button */
.book-service-btn {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

.book-service-btn:hover {
  background-color: #3e8e41;
  transform: translateY(-2px);
}

.package .book-service-btn {
  margin-left: 10px;
  font-size: 0.9em;
  padding: 5px 10px;
}

/* Mobile styles for service details */
@media (max-width: 768px) {
  .service-modal .modal-content {
    width: 90%;
    padding: 15px;
    margin: 10% auto;
  }
  
  .service-details-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-card {
    padding: 15px;
  }
}

/* Enhanced Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .booking-confirmation {
    padding: 20px 15px;
  }
  
  .booking-confirmation h3 {
    font-size: 18px;
  }
  
  .service-card {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .time-slots h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .time-slot {
    padding: 8px 5px;
    font-size: 14px;
  }
  
  /* Improve modal responsiveness */
  .service-modal .modal-content {
    width: 95%;
    max-width: 500px;
    padding: 15px;
    margin: 30px auto;
  }
  
  .service-details h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .detail-card {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .detail-card h3 {
    font-size: 18px;
  }
  
  .detail-card h4 {
    font-size: 16px;
  }
  
  /* Improved form elements touch targets */
  input, 
  select, 
  textarea, 
  button {
    font-size: 16px !important; /* Prevent zoom on iOS */
    min-height: 44px; /* Minimum touch target size */
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-details {
    min-width: 100px;
    padding: 12px 20px;
  }
  
  /* Fix navigation spacing */
  .nav-menu a {
    padding: 15px 10px;
  }
}

@media screen and (max-width: 480px) {
  /* Extra small devices */
  .hero-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .section-header h2 {
    font-size: 22px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Prevent input zoom */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  input[type="time"],
  select,
  textarea {
    font-size: 16px !important;
    padding: 12px 10px;
  }
  
  /* Improve booking form layout */
  .booking-form {
    padding: 15px;
  }
  
  .booking-form .form-group {
    margin-bottom: 12px;
  }
  
  /* Full width buttons for better touch targets */
  .btn-primary, 
  .btn-secondary, 
  .btn-details {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
    display: block;
    text-align: center;
  }
  
  /* Adjust hero buttons */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons a {
    width: 100%;
    margin: 5px 0;
  }
  
  /* Fix service modal content */
  .service-modal .modal-content {
    padding: 12px;
    max-height: 85vh;
    overflow-y: auto;
  }
  
  .service-details-grid {
    grid-template-columns: 1fr;
  }
  
  /* Fix testimonial spacing */
  .testimonial-card {
    padding: 15px;
  }
  
  /* Adjust footer layout */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Fix iOS form element styling */
@supports (-webkit-touch-callout: none) {
  /* iOS specific styles */
  input, 
  select, 
  textarea {
    -webkit-appearance: none;
    border-radius: 5px;
  }
  
  select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
  }
}

/* Fix sticky hover states on mobile */
@media (hover: none) {
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-details:hover,
  .service-card:hover,
  .time-slot.available:hover {
    transform: none;
    box-shadow: none;
  }
  
  .service-card:hover, 
  .service-card.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
}

/* Extra touch-friendly fixes */
.form-group input,
.form-group select,
.form-group textarea,
.btn-primary,
.btn-secondary,
.btn-details,
.time-slot,
.carousel-indicator {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Improve loading states for mobile */
.loading-indicator {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 10px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Fix for fixed positioning on mobile */
.service-modal {
  -webkit-overflow-scrolling: touch;
}

/* Fix for iOS scrolling issues */
html, body {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow-x: hidden;
}

/* Fix for iOS input shadow */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Blog Promotion Section */
.blog-promo {
  background-color: #f9f9f9;
  padding: 80px 0;
}

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

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

.blog-promo .blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-promo .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-promo .blog-image {
  height: 220px;
  overflow: hidden;
}

.blog-promo .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-promo .blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-promo .blog-text {
  padding: 25px;
}

.blog-promo .blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.blog-promo .blog-category {
  background: #4CAF50;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 15px;
  font-weight: 500;
}

.blog-promo .blog-date {
  color: #666;
  font-size: 0.9rem;
}

.blog-promo .blog-card h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
}

.blog-promo .blog-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-promo .read-more {
  display: inline-block;
  color: #4CAF50;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.blog-promo .read-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4CAF50;
  transition: width 0.3s;
}

.blog-promo .read-more:hover::after {
  width: 100%;
}

/* Responsive for Blog Promotion */
@media (max-width: 768px) {
  .blog-promo-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-promo .blog-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .blog-promo {
    padding: 50px 0;
  }
  
  .blog-promo .blog-image {
    height: 180px;
  }
  
  .blog-promo .blog-text {
    padding: 15px;
  }
  
  .blog-promo .blog-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .blog-promo .blog-category, 
  .blog-promo .blog-date {
    margin-bottom: 5px;
  }
  
  .blog-promo-cta {
    margin-top: 30px;
  }
}

/* Lawn Education Section */
.lawn-education {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.education-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s ease;
  text-align: center;
}

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

.education-icon {
  width: 70px;
  height: 70px;
  background-color: #4CAF50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.education-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.education-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.education-card p:last-child {
  font-style: italic;
  color: #4CAF50;
}

.education-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.education-cta p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

/* About Features List */
.about-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.about-features i {
  color: #4CAF50;
  margin-right: 10px;
  font-size: 18px;
}

.about-features span {
  font-size: 16px;
  color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .education-grid {
    grid-template-columns: 1fr;
  }
  
  .education-card {
    padding: 25px;
  }
}

/* Results Showcase Section */
.results-showcase {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

.before-after-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.before-after-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-comparison {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 250px;
}

.before-image, .after-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.before-image img, .after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-image .label, .after-image .label {
  position: absolute;
  top: 10px;
  padding: 4px 12px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}

.before-image .label {
  left: 10px;
}

.after-image .label {
  right: 10px;
}

.client-testimonial {
  padding: 20px;
}

.client-testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.5;
}

.client-info {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 14px;
}

.client-info .name {
  font-weight: 600;
}

.recurring-service-cta {
  background: linear-gradient(to right, #4caf50, #2e7d32);
  border-radius: 10px;
  padding: 40px;
  color: white;
  margin-top: 30px;
}

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

.cta-content h3 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.recurring-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.recurring-benefits li {
  display: flex;
  align-items: center;
  font-size: 16px;
  text-align: left;
}

.recurring-benefits i {
  color: #ffeb3b;
  margin-right: 10px;
  font-size: 18px;
}

.cta-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .image-comparison {
    height: 180px;
  }
  
  .recurring-service-cta {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
  
  .recurring-benefits {
    grid-template-columns: 1fr;
  }
  
  .before-after-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Seasonal Lawn Care FAQ Section */
.lawn-faq {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.lawn-faq .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.lawn-faq .section-header h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.lawn-faq .section-header p {
  color: #7f8c8d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

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

.faq-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.faq-header {
  padding: 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ecf0f1;
}

.season-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.4rem;
  color: white;
}

.faq-card.spring .season-icon {
  background-color: #27ae60;
}

.faq-card.summer .season-icon {
  background-color: #f39c12;
}

.faq-card.fall .season-icon {
  background-color: #d35400;
}

.faq-card.winter .season-icon {
  background-color: #3498db;
}

.faq-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #2c3e50;
}

.faq-list {
  padding: 0 20px 20px;
}

.faq-item {
  margin-top: 20px;
  border-bottom: 1px solid #ecf0f1;
  padding-bottom: 15px;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

.faq-question h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #34495e;
  font-weight: 600;
}

.toggle-icon {
  color: #7f8c8d;
  transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
  color: #16a085;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  height: auto;
  opacity: 1;
  margin-top: 10px;
}

.faq-answer p {
  color: #7f8c8d;
  line-height: 1.6;
  margin: 0;
}

.faq-cta {
  text-align: center;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.faq-cta h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.faq-cta p {
  color: #7f8c8d;
  margin-bottom: 25px;
}

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

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #16a085;
  color: white;
}

.btn-primary:hover {
  background-color: #1abc9c;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #ecf0f1;
  color: #2c3e50;
}

.btn-secondary:hover {
  background-color: #d6dbdf;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .lawn-faq {
    padding: 40px 20px;
  }
}

/* Additional Lawn Services Section */
.additional-services {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.additional-services .section-header {
  margin-bottom: 30px;
}

.additional-services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.additional-services .service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

/* Coming Soon Label */
.coming-soon-label {
  display: inline-block;
  font-size: 0.7em;
  background-color: #f8d7da;
  color: #721c24;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
  font-weight: normal;
}

.btn-secondary.disabled {
  opacity: 0.7;
  pointer-events: none;
  cursor: default;
}

.service-card .service-icon {
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
} 