/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
}

:root {
  --primary-blue: #2a5d91;
  --secondary-blue: #36a5ea;
  --primary-green: #63d471;
  --text-gray: #4b5563;
  --light-gray: #f9fafb;
  --card-border: #e5e7eb;
  --dark-gray: #374151;
  --dark-background: #0c2b4d;
  --logo-blue: #2a5d91;
  --logo-green: #63d471;
  --gray-text: #4b5563;
  --light-gray: #e5e7eb;
  --dark-gray: #1f2937;
  --green-check: #22c55e;
}

/* 🔹 Top Scrolling Slider */
.top-slider {
  background: #004d99;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  height: 35px;
  display: flex;
  align-items: center;
}
.slider-track {
  display: inline-block;
  animation: scroll 43s linear infinite;
}
.slider-track p {
  display: inline-block;
  margin: 0 50px;
  font-size: 14px;
  font-weight: bold;
}
@keyframes scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* NAVBAR (sticky + scroll interaction) */
.navbar {
  position: relative;
  background: #fff; /* Solid background */
  padding: 18px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.6s ease;
  z-index: 1000;
}
.navbar.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 50px !important;
}

.navbar img {
  height: 50px;
}

/* ANIMATED HAMBURGER MENU */
.menu-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  position: absolute;
  left: 0;
  transition: transform var(--transition-speed) ease-in-out,
    top var(--transition-speed) ease-in-out,
    opacity var(--transition-speed) ease-in-out;
}
.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 8px;
}
.menu-toggle span:nth-child(3) {
  top: 16px;
}

.navbar.active .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.navbar.active .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.navbar.active .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 700;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--primary-color);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* DROPDOWNS */
.dropdown-menu,
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 8px 0;
  list-style: none;
  border-radius: var(--border-radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition-speed) ease-out;
  z-index: 1001;
}
/* MEGA DROPDOWN (Services) */
.mega-menu {
  width: 520px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 18px;
}
.mega-column h4 {
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.mega-column a {
  display: block;
  padding: 8px 0;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.mega-column a:hover {
  color: var(--primary-color);
  background: var(--background-light);
  padding-left: 6px;
}

/* HOVER INTERACTIONS FOR DESKTOP */
@media (min-width: 769px) {
  .dropdown:hover > .dropdown-menu,
  .mega-dropdown:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* Buttons (unchanged) */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-buttons .btn {
  padding: 8px 15px;

  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
  color: #fff;
}
.login {
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}
.login:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.book-now {
  background: var(--primary-color);
  color: #fff;
}
.book-now:hover {
  background-color: #00997a;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  .logo {
    flex-grow: 1;
  }
  .menu-toggle {
    display: block;
  }

  /* Slide-in Menu from Right */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px; /* Fixed width for the menu */
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 20px 20px;
    transform: translateX(100%);
    transition: transform var(--transition-speed) ease-in-out;
    z-index: 999;
    gap: 15px;
  }

  .navbar.active .nav-links {
    transform: translateX(0);
  }

  .nav-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--text-color);
  }

  /* Dropdown indicator on mobile */
  .nav-links .dropdown > a::after {
    content: "+";
    position: static;
    transform: rotate(0deg);
    font-size: 1.2em;
    font-weight: normal;
    transition: transform var(--transition-speed) ease-in-out;
  }
  .nav-links .dropdown.active > a::after {
    transform: rotate(45deg);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    text-align: center;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }

  .dropdown-menu,
  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0;
    max-height: 0; /* Animated height */
    overflow: hidden;
    border-radius: 0;
    transition: max-height var(--transition-speed) ease-in-out;
  }

  .dropdown.active > .dropdown-menu,
  .mega-dropdown.active > .mega-menu {
    max-height: 300px; /* Adjust as needed */
  }
  .mega-dropdown.active > .mega-menu a {
    text-align: left;
    padding-left: 20px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }
  .mega-column {
    padding: 10px 0;
  }
  .mega-column h4 {
    text-align: left;
    padding: 0 10px;
  }
  .mega-column a {
    padding: 8px 20px;
  }

  .nav-buttons {
    margin-left: auto;
  }

  /* Overlay effect when menu is open */
  .navbar.active::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 998;
  }
}
/* Hero Section */
.hero {
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c")
    center/cover no-repeat;
  position: relative;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 77, 153, 0.6);
}
.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 900px;
}
.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.hero-content p {
  margin-bottom: 20px;
}

/* Booking Form */
.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 10px;
}
.booking-form input,
.booking-form select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.booking-form .submit {
  grid-column: 1 / -1; /* take full row */
  background: #00b894;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  font-size: 16px;
  transition: 0.3s;
  height: 35px;
  width: 150px;
  margin: 0 auto; /* centers horizontally */
  border-top-left-radius: 30px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 0px;
}
.booking-form .submit:hover {
  background: #009874;
}

/* Info Row */
.info-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  font-weight: bold;
}
.info-row span {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 5px;
}

/* Call Row */
.call-row {
  margin-top: 20px;
  text-align: center;
}
.call-btn {
  display: inline-block;
  background: #00b894;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
  border-top-left-radius: 30px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 0px;
}
.call-btn:hover {
  background: #009874;
}
.call-row p {
  margin-top: 10px;
  font-size: 14px;
}
.extras {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  font-weight: bold;
}

/* Awards Section */
.awards-section {
  padding: 5rem;
}

.awards-section h2 {
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 1.5rem;
}

/* Swiper navigation buttons */
.awards-section .swiper-button-next,
.awards-section .swiper-button-prev {
  color: #00b894; /* match your theme color */
  transition: transform 0.3s ease;
}

.awards-section .swiper-button-next:hover,
.awards-section .swiper-button-prev:hover {
  transform: scale(1.2);
}

/* Images inside slides */
.awards-section img {
  max-height: 140px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.awards-section img:hover {
  transform: translateY(-5px);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 30px;
  position: relative;
}

.review-header h2 {
  text-align: center;
  color: #0f4c81;
  font-size: 2rem;
  margin-bottom: 5px;
}
.review-header p {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #555;
}
.rating-summary {
  text-align: center;
  margin-bottom: 30px;
}
.rating-number {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.review-count {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #555;
}
.google-logo {
  width: 60px;
}

.review-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}
.review-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: #fff;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex-shrink: 0;
  position: relative;
}
.review-card img.profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.review-card .reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.review-card .reviewer-name {
  font-weight: bold;
  font-size: 0.95rem;
}
.review-card .review-date {
  font-size: 0.8rem;
  color: #777;
}
.review-card .verified {
  color: #4285f4;
  margin-left: 5px;
  font-size: 0.8rem;
}
.review-card .review-stars {
  color: #ffc107;
  margin-bottom: 10px;
}
.review-card .review-text {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0f4c81;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}
.prev {
  left: 0;
}
.next {
  right: 0;
}
.see-more {
  text-align: center;
  margin-top: 20px;
}
.btn {
  display: inline-block;
  background: #00b894;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
  border-top-left-radius: 30px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 0px;
  cursor: pointer;
}

.btn:hover {
  background: #009874;
}

.reviewSwiper {
  position: relative;
  padding: 20px 0;
}
.reviewSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

section.google-review-section {
  background: #f2f2f8;
}

/* Container for the whole section */
.cleaning-section {
  background-color: white;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Responsive padding for larger screens */
@media (min-width: 640px) {
  .cleaning-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Main content container */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Section heading */
.heading-container {
  text-align: center;
  margin-bottom: 3rem;
}

.main-heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--logo-blue);
}

/* Responsive font size for larger screens */
@media (min-width: 640px) {
  .main-heading {
    font-size: 2.25rem;
  }
}

/* Grid layout for two columns */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Responsive grid for larger screens */
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Text content on the left side */
.text-content {
  color: var(--gray-text);
}

.text-content p {
  margin-bottom: 1rem;
}

/* Spacing for paragraphs */
.text-content p:last-of-type {
  margin-bottom: 2rem;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Responsive features grid for smaller screens */
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-gray);
}

.feature-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--green-check);
}

/* Buttons layout */
.button-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Responsive button layout for smaller screens */
@media (min-width: 640px) {
  .button-container {
    flex-direction: row;
    gap: 1rem;
  }
}

/* Image styling */
.main-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.services-section {
  padding: 3rem 1rem;
}

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

/* Header and Intro Text */
.header {
  text-align: center;
  margin-bottom: 2rem;
}

.header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .header h2 {
    font-size: 2.5rem;
  }
}

.header p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Individual Service Card */
.service-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid var(--card-border);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.4;
  margin: 0;
}

.cta-button-container {
  text-align: center;
  margin-top: 3rem;
}

/* New Styles for Comparison Section */
.comparison-section {
  background-color: #0c2b4d;
  padding: 4rem 1rem;
  color: #ffffff;
  text-align: center;
}

.comparison-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.comparison-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-row {
  display: table-row;
}

.comparison-cell {
  display: table-cell;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  vertical-align: middle;
  font-size: 1rem;
}

.comparison-row .comparison-cell:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-row:first-child .comparison-cell {
  font-weight: bold;
  font-size: 1.125rem;
}

.check-mark {
  color: var(--primary-green);
  font-size: 1.5rem;
}

.cross-mark {
  color: #e03f3f;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .comparison-table,
  .comparison-row,
  .comparison-cell {
    display: block;
    width: 100%;
  }

  .comparison-row {
    margin-bottom: 1rem;
  }

  .comparison-row .comparison-cell:first-child {
    text-align: center;
    border-bottom: none;
  }
}

/* New Sections Styles */
.flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .flex-container {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
}

.content-box {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-box img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .content-box img {
    width: 400px;
    height: 300px;
    margin-bottom: 0;
  }
}

.content-text {
  flex: 1;
  padding: 1rem;
}

.content-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--logo-green);
  margin-bottom: 1rem;
}

.content-text p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.small-text {
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: bold;
  display: block;
  margin-top: 0.5rem;
}

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

/* Styles for "Why Choose Us" Section */
.why-choose-us {
  padding: 4rem 1rem;
  background-color: #f0f9ff;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--logo-green);
  margin-bottom: 1rem;
}

.why-choose-us p {
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-gray);
}

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

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--logo-green);
  margin-bottom: 0.5rem;
}

.benefit-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.4;
  margin-bottom: 0;
}

/* Styles for "Book in 4 Steps" Section */
.how-it-works-section {
  padding: 4rem 1rem;
  text-align: center;
}

.how-it-works-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--logo-green);
  margin-bottom: 3rem;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 250px;
}

.step-icon-container {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid var(--logo-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-icon {
  font-size: 2.5rem;
  color: var(--logo-green);
}

.step-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.4;
}

/* New Styles for Pricing Plan Section */
.pricing-section {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #f2f2f8;
}

.pricing-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--logo-green);
  margin-bottom: 2rem;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--card-border);
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
}

.pricing-tab.active {
  background-color: var(--logo-green);
  color: #fff;
  border-color: var(--logo-green);
}

.pricing-cards-container {
  display: none; /* Hide all content by default */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-cards-container.active {
  display: grid; /* Only show active content */
}

.pricing-card {
  background-color: #fff;
  border-radius: 0.5rem;
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
}

.pricing-card-icon {
  font-size: 3rem;
  color: var(--logo-blue);
  margin-bottom: 1rem;
}

.pricing-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-card li {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.pricing-card li::before {
  content: "✓";
  color: var(--logo-green);
  font-size: 1rem;
  margin-right: 0.75rem;
  font-weight: bold;
}

/* New section styles */
.extra-shine-section {
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
}

.extra-shine-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.extra-shine-section p {
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-gray);
  line-height: 1.5;
}

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

.shine-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.shine-icon {
  width: 70px;
  height: 70px;
  background-color: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.shine-icon span {
  font-size: 2.25rem;
  color: var(--secondary-blue);
}

.shine-item p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0;
}

.included-services-box {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  padding: 2rem;
  background-color: #f9fafb;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.included-services-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-gray);
  text-align: center;
  margin-bottom: 1.5rem;
}

.included-services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .included-services-list {
    grid-template-columns: 1fr 1fr;
  }
}

.included-services-list li {
  font-size: 0.875rem;
  color: var(--text-gray);
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.included-services-list li::before {
  content: "•";
  color: var(--secondary-blue);
  font-size: 1.5rem;
  margin-right: 0.75rem;
  line-height: 1;
}

.satisfaction-section {
  padding: 4rem 1rem;
  background-color: var(--dark-background);
  color: #fff;
  text-align: center;
}

.satisfaction-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.satisfaction-section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.satisfaction-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 768px) {
  .satisfaction-section-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.guarantee-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.guarantee-card p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Styles for Our Service Areas Section */
.service-areas-section {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #fff;
}

.service-areas-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.service-areas-section p {
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.map-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .map-container {
    flex-direction: row;
    justify-content: center;
  }
}

.map-box {
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  max-width: 400px;
}

.map-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

.map-box img {
  display: block;
  width: 100%;
  height: auto;
}

.cities-list {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cities-list {
    flex-direction: row;
    justify-content: space-around;
  }
}

.city-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.city-column h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0;
}

.city-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.city-column li {
  font-size: 0.875rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Styles for Call Now or Book Section */
.call-now-section {
  background-color: var(--dark-background);
  padding: 3rem 1rem;
  text-align: center;
  color: #fff;
}

.call-now-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.call-now-section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.contact-buttons-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-buttons-container {
    flex-direction: row;
    justify-content: center;
  }
}

.phone-button,
.book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.2s ease-in-out;
}

.phone-button {
  background-color: var(--secondary-blue);
  color: #fff;
}

.phone-button:hover {
  background-color: var(--primary-green);
}

.book-button {
  background-color: #fff;
  color: var(--primary-blue);
}

.book-button:hover {
  background-color: var(--light-gray);
}

.flex-container .content-text p {
  color: var(--dark-gray);
}

.compare-table {
  background-color: #0d3b66;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}
.compare-table h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.table-container {
  background-color: #1c527e;
  border-radius: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.table-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.table-row:last-child {
  border-bottom: none;
}
.table-cell {
  padding: 1rem;
  text-align: left;
  flex: 1;
  display: flex;
  align-items: center;
}
.table-cell:first-child {
  flex: 2;
  font-weight: 500;
}
.table-header {
  font-weight: 700;
  background-color: #2a699c;
}
.table-check {
  color: #10b981;
  font-size: 1.5rem;
  margin: 0 auto;
  display: block;
}
.table-x {
  color: #ef4444;
  font-size: 1.5rem;
  margin: 0 auto;
  display: block;
}
.about-section {
  display: flex;
  flex-direction: column;

  padding: 4rem 1rem;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0d3b66;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about-section {
    flex-direction: row;
    text-align: left;
  }
  .about-section .content-right {
    padding-left: 2rem;
  }
}
.about-image {
  max-width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-right p {
  line-height: 30px;
}

/* Custom styles for the blog cards */
.blog-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.blog-card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.blog-card-content {
  padding: 1.5rem;
}
.read-now-btn {
  display: inline-block;
  background-color: #f1f5f9;
  color: #334155;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: 1px solid #e2e8f0;
}
.read-now-btn:hover {
  background-color: #e2e8f0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: #f2f2f8;
  color: rgb(13, 59, 102);
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 2rem;
}
.faq-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.faq-header p {
  color: var(--logo-blue);
}
.accordion-item {
  background-color: #1c527e;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #e2e8f0;
  transition: background-color 0.3s ease;
}
.accordion-title:hover {
  background-color: #2a699c;
}
.accordion-title .icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.accordion-title.active .icon {
  transform: rotate(180deg);
}
.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #cbd5e1;
}
.accordion-content.active {
  max-height: 500px; /* A value large enough to hold the content */
  padding-bottom: 1.5rem;
}
.accordion-content p {
  padding-top: 1rem;
}
.accordion-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #0d3b66;
}
.faq-cta {
  text-align: center;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}

.contact-section {
  background: #003f80;
  color: #fff;
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.section-subtitle {
  text-align: center;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-card,
.info-card {
  background: var(--dark-background);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.form-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-input {
  width: 100%;
  background: #004a99;
  border: none;
  border-radius: 8px;
  padding: 12px;
  color: white;
}

.form-input::placeholder {
  color: #ccc;
}

textarea.form-input.mt {
  margin-top: 1.5rem;
}

.btn-submit {
  display: block;
  width: 100%;
  background: #fff;
  color: #0064c8;
  font-weight: bold;
  padding: 12px;
  margin-top: 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.btn-submit:hover {
  background: #f3f3f3;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hours-title {
  margin-top: 1rem;
  color: #ddd;
}
.hours-list {
  margin: 0.5rem 0 0;
  padding-left: 20px;
  color: #ccc;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  height: 250px;
}

.content {
  padding: 2rem;
  text-align: center;
  flex-grow: 1;
}

.footer {
  background: linear-gradient(135deg, #2c3e50, #1a2530);
  color: #fff;
  padding: 3rem 1rem;
  margin-top: auto;
}

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

.footer-section {
  padding: 0 1rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  color: var(--logo-green);
}

.footer-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--logo-green);
}

.footer-section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #ccc;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  width: auto;
  height: 70px;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}

.footer-links a:hover {
  color: var(--logo-green);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: #ccc;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--logo-green);
  width: 20px;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--logo-green);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #4a5568;
  text-align: center;
  color: #ccc;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2d3748;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--logo-green);
  color: var(--dark-backgrounds);
  transform: translateY(-3px);
}

.quote-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: var(--logo-green);
  color: var(--dark-background) !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.quote-btn:hover {
  background: var(--green-check);
  color: var(--dark-background) !important;
  transform: translateY(-2px);
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--logo-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
}

.back-to-top:hover {
  background: var(--logo-green);
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section h3:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-logo {
    justify-content: center;
  }
}

/* --- Scroll Animation Styles --- */
.animated-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-item.right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-item.left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Projects Section */
.projects-section {
  padding: 4rem 1rem;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.section-title p {
  font-size: 1.125rem;
  color: #4b5563;
}
.projects-wrapper {
  position: relative;
  max-width: 80rem;
  margin: auto;
}
.project-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: scale(1.05);
}
.project-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.project-card-content {
  padding: 1.25rem;
  text-align: left;
}
.project-card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.project-card-content p {
  color: #4b5563;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.project-card-content .meta {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}

/* Example content section */
.example-content {
  padding: 1rem;
  margin-top: 4rem;
}
.example-content-inner {
  text-align: center;
}
.example-content-inner h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
}
.example-content-inner p {
  margin-top: 1rem;
  color: #4b5563;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Swiper.js overrides */
.swiper-pagination-bullet {
  background: #d1d5db;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #10b981;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.mySwiper .swiper-slide img {
  width: 100%;
}

.mySwiper {
  margin-bottom: 50px;
}

/* Pricing Table styles */
.pricing-section {
  padding: 4rem 1rem;
}
.pricing-table-container {
  overflow-x: auto;
  padding-bottom: 1rem;
}
.pricing-table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: left;
}
.pricing-table thead {
  background-color: #1f2937;
  color: white;
  font-weight: 600;
}
.pricing-table th:first-child {
  border-top-left-radius: 1.5rem;
}
.pricing-table th:last-child {
  border-top-right-radius: 1.5rem;
}
.pricing-table tbody tr:nth-child(odd) {
  background-color: #e5f5f0;
}
.pricing-table tbody tr:nth-child(even) {
  background-color: #d1e5de;
}
.pricing-table tbody tr:hover {
  background-color: #b9d7c3;
}
.pricing-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 1.5rem;
}
.pricing-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 1.5rem;
}

/* Optional Extras Table styles */
.extras-table-container {
  overflow-x: auto;
  padding-bottom: 1rem;
}
.extras-table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.extras-table thead {
  background-color: #1f2937;
  color: white;
  font-weight: 600;
}
.extras-table th,
.extras-table td {
  padding: 1rem;
  text-align: left;
}
.extras-table tbody tr:nth-child(odd) {
  background-color: #e5f5f0;
}
.extras-table tbody tr:nth-child(even) {
  background-color: #d1e5de;
}
.extras-table tbody tr:hover {
  background-color: #b9d7c3;
}
.extras-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 1.5rem;
}
.extras-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 1.5rem;
}

/* Example content section */
.example-content {
  padding: 1rem;
  margin-top: 4rem;
}
.example-content-inner {
  text-align: center;
}
.example-content-inner h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
}
.example-content-inner p {
  margin-top: 1rem;
  color: #4b5563;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Swiper.js overrides */
.swiper-pagination-bullet {
  background: #d1d5db;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #10b981;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Media Queries */
@media (min-width: 768px) {
  .navbar {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .nav-links,
  .nav-actions {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .hero-content {
    flex-direction: row;
  }
  .hero-text {
    width: 50%;
    text-align: left;
    margin-bottom: 0;
  }
  .hero-text h1 {
    font-size: 3rem;
  }
  .hero-text p {
    font-size: 1.25rem;
  }
  .hero-features {
    justify-content: flex-start;
  }
  .booking-form-wrapper {
    width: 50%;
  }
  .example-content-inner {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .nav-links {
    gap: 2rem;
  }
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 1rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-0.5rem);
}
.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 0.5rem;
}
.benefit-card p {
  color: #4b5563;
  margin-top: 0.5rem;
}
.benefit-icon {
  color: #10b981;
  font-size: 1.5rem;
  background-color: #d1f7e0;
  padding: 0.5rem;
  border-radius: 50%;
}

/* Example content section */
.example-content {
  padding: 1rem;
  margin-top: 4rem;
}
.example-content-inner {
  text-align: center;
}
.example-content-inner h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
}
.benefits-grid .example-content-inner p {
  margin-top: 1rem;
  color: #4b5563;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.suburb-grid,
.council-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.suburb-card,
.council-card {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
.suburb-card:hover,
.council-card:hover {
  background: #003f80;
  color: #fff;
}

.map-container {
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
  height: 350px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Section */
.contact-section {
  background: #f5f7fb;
  padding: 50px 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info h3 {
  margin-bottom: 15px;
  color: #003f80;
}
.contact-info p {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info p {
  color: var(--logo-blue);
}

.gallery-section {
  text-align: center;
  background: #f5f7fb;
  padding: 50px 20px;
}
.gallery-section h2 {
  color: #003f80;
  margin-bottom: 10px;
}
.gallery-section p {
  margin-bottom: 30px;
  color: #444;
}

.gallery-slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.gallery-track img {
  width: 100%;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 12px;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #003f80;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2;
}
.prev:hover,
.next:hover {
  background: #002952;
}
.prev {
  left: -20px;
}
.next {
  right: -20px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  margin-top: 5%;
  border-radius: 10px;
}
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

.ctc-gallery {
  padding: 56px 16px;
}
.ctc-gallery .wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.ctc-gallery h2 {
  margin: 0 0 6px;
  font-size: 28px;
  color: #0c3b76;
}
.ctc-gallery p.sub {
  margin: 0 0 28px;
  color: #5b6777;
}

/* Swiper container */
.ctc-swiper {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.ctc-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}
.ctc-slide-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  user-select: none;
}

/* Nav buttons */
.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}
.swiper-button-prev {
  left: -6px;
}
.swiper-button-next {
  right: -6px;
}
@media (min-width: 768px) {
  .swiper-button-prev {
    left: -20px;
  }
  .swiper-button-next {
    right: -20px;
  }
}
.swiper-pagination-bullet {
  background: #b8c3d1;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--brand);
}

/* Lightbox */
.ctc-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  padding: 24px;
}
.ctc-lightbox.open {
  display: flex;
}
.ctc-lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.ctc-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  font-size: 26px;
  cursor: pointer;
}
.ctc-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Optional arrows inside lightbox */
.ctc-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 22px;
}
.ctc-lb-prev {
  left: 16px;
}
.ctc-lb-next {
  right: 16px;
}
.ctc-lb-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.bg-gradient-custom-blue {
  background: var(--dark-background);
}

.dashed-circle {
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  height: 120px;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.card-body h2,
.card-body p,
.card-body h3 {
  color: var(--logo-green);
}

.hero-section {
  background-color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.hero-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 2rem;
}

.hero-section p {
  font-size: 1rem;
  color: #4a5568;
  max-width: 768px;
  margin: 0 auto 2rem;
}

.discount-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  max-width: 512px;
  margin: 0 auto 2.5rem;
}

.discount-list .item {
  display: flex;
  align-items: flex-start;
}

.discount-list svg {
  flex-shrink: 0;
  height: 1.5rem;
  width: 1.5rem;
  color: #3b82f6;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.book-btn {
  background-color: #2563eb;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.book-btn:hover {
  background-color: #1d4ed8;
}

.why-choose-us-section {
  background-color: #1e3a8a;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.why-choose-us-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background-color: #1e3a8a;
  color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #d1d5db;
}

.info-icon {
  font-size: 2.5rem;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

/* Other Services Section Styles */
.other-services-section {
  background-color: #f3f4f6;
  padding: 4rem 1rem;
  text-align: center;
}

.other-services-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.other-services-section .subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
}

.services-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 auto;
  width: 300px;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  scroll-snap-align: start;
}

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

.service-card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.service-card .read-more-btn {
  background-color: #2563eb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 1rem;
}

.service-card .read-more-btn:hover {
  background-color: #1d4ed8;
}

/* Before/After Section Styles */
.before-after-section {
  background-color: #e2e8f0;
  padding: 4rem 1rem;
  text-align: center;
}

.before-after-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.before-after-section .subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
}

/* Swiper custom styling */
.ba-swiper {
  width: 100%;
  max-width: 600px; /* Optional: Constrain the width for larger screens */
  height: auto;
  padding-bottom: 3rem;
}

.ba-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
}

@media (min-width: 600px) {
  .ba-slide {
    flex-direction: row;
  }
}

.ba-card {
  width: 100%;
  max-width: 280px;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.ba-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.book-btn {
  background-color: #2563eb;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.book-btn:hover {
  background-color: #1d4ed8;
}

/* Main Prices Page Layout */
.prices-page-main {
  background-color: #fff;
  padding: 4rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.prices-page-main h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a202c;
}

/* Tabs and Tables Container */
.prices-container-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .prices-container-main {
    flex-direction: row;
    gap: 4rem;
  }
}

/* Tabbed Interface */
.tabs-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
}

.tab-button {
  padding: 0.75rem 1rem;
  background-color: #f3f4f6;
  color: #4a5568;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: left;
  margin-bottom: 0.5rem;
  border: none;
  display: block;
}

.tab-button:hover {
  background-color: #e2e8f0;
}

.tab-button.active {
  background-color: #2563eb;
  color: white;
}

/* Pricing Content Wrapper */
.pricing-content-wrapper {
  width: 100%;
}

.pricing-content {
  background-color: #f8fafc;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
}

.pricing-content.active {
  display: block;
}

/* Pricing Table Content */
.pricing-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #1a202c;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-table th {
  font-weight: 700;
  color: #1a202c;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-content .book-btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s;
}

.modal.visible {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  max-width: 24rem;
  width: 100%;
  text-align: center;
}

/* Breadcrumbs Header */
.header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://placehold.co/1200x200/556994/ffffff?text=Professional+Cleaning+Services");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.75rem;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #d1d5db;
}
.breadcrumbs a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumbs a:hover {
  color: #ffffff;
}
.breadcrumbs span {
  margin: 0 0.5rem;
  color: #9ca3af;
}
/* Dropdown Menus */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background-color: white;
  padding: 0.75rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0.5rem);
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.25rem;
  white-space: nowrap;
  font-weight: 400;
  transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
  background-color: #f3f4f6;
  color: #1d4ed8;
}

/* Mega Dropdown */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  max-width: 90vw;
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.mega-dropdown:hover .mega-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0.5rem);
}

.mega-menu {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.mega-column h4 {
  font-weight: 600;
  color: #1d4ed8;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}

.mega-column a {
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.mega-column a:hover {
  color: #1d4ed8;
}
