:root {
  --green: #2e5e40;
  --gold: #d4af37;
  --black: #000;
  --white: #fff;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  font-display: swap;
}

/* Improve image loading */
img {
  max-width: 100%;
  height: auto;
  loading: lazy;
}

/* Critical images should load immediately */
.hero-img,
.logo {
  loading: eager;
}

section {
  padding: 80px 20px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  text-align: center;
  font-size: 1.1rem;
}

/* HEADER STYLES */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background-color: transparent;
  border-bottom: none;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  height: 60px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.05);
}

/* Phone Button Styles */
.phone-btn {
  display: flex;
  align-items: center;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  margin-left: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition: all 0.4s ease;
}

.phone-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.phone-btn i {
  background: linear-gradient(135deg, var(--green), #1a4a2e);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 1.1rem;
  box-shadow: 0 3px 10px rgba(46, 94, 64, 0.3);
  transition: all 0.3s ease;
}

.phone-btn:hover {
  color: var(--gold);
  transform: translateX(0) scale(1.05);
}

.phone-btn:hover i {
  background: linear-gradient(135deg, var(--gold), #b8941f);
  color: var(--black);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
  transform: rotate(10deg);
}

.nav-links {
  display: flex;
  margin-left: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin: 0 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-shadow: 0px 1px 3px rgba(0,0,0,0.5);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-links a:hover {
  transform: translateY(-2px);
  color: var(--gold) !important;
}

.quote-btn {
  background-color: var(--green);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}

.desktop-btn {
  margin-left: auto;
}

.quote-btn:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: 15px;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1001;
}

.bar {
  width: 30px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 2px;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.2);
}

.hamburger-menu.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-overlay {
  display: none;
}

.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  max-width: 600px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0px 0px 20px rgba(0,0,0,0.7);
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 3px 3px 12px rgba(0,0,0,0.9), 1px 1px 4px rgba(0,0,0,1);
}

.hero-subtext {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0px 0px 15px rgba(0,0,0,0.7);
}

.hero-btn {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* STEP SECTION */
.steps {
  background-color: #f8f8f8;
}

.step-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-box {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-5px);
}

.step-header {
  background-color: var(--green);
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
}

.step-number {
  background-color: white;
  color: var(--green);
  border-radius: 50%;
  font-weight: bold;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-right: 15px;
}

.step-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.step-header h3 {
  font-size: 1.5rem;
}

.step-content {
  padding: 20px;
  text-align: left;
}

/* SERVICES SECTION */
.services {
  background-color: white;
  padding-top: 80px;
  padding-bottom: 50px;
  scroll-margin-top: 80px;
}

.service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.tab {
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.tab:hover {
  background-color: #e0e0e0;
}

.tab.active {
  background-color: var(--green);
  color: white;
}

.service-details-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  min-height: 320px;
}

.service-detail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.service-detail.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.service-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-image {
  flex: 1 1 280px;
  display: flex;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-info {
  flex: 1.5 1 350px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.service-info h3 {
  font-size: 1.7rem;
  color: var(--green);
  margin-bottom: 10px;
}

.service-info p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.service-info h4 {
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 5px;
  display: inline-block;
}

.benefits-list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

.benefits-list li {
  margin-bottom: 8px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  flex: 0 1 45%;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  color: white;
  flex-shrink: 0;
}

.icon.check {
  background-color: var(--green);
}

.icon.x {
  background-color: #d9534f;
}

.service-info .button-container {
  margin-top: auto;
  margin-bottom: 10px;
}

/* WHY CHOOSE US SECTION */
.why-choose-us {
  background-color: #f8f8f8;
  scroll-margin-top: 80px;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-box {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: white;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 20px;
}

.benefit-box h3 {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 15px;
}

.benefit-box p {
  color: #555;
}

/* TESTIMONIALS SECTION */
.testimonials {
  background-color: white;
  scroll-margin-top: 80px;
}

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

.testimonial-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #f0f0f0;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--green);
}

.customer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-details h4 {
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 5px;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars i {
  color: #ffc107;
  font-size: 0.9rem;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4285f4;
  font-weight: 600;
  font-size: 0.9rem;
}

.google-badge i {
  font-size: 1.2rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin: 0;
}

.slider-btn {
  background: var(--green);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(46, 94, 64, 0.3);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.05);
}

.slider-btn i {
  font-size: 1.2rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

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

.dot.active {
  background: var(--green);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--gold);
}

/* QUOTE POPUP STYLES */
.quote-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.quote-popup.active {
  opacity: 1;
  visibility: visible;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}

.quote-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: white;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.close-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

.quote-content {
  padding: 60px 40px;
}

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

.quote-header h2 {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 10px;
}

.quote-header p {
  color: #666;
  font-size: 1.1rem;
}

.quote-form {
  max-width: 100%;
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.form-section:last-child {
  border-bottom: none;
}

.form-section h3 {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section h4 {
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 15px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 94, 64, 0.1);
}

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

/* Custom Checkboxes */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
}

.checkbox-label:hover {
  background: #f8f8f8;
  border-color: var(--green);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--green);
  border-color: var(--green);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 3px;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

/* Custom Radio Buttons */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
}

.radio-label:hover {
  background: #f8f8f8;
  border-color: var(--green);
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-mark {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-mark {
  border-color: var(--green);
}

.radio-label input[type="radio"]:checked + .radio-mark::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* Service Details */
.service-details {
  display: none;
  background: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
  margin: 20px 0;
  border-left: 4px solid var(--green);
}

.service-details.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

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

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--green), #1a4a2e);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--gold), #b8941f);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46, 94, 64, 0.3);
}

.btn-loading {
  display: none;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loading {
  display: block;
}

/* Thank You Message */
.thank-you-message {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.thank-you-message.active {
  display: block;
  animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.checkmark-animation {
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: checkmarkBounce 0.6s ease;
}

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

.checkmark-animation i {
  font-size: 2.5rem;
  color: white;
}

.thank-you-message h3 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 15px;
}

.thank-you-message p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.close-thanks-btn {
  padding: 12px 30px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-thanks-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .quote-content {
    padding: 40px 20px;
  }
  
  .close-btn {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .quote-header h2 {
    font-size: 2rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .radio-group {
    flex-direction: column;
  }
  
  .radio-label,
  .checkbox-label {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .google-badge {
    align-self: flex-end;
  }
}

/* CONTACT SECTION */
.contact {
  background-color: #f8f8f8;
  scroll-margin-top: 80px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.get-in-touch {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 50px;
}

.get-in-touch h3 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 25px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--green);
}

.contact-item a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--green);
}

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

.client-box {
  background-color: white;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.client-box:hover {
  transform: translateY(-5px);
}

.client-icon {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 15px;
}

.client-box h4 {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 15px;
}

.client-box p {
  color: #555;
}

/* SERVICE PACKAGES */
.packages {
  background-color: white;
}

.package-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.package {
  flex: 1 1 350px;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  background-color: white;
}

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

.package-header {
  background-color: var(--green);
  padding: 20px;
  text-align: center;
  color: white;
}

.package-title {
  font-size: 2.5rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

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

.savings {
  display: block;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.per-cleaning {
  display: block;
  color: var(--green);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 25px;
}

.feature-list {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.package .button-container {
  margin-top: 20px;
  margin-bottom: 20px;
}

.package .quote-btn {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* SIMCOE COUNTY SECTION */
.simcoe-map {
  text-align: center;
  background-color: #f8f8f8;
}

.simcoe-img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* FOOTER */
footer {
  background-color: var(--green);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

footer p {
  margin: 10px 0;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.socials {
  margin-top: 20px;
}

.socials a {
  margin: 0 10px;
  font-weight: 600;
}

/* RESPONSIVE STYLES */
@media (max-width: 900px) {
  /* Header mobile styles */
  .desktop-btn {
    display: none;
  }
  
  .hamburger-menu {
    display: block;
  }
  
  .logo {
    height: 45px; /* Smaller logo on mobile */
  }
  
  .phone-btn {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    font-size: 0.85rem;
  }
  
  .phone-btn.show {
    transform: translateY(-50%);
  }
  
  .phone-btn i {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.5s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 900;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    margin: 15px 0;
    color: var(--green) !important;
    text-shadow: none !important;
    font-size: 1.2rem;
  }
  
  /* Remove the auto-generated X from mobile menu */
  .nav-links::after {
    content: none;
  }
  
  /* Hero mobile styles */
  .hero-text {
    left: 5%;
    right: 5%;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtext {
    font-size: 1.2rem;
  }
  
  /* Steps mobile styles */
  .step-header {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
  }
  
  .step-header h3 {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
  
  .step-number, .step-icon {
    margin: 0 7px;
  }
  
  /* Services mobile styles */
  .service-tabs {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .tab {
    padding: 8px 12px;
    margin-bottom: 5px;
    font-size: 0.9rem;
  }
  
  .service-content {
    flex-direction: column;
  }
  
  .service-image {
    height: 180px;
  }
  
  .service-info {
    padding: 15px;
  }
  
  .service-info h3 {
    font-size: 1.6rem;
  }
  
  .service-info .button-container {
    margin-bottom: 10px;
  }
  
  .service-details-container {
    min-height: 300px;
  }
}