/* @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css'); */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/* ============================================
   RESET & GLOBAL STYLES
   ============================================ */
:root {
  --primary-color: #2196f3;
  --secondary-color: #1976d2;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --dark-gray: #666;
  --white: #fff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.fa-star:before {
  content: "\f005";
  font-size: 18px;
}

.hidden {
  display: none !important;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  background: rgb(255, 255, 255);
  white-space: nowrap;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-main {
  display: flex;
  gap: 5rem;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  width: 100%;
}

.nav-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.logo {
  position: relative;
}

.logo img {
  width: auto;
  height: 53px;
  transition: transform 0.3s ease;
}

.logo a {
  text-decoration: none;
}

.logo img:hover {
  transform: translateY(-2px);
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.search-section {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  position: relative;
}

.search-container {
  position: relative;
}

.search-container input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border: 2px solid transparent;
  border-radius: 25px;
  font-size: 0.95rem;
  background: #f8f8f8;
  transition: all 0.3s ease;
}

.search-container input:focus {
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.15);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 0.9rem;
  pointer-events: none;
  transition: color 0.3s ease;
}

#serviceSearch {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border: 1px solid #ccc;
  border-radius: 30px;
}

.service-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  position: absolute;
  width: 100%;
  z-index: 999;
  display: none;
}

.service-option {
  padding: 10px;
  cursor: pointer;
}

.service-option a {
  text-decoration: none;
  color: var(--text-color);
}

.service-option:hover {
  background-color: #f0f0f0;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.nav-links a i {
  font-size: 1.1rem;
  color: var(--primary-color);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  background: rgba(33, 150, 243, 0.05);
}

.nav-links a:hover i {
  opacity: 1;
}

.nav-link {
  border: 1px solid var(--primary-color);
}

.nav-links-bottom {
  background: transparent; /* transparent background */
  border-top: 1px solid #ccc; /* top border */
  border-bottom: 1px solid #ccc;
}

.nav-links-bottom ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: flex;
  justify-content: center; /* centers links horizontally */
  gap: 20px; /* space between items */
  background: #ffffffab;
}

.nav-links-bottom ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s;
}

.nav-links-bottom ul li a:hover {
  color: #2563eb; /* hover color */
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger-menu {
  display: none;
  background: transparent;
  border: none;
  position: fixed;
  right: 1.5rem;
  top: 1.5rem;
  width: 20px;
  height: 18px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger-menu.active {
  background: transparent;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  display: block;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
  bottom: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
  top: -4px;
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  height: 100vh;
  background-color: #082947;
  color: white;
  display: flex;
  align-items: flex-start;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease-in-out;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.mobile-nav-links {
  display: block;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  max-width: 400px;
}

.mobile-nav-links a {
  display: block;
  width: 80%;
  margin-top: 10px;
  padding: 0.5rem;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  text-align: start;
  transition: all 0.2s ease;
}

.mobile-nav-links a i {
  display: none;
  font-size: 15px;
  color: white;
}

.mobile-nav-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.mobile-links-bottom ul {
  list-style: none;
}

.mobile-links-bottom a {
  margin: 0;
}

.mobile-links-bottom h2 {
  color: #8cc4ff;
  margin: 0.5rem;
  border-top: 2px solid white;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  height: fit-content;
  background: linear-gradient(rgba(33, 150, 243, 0.9), rgba(33, 150, 243, 0.7)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 70px;
}

.hero-content {
  max-width: 100%;
  padding: 2rem;
  padding-top: 9rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ============================================
   CITY HERO SECTION
   ============================================ */
.city-hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 4rem 1rem;
}

.city-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 0;
}

.city-hero-content {
  position: relative;
  padding: 2rem 1rem;
  z-index: 2;
  max-width: 1000px;
  animation: fadeIn 1s ease-out;
}

.city-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease-out;
}

.city-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: slideInUp 1s ease-out;
}

.city-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  animation: fadeIn 1.2s ease-out;
}

.stat {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.25);
}

.stat i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: inline-block;
}

.stat span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* ============================================
   SERVICE HERO SECTION
   ============================================ */
.service-hero {
  height: fit-content;
  position: relative;
  margin-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 0;
}

.service-hero-content {
  position: relative;
  z-index: 0;
  max-width: 800px;
  animation: fadeIn 1s ease-out;
}

.service-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  animation: pulse 2s infinite;
}

.service-icon i {
  font-size: 3rem;
  color: var(--white);
}

.service-icon img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.service-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  animation: slideInDown 0.8s ease-out;
}

.service-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  opacity: 0.9;
  animation: slideInUp 1s ease-out;
}

.service-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s ease-out;
}

.service-contact a {
  text-decoration: none;
  color: var(--white);
}

.book-now-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--white);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.book-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: #f8f8f8;
}

.service-contact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.service-contact i {
  font-size: 1.2rem;
  animation: pulse 1.5s infinite;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive design for hero sections */
@media (max-width: 768px) {
  .city-hero {
    height: auto;
    min-height: 400px;
  }

  .city-hero h1 {
    font-size: 2.2rem;
  }

  .city-hero p {
    font-size: 1rem;
  }

  .city-stats {
    flex-direction: row;
    gap: 1rem;
  }

  .stat {
    padding: 0.5rem;
  }

  .stat span {
    font-size: 1rem;
  }

  .service-hero {
    height: auto;
    min-height: 350px;
  }

  .service-hero h1 {
    font-size: 1.5rem;
  }

  .service-icon {
    width: 80px;
    height: 80px;
  }

  .service-icon i {
    font-size: 2.2rem;
  }

  .service-cta {
    flex-direction: column;
  }

  .service-contact {
    width: fit-content;
    justify-content: center;
  }
}

/* City Selector Styles */
.city-selector {
  margin-top: 3rem;
}

.major-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.city-card {
  position: relative;
  height: fit-content;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 16/9;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.city-card:hover img {
  transform: scale(1.05);
}

.city-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.city-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.city-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, var(--light-gray) 0%, #ffffff 100%);
}

.services h2,
.how-it-works h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.services h2:after,
.how-it-works h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eee;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card img {
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.service-card p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #ffc107;
  font-weight: 500;
}

.service-description-container {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem 3rem;
}

.service-description-image {
  width: 40%;
  padding-top: 1rem;
  margin-top: 1rem;
}

.service-description-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
}

.service-description-content {
  width: 60%;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--dark-gray);
  text-align: justify;
}

.service-description-content-2 {
  width: 100%;
  padding: 0 7rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--dark-gray);
  text-align: justify;
}

.service-description-content h2,
.service-description-content-2 h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  color: #333;
}

.service-description-content p,
.service-description-content-2 p,
.service-description-content-2 ul {
  font-size: 1rem;
  line-height: 30px;
  color: var(--dark-gray);
  text-align: justify;
}

.service-description-content-2 ul {
  list-style: none;
}

.service-details-popup {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--dark-gray);
  text-align: justify;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  padding: 2rem;
  background: #ffffff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  background: #fff;
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: transform 0.2s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.step p {
  color: #666;
  line-height: 1.4;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232196F3' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.testimonials h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 400px;
  padding: 2rem;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.testimonial-info .location {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-content {
  position: relative;
  padding: 1.5rem 0;
}

.testimonial-content:before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.testimonial-rating {
  display: flex;
  gap: 0.3rem;
  color: #ffc107;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: var(--primary-color);
  transform: scale(1.2);
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #1de00b;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1;
}

.whatsapp-button:hover {
  background-color: #133010;
  color: #fff;
}

.whatsapp-button a {
  text-decoration: none;
}

.phone-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1de00b;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1;
}

.phone-button:hover {
  background-color: #133010;
  color: #fff;
}

.phone-button a {
  text-decoration: none;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #333;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-container {
  margin: 0 auto;
  padding: 30px 20px 30px;
  display: grid;
}

.footer-section h3 {
  color: #3498db;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-left: 3px solid transparent;
  padding-left: 15px;
  position: relative;
}

.footer-links a:hover {
  color: #3498db;
  border-left-color: #3498db;
  transform: translateX(8px);
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
}

.other-cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.other-cities a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.other-cities a:hover {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column-reverse;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  text-align: center;
  color: white;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  text-decoration: none;
  color: #bdc3c7;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 2px solid transparent;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icons a.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: white;
}

.social-icons a.facebook:hover {
  background: #3b5998;
  border-color: #3b5998;
  color: white;
}

.social-icons a.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: white;
}

.social-icons a.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-color: #e1306c;
  color: white;
}

/* Animation for page load */
footer {
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle hover effect for entire footer sections */
.footer-section {
  transition: transform 0.3s ease;
  padding: 20px;
  border-radius: 12px;
}

.footer-section:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.03);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-container {
    padding: 1rem;
  }

  .nav-left,
  .nav-right {
    min-width: auto;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-center {
    width: 100%;
  }

  .nav-right {
    width: 100%;
  }

  .nav-links {
    justify-content: center;
  }

  .major-cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .fa-star:before {
    content: "\f005";
    font-size: 18px;
  }

  .hamburger-menu {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .navbar.nav-hidden {
    transform: translateY(-66px);
  }

  .nav-content {
    display: none;
  }

  .nav-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    justify-content: start;
    width: 100%;
  }

  .nav-left {
    gap: 1rem;
  }

  .logo img {
    height: 40px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-content {
    margin-top: -50px;
    padding: 2rem 1rem;
    padding-top: 9rem;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .nav-container {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    justify-content: start;
    align-items: start;
  }

  /* location button */
  .nav-section {
    width: 100%;
  }

  .nav-links a {
    height: 100%;
    padding: 0 1rem;
    border: none;
    font-size: 12px;
  }

  /* Search bar below logo */
  .search-section {
    padding: 8px 12px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
  }

  .search-container {
    position: relative;
    width: 100%;
  }

  #serviceSearch {
    width: 100%;
    padding: 10px 10px 10px 35px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 50px;
  }

  .search-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px;
  }

  .service-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
    display: none;
  }

  .service-option {
    padding: 10px;
    font-size: 14px;
  }

  .service-option a {
    text-decoration: none;
    color: #333;
    display: block;
  }

  .service-option:hover {
    background-color: #f0f0f0;
  }

  .nav-content {
    display: none;
    /* hide desktop nav content */
  }

  .nav-links-bottom {
    display: none;
  }

  .major-cities {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .city-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
    z-index: 1;
  }

  .city-info {
    padding: 0.5rem;
  }

  .city-info h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .city-info p {
    font-size: 0.4rem;
  }

  .services,
  .how-it-works,
  .testimonials,
  .popular-areas {
    padding: 1rem 0;
  }

  .services h2,
  .how-it-works h2,
  .testimonials h2,
  .popular-areas h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .service-filter h4 {
    padding: 0 1rem;
    color: var(--primary-color);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-card {
    padding: 1rem 0.5rem;
  }

  .service-card h3,
  .benefit-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .service-card p {
    font-size: 0.8rem;
  }

  .price {
    font-size: 1rem;
  }

  .service-hero p {
    font-size: 1rem;
    text-align: center;
    align-items: center;
  }

  .service-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0 1rem;
  }

  .service-description-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }

  .service-description-image {
    display: none;
  }

  .service-description-content,
  .service-description-content-2 {
    width: 100%;
    justify-content: space-around;
  }

  .service-description-content-2 {
    padding: 1rem;
  }

  .service-description-content h2,
  .service-description-content-2 h2 {
    text-align: left;
    font-size: 1rem;
  }

  .service-description-content p,
  .service-description-content-2 p,
  .service-description-content-2 ul {
    font-size: 0.8rem;
  }

  .testimonials {
    padding: 4rem 1rem;
  }

  .testimonial {
    padding: 2rem;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 40px 20px 20px;
    gap: 30px;
  }

  .other-cities {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-section{
    padding: 0;
  }

  .footer-section h3 {
    font-size: 1.2rem;
  }

  .popup-content {
    padding: 25px;
    margin: 20px;
  }

  .popup-header h3 {
    font-size: 1.5rem;
  }
}

/* Section Container */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   POPULAR AREAS SECTION
   ============================================ */
.popular-areas {
  padding: 5rem 2rem;
  background: linear-gradient(to right, #f8f9fa, #ffffff, #f8f9fa);
  position: relative;
  overflow: hidden;
}

.popular-areas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232196F3' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.popular-areas h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 1.2rem;
  color: var(--text-color);
}

.popular-areas h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.area-card {
  position: relative;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(33, 150, 243, 0.1);
}

.area-card:hover::before {
  opacity: 1;
}

.area-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-color);
  position: relative;
  transition: all 0.3s ease;
}

.area-card:hover h3 {
  color: var(--primary-color);
}

.area-card p {
  color: var(--dark-gray);
  font-size: 1.1rem;
  font-weight: 500;
}

.area-card::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  right: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
  opacity: 0;
}

.area-card:hover::after {
  right: 20px;
  opacity: 1;
}

/* ============================================
   SERVICE DETAILS SECTION
   ============================================ */
.service-details {
  padding: 2rem 1rem;
  background: linear-gradient(to bottom right, #f9f9f9, #ffffff);
}

.service-details h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 1rem;
}

.service-details h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.service-features {
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-color);
}

.feature-card p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.feature-card .price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  display: block;
  margin-top: auto;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup-close:hover {
  color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
}

.popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.popup-header i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.popup-header h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.popup-header .price {
  font-size: 1.3rem;
}

.service-details {
  margin: 0;
}

.service-details h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.service-details h4 i {
  margin-right: 10px;
  color: var(--primary-color);
}

.service-details ul {
  list-style: none;
  padding-left: 0;
}

.service-details li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.service-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.booking-section-popup {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 5px;
  border-radius: 15px;
  text-align: center;
}

.book-btn {
  background: linear-gradient(90deg, #667eea, var(--primary-color));
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.contact-info {
  margin-top: 10px;
  color: #666;
}

.contact-info i {
  color: green;
  margin-right: 5px;
}

/* benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.08);
}

.benefit-card i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 1.8rem;
  color: var(--white);
  background: var(--primary-color);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.2);
  transition: all 0.3s ease;
}

.benefit-card:hover i {
  transform: rotateY(180deg);
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-color);
}

.benefit-card p {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}

.form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.form-title {
  text-align: center;
  margin-bottom: 20px;
  color: #1a202c;
}

.form-title h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
}

.form-title p {
  color: #718096;
  font-size: 0.875rem;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: #2d3748;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4facfe;
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 14px;
  appearance: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-container {
  margin-top: 20px;
}

.submit-btn {
  width: 100%;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(79, 172, 254, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.form-group {
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.form-group:nth-child(3) {
  animation-delay: 0.3s;
}
.form-group:nth-child(4) {
  animation-delay: 0.4s;
}
.form-group:nth-child(5) {
  animation-delay: 0.5s;
}
.form-group:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-title {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 16px;
  display: none;
  animation: slideDown 0.5s ease-out;
  font-size: 0.9rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for new sections */
@media (max-width: 768px) {
  .popular-areas {
    padding: 1rem 0;
  }

  .popular-areas h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .booking-form {
    padding: 0;
  }

  .area-card,
  .benefit-card {
    padding: 0.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
  }

  .area-card h3 {
    font-size: 1rem;
    margin: 0;
  }

  .area-card p {
    font-size: 0.8rem;
  }

  .benefit-card i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 1.5rem;
  }

  .form-container {
    margin: 0rem 1rem;
  }

  .service-features h2,
  .why-choose-us h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .feature-card h3,
  .benefit-card h3 {
    font-size: 1rem;
  }

  .feature-card p,
  .benefit-card p {
    font-size: 0.8rem;
  }

  .feature-card i {
    font-size: 2rem;
  }
}

/* ============================================
   LOCATION MODAL
   ============================================ */
.location-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.location-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.location-modal-content {
  background-color: var(--white);
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: slideInUp 0.4s ease;
  max-height: 80vh;
  overflow-y: auto;
}

.location-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--light-gray);
}

.location-modal-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  gap: 10px;
  border-bottom: 1px solid var(--light-gray);
}

.location-modal-search input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
}

.location-modal-search button {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--dark-gray);
  transition: color 0.2s ease;
}

.location-modal-search button:hover {
  color: var(--primary-color);
}

.location-modal-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

.location-modal-header button {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--dark-gray);
  transition: color 0.2s ease;
}

.location-modal-header button:hover {
  color: var(--primary-color);
}

.location-modal-body {
  padding: 20px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.city-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-color);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: var(--light-gray);
  text-align: center;
}

.city-option i {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.city-option span {
  font-weight: 500;
}

.city-option:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.city-option:hover i {
  color: var(--white);
}

/* ============================================
   SERVICE BENEFITS
   ============================================ */
.service-benefits {
  background-color: var(--light-gray);
  padding: 3rem 1rem;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.benefit-item p {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .benefits-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  /* .benefits-container {
        grid-template-columns: 1fr;
    } */

  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   SERVICE FILTER
   ============================================ */
.service-filter {
  background-color: var(--light-gray);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.filter-tab {
  padding: 10px 20px;
  background-color: var(--light-gray);
  border: none;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover {
  background-color: rgba(33, 150, 243, 0.1);
  color: var(--primary-color);
}

.filter-tab.active {
  background-color: var(--primary-color);
  color: white;
}

/* Add active class for city-option */
.city-option.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.city-option.active i {
  color: var(--white);
}

/* Add active class for area-card */
.area-card.active {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-color);
}

@media (max-width: 768px) {
  .filter-tabs {
    justify-content: center;
  }

  .filter-tab {
    font-size: 0.8rem;
    padding: 8px 15px;
  }

  .popup-content {
    padding: 2rem 1rem;
  }

  .service-details {
    padding: 1rem;
  }

  .service-benefits {
    padding: 1rem;
  }
}
