* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f8f8f8;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #dc2626;
}

.nav-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #dc2626;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #dc2626;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #1a1a1a;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #84d4ff 0%, #ffc76d 100%);
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dc2626;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ea580c;
  font-weight: 500;
}

.hero-feature i {
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #dc2626;
  color: white;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #dc2626;
  border: 2px solid #dc2626;
}

.btn-secondary:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-2px);
}

.btn-urgent {
  background: #fbbf24;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-urgent:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
}

.hero-image {
  animation: slideInRight 1s ease-out;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.hero-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(248, 248, 248, 0.9);
  border: 1px solid #6b7280;
  padding: 1rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.overlay-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ea580c;
  font-weight: 600;
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff7ed;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff7ed;
}

.stat-label {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8f8f8;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #4b5563;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #d1d5db;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.service-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fbbf24;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.service-content {
  padding: 2rem;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 1.5rem;
  color: white;
}

.service-header h3 {
  color: #1a1a1a;
}

.service-info {
  margin-bottom: 1.5rem;
}

.info-item {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 10px;
}

.info-item strong {
  color: #dc2626;
  display: block;
  margin-bottom: 0.5rem;
}

.info-item p {
  color: #4b5563;
  margin: 0;
  font-size: 0.9rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-list li {
  padding: 0.5rem 0;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list i {
  color: #ea580c;
  font-size: 0.8rem;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-gallery img {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  object-fit: contain;
  background: white;
  padding: 5px;
  border: 1px solid #e5e7eb;
}

.service-price {
  background: #fff7ed;
  border: 1px solid #6b7280;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.price-label {
  color: #4b5563;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.price-value {
  color: #dc2626;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Service Tips */
.service-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background: #fff7ed;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #6b7280;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.tip-card i {
  font-size: 2.5rem;
  color: #ea580c;
  margin-bottom: 1rem;
}

.tip-card h4 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.tip-card p {
  color: #4b5563;
  font-size: 0.9rem;
}

/* Service Areas */
.service-areas {
  padding: 80px 0;
  background: white;
}

.areas-intro {
  margin-bottom: 4rem;
}

.area-info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  background: #f8f8f8;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.area-info img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.area-details h3 {
  color: #1a1a1a;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.area-details p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.area-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.area-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ea580c;
  font-weight: 500;
  font-size: 0.9rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.area-column {
  background: #f8f8f8;
  border: 1px solid #6b7280;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.area-column h4 {
  font-size: 1.3rem;
  color: #dc2626;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-column ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
}

.area-column li {
  padding: 0.7rem;
  background: #fff7ed;
  border: 1px solid #6b7280;
  border-radius: 10px;
  text-align: center;
  color: #1a1a1a;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.area-column li:hover {
  background: #dc2626;
  color: white;
  transform: scale(1.05);
  border-color: #dc2626;
}

/* Process Section */
.process {
  padding: 80px 0;
  background: #f8f8f8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
  background: white;
  border: 1px solid #6b7280;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: #fff7ed;
  transform: translateY(-5px);
}

.step-image {
  margin-bottom: 1.5rem;
}

.step-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #dc2626;
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #fbbf24;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #fff7ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 3px solid #dc2626;
}

.step-icon i {
  font-size: 2rem;
  color: #dc2626;
}

.process-step h4 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.process-step p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.step-detail {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid #6b7280;
  padding: 0.5rem;
  border-radius: 8px;
}

.step-detail small {
  color: #dc2626;
  font-weight: 500;
}

/* Why Choose Us */
.why-choose {
  padding: 80px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: #f8f8f8;
  border: 1px solid #6b7280;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.feature-image {
  margin-bottom: 1.5rem;
}

.feature-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #dc2626;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-item h4 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.feature-detail {
  background: #fff7ed;
  border: 1px solid #6b7280;
  padding: 0.5rem;
  border-radius: 8px;
}

.feature-detail small {
  color: #dc2626;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #f8f8f8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #d1d5db;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.testimonial-image {
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonial-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #dc2626;
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-align: center;
}

.testimonial-content p {
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-align: center;
}

.testimonial-author {
  text-align: center;
  margin-bottom: 0.5rem;
}

.testimonial-author h5 {
  color: #1a1a1a;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #4b5563;
  font-size: 0.9rem;
}

.testimonial-date {
  text-align: center;
}

.testimonial-date small {
  color: #dc2626;
  font-weight: 500;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f8f8;
  border: 1px solid #d1d5db;
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.1);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #f8f8f8;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #fff7ed;
}

.faq-question h4 {
  color: #1a1a1a;
  margin: 0;
  font-size: 1.1rem;
}

.faq-question i {
  color: #dc2626;
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-item.active .faq-question i {
  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: 200px;
}

.faq-answer p {
  color: #4b5563;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f8f8f8;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid #6b7280;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #fff7ed;
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #4b5563;
  margin-bottom: 0.3rem;
}

.contact-details a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  color: #b91c1c;
}

.contact-details small {
  color: #4b5563;
  font-size: 0.8rem;
}

.contact-cta {
  text-align: center;
  padding: 3rem;
  background: #fff7ed;
  border-radius: 20px;
  border: 1px solid #6b7280;
}

.cta-image {
  margin-bottom: 2rem;
}

.cta-image img {
  width: 200px;
  height: auto;
  border-radius: 15px;
}

.contact-cta h3 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.contact-cta p {
  color: #4b5563;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ea580c;
  font-weight: 500;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.footer-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-images {
  display: flex;
  gap: 1rem;
}

.footer-images img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  border: 2px solid #dc2626;
}

.footer-section h4 {
  color: #fbbf24;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  padding: 0.5rem 0;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section li i {
  color: #dc2626;
  width: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #4b5563;
  color: #9ca3af;
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

.badge {
  background: #dc2626;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.back-to-top:hover {
  background: #b91c1c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.back-to-top.show {
  display: flex;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    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;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
  }

  .service-gallery img {
    height: 50px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .area-info {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-tips {
    grid-template-columns: 1fr;
  }

  .hero-features {
    justify-content: center;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .services,
  .service-areas,
  .why-choose,
  .contact,
  .process,
  .testimonials,
  .faq {
    padding: 60px 0;
  }

  .service-card,
  .area-column {
    padding: 1.5rem;
  }

  .contact-cta {
    padding: 2rem;
  }

  .contact-cta h3 {
    font-size: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-gallery {
    flex-wrap: wrap;
    justify-content: center;
  }
}
