/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}
.ajax-response.error, .ajax-response.success {
    margin: 20px 0 0 !important;
  }
  .ajax-response.error {
    color: red;
  }
  .ajax-response.success {
    color: green;
  }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.google-reviews-widget {
    background-color: #b1b9bf;
    border: 1px solid #2b6eac;
    color: #2b6eac;
    padding: 20px;
    border-radius: 8px;
  }
  .google-reviews-widget h3 {
    color: #7fbb3a;
  }
  .google-reviews-widget .review {
    margin-bottom: 15px;
  }
  .google-reviews-widget .review .author {
    font-weight: bold;
  }
  .google-reviews-widget .review .rating {
    color: #7fbb3a;
  }
  .google-reviews-widget .review .text {
    font-style: italic;
  }
.clean-sense {
  text-align: center;
  padding: 60px 20px;
}

.clean-sense h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-box {
  min-width: 150px;
}

.stat-box h3 {
  font-size: 2rem;
  margin: 0;
}

.stat-box p {
  font-size: 0.9rem;
  margin-top: 8px;
}
/* Header and Navigation */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.logo img {
    max-width: 80%;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo h2 {
  color: #059669;
  font-weight: 700;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #059669;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #059669;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Slideshow - Reduced Height */
.hero-slideshow {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  margin-top: 80px;
}

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

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

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

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 70%;
  padding: 0 20px;
}

.slide-content::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  border-radius: 10px;
}

.slide-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.cta-button {
  display: inline-block;
  background: #059669;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.cta-button:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Slide Navigation */
.slide-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.slide-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.slide-nav button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

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

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

.dot.active,
.dot:hover {
  background: white;
  transform: scale(1.2);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #f0fdf4;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

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

.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid #059669;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.feature p {
  color: #64748b;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: white;
}

.process-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

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

.process-step {
  background: #f0f9ff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  border-left: 4px solid #0ea5e9;
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: #0ea5e9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.process-step p {
  color: #64748b;
  line-height: 1.6;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #059669, #0ea5e9);
  color: white;
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* About Content */
.about-content {
  padding: 80px 0;
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.about-text h3 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: #059669;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #64748b;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
  background: #f0fdf4;
  padding: 4rem 2rem;
  border-radius: 20px;
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

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

.value {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #059669;
}

.value p {
  color: #64748b;
  line-height: 1.6;
}

/* Services Content */
.services-content {
  padding: 80px 0;
}

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

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid #059669;
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-info {
  padding: 2rem;
}

.service-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.service-info p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-info ul {
  list-style: none;
  margin-bottom: 2rem;
}

.service-info li {
  padding: 0.5rem 0;
  color: #64748b;
  position: relative;
  padding-left: 1.5rem;
}

.service-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.service-cta {
  display: inline-block;
  background: #059669;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-cta:hover {
  background: #047857;
  transform: translateY(-2px);
}

/* Careers Content */
.careers-content {
  padding: 80px 0;
}

.careers-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.careers-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.careers-intro p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.benefit {
  background: #f0fdf4;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.benefit p {
  color: #64748b;
  line-height: 1.6;
}

.job-openings h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1e293b;
  text-align: center;
}

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

.job-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.job-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.job-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.job-type,
.job-location {
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.job-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.job-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.job-card li {
  padding: 0.5rem 0;
  color: #64748b;
  position: relative;
  padding-left: 1.5rem;
}

.job-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.apply-btn {
  display: inline-block;
  background: #059669;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #047857;
  transform: translateY(-2px);
}

.application-process {
  background: #f0fdf4;
  padding: 4rem 2rem;
  border-radius: 20px;
}

.application-process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

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

.step {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #059669;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.step p {
  color: #64748b;
  line-height: 1.6;
}

/* Contact Content */
.contact-content {
  padding: 80px 0;
}

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

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.contact-info p {
  /* color: #cbd5e1; */
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #059669;
}

.contact-item p {
  color: #64748b;
  margin: 0;
}

/* Contact Form */
.contact-form-container {
  background: #f0fdf4;
  padding: 2rem;
  border-radius: 20px;
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1e293b;
  text-align: center;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 500;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #059669;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.submit-btn {
  width: 100%;
  background: #059669;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #047857;
  transform: translateY(-2px);
}

/* Footer - 4 Column Layout */
.footer {
  background: #1e293b;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #059669;
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.9rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #059669;
}

.featured-service {
  background: #374151;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #059669;
}

.featured-service h5 {
  color: #059669;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.featured-service p {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.footer-cta {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-cta:hover {
  color: #10b981;
}

.contact-info p {
  /* color: #cbd5e1; */
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info strong {
  color: #059669;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Testimonials Section */
.google-reviews-widget {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  border-top: 4px solid #0ea5e9;
}

.google-reviews-widget:hover {
  transform: translateY(-5px);
}
.testimonials {
  padding: 80px 0;
  background: #f0f9ff;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

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

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  border-top: 4px solid #0ea5e9;
}

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

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #0ea5e9;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-content p {
  color: #64748b;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  color: #1e293b;
  font-size: 1.1rem;
}

.author-info span {
  color: #64748b;
  font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  animation: none;
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-weight: 500;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

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

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .features h2,
  .values-section h2,
  .job-openings h2,
  .application-process h2 {
    font-size: 2rem;
  }

  .slide-nav {
    padding: 0 10px;
  }

  .slide-nav button {
    font-size: 1.5rem;
    padding: 8px 12px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }

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

  .testimonials h2 {
    font-size: 2rem;
  }
  .slide-content {
    max-width: 90%;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .slide-content {
    padding: 0 15px;
  }

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

  .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .services-grid,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .hero-slideshow {
    height: 50vh;
    min-height: 350px;
  }
}

/* FAQ Styles */
.faq-content {
  padding: 80px 0;
}

.faq-intro {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-intro p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.category-btn {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  color: #64748b;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
}

.category-btn:hover,
.category-btn.active {
  background: #059669;
  border-color: #059669;
  color: white;
}

.faq-category {
  display: none;
  margin-bottom: 2rem;
}

.faq-category.active {
  display: block;
}

.faq-category h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1e293b;
  border-bottom: 3px solid #059669;
  padding-bottom: 0.5rem;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: #f8fafc;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f0fdf4;
}

.faq-question h3 {
  margin: 0;
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #059669;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 1000px;
}

.faq-answer p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.faq-answer ul {
  color: #64748b;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.faq-contact {
  margin-top: 4rem;
  text-align: center;
}

.contact-cta {
  background: #f0fdf4;
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 2px solid #059669;
}

.contact-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.contact-cta p {
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Gallery Styles */
.gallery-content {
  padding: 80px 0;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.gallery-intro p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.1rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  color: #64748b;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: white;
}

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

.gallery-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.before-after-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 250px;
}

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

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

.image-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.before-image .image-label {
  background: #dc2626;
}

.after-image .image-label {
  background: #059669;
}

.gallery-caption {
  padding: 1.5rem;
}

.gallery-caption h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.gallery-caption p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.gallery-cta {
  text-align: center;
  margin-top: 4rem;
}

.cta-content {
  background: linear-gradient(135deg, #059669, #0ea5e9);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
}

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-content .cta-button {
  background: white;
  color: #059669;
}

.cta-content .cta-button:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

/* Responsive Design for FAQ and Gallery */
@media (max-width: 768px) {
  .category-nav {
    flex-direction: column;
    align-items: center;
  }

  .category-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .faq-category h2 {
    font-size: 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .gallery-filters {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }

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

  .before-after-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .before-image,
  .after-image {
    height: 200px;
  }

  .gallery-intro h2 {
    font-size: 2rem;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 1rem;
  }

  .contact-cta {
    padding: 2rem 1rem;
  }

  .cta-content {
    padding: 2rem 1rem;
  }

  .gallery-caption {
    padding: 1rem;
  }
}
