/* ====== Global Styles & Variables ====== */
:root {
  --primary-color: #3a7d44;
  --secondary-color: #2a5d38;
  --accent-color: #ffc107;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #333;
  --text-light: #6c757d;
  --white: #fff;
  --black: #000;
  --font-primary: 'Segoe UI', system-ui, sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

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

ul {
  list-style: none;
}

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

/* ====== Utility Classes ====== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  text-align: center;
}

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ====== Layout Components ====== */
.top-bar {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info i,
.social-icons a {
  transition: var(--transition);
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}
/* Hours of Operation List */
.hours-list {
  margin-top: 0.5rem;
  padding-left: 0;
  list-style: none;
}

.hours-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.hours-list i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.social-icons a {
  color: var(--white);
  margin-left: 1rem;
}

.social-icons a:hover {
  color: var(--accent-color);
}

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

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.logo img {
  height: 3.75rem;
  width: auto;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--dark-color);
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  padding: 0.5rem;
  z-index: 1001;
  order: 1;
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  font-weight: 600;
  color: var(--dark-color);
  padding: 0.625rem 0;
  display: block;
  transition: color 0.3s ease;
}

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

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  max-height: 400px;
  padding: 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.slide.active {
  opacity: 1;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 8px;
  max-width: 80%;
  margin: 0 auto;
  color: white;
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.slide-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-link {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-link:hover {
  background-color: transparent;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

.prev-slide {
  left: 20px;
}

.next-slide {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: white;
  transform: scale(1.2);
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2rem 0;
  min-height: 150px;
  display: flex;
  align-items: center;
}

.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.875rem;
  margin-top: 2rem;
}

.service-card {
  background-color: var(--white);
  padding: 1.875rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0.9375rem;
  font-size: 1.3rem;
  color: var(--primary-color);
}

/* Testimonials Section Fix */
.testimonials-section {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.875rem;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.rating {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-card blockquote {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.customer {
  margin-top: 1.5rem;
}

.customer h4 {
  font-weight: 600;
  color: var(--primary-color);
}

/* About Page */
.about-content {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.about-text h2 {
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.check-list {
  margin: 1.25rem 0;
}

.check-list li {
  margin-bottom: 0.625rem;
  display: flex;
  align-items: flex-start;
}

.check-list i {
  color: var(--primary-color);
  margin-right: 0.625rem;
  margin-top: 0.1875rem;
}

/* ====== Team Section ====== */
.team-section {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-size: 2rem;
  position: relative;
}

.team-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 0.5rem auto 0;
}

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

.team-member {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 1.5rem;
}

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

.member-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.team-member h3 {
  margin: 1.5rem 0 0.5rem;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.team-member p {
  color: var(--text-light);
  font-weight: 500;
}
/* Team Icons */
.member-icon {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  color: var(--primary-color);
  font-size: 5rem;
  transition: all 0.3s ease;
}

.team-member:hover .member-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}
/* Contact Page */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}

.contact-form h2 {
  margin-bottom: 1.875rem;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(58, 125, 68, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 9.375rem;
}

.form-group .error {
  border-color: #dc3545;
  background-color: #fff8f8;
}

.form-group .error+.error-message {
  display: block;
}

.error-message {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading spinner */
.fa-spinner {
  margin-right: 8px;
}

/* Add to style.css */
.grecaptcha-badge {
  visibility: hidden !important;
  /* Optional: Position it if you want it visible */
  /* visibility: visible !important; */
  /* bottom: 70px !important; */
  /* right: 20px !important; */
}

.info-item {
  display: flex;
  margin-bottom: 1.5625rem;
  gap: 0.9375rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.1875rem;
}

.info-item h3 {
  margin-bottom: 0.3125rem;
  font-size: 1.2rem;
}

/* Service Detail Page */
.service-detail {
  padding: 5rem 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}

.service-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  font-size: 1.8rem;
}

.process-steps {
  margin: 1.875rem 0;
}

.process-steps li {
  margin-bottom: 1.875rem;
  padding-left: 1.875rem;
  position: relative;
}

.process-steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3125rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.service-sidebar .service-card {
  background-color: var(--light-color);
  padding: 1.875rem;
  border-radius: 0.5rem;
  margin-bottom: 1.875rem;
}

.service-meta li {
  margin-bottom: 0.9375rem;
  display: flex;
  align-items: center;
}

.service-meta i {
  margin-right: 0.625rem;
  color: var(--primary-color);
}

.emergency-notice {
  background-color: #fff8e1;
  padding: 1.25rem;
  border-left: 0.25rem solid var(--accent-color);
  margin: 1.875rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.9375rem;
}

.emergency-notice i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

/* Service Areas Section */
.service-areas-section {
  background: #f9f9f9;
  padding: 3rem 0;
  border-top: 1px solid #eee;
}

.service-area-grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.area-group {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.area-group h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.city-list {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.columns-3 {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.columns-2 {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.area-notice {
  background: var(--light-color);
  padding: 1rem;
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
}

/* cta Banner */
.cta-banner {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2rem 0;
  min-height: 150px;
  display: flex;
  align-items: center;
  text-align: center;
}

.cta-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-col {
  margin-bottom: 1.5rem;
}

.footer-col h3 {
  color: var(--accent-color);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.footer-logo {
  max-height: 90px;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-col ul {
  margin-bottom: 1.5rem;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--white);
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--dark-color);
  transform: translateY(-2px);
}

/* Facebook specific */
.social-icons a[aria-label="Facebook"]:hover {
  background-color: #3b5998;
  color: white;
}

/* Instagram specific */
.social-icons a[aria-label="Instagram"]:hover {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%, #fdf497 5%,
      #fd5949 45%, #d6249f 60%,
      #285AEB 90%);
  color: white;
}

/* ====== Responsive Styles ====== */
@media (max-width: 992px) {

  .about-grid,
  .contact-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .hero-slider {
    height: 70vh;
  }

  .slide-content {
    max-width: 90%;
    padding: 1.5rem;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {

  /* Mobile Menu */
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    padding: 5rem 1.5rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
    margin: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Dropdown Menu */
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    width: 100%;
    padding-left: 15px;
    border-left: 3px solid var(--primary-color);
    background-color: rgba(0, 0, 0, 0.03);
    margin-top: 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown>a {
    position: relative;
    padding-right: 30px;
  }

  .dropdown>a::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }

  .dropdown.active>a::after {
    transform: translateY(-50%) rotate(180deg);
  }

  @media (max-width: 768px) {
    .dropdown-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      will-change: max-height;
    }

    .dropdown.active .dropdown-menu {
      max-height: 1000px;
      /* Adjust based on your content */
      transition: max-height 0.5s ease-in;
    }

    .dropdown>a .fa-chevron-down {
      transition: transform 0.3s ease;
    }

    .dropdown.active>a .fa-chevron-down {
      transform: rotate(180deg);
    }
  }

  /* Header */
  .header .container {
    padding: 0.5rem 0;
  }

  .logo img {
    height: 2.5rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    margin-bottom: 0.625rem;
  }

  .social-icons {
    margin-top: 0.625rem;
    justify-content: center;
  }

  .hero-slider {
    height: 50vh;
  }

  .slider-nav {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .slide-content {
    max-width: 95%;
    padding: 1.2rem;
    font-size: 0.9rem;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slider-link {
    padding: 0.6rem 1.5rem;
  }
}

/* Add to style.css */
.security-notice {
  background-color: #f8f9fa;
  border-left: 4px solid var(--accent-color);
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.security-notice i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.form-footer {
  margin-top: 2rem;
  text-align: center;
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.success-message {
  text-align: center;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.success-message i {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-message h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

input:invalid,
textarea:invalid {
  border-color: #ffcccc;
}

/* For the honeypot field */
input[type="checkbox"][style*="display: none"] {
  position: absolute;
  left: -9999px;
}

/* Style for service select dropdown */
.service-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233a7d44'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  appearance: none;
  transition: var(--transition);
}

.service-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(58, 125, 68, 0.2);
}

/* For IE11 */
.service-select::-ms-expand {
  display: none;
}

@media (max-width: 768px) {
  .service-select {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
}