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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #1a1a1a;
}

/* Navigation Styles */
nav {
  background: linear-gradient(90deg, #ffa500 26%, #ff4500 63%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 180px;
  border-radius: 5px;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  padding: 8px 12px;
  border-radius: 4px;
}

.nav-links a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.contact-btn {
  background: #000;
  color: #ffa500;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: #fff;
  color: #ff4500;
}

/* Contact Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #2a2a2a;
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  border: 2px solid #ffa500;
  position: relative;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

.modal-content h3 {
  color: #ffa500;
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
}

.modal-item {
  margin: 20px 0;
  padding: 15px;
  background: #1a1a1a;
  border-radius: 8px;
}

.modal-item a {
  color: #ffa500;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
  display: block;
}

.modal-item a:hover {
  color: #ff4500;
}

.modal-item label {
  display: block;
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.modal-link {
  display: flex;
  gap: 10px;
  align-items: center;
}

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

.form-btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #ffa500 26%, #ff4500 63%);
  color: #000;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s;
}

.form-btn:hover {
  background: #fff;
  color: #ff4500;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("/images/Hero_Section.jpg") center/cover no-repeat;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 800px;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: #fff;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #ffa500 25%, #ff4500 65%);
  color: #000;
  padding: 18px 45px;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
  border: 2px solid transparent;
  margin: 10px;
}

.cta-button:hover {
  background: #000;
  color: #fff;
  border-color: #ffa500;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

/* Services Section */
.services {
  padding: 80px 20px;
  background: #0d0d0d;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #ffa500;
}

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

.service-card {
  background: #2a2a2a;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  border: 1px solid #3a3a3a;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #ffa500;
}

.service-card h3 {
  color: #ffa500;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #3a3a3a;
  transition: all 0.3s;
}

.service-card:hover img {
  border-color: #ffa500;
  transform: scale(1.02);
}

.service-card p {
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-card .cta-button {
  font-size: 1.1rem;
  padding: 12px 30px;
  margin-top: auto;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 20px;
  background: #1a1a1a;
}

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

.testimonial-card {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid #ffa500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 15px;
  line-height: 1.8;
}

.testimonial-author {
  color: #ffa500;
  font-weight: bold;
}

.stars {
  color: #ffa500;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Google Reviews Showcase */
.reviews-headline {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 50px;
  font-weight: 700;
}

.reviews-showcase {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 20px;
  padding-top: 1rem;
}

/* Reviews Summary Badge */
.reviews-summary {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 100px;
  margin-top: 20px;
}

.summary-rating {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.rating-score {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 12px;
}

.rating-stars {
  margin-bottom: 12px;
}

.rating-stars .star {
  font-size: 1.5rem;
  color: #ddd;
  margin: 0 2px;
}

.rating-stars .star.filled {
  color: #fbbc04;
}

.rating-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #34a853;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.review-count {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.review-count strong {
  color: #1a1a1a;
  font-weight: 700;
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Reviews Carousel */
.reviews-carousel-wrapper {
  position: relative;
  padding: 0 50px;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  padding-top: 20px;
  -webkit-overflow-scrolling: touch;
}

.reviews-carousel::-webkit-scrollbar {
  height: 8px;
}

.reviews-carousel::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 4px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
  background: #ffa500;
  border-radius: 4px;
}

.reviews-carousel::-webkit-scrollbar-thumb:hover {
  background: #ff8c00;
}

/* Review Card */
.review-card {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 24px;
  min-width: 350px;
  max-width: 350px;
  min-height: 280px;
  height: fit-content;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid #3a3a3a;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
  border-color: #ffa500;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa500, #ff4500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2px;
}

.review-date {
  color: #999;
  font-size: 0.85rem;
}

.google-icon {
  position: absolute;
  top: 0;
  right: 0;
}

.review-stars {
  color: #fbbc04;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2a2a2a;
  border: 2px solid #ffa500;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  z-index: 10;
}

.carousel-nav:hover {
  background: #ffa500;
  transform: translateY(-50%) scale(1.1);
  border-color: #ffa500;
}

.carousel-nav:hover svg {
  stroke: #1a1a1a;
}

.carousel-nav.prev {
  left: 0;
}

.carousel-nav.next {
  right: 0;
}

.carousel-nav svg {
  stroke: #ffa500;
}

.carousel-nav:hover svg {
  stroke: #1a1a1a;
}

/* Google Reviews Link */
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffa500;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  padding: 12px 24px;
  border: 2px solid #ffa500;
  border-radius: 8px;
}

.google-reviews-link:hover {
  background: #ffa500;
  color: #1a1a1a;
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reviews-summary {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }

  .reviews-carousel-wrapper {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .reviews-headline {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .reviews-carousel-wrapper {
    padding: 0;
  }

  .carousel-nav {
    display: none;
  }

  .review-card {
    min-width: 300px;
    max-width: 300px;
  }

  .reviews-summary {
    padding: 24px 20px;
  }

  .rating-score {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .reviews-headline {
    font-size: 1.6rem;
  }

  .review-card {
    min-width: 280px;
    max-width: 280px;
  }

  .rating-score {
    font-size: 2.5rem;
  }
}

/* Why Us Section */
.why-us {
  padding: 80px 20px;
  background: #1a1a1a;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-item {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #3a3a3a;
  transition: all 0.3s;
}

.why-item:hover {
  border-color: #ffa500;
  transform: translateY(-5px);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.why-item h3 {
  color: #ffa500;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.why-item p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Service Area Section */
.service-area {
  padding: 80px 20px;
  background: #0d0d0d;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.city-card {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid #ffa500;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 165, 0, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.city-card:hover::before {
  opacity: 1;
}

.city-card:hover {
  transform: translateX(5px);
  background: #333;
}

.city-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.city-card h3 {
  color: #ffa500;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.city-card p {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.service-area-note {
  text-align: center;
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-top: 40px;
  padding: 20px;
  background: #2a2a2a;
  border-radius: 10px;
  border-left: 4px solid #ffa500;
}

.service-area-note strong {
  color: #ffa500;
}

/* FAQ Section */
.faq {
  padding: 80px 20px;
  background: #1a1a1a;
}

.faq-item {
  background: transparent;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #3a3a3a;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-item:hover {
  background-color: rgba(42, 42, 42, 0.3);
}

.faq-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
}

.faq-number {
  background: #ffa500;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  min-width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.faq-question-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-question {
  color: #d0d0d0;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.faq-arrow {
  color: #b0b0b0;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  color: #999;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding-bottom 0.3s ease;
  padding: 0 0 0 70px;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 24px;
}

/* Contact Form Section */
.contact-form {
  padding: 80px 20px;
  background: #1a1a1a;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #2a2a2a;
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #ffa500;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  border-radius: 5px;
  color: #e0e0e0;
  font-size: 1rem;
  font-family: inherit;
}

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

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

.submit-btn {
  background: linear-gradient(90deg, #ffa500 26%, #ff4500 63%);
  color: #000;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

/* Footer */
footer {
  background: #0d0d0d;
  color: #e0e0e0;
  padding: 60px 20px 20px;
  border-top: 3px solid #ffa500;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #ffa500;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-section p,
.footer-section a {
  color: #b0b0b0;
  line-height: 2;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

.footer-section a:hover {
  color: #ffa500;
  padding-left: 5px;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffa500;
  margin-bottom: 15px;
}

.footer-tagline {
  color: #b0b0b0;
  font-style: italic;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #2a2a2a;
  border-radius: 50%;
  color: #ffa500;
  font-size: 1.3rem;
  transition: all 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background: linear-gradient(90deg, #ffa500 26%, #ff4500 63%);
  color: #000;
  transform: translateY(-3px);
  padding-left: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-item-icon {
  color: #ffa500;
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 30px;
  text-align: center;
  color: #666;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #000;
  color: #ffa500;
  border: none;
  padding: 10px 15px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

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

  .nav-container {
    justify-content: space-between;
  }
}
