:root {
   --primary: #e87e05;
   --primary-dark: #d17104;
   --dark: #222;
   --gray: #444;
   --light-gray: #f8f9fa;
   --shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

body {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   color: #333;
}

.faq-section {
   background: #fff;
   padding: 80px 0;
}

.section-title {
   color: var(--primary);
   font-weight: 700;
   font-size: 2.2rem;
   margin-bottom: 20px;
}

.section-title span {
   color: var(--dark);
}

.section-subtitle {
   font-size: 1.15rem;
   color: var(--gray);
   margin-bottom: 50px;
   max-width: 800px;
}

.faq-container {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
}

.faq-column {
   flex: 1;
   min-width: 300px;
}

.faq-item {
   background: var(--light-gray);
   border-radius: 14px;
   padding: 25px;
   margin-bottom: 25px;
   box-shadow: var(--shadow);
   border-left: 5px solid var(--primary);
   transition: all 0.3s ease;
}

.faq-item:hover {
   box-shadow: 0 5px 20px rgba(232, 126, 5, 0.1);
   transform: translateY(-3px);
}

.faq-question {
   display: flex;
   align-items: flex-start;
   margin-bottom: 15px;
}

.faq-icon {
   background: var(--primary);
   color: white;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 15px;
   flex-shrink: 0;
   font-size: 1rem;
}

.faq-title {
   font-weight: 600;
   font-size: 1.2rem;
   color: var(--dark);
   line-height: 1.4;
   margin: 0;
}

.faq-answer {
   font-size: 1rem;
   color: var(--gray);
   line-height: 1.6;
   padding-left: 51px;
}

.faq-location {
   display: inline-block;
   color: var(--primary);
   font-weight: 600;
   margin-top: 10px;
   font-size: 0.95rem;
}

.location-icon {
   color: var(--primary);
   margin-right: 5px;
}

@media (max-width: 768px) {
   .faq-section {
      padding: 60px 0;
   }

   .faq-item {
      padding: 20px;
   }

   .faq-answer {
      padding-left: 0;
   }
}



:root {
   --primary: #e87e05;
   --primary-dark: #d17104;
   --primary-light: rgba(232, 126, 5, 0.1);
   --primary-very-light: rgba(232, 126, 5, 0.05);
   --secondary: #2c3e50;
   --dark: #222;
   --gray: #444;
   --light-gray: #f8f9fa;
   --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   --shadow-hover: 0 15px 35px rgba(232, 126, 5, 0.2);
   --radius: 16px;
   --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

body {
   font-family: 'Open Sans', sans-serif;
   color: #333;
   background: #fff;
   line-height: 1.7;
   overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Poppins', sans-serif;
   font-weight: 800;
}

.hackensack-services-section {
   background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
   padding: 90px 0;
   position: relative;
   overflow: hidden;
}

.hackensack-services-section::before {
   content: '';
   position: absolute;
   top: -100px;
   right: -100px;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
   border-radius: 50%;
   z-index: 0;
}

.hackensack-services-section::after {
   content: '';
   position: absolute;
   bottom: -150px;
   left: -150px;
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(44, 62, 80, 0.03) 0%, transparent 70%);
   border-radius: 50%;
   z-index: 0;
}

.hackensack-header {
   text-align: center;
   margin-bottom: 70px;
   position: relative;
   z-index: 2;
}

.hackensack-title {
   color: var(--primary);
   font-size: 3.2rem;
   font-weight: 900;
   margin-bottom: 15px;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
   position: relative;
   display: inline-block;
}

.hackensack-title::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   width: 120px;
   height: 5px;
   background: var(--primary);
   border-radius: 5px;
}

.hackensack-subtitle {
   color: var(--secondary);
   font-size: 1.4rem;
   font-weight: 600;
   margin-bottom: 25px;
}

.hackensack-location-badge {
   display: inline-flex;
   align-items: center;
   background: var(--primary);
   color: white;
   font-weight: 700;
   padding: 10px 25px;
   border-radius: 50px;
   font-size: 1.1rem;
   box-shadow: 0 5px 15px rgba(232, 126, 5, 0.3);
   margin-bottom: 30px;
}

.hackensack-location-badge i {
   margin-right: 10px;
   font-size: 1.2rem;
}

.hackensack-tagline {
   color: var(--gray);
   font-size: 1.2rem;
   max-width: 800px;
   margin: 0 auto;
   line-height: 1.8;
}

/* Service Tabs */
.service-tabs-container {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 15px;
   margin-bottom: 60px;
   position: relative;
   z-index: 2;
}

.service-tab {
   background: white;
   color: var(--dark);
   border: 2px solid #e0e0e0;
   padding: 14px 28px;
   border-radius: 50px;
   font-weight: 700;
   font-size: 1rem;
   cursor: pointer;
   transition: var(--transition);
   display: flex;
   align-items: center;
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.service-tab:hover {
   border-color: var(--primary);
   color: var(--primary);
   transform: translateY(-5px);
   box-shadow: 0 10px 20px rgba(232, 126, 5, 0.15);
}

.service-tab.active {
   background: var(--primary);
   color: white;
   border-color: var(--primary);
   box-shadow: 0 10px 20px rgba(232, 126, 5, 0.3);
   transform: translateY(-5px);
}

.service-tab i {
   margin-right: 10px;
   font-size: 1.1rem;
}

/* Services Grid */
.services-grid-hackensack {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
   gap: 35px;
   margin-bottom: 80px;
   position: relative;
   z-index: 2;
}

.service-card-hackensack {
   background: white;
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: var(--transition);
   height: 100%;
   display: flex;
   flex-direction: column;
   position: relative;
   border: 1px solid #f0f0f0;
}

.service-card-hackensack:hover {
   transform: translateY(-15px);
   box-shadow: var(--shadow-hover);
   border-color: var(--primary);
}

.service-card-hackensack.featured::before {
   content: 'HACKENSACK SPECIAL';
   position: absolute;
   top: 20px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--primary);
   color: white;
   font-size: 0.75rem;
   font-weight: 800;
   padding: 6px 20px;
   border-radius: 50px;
   z-index: 3;
   letter-spacing: 1px;
   box-shadow: 0 5px 15px rgba(232, 126, 5, 0.4);
   white-space: nowrap;
}

.service-image-hackensack {
   height: 220px;
   overflow: hidden;
   position: relative;
}

.service-image-hackensack img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.6s ease;
}

.service-card-hackensack:hover .service-image-hackensack img {
   transform: scale(1.1);
}

.service-image-hackensack::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 50%;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
}

.service-content-hackensack {
   padding: 30px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
}

.service-icon-hackensack {
   width: 70px;
   height: 70px;
   background: var(--primary-light);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   color: var(--primary);
   font-size: 1.8rem;
   transition: var(--transition);
}

.service-card-hackensack:hover .service-icon-hackensack {
   background: var(--primary);
   color: white;
   transform: scale(1.1) rotate(5deg);
}

.service-title-hackensack {
   color: var(--dark);
   font-weight: 800;
   font-size: 1.6rem;
   margin-bottom: 15px;
   line-height: 1.3;
}

.service-description-hackensack {
   color: var(--gray);
   font-size: 1rem;
   margin-bottom: 20px;
   flex-grow: 1;
}

.service-features-hackensack {
   list-style: none;
   padding-left: 0;
   margin-bottom: 25px;
}

.service-features-hackensack li {
   margin-bottom: 10px;
   font-size: 0.95rem;
   color: var(--gray);
   display: flex;
   align-items: flex-start;
}

.service-features-hackensack li i {
   color: var(--primary);
   margin-right: 12px;
   font-size: 0.9rem;
   margin-top: 5px;
   flex-shrink: 0;
}

.service-location-hackensack {
   display: inline-flex;
   align-items: center;
   color: var(--primary);
   font-weight: 700;
   font-size: 0.95rem;
   padding: 10px 20px;
   background: var(--primary-light);
   border-radius: 50px;
   align-self: flex-start;
   transition: var(--transition);
}

.service-card-hackensack:hover .service-location-hackensack {
   background: var(--primary);
   color: white;
   transform: translateX(5px);
}

.location-icon-hackensack {
   margin-right: 8px;
   font-size: 1rem;
}

/* Hackensack Areas Served - Perfect 30 Areas */
.areas-served-section {
   background: white;
   border-radius: var(--radius);
   padding: 60px;
   margin-bottom: 80px;
   box-shadow: var(--shadow);
   position: relative;
   z-index: 2;
   border: 2px solid var(--primary-light);
}

.areas-title {
   color: var(--secondary);
   font-size: 2.2rem;
   font-weight: 900;
   margin-bottom: 15px;
   text-align: center;
}

.areas-title span {
   color: var(--primary);
}

.areas-subtitle {
   color: var(--gray);
   font-size: 1.2rem;
   text-align: center;
   margin-bottom: 40px;
   max-width: 700px;
   margin-left: auto;
   margin-right: auto;
}

.areas-grid {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 15px;
}

.area-item {
   background: var(--light-gray);
   padding: 15px 20px;
   border-radius: 10px;
   display: flex;
   align-items: center;
   transition: var(--transition);
   border: 2px solid transparent;
}

.area-item.main-area {
   background: var(--primary-light);
   border-color: var(--primary);
   position: relative;
}

.area-item.main-area::before {
   content: 'HQ';
   position: absolute;
   top: -8px;
   right: -8px;
   background: var(--primary);
   color: white;
   font-size: 0.7rem;
   font-weight: 800;
   padding: 3px 8px;
   border-radius: 50px;
}

.area-item:hover {
   background: white;
   border-color: var(--primary);
   transform: translateY(-3px);
   box-shadow: 0 8px 15px rgba(232, 126, 5, 0.1);
}

.area-item i {
   color: var(--primary);
   font-size: 1.1rem;
   margin-right: 12px;
   flex-shrink: 0;
}

.area-name {
   color: var(--dark);
   font-weight: 600;
   font-size: 1.05rem;
}

/* Premium Service Highlight */
.hackensack-premium-service {
   background: linear-gradient(135deg, var(--secondary) 0%, #1a2530 100%);
   border-radius: var(--radius);
   overflow: hidden;
   margin-bottom: 80px;
   position: relative;
   z-index: 2;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.premium-badge-hackensack {
   position: absolute;
   top: 30px;
   left: 30px;
   background: var(--primary);
   color: white;
   font-weight: 900;
   padding: 10px 25px;
   border-radius: 50px;
   font-size: 1rem;
   z-index: 3;
   box-shadow: 0 5px 15px rgba(232, 126, 5, 0.4);
   letter-spacing: 1px;
}

.premium-content-hackensack {
   padding: 60px;
   color: white;
}

.premium-title-hackensack {
   font-size: 2.5rem;
   font-weight: 900;
   margin-bottom: 20px;
   line-height: 1.2;
}

.premium-title-hackensack span {
   color: var(--primary);
}

.premium-description-hackensack {
   font-size: 1.2rem;
   opacity: 0.9;
   margin-bottom: 35px;
   line-height: 1.8;
}

.premium-features-hackensack {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 25px;
   margin-bottom: 40px;
}

.premium-feature-hackensack {
   display: flex;
   align-items: flex-start;
}

.premium-feature-hackensack i {
   color: var(--primary);
   font-size: 1.5rem;
   margin-right: 20px;
   margin-top: 5px;
   flex-shrink: 0;
}

.premium-feature-title {
   color: white;
   font-weight: 700;
   font-size: 1.2rem;
   margin-bottom: 8px;
}

.premium-feature-description {
   color: rgba(255, 255, 255, 0.8);
   font-size: 1rem;
}

.premium-image-hackensack {
   height: 100%;
   min-height: 500px;
   background-size: cover;
   background-position: center;
   position: relative;
}

.premium-image-hackensack::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(45deg, rgba(44, 62, 80, 0.9) 0%, rgba(44, 62, 80, 0.7) 100%);
}

.cta-button-hackensack {
   background: var(--primary);
   color: white;
   font-weight: 800;
   padding: 18px 45px;
   border-radius: 50px;
   border: none;
   font-size: 1.2rem;
   transition: var(--transition);
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 8px 20px rgba(232, 126, 5, 0.4);
   text-transform: uppercase;
   letter-spacing: 1px;
}

.cta-button-hackensack:hover {
   background: white;
   color: var(--primary);
   transform: translateY(-5px);
   box-shadow: 0 15px 30px rgba(232, 126, 5, 0.5);
}

.cta-button-hackensack i {
   margin-right: 12px;
   font-size: 1.3rem;
}

/* Call to Action */
.hackensack-cta {
   background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
   border-radius: var(--radius);
   padding: 70px;
   text-align: center;
   position: relative;
   z-index: 2;
   overflow: hidden;
   box-shadow: 0 20px 50px rgba(232, 126, 5, 0.3);
}

.hackensack-cta::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.05"><path d="M0,0 L100,0 L100,100 L0,100 Z M10,10 L90,10 L90,90 L10,90 Z M20,20 L80,20 L80,80 L20,80 Z"></path></svg>');
   background-size: 300px;
   z-index: 1;
}

.cta-title {
   color: white;
   font-size: 2.8rem;
   font-weight: 900;
   margin-bottom: 20px;
   position: relative;
   z-index: 2;
}

.cta-subtitle {
   color: rgba(255, 255, 255, 0.9);
   font-size: 1.3rem;
   margin-bottom: 40px;
   max-width: 700px;
   margin-left: auto;
   margin-right: auto;
   position: relative;
   z-index: 2;
}

.cta-phone {
   display: inline-flex;
   align-items: center;
   background: white;
   color: var(--primary);
   font-weight: 900;
   font-size: 1.8rem;
   padding: 20px 40px;
   border-radius: 50px;
   text-decoration: none;
   margin-bottom: 30px;
   transition: var(--transition);
   position: relative;
   z-index: 2;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-phone:hover {
   transform: scale(1.05);
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-phone i {
   margin-right: 15px;
   font-size: 2rem;
}

.cta-note {
   color: rgba(255, 255, 255, 0.8);
   font-size: 1.1rem;
   position: relative;
   z-index: 2;
}

/* Responsive Styles */
@media (max-width: 1200px) {
   .services-grid-hackensack {
      grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
   }

   .areas-grid {
      grid-template-columns: repeat(4, 1fr);
   }

   .premium-features-hackensack {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 992px) {
   .hackensack-services-section {
      padding: 70px 0;
   }

   .hackensack-title {
      font-size: 2.5rem;
   }

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

   .areas-served-section {
      padding: 50px 30px;
   }

   .areas-grid {
      grid-template-columns: repeat(3, 1fr);
   }

   .premium-content-hackensack {
      padding: 50px 30px;
   }

   .premium-image-hackensack {
      min-height: 400px;
   }

   .hackensack-cta {
      padding: 50px 30px;
   }

   .cta-title {
      font-size: 2.2rem;
   }
}

@media (max-width: 768px) {
   .hackensack-services-section {
      padding: 60px 0;
   }

   .hackensack-title {
      font-size: 2.2rem;
   }

   .service-tabs-container {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 15px;
      margin-bottom: 40px;
   }

   .services-grid-hackensack {
      grid-template-columns: 1fr;
      gap: 25px;
   }

   .areas-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .cta-title {
      font-size: 1.8rem;
   }

   .cta-phone {
      font-size: 1.5rem;
      padding: 15px 30px;
   }
}

@media (max-width: 576px) {
   .hackensack-title {
      font-size: 1.8rem;
   }

   .hackensack-subtitle {
      font-size: 1.2rem;
   }

   .areas-grid {
      grid-template-columns: 1fr;
   }

   .premium-title-hackensack {
      font-size: 1.8rem;
   }
}

:root {
   --primary: #e87e05;
   --primary-dark: #d17104;
   --primary-light: rgba(232, 126, 5, 0.1);
   --secondary: #2c3e50;
   --dark: #222;
   --gray: #444;
   --light-gray: #f8f9fa;
   --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   --shadow-hover: 0 10px 30px rgba(232, 126, 5, 0.2);
   --radius: 16px;
}

body {
   font-family: 'Open Sans', sans-serif;
   color: #333;
   background: #fff;
   line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Poppins', sans-serif;
   font-weight: 700;
}

/* Contact Section */
.contact-section {
   background: #fff;
   padding: 90px 0 70px;
   position: relative;
   overflow: hidden;
}

.contact-section::before {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   width: 300px;
   height: 300px;
   background: var(--primary-light);
   border-radius: 50%;
   transform: translate(30%, -30%);
   z-index: 0;
}

.section-title {
   color: var(--primary);
   font-weight: 800;
   font-size: 2.5rem;
   margin-bottom: 15px;
   text-align: center;
   position: relative;
   z-index: 1;
}

.section-title span {
   color: var(--dark);
   position: relative;
}

.section-title span::after {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 0;
   width: 100%;
   height: 3px;
   background: var(--primary);
   border-radius: 3px;
}

.section-subtitle {
   font-size: 1.2rem;
   color: var(--gray);
   margin-bottom: 60px;
   max-width: 800px;
   text-align: center;
   margin-left: auto;
   margin-right: auto;
   position: relative;
   z-index: 1;
}

/* Contact Info Cards */
.contact-info-cards {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
   margin-bottom: 70px;
   position: relative;
   z-index: 1;
}

.contact-card {
   background: white;
   border-radius: var(--radius);
   padding: 40px 30px;
   text-align: center;
   box-shadow: var(--shadow);
   transition: all 0.4s ease;
   border-top: 5px solid transparent;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.contact-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-hover);
   border-top-color: var(--primary);
}

.contact-icon {
   width: 80px;
   height: 80px;
   background: var(--primary-light);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 25px;
   color: var(--primary);
   font-size: 2rem;
   transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
   background: var(--primary);
   color: white;
   transform: scale(1.1) rotate(5deg);
}

.contact-card-title {
   color: var(--dark);
   font-weight: 700;
   font-size: 1.5rem;
   margin-bottom: 15px;
}

.contact-card-content {
   color: var(--gray);
   font-size: 1.1rem;
   line-height: 1.7;
   margin-bottom: 20px;
}

.contact-link {
   color: var(--primary);
   font-weight: 600;
   text-decoration: none;
   font-size: 1.1rem;
   display: inline-flex;
   align-items: center;
   transition: all 0.3s ease;
   margin-top: auto;
}

.contact-link:hover {
   color: var(--primary-dark);
   transform: translateX(5px);
}

.contact-link i {
   margin-right: 10px;
}

/* Map Section */
.map-section {
   margin-bottom: 80px;
   position: relative;
   z-index: 1;
}

.map-title {
   color: var(--dark);
   font-weight: 800;
   font-size: 1.8rem;
   margin-bottom: 25px;
   text-align: center;
}

.map-title span {
   color: var(--primary);
}

.map-container {
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow);
   height: 450px;
   position: relative;
   border: 1px solid #e0e0e0;
}

.map-placeholder {
   height: 100%;
   background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 40px;
   text-align: center;
}

.map-placeholder i {
   color: var(--primary);
   font-size: 4rem;
   margin-bottom: 25px;
}

.map-placeholder h3 {
   color: var(--dark);
   font-weight: 700;
   font-size: 1.8rem;
   margin-bottom: 15px;
}

.map-placeholder p {
   color: var(--gray);
   font-size: 1.1rem;
   max-width: 500px;
}

.map-address {
   position: absolute;
   bottom: 20px;
   left: 20px;
   background: white;
   padding: 20px 25px;
   border-radius: 12px;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
   max-width: 350px;
   z-index: 2;
   border-left: 5px solid var(--primary);
}

.map-address-title {
   color: var(--primary);
   font-weight: 700;
   font-size: 1.2rem;
   margin-bottom: 10px;
   display: flex;
   align-items: center;
}

.map-address-title i {
   margin-right: 10px;
   font-size: 1.3rem;
}

.map-address-text {
   color: var(--dark);
   font-size: 1.1rem;
   line-height: 1.6;
   margin-bottom: 0;
}

/* Footer */
.footer-section {
   background: var(--secondary);
   padding: 70px 0 30px;
   color: white;
   position: relative;
}

.footer-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: var(--primary);
}

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

.footer-about {
   max-width: 400px;
}

.footer-logo {
   color: white;
   font-weight: 800;
   font-size: 2rem;
   margin-bottom: 20px;
   display: flex;
   align-items: center;
}

.footer-logo span {
   color: var(--primary);
}

.footer-logo i {
   color: var(--primary);
   margin-right: 15px;
   font-size: 2.2rem;
}

.footer-about-text {
   color: rgba(255, 255, 255, 0.8);
   font-size: 1.05rem;
   line-height: 1.7;
   margin-bottom: 25px;
}

.footer-contact {
   max-width: 400px;
}

.footer-title {
   color: white;
   font-weight: 700;
   font-size: 1.5rem;
   margin-bottom: 25px;
   position: relative;
   padding-bottom: 10px;
}

.footer-title::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 60px;
   height: 3px;
   background: var(--primary);
   border-radius: 3px;
}

.footer-contact-info {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.footer-contact-item {
   display: flex;
   align-items: flex-start;
}

.footer-contact-icon {
   width: 40px;
   height: 40px;
   background: rgba(232, 126, 5, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 15px;
   color: var(--primary);
   font-size: 1.1rem;
   flex-shrink: 0;
}

.footer-contact-text {
   flex-grow: 1;
}

.footer-contact-text h4 {
   color: white;
   font-weight: 600;
   font-size: 1.1rem;
   margin-bottom: 5px;
}

.footer-contact-text p,
.footer-contact-text a {
   color: rgba(255, 255, 255, 0.8);
   font-size: 1rem;
   text-decoration: none;
   transition: all 0.3s ease;
}

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

.footer-business-info {
   max-width: 400px;
}

.business-hours {
   margin-bottom: 25px;
}

.hours-title {
   color: var(--primary);
   font-weight: 600;
   font-size: 1.1rem;
   margin-bottom: 10px;
}

.hours-list {
   list-style: none;
   padding-left: 0;
}

.hours-list li {
   color: rgba(255, 255, 255, 0.8);
   margin-bottom: 8px;
   display: flex;
   justify-content: space-between;
}

.hours-list li span {
   font-weight: 600;
   color: white;
}

.service-area {
   color: rgba(255, 255, 255, 0.8);
   font-size: 1rem;
   line-height: 1.6;
}

.service-area span {
   color: var(--primary);
   font-weight: 600;
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 30px;
   text-align: center;
}

.copyright {
   color: rgba(255, 255, 255, 0.7);
   font-size: 1rem;
   margin-bottom: 15px;
}

.footer-links {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   margin-bottom: 20px;
}

.footer-links a {
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   font-size: 0.95rem;
   transition: all 0.3s ease;
}

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

.footer-social {
   display: flex;
   justify-content: center;
   gap: 15px;
   margin-top: 20px;
}

.social-icon {
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-size: 1.1rem;
   transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
   .contact-section {
      padding: 70px 0 50px;
   }

   .section-title {
      font-size: 2.2rem;
   }

   .map-address {
      position: relative;
      bottom: auto;
      left: auto;
      margin-top: 20px;
      max-width: 100%;
   }
}

@media (max-width: 768px) {
   .contact-section {
      padding: 60px 0 40px;
   }

   .section-title {
      font-size: 1.8rem;
   }

   .contact-info-cards {
      grid-template-columns: 1fr;
      gap: 25px;
   }

   .map-container {
      height: 400px;
   }

   .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .footer-section {
      padding: 50px 0 25px;
   }
}

@media (max-width: 576px) {
   .section-title {
      font-size: 1.6rem;
   }

   .section-subtitle {
      font-size: 1.1rem;
   }

   .map-container {
      height: 350px;
   }

   .footer-logo {
      font-size: 1.7rem;
   }
}
  
:root {
   --primary: #e87e05;
   --primary-dark: #d17104;
   --primary-light: rgba(232, 126, 5, 0.1);
   --primary-very-light: rgba(232, 126, 5, 0.05);
   --secondary: #2c3e50;
   --dark: #222;
   --gray: #444;
   --light-gray: #f8f9fa;
   --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   --shadow-hover: 0 10px 30px rgba(232, 126, 5, 0.2);
   --radius: 16px;
}

body {
   font-family: 'Open Sans', sans-serif;
   color: #333;
   background: #fff;
   line-height: 1.6;
   padding-top: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Poppins', sans-serif;
   font-weight: 700;
}

.services-master-section {
   background: #fff;
   padding: 80px 0;
   position: relative;
   overflow: hidden;
}

.services-master-section::before {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   width: 300px;
   height: 300px;
   background: var(--primary-very-light);
   border-radius: 50%;
   transform: translate(30%, -30%);
   z-index: 0;
}


.section-title {
   color: var(--primary);
   font-weight: 800;
   font-size: 2.5rem;
   margin-bottom: 15px;
   text-align: center;
   position: relative;
   z-index: 1;
}

.section-title span {
   color: var(--secondary);
   position: relative;
}

.section-title span::after {
   content: '';
   position: absolute;
   bottom: -5px;
   left: 0;
   width: 100%;
   height: 3px;
   background: var(--primary);
   border-radius: 3px;
}

.section-subtitle {
   font-size: 1.2rem;
   color: var(--gray);
   margin-bottom: 60px;
   max-width: 800px;
   text-align: center;
   margin-left: auto;
   margin-right: auto;
   position: relative;
   z-index: 1;
}

/* Category Tabs */
.category-tabs {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 10px;
   margin-bottom: 50px;
   position: relative;
   z-index: 1;
}

.category-tab {
   background: white;
   color: var(--dark);
   border: 2px solid #e0e0e0;
   padding: 12px 25px;
   border-radius: 50px;
   font-weight: 600;
   font-size: 1rem;
   cursor: pointer;
   transition: all 0.3s ease;
}

.category-tab:hover {
   border-color: var(--primary);
   color: var(--primary);
   transform: translateY(-3px);
}

.category-tab.active {
   background: var(--primary);
   color: white;
   border-color: var(--primary);
   box-shadow: 0 5px 15px rgba(232, 126, 5, 0.3);
}

/* Services Grid */
.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
   gap: 30px;
   margin-bottom: 70px;
   position: relative;
   z-index: 1;
}

.service-card {
   background: white;
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: all 0.4s ease;
   height: 100%;
   display: flex;
   flex-direction: column;
   border-top: 5px solid transparent;
}

.service-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-hover);
   border-top-color: var(--primary);
}

.service-card.featured {
   border: 2px solid var(--primary);
   position: relative;
}

.service-card.featured::before {
   content: 'FEATURED';
   position: absolute;
   top: 15px;
   right: 15px;
   background: var(--primary);
   color: white;
   font-size: 0.7rem;
   font-weight: 700;
   padding: 4px 12px;
   border-radius: 50px;
   z-index: 2;
   letter-spacing: 1px;
}

.service-image {
   height: 180px;
   overflow: hidden;
}

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

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

.service-content {
   padding: 25px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
}

.service-icon {
   width: 60px;
   height: 60px;
   background: var(--primary-light);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   color: var(--primary);
   font-size: 1.5rem;
}

.service-title {
   color: var(--dark);
   font-weight: 700;
   font-size: 1.4rem;
   margin-bottom: 15px;
   line-height: 1.3;
}

.service-description {
   color: var(--gray);
   font-size: 0.95rem;
   margin-bottom: 20px;
   flex-grow: 1;
}

.service-features {
   list-style: none;
   padding-left: 0;
   margin-bottom: 20px;
}

.service-features li {
   margin-bottom: 8px;
   font-size: 0.9rem;
   color: var(--gray);
   display: flex;
   align-items: flex-start;
}

.service-features li i {
   color: var(--primary);
   margin-right: 10px;
   font-size: 0.8rem;
   margin-top: 4px;
   flex-shrink: 0;
}

.service-location {
   display: inline-flex;
   align-items: center;
   color: var(--primary);
   font-weight: 600;
   font-size: 0.9rem;
   padding: 6px 15px;
   background: var(--primary-light);
   border-radius: 50px;
   margin-top: auto;
   align-self: flex-start;
}

.location-icon {
   margin-right: 8px;
}

/* Seasonal Services Section */
.seasonal-section {
   background: linear-gradient(135deg, var(--secondary) 0%, #1a2530 100%);
   border-radius: var(--radius);
   padding: 50px;
   margin-bottom: 70px;
   position: relative;
   overflow: hidden;
   z-index: 1;
}

.seasonal-section::before {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   width: 200px;
   height: 200px;
   background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23e87e05" opacity="0.1"><path d="M50,0 C77.614,0 100,22.386 100,50 C100,77.614 77.614,100 50,100 C22.386,100 0,77.614 0,50 C0,22.386 22.386,0 50,0 Z M50,20 C33.431,20 20,33.431 20,50 C20,66.569 33.431,80 50,80 C66.569,80 80,66.569 80,50 C80,33.431 66.569,20 50,20 Z"></path></svg>');
   background-size: contain;
   transform: translate(30%, -30%);
}

.seasonal-title {
   color: white;
   font-weight: 800;
   font-size: 2.2rem;
   margin-bottom: 10px;
   position: relative;
   z-index: 1;
}

.seasonal-title span {
   color: var(--primary);
}

.seasonal-subtitle {
   color: rgba(255, 255, 255, 0.8);
   font-size: 1.1rem;
   margin-bottom: 40px;
   max-width: 700px;
   position: relative;
   z-index: 1;
}

.seasonal-cards {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
   gap: 25px;
   position: relative;
   z-index: 1;
}

.seasonal-card {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   border-radius: 12px;
   padding: 25px;
   border: 1px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s ease;
}

.seasonal-card:hover {
   background: rgba(255, 255, 255, 0.15);
   transform: translateY(-5px);
   border-color: var(--primary);
}

.seasonal-icon {
   color: var(--primary);
   font-size: 2rem;
   margin-bottom: 20px;
}

.seasonal-card-title {
   color: white;
   font-weight: 700;
   font-size: 1.3rem;
   margin-bottom: 15px;
}

.seasonal-card-description {
   color: rgba(255, 255, 255, 0.8);
   font-size: 0.95rem;
}

/* Service Highlight */
.service-highlight {
   background: white;
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow);
   margin-bottom: 70px;
   position: relative;
   z-index: 1;
}

.highlight-badge {
   position: absolute;
   top: 25px;
   left: 25px;
   background: var(--primary);
   color: white;
   font-weight: 700;
   padding: 8px 20px;
   border-radius: 50px;
   font-size: 0.9rem;
   z-index: 2;
   box-shadow: 0 4px 10px rgba(232, 126, 5, 0.3);
}

.highlight-content {
   padding: 50px;
}

.highlight-title {
   color: var(--dark);
   font-weight: 800;
   font-size: 2.2rem;
   margin-bottom: 20px;
   line-height: 1.2;
}

.highlight-title span {
   color: var(--primary);
}

.highlight-description {
   color: var(--gray);
   font-size: 1.1rem;
   line-height: 1.8;
   margin-bottom: 30px;
}

.highlight-features {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
   margin-bottom: 35px;
}

.highlight-feature {
   display: flex;
   align-items: flex-start;
}

.highlight-feature i {
   color: var(--primary);
   font-size: 1.2rem;
   margin-right: 15px;
   margin-top: 3px;
   flex-shrink: 0;
}

.highlight-feature h4 {
   color: var(--dark);
   font-weight: 700;
   font-size: 1.1rem;
   margin-bottom: 5px;
}

.highlight-feature p {
   color: var(--gray);
   font-size: 0.95rem;
}

.highlight-image {
   height: 100%;
   min-height: 400px;
   background-size: cover;
   background-position: center;
   position: relative;
}

.highlight-image::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(232, 126, 5, 0.05));
}

.cta-button {
   background: var(--primary);
   color: white;
   font-weight: 700;
   padding: 16px 40px;
   border-radius: 50px;
   border: none;
   font-size: 1.1rem;
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 5px 15px rgba(232, 126, 5, 0.3);
}

.cta-button:hover {
   background: var(--primary-dark);
   color: white;
   transform: translateY(-3px);
   box-shadow: 0 10px 20px rgba(232, 126, 5, 0.4);
}

.cta-button i {
   margin-right: 10px;
}

/* Service Counter */
.service-counter {
   text-align: center;
   margin-bottom: 40px;
   position: relative;
   z-index: 1;
}

.counter-number {
   font-size: 3rem;
   font-weight: 800;
   color: var(--primary);
   line-height: 1;
}

.counter-label {
   font-size: 1.2rem;
   color: var(--secondary);
   font-weight: 600;
}

/* No Results Message */
.no-results {
   text-align: center;
   padding: 60px 20px;
   grid-column: 1 / -1;
}

.no-results i {
   font-size: 4rem;
   color: #ddd;
   margin-bottom: 20px;
}

.no-results h3 {
   color: var(--gray);
   font-weight: 700;
   margin-bottom: 10px;
}

.no-results p {
   color: #777;
   max-width: 500px;
   margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
   .services-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
   }

   .seasonal-section {
      padding: 40px 30px;
   }

   .highlight-content {
      padding: 40px 30px;
   }

   .highlight-features {
      grid-template-columns: 1fr;
   }

   .highlight-image {
      min-height: 300px;
   }
}

@media (max-width: 768px) {
   .services-master-section {
      padding: 60px 0;
   }

   .section-title {
      font-size: 2rem;
   }

   .category-tabs {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 10px;
      margin-bottom: 40px;
      flex-wrap: nowrap;
   }

   .category-tab {
      white-space: nowrap;
   }

   .services-grid {
      grid-template-columns: 1fr;
      gap: 25px;
   }

   .seasonal-cards {
      grid-template-columns: 1fr;
   }

   .seasonal-title {
      font-size: 1.8rem;
   }

   .highlight-title {
      font-size: 1.8rem;
   }

   .counter-number {
      font-size: 2.5rem;
   }
}

:root {
   --primary: #e87e05;
   --primary-dark: #d17104;
   --primary-light: rgba(232, 126, 5, 0.1);
   --dark: #222;
   --gray: #444;
   --light-gray: #f8f9fa;
   --shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
   --shadow-hover: 0 10px 25px rgba(232, 126, 5, 0.15);
}

body {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   color: #333;
   background: #fff;
}

.services-section {
   background: #fff;
   padding: 80px 0;
}

.section-title {
   color: var(--primary);
   font-weight: 700;
   font-size: 2.2rem;
   margin-bottom: 20px;
   text-align: center;
}

.section-title span {
   color: var(--dark);
}

.section-subtitle {
   font-size: 1.15rem;
   color: var(--gray);
   margin-bottom: 60px;
   max-width: 800px;
   text-align: center;
   margin-left: auto;
   margin-right: auto;
}

/* Service Row Styles */
.service-row {
   margin-bottom: 40px;
   background: var(--light-gray);
   border-radius: 18px;
   overflow: hidden;
   box-shadow: var(--shadow);
   transition: all 0.3s ease;
}

.service-row:hover {
   box-shadow: var(--shadow-hover);
   transform: translateY(-5px);
}

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

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

.service-content {
   padding: 35px;
}

.service-title {
   color: var(--dark);
   font-weight: 700;
   font-size: 1.6rem;
   margin-bottom: 15px;
}

.service-description {
   color: var(--gray);
   font-size: 1.05rem;
   line-height: 1.7;
   margin-bottom: 20px;
}

.service-location {
   display: inline-flex;
   align-items: center;
   color: var(--primary);
   font-weight: 600;
   font-size: 1rem;
   padding: 6px 15px;
   background: var(--primary-light);
   border-radius: 50px;
}

.location-icon {
   margin-right: 8px;
}

/* Premium Service Section */
.premium-service-section {
   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   margin-top: 70px;
   border-top: 6px solid var(--primary);
}

.premium-badge {
   position: absolute;
   top: 20px;
   right: 20px;
   background: var(--primary);
   color: white;
   font-weight: 700;
   padding: 8px 20px;
   border-radius: 50px;
   font-size: 0.9rem;
   z-index: 2;
   box-shadow: 0 4px 10px rgba(232, 126, 5, 0.3);
}

.premium-content {
   padding: 50px;
}

.premium-title {
   color: var(--dark);
   font-weight: 800;
   font-size: 2.1rem;
   margin-bottom: 20px;
}

.premium-title span {
   color: var(--primary);
}

.premium-description {
   color: var(--gray);
   font-size: 1.15rem;
   line-height: 1.8;
   margin-bottom: 25px;
}

.premium-features {
   list-style: none;
   padding-left: 0;
   margin-bottom: 30px;
}

.premium-features li {
   margin-bottom: 12px;
   font-size: 1.05rem;
   color: var(--dark);
}

.premium-features i {
   color: var(--primary);
   margin-right: 10px;
   font-size: 1.1rem;
}

.premium-cta {
   background: var(--primary);
   color: white;
   font-weight: 700;
   padding: 14px 35px;
   border-radius: 50px;
   border: none;
   font-size: 1.1rem;
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-block;
}

.premium-cta:hover {
   background: var(--primary-dark);
   color: white;
   transform: translateY(-3px);
   box-shadow: 0 8px 15px rgba(232, 126, 5, 0.3);
}

.premium-image {
   height: 100%;
   min-height: 400px;
   background-size: cover;
   background-position: center;
   position: relative;
}

.premium-image::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(232, 126, 5, 0.05));
}

/* Responsive Styles */
@media (max-width: 992px) {
   .service-icon-container {
      padding: 25px;
   }

   .service-content {
      padding: 25px;
   }

   .premium-content {
      padding: 40px 30px;
   }

   .premium-image {
      min-height: 350px;
   }
}

@media (max-width: 768px) {
   .services-section {
      padding: 60px 0;
   }

   .service-row {
      margin-bottom: 30px;
   }

   .service-icon-container {
      padding: 20px;
   }

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

   .service-content {
      padding: 25px 20px;
   }

   .premium-service-section {
      margin-top: 50px;
   }

   .premium-title {
      font-size: 1.8rem;
   }
}
