/* ================================
           MODERN CARPET CLEANING PRO STYLES
           ================================ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #53b0e1;
  --primary-orange: #f39c12;
  --dark-blue: #3e8bc2;
  --dark-orange: #e67e22;
  --text-dark: #333333;
  --text-light: #666666;
  --text-muted: #888888;
  --bg-light: #f8f9fa;
  --bg-lighter: #e8f4fd;
  --white: #ffffff;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 12px;
  --border-radius-sm: 48px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--dark-blue) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    var(--dark-orange) 100%
  );
}


body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Location Bar */
.location-bar {
  background: var(--gradient-secondary);
  color: white;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px 12px;
  border-radius: 20px;
}

.location-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.location-item i {
  font-size: 12px;
}

.location-item a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Modern Header System */
/* Default header state */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 32px;
  z-index: 1001;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid #e0e7ff;
}

/* When scrolled - move to top and hide top-bar */
.header.scrolled {
  margin-top: 10px;
  top: 70;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Hide top bar when scrolled */
.header.scrolled .top-bar {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  padding: 0;
  transform: translateY(-100%);
}

/* Smooth transition for top bar */
.top-bar {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  margin-top: 10px;
}

/* Navbar smooth transition */
.navbar {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top Bar Redesign */
.top-bar {
  background: white;
  padding: 15px 0;
  border-bottom: none;
}

.top-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: 300px;
  object-fit: contain;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 50px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #f8fafc;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  border-color: var(--primary-blue);
}

.phone-info {
  text-align: center;
  margin-top: 15px;
}

.phone-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-orange);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.phone-number:hover {
  color: var(--dark-orange);
  transform: scale(1.02);
}

.phone-text {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

.top-buttons {
  display: flex;
  gap: 25px;
}

.btn {
  padding: 12px 44px;
  border: none;
  border-top-left-radius: var(--border-radius-sm);
  border-top-right-radius: var(--border-radius-sm);
  border-bottom-left-radius: var(--border-radius-sm);
  border-bottom-right-radius: var(--border-radius-sm);

  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-quote,
.btn-primary {
  background: var(--primary-orange);
  color: white;
  box-shadow: var(--shadow-light);
}

.btn-quote:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-contact,
.btn-secondary {
  background: transparent;
  color: black;
  border: 2px solid black;
}

.btn-contact:hover,
.btn-secondary:hover {
  background: var(--primary-orange);
  border: 2px solid var(--primary-orange);
  color: white;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  transition: var(--transition);
  border-radius: 2px;
}

/* Modern Navigation Bar */
.navbar {
  background: white;
  margin-bottom: 10px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  height: 60px;
  align-items: center;
  position: relative;
}

.nav-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 20px 0;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: var(--shadow-medium);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  list-style: none;
  padding: 15px 0;
  margin: 0;
  border: 1px solid #e2e8f0;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: var(--bg-lighter);
  color: var(--primary-blue);
  border-left-color: var(--primary-blue);
}



.page-content {
  display: none;
}

.page-content.active {
  display: block;
}

/* Hero Section - Responsive Fixed */
.hero {
  background: linear-gradient(135deg, #87ceeb 0%, #53b0e0 100%);
  padding: 60px 0 0;
  position: relative;
}

.hero-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.hero-content {
  padding-left: 50px;
  flex: 1;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 400;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 24px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 80px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-large {
  font-size: 18px;
  padding: 15px 30px;
}

.reviews-info {
  text-align: left;
}

.reviews-info span {
  font-weight: bold;
  color: #0f172a;
  display: block;
  margin-bottom: 10px;
}

.review-platforms {
  margin-top: 20px;
  opacity: 0.7;
  border: none;
}

.review-platforms img {
  height: 28px;
}

.hero-image {
  margin: -20px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
  .hero-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .hero-image img {
    max-width: 400px;
    height: 250px;
    border-radius: 12px;
  }
  .hero-image {
    clip-path: none !important; /* Use sparingly */
  }
 
}

.offer-banner {
  background: var(--primary-orange);
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-container {
    gap: 60px;
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-image img {
    max-width: 500px;
    height: 350px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 0;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content {
    order: 1;
    max-width: 100%;
  }

  .hero-image {
    order: 2;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }

  .hero-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 25px;
  }

  .reviews-info {
    text-align: center;
  }

  .offer-banner {
    font-size: 12px;
    padding: 10px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .hero {
    padding: 30px 0 0;
  }

  .hero-container {
    gap: 30px;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-image img {
    max-width: 400px;
    height: 250px;
    border-radius: 20px;
  }

  .review-platforms img {
    height: 24px;
  }

  .offer-banner {
    font-size: 11px;
    padding: 8px;
    line-height: 1.3;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-image img {
    max-width: 300px;
    height: 220px;
  }

  .hero-buttons .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Top Location Bar */
.location-bar {
  background: var(--gradient-secondary);
  color: white;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px 12px;
  border-radius: 20px;
}

.location-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.location-item i {
  font-size: 12px;
}

.location-item a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Modern Header System */
/* Default header state */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 32px;
  z-index: 1001;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid #e0e7ff;
}

/* When scrolled - move to top and hide top-bar */
.header.scrolled {
  margin-top: 10px;
  top: 70;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Hide top bar when scrolled */
.header.scrolled .top-bar {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  padding: 0;
  transform: translateY(-100%);
}

/* Smooth transition for top bar */
.top-bar {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  margin-top: 10px;
  padding-top: 10px;
}

/* Navbar smooth transition */
.navbar {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top Bar Redesign */
.top-bar {
  background: white;
  padding: 15px 0;
  border-bottom: none;
}

.top-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: 300px;
  object-fit: contain;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 50px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #f8fafc;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  border-color: var(--primary-blue);
}

.phone-info {
  text-align: center;
}

.phone-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-orange);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.phone-number:hover {
  color: var(--dark-orange);
  transform: scale(1.02);
}

.phone-text {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

.top-buttons {
  display: flex;
  gap: 25px;
}

.btn {
  padding: 12px 44px;
  border: none;
  border-top-left-radius: var(--border-radius-sm);
  border-top-right-radius: var(--border-radius-sm);
  border-bottom-left-radius: var(--border-radius-sm);
  border-bottom-right-radius: var(--border-radius-sm);

  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-quote,
.btn-primary {
  background: var(--primary-orange);
  color: white;
  box-shadow: var(--shadow-light);
}

.btn-quote:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-contact,
.btn-secondary {
  background: transparent;
  color: black;
  border: 2px solid black;
}

.btn-contact:hover,
.btn-secondary:hover {
  background: var(--primary-orange);
  border: 2px solid var(--primary-orange);
  color: white;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  transition: var(--transition);
  border-radius: 2px;
}

/* Modern Navigation Bar */
.navbar {
  background: white;
  margin-bottom: 10px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  height: 60px;
  align-items: center;
  position: relative;
}

.nav-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 20px 0;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: var(--shadow-medium);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  list-style: none;
  padding: 15px 0;
  margin: 0;
  border: 1px solid #e2e8f0;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: var(--bg-lighter);
  color: var(--primary-blue);
  border-left-color: var(--primary-blue);
}

/* Main Content Area */
.main-content {
  min-height: calc(100vh - 140px);
  margin-top: 170px;
}
@media (max-width: 480px) {
   .main-content {
    margin-top: 0px;
  }
}


.page-content {
  display: none;
}

.page-content.active {
  display: block;
}
/* ===================================
   Responsive Fixes for Location + Header
=================================== */

/* Tablets (≤ 768px) */
@media (max-width: 768px) {
  /* Location Bar */
  .location-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px; /* vertical + horizontal spacing */
  }

  .location-item {
    flex: 1 1 40%; /* take half width each */
    justify-content: center;
    font-size: 12px;
    padding: 6px 10px;
    text-align: center;
  }

  .location-item a {
    font-size: 12px;
  }

  /* Header Top Bar */
  .top-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .logo img {
    height: 60px;
    width: 200px;
  }

  .top-right {
    flex-direction: column;
    gap: 12px;
  }

  .phone-number {
    font-size: 18px;
  }

  /* Navbar toggle */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: var(--shadow-medium);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .top-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }
}

/* Mobiles (≤ 480px) */
@media (max-width: 480px) {
  /* Location bar */
  .location-item {
    flex: 1 1 100%; /* each item full width */
    justify-content: center;
  }

  .location-container {
    gap: 10px;
  }

  .location-item a {
    font-size: 11px;
  }

  /* Logo */
  .logo img {
    height: 50px;
    width: 160px;
  }
  /* ===================================
   Responsive Fixes for Location + Header
=================================== */

  /* Tablets (≤ 768px) */
  @media (max-width: 768px) {
    /* Location Bar */
    .location-container {
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 20px; /* vertical + horizontal spacing */
    }

    .location-item {
      flex: 1 1 40%; /* take half width each */
      justify-content: center;
      font-size: 12px;
      padding: 6px 10px;
      text-align: center;
    }

    .location-item a {
      font-size: 12px;
    }

    /* Header Top Bar */
    .top-container {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      text-align: center;
    }

    .logo img {
      height: 60px;
      width: 200px;
    }

    .top-right {
      flex-direction: column;
      gap: 12px;
    }

    .phone-number {
      font-size: 18px;
    }

    /* Navbar toggle */
    .nav-toggle {
      display: flex;
    }

    .nav-menu {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      padding: 20px;
      box-shadow: var(--shadow-medium);
      z-index: 999;
    }

    .nav-menu.active {
      display: flex;
    }

    .nav-list {
      flex-direction: column;
      gap: 15px;
    }

    .top-buttons {
      flex-direction: column;
      gap: 12px;
      margin-top: 15px;
    }
  }

  /* Mobiles (≤ 480px) */
  @media (max-width: 480px) {
    /* Location bar */
    .location-item {
      flex: 1 1 100%; /* each item full width */
      justify-content: center;
    }

    .location-container {
      gap: 10px;
    }

    .location-item a {
      font-size: 11px;
    }

    /* Logo */
    .logo img {
      height: 50px;
      width: 160px;
    }

    .phone-number {
      font-size: 16px;
    }

    .btn {
      padding: 10px 28px;
      font-size: 14px;
    }
  }

  .phone-number {
    font-size: 16px;
  }

  .btn {
    padding: 10px 28px;
    font-size: 14px;
  }
}

/* ===================================
   FIXED RESPONSIVE LOCATION + HEADER
=================================== */

/* Tablets (≤ 768px) */
@media (max-width: 768px) {
  /* Location Bar */
  .location-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px; /* space between items */
  }

  .location-item {
    flex: 1 1 30%; /* 3 items per row */
    justify-content: center;
    font-size: 12px;
    padding: 4px 6px;
    text-align: center;
  }

  .location-item a {
    font-size: 12px;
  }

  /* Top Bar */
  .top-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .logo img {
    height: 60px;
    width: auto;
  }

  .top-right {
    flex-direction: column;
    gap: 10px;
  }

  .phone-number {
    font-size: 18px;
  }

  /* Navbar toggle */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: var(--shadow-medium);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .top-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }
}

/* Mobiles (≤ 480px) */
@media (max-width: 480px) {
  /* Location bar */
  .location-item {
    flex: 1 1 45%; /* 2 items per row */
    font-size: 11px;
  }

  .location-container {
    gap: 8px 10px;
  }

  .location-item a {
    font-size: 11px;
  }

  /* Logo */
  .logo img {
    height: 50px;
    width: auto;
  }

  .phone-number {
    font-size: 16px;
  }

  .btn {
    padding: 8px 22px;
    font-size: 14px;
  }
}

/* Hero Section - Responsive Fixed */
.hero {
  background: linear-gradient(135deg, #87ceeb 0%, #53b0e0 100%);
  padding: 60px 0 0;
  position: relative;
}

.hero-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.hero-content {
  padding-left: 50px;
  flex: 1;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 400;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 24px;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 80px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-large {
  font-size: 18px;
  padding: 15px 30px;
}

.reviews-info {
  text-align: left;
}

.reviews-info span {
  font-weight: bold;
  color: #0f172a;
  display: block;
  margin-bottom: 10px;
}

.review-platforms {
  margin-top: 20px;
  opacity: 0.7;
  border: none;
}

.review-platforms img {
  height: 28px;
}

.hero-image {
  margin: -20px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 10% 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
  .hero-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .hero-image img {
    max-width: 400px;
    height: 250px;
    border-radius: 12px;
  }
}

.offer-banner {
  background: var(--primary-orange);
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-container {
    gap: 60px;
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-image img {
    max-width: 500px;
    height: 350px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 0;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
  }

  .hero-image {
    order: 1;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }

  .hero-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 25px;
  }

  .reviews-info {
    text-align: center;
  }

  .offer-banner {
    font-size: 12px;
    padding: 10px;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .hero {
    padding: 30px 0 0;
  }

  .hero-container {
    gap: 30px;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-image img {
    max-width: 400px;
    height: 250px;
    border-radius: 20px;
  }

  .review-platforms img {
    height: 24px;
  }

  .offer-banner {
    font-size: 11px;
    padding: 8px;
    line-height: 1.3;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-image img {
    max-width: 300px;
    height: 220px;
  }

  .hero-buttons .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(83, 176, 224, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(243, 156, 18, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.services-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.services-text h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

.services-title {
  text-align: center;
}

.highlight {
  color: var(--primary-blue);
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--dark-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-text p {
  margin-bottom: 25px;
  font-size: 18px;
  color: var(--text-light);
  font-weight: 500;
}

.text-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.text-link:hover {
  color: var(--dark-blue);
  border-bottom-color: var(--primary-blue);
}

.services-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.services-image img {
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  margin-top: 20px;
}

.services-image:hover img {
  transform: scale(1.05);
}

.image-badges {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.badge:hover {
  transform: scale(1.05);
}

.badge.eco-friendly {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
}

/* Hero Section Alternative (for other pages) */
.hero-section {
  background: var(--gradient-primary);
  color: white;
  padding: 80px 0;
  margin-bottom: 60px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-card i {
  font-size: 48px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Content Sections */
.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-section p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* Quote Popup Modal */
.quote-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.quote-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.quote-modal-content {
  background: rgb(255, 255, 255);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  width: 90%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  scrollbar-width: none;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.quote-modal-header {
  background: var(--gradient-primary);
  color: white;
  padding: 25px;
  text-align: center;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  position: relative;
}

.quote-modal-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.quote-modal-header p {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.quote-modal-body {
  padding: 30px 25px;
}

.quote-form .form-group {
  margin-bottom: 20px;
}

.quote-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  background: white;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(83, 176, 224, 0.1);
}

.quote-form textarea {
  height: 100px;
  resize: vertical;
}

.service-checkboxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: #f8fafc;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.checkbox-item:hover {
  background: #e8f4fd;
  border-color: var(--primary-blue);
}

.checkbox-item input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--primary-blue);
}

.checkbox-item label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
}

.discount-notice {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: var(--border-radius-sm);
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.discount-notice p {
  margin: 0;
  font-weight: 600;
  color: #92400e;
  font-size: 14px;
}

.quote-submit-btn {
  width: 100%;
  background: var(--gradient-secondary);
  color: white;
  border: none;
  padding: 15px;
  border-radius: var(--border-radius-sm);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ================================
   BENEFITS SECTION
   ================================ */
.benefits-section {
  padding: 100px 0;
  background: rgb(255, 255, 255);
  position: relative;
}

.benefits-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.benefit-card {
  background: white;
  padding: 50px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(83, 176, 224, 0.1);
  position: relative;
  overflow: hidden;
  width: 260px;
  height: 600px;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.benefit-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.4;
  font-weight: 650;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}

.highlight-card {
  background: var(--gradient-primary);
  color: white;
  text-align: left;
  border: none;
  width: 450px;
  height: 650px;
  text-align: center;
  padding-top: 100px;
}

.highlight-card::before {
  background: rgba(255, 255, 255, 0.3);
}

.highlight-card h3 {
  color: white;
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 15px;
  font-size: 15px;
}

.benefits-list i {
  color: white;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.benefits-cta {
  text-align: center;
}

/* ================================
   PROCESS SECTION
   ================================ */
.process-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: var(--text-dark);
  font-weight: 700;
}

.process-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: flex-start;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: var(--transition);
  padding: 25px;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow-light);
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  background: var(--gradient-primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-light);
}

.step-content h4 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-weight: 600;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 15px;
}

.process-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 30px;
  height: fit-content;
}

.process-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.process-images img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
  filter: brightness(0.5);
}

.process-images img:nth-child(1) {
  grid-column: 1 / -1;
}
.process-images img:nth-child(4) {
  grid-column: 1 / -1;
}
.process-images img:nth-child(7) {
  grid-column: 1 / -1;
}

.process-cta {
  text-align: center;
  margin-top: 60px;
}

/* ================================
   WHAT DO OUR SECTION
   ================================ */
.carpet-services {
  width: 100%;
  background: white;
  padding: 40px 0;
  margin: 0;
}

.header-section {
  text-align: left;
  margin: 0 auto 40px;
  padding: 20px;
  background: #eff8fe;
  border-radius: 10px;
  max-width: 1200px;
  width: calc(100% - 40px);
}

.blue-heading {
  color: #4a9eff;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  padding-left: 150px;
}

.black-heading {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  padding-left: 100px;
}

.trustpilot-text {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  margin-bottom: 0;
  padding-left: 50px;
}

.main-content-what {
  background: #eff8fe;
  padding: 30px;
  border-radius: 10px;
  width: calc(100% - 40px);
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 1200px;
}

.main-title {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}

.service-section {
  margin-bottom: 30px;
}

.service-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.service-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  margin-bottom: 15px;
}

.additional-info p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
}

.services-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.services-list li {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.4;
}

/* ================================
   UPHOLSTERY SECTION
   ================================ */
.upholstery-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.upholstery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.upholstery-text h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

.upholstery-text p {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.upholstery-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-placeholder {
  width: 100%;
  max-width: 500px;
  height: 350px;
  background: rgb(212, 212, 212);
  border-radius: var(--border-radius);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.video-placeholder:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.play-button:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
  font-size: 28px;
  color: #bbbbbb;
  margin-left: 4px;
}

.video-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: rgb(0, 0, 0);
  z-index: 1;
}

.video-overlay p {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.video-overlay span {
  font-size: 14px;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ================================
   PROFESSIONAL VS RUG DOCTOR SECTION
   ================================ */
.vs-rugdoctor-section {
  padding: 100px 0;
  background: var(--bg-lighter);
  position: relative;
}

.vs-header {
  text-align: center;
  margin-bottom: 60px;
}

.vs-header h2 {
  font-size: 38px;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0;
  font-weight: 700;
}

.vs-benefits {
  margin-bottom: 80px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 25px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border-left: 4px solid var(--primary-blue);
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-medium);
}

.benefit-icon {
  color: var(--primary-blue);
  font-size: 32px;
  margin-top: 4px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.benefit-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

.customer-testimonials {
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.customer-testimonials h3 {
  text-align: center;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 40px;
  font-weight: 600;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(83, 176, 224, 0.1);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 60px;
  color: var(--primary-blue);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  font-style: italic;
}

.vs-cta {
  text-align: center;
}

/* ================================
   WHY CHOOSE SECTION
   ================================ */
.why-choose-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 80px;
  align-items: flex-start;
}

.why-choose-text h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

.why-choose-text p {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.why-choose-text p:last-child {
  margin-bottom: 0;
}

.why-choose-map img {
  height: 370px;
}
.why-choose-map {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
  padding: 100px 0;
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-header h2 {
  font-size: 42px;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(83, 176, 224, 0.1);
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: var(--transition);
  position: relative;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: var(--transition);
}

.faq-item.active .faq-question::before,
.faq-question:hover::before {
  transform: scaleY(1);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-blue);
  line-height: 1.4;
  flex: 1;
  margin-right: 20px;
}

.faq-icon {
  font-size: 16px;
  color: var(--primary-blue);
  transition: var(--transition);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  padding: 0 0 25px 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 25px 30px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--bg-lighter);
  color: rgb(0, 0, 0);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 50px 50px, 30px 30px;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  max-width: 250px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.address-info p,
.contact-info p {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgb(0, 0, 0);
  line-height: 1.5;
}

.contact-info a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: rgb(0, 0, 0);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: #f39c12;
  transform: translateX(5px);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgb(0, 0, 0);
}

.footer-certification img {
  max-width: 120px;
  height: auto;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-light);
}
/* ===================================
   PERFECT FOOTER MEDIA QUERIES
   =================================== */

/* Extra Large Desktop - 1920px+ */
@media (min-width: 1920px) {
  .footer {
    padding: 10px 0 10px;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr); 
    gap: 70px;
    margin-bottom: 50px;
  }

  .footer-logo img {
    height: 60px;
    max-width: 300px;
  }

  .footer-section h4 {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .address-info p,
  .contact-info p,
  .footer-links a,
  .hours-list li {
    font-size: 16px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .social-links {
    gap: 18px;
  }

  .footer-links li {
    margin-bottom: 15px;
  }

  .hours-list li {
    margin-bottom: 12px;
  }
}

/* Large Desktop - 1440px to 1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
  .footer {
    padding: 20px 0 10px;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
  }

  .footer-logo img {
    height: 55px;
    max-width: 280px;
  }

  .footer-section h4 {
    font-size: 19px;
    margin-bottom: 22px;
  }

  .address-info p,
  .contact-info p,
  .footer-links a,
  .hours-list li {
    font-size: 15px;
  }

  .social-icon {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .social-links {
    gap: 16px;
  }
}

/* Standard Desktop - 1200px to 1439px */
@media (min-width: 1200px) and (max-width: 1439px) {
  .footer {
    padding: 80px 0 40px;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 40px;
  }

  .footer-logo img {
    height: 50px;
    max-width: 250px;
  }

  .footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .social-links {
    gap: 15px;
  }
}

/* Laptop Large - 1024px to 1199px */
@media (min-width: 1024px) and (max-width: 1199px) {
  .footer {
    padding: 10px 0 10px;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 35px;
  }

  .footer-logo img {
    height: 45px;
    max-width: 220px;
  }

  .footer-section h4 {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .address-info p,
  .contact-info p,
  .footer-links a,
  .hours-list li {
    font-size: 13px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .social-links {
    gap: 12px;
    margin-top: 18px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .hours-list li {
    margin-bottom: 9px;
  }
}

/* Laptop Small - 992px to 1023px */
@media (min-width: 992px) and (max-width: 1023px) {
  .footer {
    padding: 15px 0 12px;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 32px;
  }

  .footer-logo img {
    height: 42px;
    max-width: 200px;
  }

  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .address-info p,
  .contact-info p,
  .footer-links a,
  .hours-list li {
    font-size: 12px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .social-links {
    gap: 10px;
  }
}

/* Tablet Large - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding: 10px 0 10px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    margin-bottom: 30px;
  }

  .footer-column:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-logo img {
    height: 40px;
    max-width: 180px;
  }

  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .address-info p,
  .contact-info p,
  .footer-links a,
  .hours-list li {
    font-size: 12px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .social-links {
    gap: 8px;
    margin-top: 15px;
  }

  .footer-links li {
    margin-bottom: 9px;
  }

  .hours-list li {
    margin-bottom: 8px;
  }
}

/* Mobile Large - 640px to 767px */
@media (min-width: 640px) and (max-width: 767px) {
  .footer {
    padding: 50px 0 25px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
    margin-bottom: 25px;
  }

  .footer-column:first-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-logo img {
    height: 38px;
    max-width: 160px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .address-info p,
  .contact-info p {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .footer-links a,
  .hours-list li {
    font-size: 11px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .social-links {
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .hours-list li {
    margin-bottom: 7px;
    flex-direction: column;
    text-align: center;
    gap: 2px;
  }

  .hours-list li span:last-child {
    font-weight: 600;
  }
}

/* Mobile Medium - 480px to 639px */
@media (min-width: 480px) and (max-width: 639px) {
  .footer {
    padding: 45px 0 22px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 22px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-logo img {
    height: 35px;
    max-width: 150px;
  }

  .footer-section h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .address-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .address-info p {
    padding: 4px 8px;
    border-radius: 12px;
    margin-bottom: 4px;
    font-size: 10px;
  }

  .contact-info p {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .footer-links a {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    display: inline-block;
  }

  .social-icon {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .social-links {
    gap: 6px;
    justify-content: center;
  }

  .hours-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    max-width: 300px;
    margin: 0 auto;
  }

  .hours-list li {
    padding: 6px;
    border-radius: 8px;
    flex-direction: column;
    font-size: 10px;
    margin-bottom: 0;
  }
}

/* Mobile Small - 375px to 479px */
@media (min-width: 375px) and (max-width: 479px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    gap: 25px;
    margin-bottom: 20px;
  }

  .footer-logo img {
    height: 32px;
    max-width: 140px;
  }

  .footer-section h4 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .address-info p {
    font-size: 9px;
    padding: 3px 6px;
  }

  .contact-info p {
    font-size: 10px;
  }

  .footer-links a {
    font-size: 9px;
    padding: 5px 10px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .hours-list li {
    font-size: 9px;
    padding: 5px;
  }
}

/* Mobile Extra Small - 320px to 374px */
@media (min-width: 320px) and (max-width: 374px) {
  .footer {
    padding: 35px 0 18px;
  }

  .footer-content {
    gap: 20px;
    margin-bottom: 18px;
  }

  .footer-logo img {
    height: 30px;
    max-width: 120px;
  }

  .footer-section h4 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .address-info {
    gap: 6px;
  }

  .address-info p {
    font-size: 8px;
    padding: 2px 5px;
  }

  .contact-info p {
    font-size: 9px;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-links a {
    font-size: 8px;
    padding: 4px 8px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .social-links {
    gap: 5px;
  }

  .hours-list {
    grid-template-columns: 1fr;
    gap: 4px;
    max-width: 250px;
  }

  .hours-list li {
    font-size: 8px;
    padding: 4px;
  }
}

/* Mobile Ultra Small - Below 320px */
@media (max-width: 319px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    gap: 15px;
    margin-bottom: 15px;
  }

  .footer-logo img {
    height: 25px;
    max-width: 100px;
  }

  .footer-section h4 {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .address-info p {
    font-size: 7px;
    padding: 2px 4px;
  }

  .contact-info p {
    font-size: 8px;
  }

  .footer-links a {
    font-size: 7px;
    padding: 3px 6px;
  }

  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .hours-list li {
    font-size: 7px;
    padding: 3px;
  }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) and (max-width: 899px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 15px;
  }

  .footer-column:first-child {
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }

  .footer-logo img {
    height: 25px;
  }

  .footer-section h4 {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .address-info,
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .address-info p,
  .contact-info p,
  .footer-links a {
    font-size: 9px;
  }

  .social-links {
    margin-top: 5px;
  }

  .social-icon {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .hours-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .hours-list li {
    font-size: 8px;
    padding: 2px;
    flex-direction: row;
    justify-content: space-between;
  }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .footer-logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .social-icon,
  .footer-links a {
    transition: none;
  }

  .social-icon:hover,
  .footer-links a:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .footer {
    padding: 20px 0;
  }

  .footer::before {
    display: none;
  }

  .social-links {
    display: none;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-section h4 {
    font-size: 12px;
  }

  .address-info p,
  .contact-info p,
  .footer-links a,
  .hours-list li {
    font-size: 10px;
  }

  .footer-links a {
    padding: 0;
  }
}

/* ================================
   NEAR ME SECTION
   ================================ */
.near-me-section {
  padding: 100px 0;
  background: var(--bg-lighter);
  position: relative;
}

.near-me-header {
  text-align: center;
}

.near-me-header h2 {
  font-size: 42px;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.location-group {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border-top: 4px solid var(--primary-blue);
}

.location-group:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.location-group h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--bg-light);
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 15px;
  padding: 10px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.location-list li:hover {
  background: var(--bg-light);
  transform: translateX(5px);
}

.location-list i {
  color: var(--primary-blue);
  font-size: 14px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(83, 176, 224, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-link {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.location-link:hover {
  color: var(--primary-blue);
}

/* ================================
   ABOUT SECTION
   ================================ */
.About-hero-section {
  background: #eff8fe;
  color: white;
  padding: 80px 0;
  margin-bottom: 60px;
  font-size: 32px;
}

.About-title {
  font-weight: 800;
}

.About-container {
  width: 80%;
  margin: 0 auto;
}

.About-content {
  font-size: 24px;
  line-height: 1.2;
  color: black;
  text-align: center;
  font-weight: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.About-container h1 {
  text-align: center;
  font-size: 40px;
}
.About-content img {
  margin-right: -90px ;
}
/* ================================
   ABOUT SECTION - MEDIA QUERIES
================================ */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .About-container {
    width: 90%;
  }

  .About-content {
    font-size: 20px;
    gap: 30px;
  }

  .About-container h1 {
    font-size: 32px;
  }

  .About-content img {
    width: 400px;
    margin-right: 0;
  }
}

/* Tablets & Mobiles (≤ 768px) */
@media (max-width: 768px) {
  .About-hero-section {
    padding: 60px 0;
    font-size: 24px;
  }

  .About-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .About-content img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .About-container h1 {
    font-size: 28px;
    margin-left: 0 !important;
  }
}

/* Small Mobiles (≤ 480px) */
@media (max-width: 480px) {
  .About-hero-section {
    padding: 40px 0;
    font-size: 20px;
  }

  .About-container {
    width: 95%;
  }

  .About-content {
    font-size: 18px;
    gap: 15px;
  }

  .About-content img {
    max-width: 280px;
    margin: 0 auto;
  }

  .About-container h1 {
    font-size: 24px;
    margin-top: 25px;
  }
}

/* ================================
   PIC SECTION
   ================================ */
.pic-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.pic-section {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-height: 500px;
}

.image-container {
  flex: 1;
  position: relative;
  height: 500px;
  overflow: hidden;
  text-align: center;
  padding-top: 20px;
}

.team-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 93%;
  height: 93%;
  object-fit: cover;
  object-position: center;
  z-index: 10;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}

.blue-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 50px;
  background: linear-gradient(135deg, #4a90e2, #357abd);
}

.blue-accent-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 50px;
  background: linear-gradient(135deg, #4a90e2, #357abd);
}

.pic-content {
  flex: 1;
  padding: 40px;
}

.pic-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.1;
}

.pic-highlight {
  color: #4a90e2;
}

.pic-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.pic-content p:first-of-type {
  font-weight: 500;
  color: #333;
}

/* ================================
   STRAINS SECTION
   ================================ */
.strains-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.strains-header {
  text-align: center;
  margin-bottom: 50px;
}

.strains-header h1 {
  font-size: 2.8rem;
  font-weight: 400;
  color: #333;
  line-height: 1.2;
}

.strains-highlight {
  color: #1a1a1a;
  font-weight: 700;
}

.strains-content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.strains-image-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.strains-image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.strains-text-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.strains-check-icon {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 30px;
  height: 30px;
  background: #4299e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.strains-check-icon::before {
  content: "✓";
}

.strains-text-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
}

.strains-bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.strains-bottom-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.strains-bottom-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.strains-bottom-text {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.strains-bottom-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 25px;
}

.book-now-btn {
  background: linear-gradient(135deg, #ff9500, #ff7b00);
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.book-now-btn:hover {
  background: linear-gradient(135deg, #ff7b00, #e66500);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 149, 0, 0.4);
}

/* ================================
   TEST SECTION
   ================================ */
.test-container {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

.test-header {
  text-align: center;
  margin-bottom: 80px;
}

.test-header h1 {
  font-size: 2.8rem;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.3;
}

.test-header .highlight {
  color: var(--primary-blue);
}

.icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon {
  width: 40px;
  height: 40px;
  stroke: #4a90e2;
  stroke-width: 2;
  fill: none;
}

.service-item {
  text-align: center;
  padding: 20px;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  margin: 0;
}

/* ================================
   TESTING SECTION
   ================================ */
.testing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.testing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.testing-header h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.3;
}

.testing-highlight {
  color: #2c5282;
  font-weight: 600;
}

.testing-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.testing-service-card {
  background: white;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.testing-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.check-icon {
  width: 32px;
  height: 32px;
  background: #4299e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(66, 153, 225, 0.3);
}

.check-icon::before {
  content: "✓";
}

.testing-service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  margin: 0;
}

.testing-service-title.blue {
  color: #4299e1;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .location-container {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .top-container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-list {
    gap: 25px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .services-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .upholstery-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .highlight-card {
    width: 100%;
    max-width: 450px;
    height: auto;
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-heavy);
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
  }

  .nav-menu.show {
    display: block;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav-link {
    padding: 15px 0;
    font-size: 16px;
    border-radius: var(--border-radius-sm);
  }

  .nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
  }

  .nav-link::after {
    display: none;
  }

  .nav-container {
    height: auto;
    padding: 20px;
  }


  .hero-content h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pic-section {
    flex-direction: column;
    gap: 0;
  }

  .image-container {
    height: 300px;
    width: 100%;
  }

  .pic-content {
    padding: 30px 20px;
  }

  .pic-content h1 {
    font-size: 2.2rem;
  }

  .pic-content p {
    font-size: 1rem;
  }

  .strains-content-section,
  .strains-bottom-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strains-header h1 {
    font-size: 2.2rem;
  }

  .strains-text-card,
  .strains-bottom-text {
    padding: 25px;
  }

  .strains-image-card img,
  .strains-bottom-image img {
    height: 200px;
  }

  .testing-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .testing-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .testing-header h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .quote-modal-content {
    width: 95%;
    margin: 20px;
  }

  .pic-content h1 {
    font-size: 1.8rem;
  }

  .strains-header h1 {
    font-size: 1.8rem;
  }

  .strains-text-card,
  .strains-bottom-text {
    padding: 20px;
  }

  .strains-text-card p,
  .strains-bottom-text p {
    font-size: 0.9rem;
  }

  .testing-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }

  .testing-header h1 {
    font-size: 1.6rem;
  }

  .testing-service-card {
    padding: 30px 20px;
  }

  .testing-service-title {
    font-size: 1rem;
  }

  .About-container {
    width: 90%;
  }

  .About-content {
    font-size: 18px;
  }

  .About-container h1 {
    font-size: 24px;
  }
}

/* And Much More.. */

.much-container {
  max-width: 1200px;
  padding: 0 20px;
}

/* Hero Section */
.much-hero {
  padding: 4rem 0;
  text-align: center;
}

.much-hero-content {
  margin-bottom: 3rem;
}

.much-hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 450px;
  max-width: 550px;
}

.much-hero-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.much-hero-image:hover {
  transform: translateY(-5px);
}

.much-hero-image.much-large {
  grid-row: span 2;
}

.much-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services Section */
.much-services {
  background: #eff8fe;
  padding: 4rem 0;
  margin: 2rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.much-services h2 {
  text-align: center;
  font-size: 35px;
  font-weight: 200;
  color: #000000;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.much-services h2 span {
  color: #53b0e0;
  font-weight: 900;
}

.much-services-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
}

.much-service-card {
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  width: 180px;
  flex-shrink: 0;
}

.much-service-icon {
  width: 60px;
  height: 60px;
  background: #53b0e0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
}

.much-service-content h3 {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.2rem;
  text-transform: uppercase;
}

.much-service-content p {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .much-services {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .much-services h2 {
    text-align: center;
  }

  .much-hero-images {
    height: 300px;
  }

  .much-services-grid {
    justify-content: center;
  }

  .much-service-card {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .much-hero-images {
    grid-template-columns: 1fr;
    height: 400px;
  }

  .much-hero-image.much-large {
    grid-row: span 1;
  }

  .much-services-grid {
    flex-direction: column;
    align-items: center;
  }

  .much-service-card {
    width: 200px;
  }
} /* ===== EQUAL WIDTH MOBILE CARDS - FINAL FIX ===== */

@media (max-width: 480px) {
  /* Container must be flex with proper wrapping */
  .much-services-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    max-width: 100% !important;
    gap: 12px !important;
    padding: 0 !important;
    /* Remove any conflicting properties */
    flex-direction: row !important;
    align-items: stretch !important;
  }

  /* Cards must have equal width */
  .much-service-card {
    /* Exact 50% width minus gap */
    width: calc(50% - 6px) !important;
    flex-basis: calc(50% - 6px) !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;

    /* Card layout */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;

    /* Spacing */
    padding: 1rem 0.5rem !important;
    margin: 0 !important;
    gap: 0.8rem !important;

    /* Visual */
    border-radius: 15px !important;
    background: white !important;
    box-sizing: border-box !important;
    min-height: 120px !important;
  }

  /* Icon styling */
  .much-service-icon {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.4rem !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  /* Content styling */
  .much-service-content {
    text-align: center !important;
    width: 100% !important;
  }

  .much-service-content h3 {
    font-size: 0.85rem !important;
    line-height: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
    word-wrap: break-word !important;
  }

  .much-service-content p {
    font-size: 0.75rem !important;
    text-align: center !important;
    margin: 0 !important;
    display: none !important; /* Hide to save space */
  }
}

/* Even smaller screens */
@media (max-width: 375px) {
  .much-services-grid {
    gap: 8px !important;
  }

  .much-service-card {
    width: calc(50% - 4px) !important;
    flex-basis: calc(50% - 4px) !important;
    padding: 0.8rem 0.4rem !important;
    min-height: 110px !important;
  }

  .much-service-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }

  .much-service-content h3 {
    font-size: 0.8rem !important;
  }
}

/* Alternative grid approach if flex doesn't work */ /* ===== EQUAL WIDTH MOBILE CARDS - FINAL FIX ===== */

@media (max-width: 480px) {
  /* Container must be flex with proper wrapping */
  .much-services-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    max-width: 100% !important;
    gap: 12px !important;
    padding: 0 !important;
    /* Remove any conflicting properties */
    flex-direction: row !important;
    align-items: stretch !important;
  }

  /* Cards must have equal width */
  .much-service-card {
    /* Exact 50% width minus gap */
    width: calc(50% - 6px) !important;
    flex-basis: calc(50% - 6px) !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;

    /* Card layout */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;

    /* Spacing */
    padding: 1rem 0.5rem !important;
    margin: 0 !important;
    gap: 0.8rem !important;

    /* Visual */
    border-radius: 15px !important;
    background: white !important;
    box-sizing: border-box !important;
    min-height: 120px !important;
  }

  /* Icon styling */
  .much-service-icon {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.4rem !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  /* Content styling */
  .much-service-content {
    text-align: center !important;
    width: 100% !important;
  }

  .much-service-content h3 {
    font-size: 0.85rem !important;
    line-height: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
    word-wrap: break-word !important;
  }

  .much-service-content p {
    font-size: 0.75rem !important;
    text-align: center !important;
    margin: 0 !important;
    display: none !important; /* Hide to save space */
  }
}

/* Even smaller screens */
@media (max-width: 375px) {
  .much-services-grid {
    gap: 8px !important;
  }

  .much-service-card {
    width: calc(50% - 4px) !important;
    flex-basis: calc(50% - 4px) !important;
    padding: 0.8rem 0.4rem !important;
    min-height: 110px !important;
  }

  .much-service-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }

  .much-service-content h3 {
    font-size: 0.8rem !important;
  }
}

/* Alternative grid approach if flex doesn't work */
@media (max-width: 480px) {
  .much-services-grid.use-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-gap: 12px !important;
    justify-items: stretch !important;
    align-items: stretch !important;
  }

  .much-services-grid.use-grid .much-service-card {
    width: 100% !important;
    flex-basis: auto !important;
  }
}
@media (max-width: 480px) {
  .much-services-grid.use-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-gap: 12px !important;
    justify-items: stretch !important;
    align-items: stretch !important;
  }

  .much-services-grid.use-grid .much-service-card {
    width: 100% !important;
    flex-basis: auto !important;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.much-service-card {
  margin-left: 20px;
  animation: fadeInUp 0.6s ease forwards;
}

.landlord-container {
  max-width: 1000px;
  margin: 0 auto;
}

.landlord-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.landlord-faq-card {
  background: #e8f4fd;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landlord-faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.landlord-faq-question {
  font-size: 28px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 25px;
  line-height: 1.3;
}

.landlord-faq-answer {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  font-weight: 400;
}

.landlord-contact-section {
  text-align: center;
}

.landlord-contact-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.landlord-contact-btn:hover {
  background: linear-gradient(135deg, #f97316, #ea580c);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.4);
}

.landlord-contact-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .landlord-faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .landlord-faq-card {
    padding: 30px 25px;
  }

  .landlord-faq-question {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .landlord-faq-answer {
    font-size: 15px;
  }

  .landlord-contact-btn {
    padding: 16px 40px;
    font-size: 16px;
  }
}

.deep-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.deep-header {
  text-align: center;
  margin-bottom: 60px;
}

.deep-header h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.deep-header h1 .deep-highlight {
  font-weight: 700;
  color: #34495e;
}

.deep-header p {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.deep-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.deep-left-column {
  flex: 1;
}

.deep-right-column {
  flex: 1;
  display: flex;
  justify-content: center;
}

.deep-section-title {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 600;
}

.deep-reason {
  padding-bottom: 30px;
}

.deep-reason:last-child {
  margin-bottom: 0;
}

.deep-reason h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.deep-reason p {
  color: #7f8c8d;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.deep-read-more {
  color: #f39c12;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.deep-read-more:hover {
  color: #e67e22;
}

.deep-carpet-image {
  max-width: 100%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .deep-container {
    padding: 20px 15px;
  }

  .deep-header h1 {
    font-size: 2.5rem;
  }

  .deep-header p {
    font-size: 1rem;
  }

  .deep-content {
    flex-direction: column;
    gap: 30px;
  }

  .deep-section-title {
    font-size: 1.5rem;
  }

  .deep-reason {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .deep-reason h3 {
    font-size: 1.2rem;
  }
}

.methodology-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
}

.methodology-content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.methodology-text-content {
  flex: 1;
  max-width: 450px;
}

.methodology-title {
  font-size: 3rem;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 40px;
  line-height: 1.2;
}

.methodology-title .methodology-highlight {
  font-weight: 700;
  color: #34495e;
}

.methodology-description {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.8;
}

.methodology-image-content {
  flex: 1;
  position: relative;
}

.methodology-main-image {
  width: 100%;
  max-width: 600px;
  height: 350px;
  object-fit: cover;
  border-radius: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.methodology-decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  opacity: 0.8;
}

.methodology-circle-1 {
  width: 120px;
  height: 120px;
  top: -30px;
  right: -30px;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.methodology-circle-2 {
  width: 80px;
  height: 80px;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.methodology-circle-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: -80px;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .methodology-container {
    padding: 40px 15px;
  }

  .methodology-content-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .methodology-title {
    font-size: 2.2rem;
  }

  .methodology-description {
    font-size: 1rem;
  }

  .methodology-main-image {
    height: 250px;
    border-radius: 30px;
  }

  .methodology-circle-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -20px;
  }

  .methodology-circle-2 {
    width: 60px;
    height: 60px;
    bottom: -15px;
    left: -15px;
  }

  .methodology-circle-3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .methodology-title {
    font-size: 1.8rem;
  }

  .methodology-main-image {
    height: 200px;
    border-radius: 25px;
  }
}

.guaranteed-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
}

.guaranteed-benefits-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  position: relative;
}

.guaranteed-benefits-text-content {
  flex: 1;
  max-width: 500px;
}

.guaranteed-benefits-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 40px;
  line-height: 1.3;
}

.guaranteed-benefits-list {
  list-style: none;
  padding: 0;
}

.guaranteed-benefits-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
}

.guaranteed-benefits-icon {
  width: 24px;
  height: 24px;
  background-color: #4a90e2;
  border-radius: 50%;
  margin-right: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guaranteed-benefits-icon::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.guaranteed-benefits-item-text {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
}

.guaranteed-benefits-image-content {
  flex: 1;
  position: relative;
}

.guaranteed-benefits-image-container {
  position: relative;
  display: inline-block;
}

.guaranteed-benefits-main-image {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.guaranteed-benefits-secondary-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: -30px;
  right: -40px;
  border: 5px solid white;
}

.guaranteed-benefits-decorative-square {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  border-radius: 8px;
}

.guaranteed-benefits-square-1 {
  top: -20px;
  right: 50px;
  transform: rotate(15deg);
  opacity: 0.8;
}

.guaranteed-benefits-square-2 {
  bottom: 80px;
  left: -30px;
  transform: rotate(-10deg);
  opacity: 0.6;
  width: 60px;
  height: 60px;
}

@media (max-width: 768px) {
  .guaranteed-benefits-container {
    padding: 40px 15px;
  }

  .guaranteed-benefits-content-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .guaranteed-benefits-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .guaranteed-benefits-main-image {
    width: 100%;
    max-width: 350px;
    height: 250px;
  }

  .guaranteed-benefits-secondary-image {
    width: 150px;
    height: 110px;
    bottom: -20px;
    right: -20px;
  }

  .guaranteed-benefits-image-content {
    display: flex;
    justify-content: center;
  }

  .guaranteed-benefits-square-1 {
    width: 60px;
    height: 60px;
    top: -15px;
    right: 30px;
  }

  .guaranteed-benefits-square-2 {
    width: 40px;
    height: 40px;
    bottom: 60px;
    left: -20px;
  }
}

@media (max-width: 480px) {
  .guaranteed-benefits-title {
    font-size: 1.5rem;
  }

  .guaranteed-benefits-item-text {
    font-size: 0.95rem;
  }

  .guaranteed-benefits-main-image {
    height: 200px;
  }

  .guaranteed-benefits-secondary-image {
    width: 120px;
    height: 90px;
  }
}

.discounted-displayed-prices-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.discounted-displayed-prices-header {
  text-align: center;
  margin-bottom: 40px;
}

.discounted-displayed-prices-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #53b0e1;
  margin-bottom: 20px;
}

.discounted-displayed-prices-title .discounted-displayed-prices-highlight {
  font-weight: 700;
  color: #53b0e1;
}

.discounted-displayed-prices-note {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.discounted-displayed-prices-note .discounted-displayed-prices-price-highlight {
  color: #53b0e1;
  font-weight: 600;
}

.discounted-displayed-prices-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
}

.discounted-displayed-prices-table-section {
  flex: 2;
}

.discounted-displayed-prices-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: white;
}

.discounted-displayed-prices-table-header {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
}

.discounted-displayed-prices-table-header th {
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
}

.discounted-displayed-prices-table-body tr {
  border-bottom: 1px solid #e9ecef;
}

.discounted-displayed-prices-table-body tr:last-child {
  border-bottom: none;
}

.discounted-displayed-prices-table-body tr:nth-child(even) {
  background-color: #f8f9fa;
}

.discounted-displayed-prices-table-body td {
  padding: 18px 25px;
  font-size: 1rem;
}

.discounted-displayed-prices-service-name {
  color: #2c3e50;
  font-weight: 500;
}

.discounted-displayed-prices-price {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.1rem;
}

.discounted-displayed-prices-disclaimer {
  text-align: center;
  margin-top: 25px;
  font-size: 0.9rem;
  color: #95a5a6;
  font-style: italic;
}

.discounted-displayed-prices-contact-section {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.discounted-displayed-prices-contact-title {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.discounted-displayed-prices-contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.discounted-displayed-prices-phone-icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.discounted-displayed-prices-phone-icon::after {
  content: "📞";
  font-size: 18px;
}

.discounted-displayed-prices-contact-details {
  display: flex;
  flex-direction: column;
}

.discounted-displayed-prices-call-label {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 3px;
}

.discounted-displayed-prices-phone-number {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 600;
}

@media (max-width: 768px) {
  .discounted-displayed-prices-container {
    padding: 40px 15px;
  }

  .discounted-displayed-prices-title {
    font-size: 2rem;
  }

  .discounted-displayed-prices-content {
    flex-direction: column;
    gap: 40px;
  }

  .discounted-displayed-prices-table-header th,
  .discounted-displayed-prices-table-body td {
    padding: 15px 20px;
  }

  .discounted-displayed-prices-table-header th {
    font-size: 1rem;
  }

  .discounted-displayed-prices-contact-section {
    order: -1;
  }
}

@media (max-width: 480px) {
  .discounted-displayed-prices-title {
    font-size: 1.7rem;
  }

  .discounted-displayed-prices-table-header th,
  .discounted-displayed-prices-table-body td {
    padding: 12px 15px;
  }

  .discounted-displayed-prices-contact-section {
    padding: 25px 20px;
  }
}

.extraction-cleaning-methods-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
}

.extraction-cleaning-methods-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.extraction-cleaning-methods-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 25px;
}

.extraction-cleaning-methods-title .extraction-cleaning-methods-highlight {
  font-weight: 700;
  color: #34495e;
}

.extraction-cleaning-methods-description {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.extraction-cleaning-methods-decorative-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  border-radius: 50%;
  opacity: 0.8;
}

.extraction-cleaning-methods-circle-top {
  top: -20px;
  right: 100px;
}

.extraction-cleaning-methods-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.extraction-cleaning-methods-image-section {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.extraction-cleaning-methods-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.extraction-cleaning-methods-ask-ai-button {
  position: absolute;
  top: 20px;
  left: 30px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: #666;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.extraction-cleaning-methods-ask-ai-button::before {
  content: "✨";
  font-size: 14px;
}

.extraction-cleaning-methods-circle-left {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  border-radius: 50%;
  top: 50%;
  left: -30px;
  opacity: 0.7;
}

.extraction-cleaning-methods-text-section {
  text-align: center;
  max-width: 800px;
}

.extraction-cleaning-methods-section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.3;
}

.extraction-cleaning-methods-section-description {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.7;
  text-align: justify;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .extraction-cleaning-methods-container {
    padding: 40px 15px;
  }

  .extraction-cleaning-methods-title {
    font-size: 2.2rem;
  }

  .extraction-cleaning-methods-description {
    font-size: 1rem;
  }

  .extraction-cleaning-methods-circle-top {
    width: 60px;
    height: 60px;
    right: 20px;
    top: -15px;
  }

  .extraction-cleaning-methods-main-image {
    height: 300px;
    border-radius: 30px;
  }

  .extraction-cleaning-methods-ask-ai-button {
    top: 15px;
    left: 20px;
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .extraction-cleaning-methods-circle-left {
    width: 40px;
    height: 40px;
    left: -20px;
  }

  .extraction-cleaning-methods-section-title {
    font-size: 1.8rem;
  }

  .extraction-cleaning-methods-section-description {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .extraction-cleaning-methods-title {
    font-size: 1.9rem;
  }

  .extraction-cleaning-methods-main-image {
    height: 250px;
    border-radius: 25px;
  }

  .extraction-cleaning-methods-section-title {
    font-size: 1.6rem;
  }

  .extraction-cleaning-methods-section-description {
    font-size: 0.95rem;
  }
}

.furniture-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.furniture-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.furniture-services-card {
  background: #e8f4fd;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.furniture-services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.furniture-services-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.furniture-services-card-description {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.7;
}

.furniture-services-cta-section {
  text-align: center;
  margin-top: 40px;
}

.furniture-services-contact-button {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
  text-decoration: none;
  display: inline-block;
}

.furniture-services-contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(243, 156, 18, 0.4);
  background: linear-gradient(135deg, #e67e22, #d35400);
}

@media (max-width: 768px) {
  .furniture-services-container {
    padding: 40px 15px;
  }

  .furniture-services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .furniture-services-card {
    padding: 30px 25px;
  }

  .furniture-services-card-title {
    font-size: 1.3rem;
  }

  .furniture-services-card-description {
    font-size: 0.95rem;
  }

  .furniture-services-contact-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .furniture-services-card {
    padding: 25px 20px;
  }

  .furniture-services-card-title {
    font-size: 1.2rem;
  }

  .furniture-services-contact-button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

.business-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
}

.business-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.business-header-text {
  font-size: 24px;
  color: #666;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.business-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 50px;
  line-height: 1.2;
  background: linear-gradient(135deg, #2c3e50 0%, #4a6cf7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.business-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.business-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(74, 108, 247, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.business-item:hover {
  transform: translateX(5px);
  border-color: #4a6cf7;
  background: rgba(74, 108, 247, 0.05);
  box-shadow: 0 8px 25px rgba(74, 108, 247, 0.15);
}

.business-item:hover::before {
  left: 100%;
}

.business-checkmark {
  color: #4a6cf7;
  font-size: 20px;
  font-weight: bold;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.business-item:hover .business-checkmark {
  transform: scale(1.2);
  color: #667eea;
}

.business-name {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.business-item:hover .business-name {
  color: #4a6cf7;
}

@media (max-width: 768px) {
  .business-container {
    padding: 40px 20px;
  }

  .business-main-title {
    font-size: 36px;
  }

  .business-header-text {
    font-size: 20px;
  }

  .business-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .business-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .business-main-title {
    font-size: 28px;
  }

  .business-name {
    font-size: 16px;
  }
}

/* Subtle animation for the entire container */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.business-container {
  animation: fadeInUp 0.8s ease-out;
}

.professional-moth-treatment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
}

.professional-moth-treatment-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.professional-moth-treatment-title {
  font-size: 2.8rem;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 25px;
}

.professional-moth-treatment-title .professional-moth-treatment-highlight {
  font-weight: 700;
  color: #34495e;
}

.professional-moth-treatment-description {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.professional-moth-treatment-decorative-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  border-radius: 50%;
  opacity: 0.8;
  top: -20px;
  right: 150px;
}

.professional-moth-treatment-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
}

.professional-moth-treatment-left-section {
  flex: 1;
}

.professional-moth-treatment-right-section {
  flex: 1;
  position: relative;
}

.professional-moth-treatment-step {
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.professional-moth-treatment-step-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.professional-moth-treatment-step-icon::after {
  content: "✓";
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.professional-moth-treatment-step-content h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.professional-moth-treatment-step-content p {
  color: #7f8c8d;
  font-size: 1rem;
  line-height: 1.7;
}

.professional-moth-treatment-images {
  position: relative;
}

.professional-moth-treatment-main-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.professional-moth-treatment-secondary-image {
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -20px;
  right: -30px;
  border: 5px solid white;
}

.professional-moth-treatment-blue-accent {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  border-radius: 8px;
  bottom: 30px;
  left: -20px;
  transform: rotate(-15deg);
  opacity: 0.8;
}

.professional-moth-treatment-guarantee {
  margin-top: 50px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.professional-moth-treatment-guarantee h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.professional-moth-treatment-guarantee p {
  color: #7f8c8d;
  font-size: 1rem;
  line-height: 1.7;
}

.professional-moth-treatment-footer {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  text-align: center;
}

.professional-moth-treatment-footer p {
  color: #7f8c8d;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.professional-moth-treatment-link {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
}

.professional-moth-treatment-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .professional-moth-treatment-container {
    padding: 40px 15px;
  }

  .professional-moth-treatment-title {
    font-size: 2.2rem;
  }

  .professional-moth-treatment-decorative-circle {
    width: 60px;
    height: 60px;
    right: 20px;
    top: -15px;
  }

  .professional-moth-treatment-content {
    flex-direction: column;
    gap: 40px;
  }

  .professional-moth-treatment-step {
    margin-bottom: 30px;
  }

  .professional-moth-treatment-step-content h3 {
    font-size: 1.2rem;
  }

  .professional-moth-treatment-main-image {
    height: 200px;
  }

  .professional-moth-treatment-secondary-image {
    width: 180px;
    height: 150px;
    bottom: -15px;
    right: -20px;
  }

  .professional-moth-treatment-guarantee,
  .professional-moth-treatment-footer {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .professional-moth-treatment-title {
    font-size: 1.9rem;
  }

  .professional-moth-treatment-step-content h3 {
    font-size: 1.1rem;
  }

  .professional-moth-treatment-main-image {
    height: 180px;
  }

  .professional-moth-treatment-secondary-image {
    width: 150px;
    height: 120px;
  }
}

.portfolio-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #e8f4fd, #f0f8ff);
  border-radius: 20px;
}

.portfolio-left-section {
  flex: 1;
  max-width: 500px;
}

.portfolio-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 15px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.portfolio-title-highlight {
  font-weight: 700;
  color: #4a90e2;
  display: block;
}

.portfolio-description {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.7;
  margin-top: 40px;
}

.portfolio-right-section {
  flex: 1.2;
  position: relative;
}

.portfolio-video-container {
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 400px;
}

.portfolio-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

.portfolio-video-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.portfolio-menu-btn {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.portfolio-cta-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.portfolio-book-now-btn {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

.portfolio-book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(74, 144, 226, 0.5);
}

.portfolio-appointment-text {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  display: inline-block;
}

.portfolio-refresh-btn {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
}

@media (max-width: 768px) {
  .portfolio-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 15px;
  }

  .portfolio-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .portfolio-description {
    text-align: center;
    margin-top: 25px;
    font-size: 1rem;
  }

  .portfolio-video-container {
    height: 300px;
  }

  .portfolio-book-now-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .portfolio-appointment-text {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .portfolio-title {
    font-size: 2rem;
  }

  .portfolio-video-container {
    height: 250px;
  }

  .portfolio-book-now-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}
/* ------------------------ */

/* Replace the current gallery CSS with this improved version */
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  /* Remove the CSS columns approach */
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  /* Remove break-inside and display: inline-block */
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Remove masonry-like layout adjustments - not needed with CSS columns */

@media (max-width: 768px) {
  .gallery-grid {
    columns: 2;
    column-gap: 8px;
  }

  .gallery-container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
    column-gap: 0;
  }


  .gallery-overlay-text {
    font-size: 1rem;
    padding: 15px;
  }
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.reviews-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.reviews-left-section {
  flex: 1;
  max-width: 500px;
}

.reviews-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 30px;
  line-height: 1.2;
}

.reviews-title-highlight {
  font-weight: 700;
  color: #2c3e50;
}

.reviews-description {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.7;
}

.reviews-right-section {
  flex: 1;
  display: flex;
  justify-content: center;
}

.reviews-logos-container {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  width: 100%;
}

.reviews-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}

.reviews-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.reviews-logo-item:hover {
  transform: scale(1.05);
}

.reviews-logo-item img {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Custom logo styles for better appearance */
.reviews-bark-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  font-family: Arial, sans-serif;
}

.reviews-google-logo {
  font-size: 1.8rem;
  font-weight: 500;
  color: #4285f4;
}

.reviews-google-logo .google-g {
  color: #4285f4;
}
.reviews-google-logo .google-o1 {
  color: #ea4335;
}
.reviews-google-logo .google-o2 {
  color: #fbbc05;
}
.reviews-google-logo .google-g2 {
  color: #4285f4;
}
.reviews-google-logo .google-l {
  color: #34a853;
}
.reviews-google-logo .google-e {
  color: #ea4335;
}

.reviews-trustpilot-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #00b67a;
}

.reviews-trustpilot-star {
  color: #00b67a;
  font-size: 1.2rem;
}

.reviews-yell-logo {
  background: #ffeb3b;
  color: #333;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.3rem;
  display: inline-block;
}

.reviews-yelp-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d32323;
}

.reviews-checkatrade-logo {
  color: #e74c3c;
  font-size: 1.3rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .reviews-container {
    padding: 40px 15px;
  }

  .reviews-content {
    flex-direction: column;
    gap: 40px;
  }

  .reviews-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .reviews-description {
    text-align: center;
    font-size: 1rem;
  }

  .reviews-logos-container {
    padding: 30px 20px;
  }

  .reviews-logos-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .reviews-title {
    font-size: 2rem;
  }

  .reviews-logos-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .reviews-logos-container {
    padding: 25px 15px;
  }
}
/* ------------------------ */

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-title {
  font-size: 3rem;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 30px;
}

.contact-title-highlight {
  font-weight: 700;
  color: #4a90e2;
}

.contact-description {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-features {
  margin: 40px 0;
}

.contact-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.contact-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 500;
}

.contact-features li::before {
  content: "✓"; /* Use proper Unicode checkmark */
  background: #4a90e2;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.contact-info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-block {
  text-align: left;
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  background: #4a90e2;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

/* Use Font Awesome icons instead of emoji */
.contact-icon.phone::before {
  content: "\f095"; /* Font Awesome phone icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.contact-icon.location::before {
  content: "\f3c5"; /* Font Awesome map marker icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.contact-icon.clock::before {
  content: "\f017"; /* Font Awesome clock icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.contact-info-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-content {
  color: #7f8c8d;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info-content p {
  margin-bottom: 8px;
}

.contact-phone {
  color: #4a90e2;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-email {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 500;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-hours-highlight {
  color: #2c3e50;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 40px 15px;
  }

  .contact-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .contact-description {
    text-align: center;
    font-size: 1rem;
  }

  .contact-features ul {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-info-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .contact-info-block {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.8rem;
  }

  .contact-features li {
    font-size: 0.95rem;
  }

  .contact-info-section {
    padding: 25px 15px;
  }
}

/* Additional Responsive Enhancements */

/* Extra padding and font size adjustments for very small mobile devices */
@media (max-width: 360px) {
  body {
    padding: 10px;
    font-size: 14px;
  }

  /* Make buttons full width for easier tap */
  .btn,
  .btn-large {
    width: 100%;
    max-width: 100%;
    padding: 12px 0;
    font-size: 16px;
  }

  /* Adjust links and small text */
  a,
  .text-link {
    font-size: 14px;
  }

  /* Reduce heading sizes */
  h1,
  .hero-content h1,
  .main-title,
  .portfolio-title {
    font-size: 20px !important;
  }
}

/* Fix some padding and sizing issues across small & extra small devices */
@media (max-width: 480px) {
  /* Reduce side padding container-wide */
  .container,
  .test-container,
  .deep-container,
  .much-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Stack nav items vertically & increase tap target */
  .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .nav-link {
    font-size: 18px;
    padding: 15px;
  }

  /* Center align hero text and reduce padding */
  .hero-content {
    padding-left: 0;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }

  /* Make images max width 100% to prevent overflow */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Reduce margins of sections to fit smaller screens */
  .services-section,
  .benefits-section,
  .process-section,
  .upholstery-section,
  .vs-rugdoctor-section,
  .why-choose-section,
  .faq-section,
  .footer,
  .near-me-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Fix flexboxes and grids on smaller devices */
  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }

  .testing-services-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    max-width: 100%;
  }

  /* Stack contact-info-blocks */
  .contact-info-section {
    grid-template-columns: 1fr !important;
    padding: 25px 10px;
  }

  /* Adjust footer grid to stack */
  .footer-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px;
  }

  /* Reduce overlay text for gallery */
  .gallery-overlay-text {
    font-size: 1rem;
  }
}

/* Tablet landscape and portrait fixes for mid size devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  /* Stack hero content vertically in tablets */
  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  /* Increase nav toggle visibility */
  .nav-toggle {
    display: flex !important;
  }

  /* Nav menu adjustments */
  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: column;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* Set wider button sizes */
  .btn,
  .btn-large {
    width: auto;
    min-width: 220px;
  }

  /* Make footer sections stack properly */
  .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Reduce size of images on some sections */
  .collections-images img,
  .pic-photo {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Landscape mobile devices (320px to 480px width) */
@media (min-width: 321px) and (max-width: 480px) {
  /* Smaller font sizes for navigation links */
  .nav-link {
    font-size: 14px;
    padding: 10px 0;
  }

  /* Smaller padding for buttons */
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Headings smaller with controlled line height */
  h1,
  .hero-content h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  /* Reduce gallery gaps */
  .gallery-grid {
    gap: 10px;
  }
}

/* Support for very large screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  /* Increase spacing for large screens */
  .services-content,
  .process-content,
  .why-choose-content {
    gap: 100px;
  }

  .footer-content {
    gap: 70px;
  }
}

/* ================================
   MOBILE MEDIA QUERIES ONLY
   ================================ */

/* Tablet Responsive - 1024px and below */
@media (max-width: 1024px) {
  .hero-container {
    gap: 60px;
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-image img {
    max-width: 500px;
    height: 350px;
  }
}

/* Mobile Landscape - 968px and below */
@media (max-width: 968px) {
  .location-container {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .top-container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-list {
    gap: 25px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .services-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .upholstery-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .highlight-card {
    width: 100%;
    max-width: 450px;
    height: auto;
    padding: 50px 30px;
  }
}

/* Main Mobile - 768px and below */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-heavy);
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
  }

  .nav-menu.show {
    display: block;
    animation: slideDown 0.3s ease;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav-link {
    padding: 15px 0;
    font-size: 16px;
    border-radius: var(--border-radius-sm);
  }

  .nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
  }

  .nav-link::after {
    display: none;
  }

  .nav-container {
    height: auto;
    padding: 20px;
  }



  .hero {
    padding: 40px 0 0;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
  }

  .hero-image {
    order: 1;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }

  .hero-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 25px;
    clip-path: none;

  }

  .reviews-info {
    text-align: center;
  }

  .offer-banner {
    font-size: 12px;
    padding: 10px;
  }

  .contact-container {
    padding: 40px 15px;
  }

  .contact-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .contact-description {
    text-align: center;
    font-size: 1rem;
  }

  .contact-features ul {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-info-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .contact-info-block {
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pic-section {
    flex-direction: column;
    gap: 0;
  }

  .image-container {
    height: 300px;
    width: 100%;
  }

  .pic-content {
    padding: 30px 20px;
  }

  .pic-content h1 {
    font-size: 2.2rem;
  }

  .pic-content p {
    font-size: 1rem;
  }

  .strains-content-section,
  .strains-bottom-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strains-header h1 {
    font-size: 2.2rem;
  }

  .strains-text-card,
  .strains-bottom-text {
    padding: 25px;
  }

  .strains-image-card img,
  .strains-bottom-image img {
    height: 200px;
  }

  .testing-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .testing-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .testing-header h1 {
    font-size: 2.2rem;
  }

  .much-services {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .much-services h2 {
    text-align: center;
  }

  .much-hero-images {
    height: 300px;
  }

  .much-services-grid {
    justify-content: center;
  }

  .much-service-card {
    width: 160px;
  }
}

/* Tablet Portrait and Landscape (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .nav-toggle {
    display: flex !important;
  }

  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: column;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .btn,
  .btn-large {
    width: auto;
    min-width: 220px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .collections-images img,
  .pic-photo {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  .hero {
    padding: 30px 0 0;
  }

  .hero-container {
    gap: 30px;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-image img {
    max-width: 400px;
    height: 250px;
    border-radius: 20px;
  }

  .review-platforms img {
    height: 24px;
  }

  .offer-banner {
    font-size: 11px;
    padding: 8px;
    line-height: 1.3;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-features li {
    font-size: 0.95rem;
  }

  .contact-info-section {
    padding: 25px 15px;
  }

  .container {
    padding: 0 15px;
  }

  .quote-modal-content {
    width: 95%;
    margin: 20px;
  }

  .pic-content h1 {
    font-size: 1.8rem;
  }

  .strains-header h1 {
    font-size: 1.8rem;
  }

  .strains-text-card,
  .strains-bottom-text {
    padding: 20px;
  }

  .strains-text-card p,
  .strains-bottom-text p {
    font-size: 0.9rem;
  }

  .testing-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }

  .testing-header h1 {
    font-size: 1.6rem;
  }

  .testing-service-card {
    padding: 30px 20px;
  }

  .testing-service-title {
    font-size: 1rem;
  }

  .About-container {
    width: 90%;
  }

  .About-content {
    font-size: 18px;
  }

  .About-container h1 {
    font-size: 24px;
  }

  .much-hero-images {
    grid-template-columns: 1fr;
    height: 400px;
  }

  .much-hero-image.much-large {
    grid-row: span 1;
  }

  .much-services-grid {
    flex-direction: column;
    align-items: center;
  }

  .much-service-card {
    width: 200px;
  }

  .container,
  .test-container,
  .deep-container,
  .much-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .nav-link {
    font-size: 18px;
    padding: 15px;
  }

  .hero-content {
    padding-left: 0;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .services-section,
  .benefits-section,
  .process-section,
  .upholstery-section,
  .vs-rugdoctor-section,
  .why-choose-section,
  .faq-section,
  .footer,
  .near-me-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }

  .testing-services-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    max-width: 100%;
  }

  .contact-info-section {
    grid-template-columns: 1fr !important;
    padding: 25px 10px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px;
  }

  .gallery-overlay-text {
    font-size: 1rem;
  }
}

/* Landscape Mobile (321px - 480px) */
@media (min-width: 321px) and (max-width: 480px) {
  .nav-link {
    font-size: 14px;
    padding: 10px 0;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  h1,
  .hero-content h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  .gallery-grid {
    gap: 10px;
  }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-image img {
    max-width: 300px;
    height: 220px;
  }

  .hero-buttons .btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  body {
    padding: 10px;
    font-size: 14px;
  }

  .btn,
  .btn-large {
    width: 100%;
    max-width: 100%;
    padding: 12px 0;
    font-size: 16px;
  }

  a,
  .text-link {
    font-size: 14px;
  }

  h1,
  .hero-content h1,
  .main-title,
  .portfolio-title {
    font-size: 20px !important;
  }
}
/* ===== HIDE ONLY SOCIAL ICONS - KEEP PHONE NUMBER VISIBLE ===== */

/* Remove previous overly aggressive CSS first */
@media screen and (max-width: 768px) {
  /* ONLY target social icons specifically */
  .social-icons {
    display: none !important;
  }

  /* Make sure phone info is still visible and properly styled */
  .phone-info {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
  }

  .phone-number {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--primary-orange) !important;
    text-decoration: none !important;
  }

  .phone-text {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 12px !important;
    color: var(--text-light) !important;
    margin-top: 2px !important;
  }

  /* Adjust top-right layout without social icons */
  .top-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  /* Keep buttons visible */
  .top-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .btn {
    display: inline-block !important;
    visibility: visible !important;
  }
}

/* For smaller mobile screens */
@media screen and (max-width: 480px) {
  .social-icons {
    display: none !important;
  }

  .phone-number {
    font-size: 18px !important;
  }

  .phone-text {
    font-size: 11px !important;
  }

  .top-container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 15px !important;
  }
}

/* Ensure nothing else gets hidden accidentally */
@media screen and (max-width: 768px) {
  /* Make sure these elements are always visible */
  .logo,
  .phone-info,
  .phone-number,
  .phone-text,
  .top-buttons,
  .btn {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .btn {
    display: inline-block !important;
  }

  .top-right {
    display: flex !important;
  }

  .top-buttons {
    display: flex !important;
  }
}
@media screen and (max-width: 480px) {
  #pricing-page .hero .hero-container .hero-image {
    margin-top: 1px !important; /* Ensures it overrides inline styles */
  }
}
@media screen and (max-width: 480px) {
  #carpet-cleaning-page .hero .hero-container .hero-image {
    margin-top: 5px !important; /* Ensures it overrides inline styles */
  } 
}
@media screen and (max-width: 480px) {
  #rug-cleaning-page .hero .hero-container .hero-image {
    margin-top: 5px !important; /* Ensures it overrides inline styles */
  } 
}
@media screen and (max-width: 480px) {
  #upholstery-cleaning-page .hero .hero-container .hero-image {
    margin-top: 5px !important; /* Ensures it overrides inline styles */
  } 
}
@media screen and (max-width: 480px) {
  #pet-odour-page .hero .hero-container .hero-image {
    margin-top: 5px !important; /* Ensures it overrides inline styles */
  } 
}
@media screen and (max-width: 480px) {
  #commercial-carpet-cleaning-page .hero .hero-container .hero-image {
    margin-top: 5px !important; /* Ensures it overrides inline styles */
  } 
}
@media screen and (max-width: 480px) {
  #mattress-cleaning-page .hero .hero-container .hero-image {
    margin-top: 5px !important; /* Ensures it overrides inline styles */
  } 
}
@media screen and (max-width: 480px) {
  #sofa-cleaning-page .hero .hero-container .hero-image {
    margin-top: 5px !important; /* Ensures it overrides inline styles */
  } 
}
@media screen and (max-width: 480px) {
  #carpet-moth-treatment-page .hero .hero-container .hero-image {
    margin-top: 5px !important; /* Ensures it overrides inline styles */
  } 
}
@media screen and (max-width: 480px) {
  #flea-treatment-page .hero .hero-container .hero-image {
    margin-top: 5px !important; /* Ensures it overrides inline styles */
  } 
}
/* ================================
   MOBILE HEADER LAYOUT - 480px and below
   ================================ */

   @media (max-width: 480px) {
    /* Top Container Mobile Layout */
    .top-container {
      flex-direction: row !important;
      justify-content: space-between !important;
      align-items: center !important;
      padding: 10px 15px !important;
      gap: 15px !important;
    }
  
    /* Logo Left Side */
    .logo {
      flex: 0 0 auto;
      order: 1;
    }
  
    .logo img {
      height: 40px !important;
      width: auto !important;
      max-width: 150px !important;
    }
  
    /* Phone Info Right Side */
    .top-right {
      flex: 0 0 auto;
      order: 3;
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-end !important;
      text-align: right !important;
    }
  
    .phone-info {
      display: block !important;
      text-align: right !important;
      margin: 0 !important;
    }
  
    .phone-number {
      display: block !important;
      font-size: 18px !important;
      font-weight: 800 !important;
      text-decoration: none !important;
      margin-bottom: 2px !important;
    }
  
    .phone-text {
      display: block !important;
      font-size: 11px !important;
      color: #666 !important;
      margin: 0 !important;
      white-space: nowrap !important;
    }
  
    /* Hide Social Icons on Mobile */
    .social-icons {
      display: none !important;
    }
  
    /* Hide Top Buttons on Mobile */
    .top-buttons {
      display: none !important;
    }
  
    /* Mobile Menu Toggle Center */
    .nav-toggle {
      display: flex !important;
      flex-direction: column !important;
      order: 2;
      position: absolute !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      cursor: pointer !important;
      padding: 8px !important;
      background: none !important;
      border: none !important;
    }
  
    .nav-toggle span {
      width: 22px !important;
      height: 2px !important;
      background-color: #53b0e0 !important;
      margin: 2px 0 !important;
      transition: 0.3s !important;
      border-radius: 1px !important;
    }
  
    /* Hamburger Animation */
    .nav-toggle.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-4px, 4px);
    }
  
    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .nav-toggle.active span:nth-child(3) {
      transform: rotate(45deg) translate(-4px, -4px);
    }
  
    /* Mobile Navigation Menu */
    .nav-menu {
      display: none !important;
      position: absolute !important;
      top: 100% !important;
      left: 0 !important;
      right: 0 !important;
      background: rgba(255, 255, 255, 0.98) !important;
      backdrop-filter: blur(20px) !important;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
      padding: 20px !important;
      border-radius: 0 0 15px 15px !important;
      z-index: 999 !important;
    }
  
    .nav-menu.show,
    .nav-menu.active {
      display: block !important;
      animation: slideDown 0.3s ease !important;
    }
  
    .nav-list {
      flex-direction: column !important;
      gap: 15px !important;
      text-align: center !important;
      list-style: none !important;
      padding: 0 !important;
      margin: 0 !important;
    }
  
    .nav-link {
      display: block !important;
      padding: 12px 15px !important;
      font-size: 16px !important;
      color: #333 !important;
      text-decoration: none !important;
      border-radius: 8px !important;
      transition: all 0.3s ease !important;
    }
  
    .nav-link:hover,
    .nav-link:active {
      background: #f0f8ff !important;
      color: #53b0e0 !important;
    }
  
    /* Header Height Adjustments */
    .header {
      position: sticky !important;
      top: 0 !important;
      z-index: 1000 !important;
    }
  
    .top-bar {
      padding: 8px 0 !important;
    }
  
    .navbar {
      padding: 0 !important;
    }
  
    /* Main Content Spacing */
    /* Location Bar Mobile */
    .location-bar {
      position: relative !important;
      font-size: 11px !important;
      padding: 6px 0 !important;
    }
  
    .location-container {
      flex-wrap: wrap !important;
      justify-content: center !important;
      gap: 8px 15px !important;
      padding: 0 10px !important;
    }
  
    .location-item {
      flex: 1 1 45% !important;
      justify-content: center !important;
      font-size: 10px !important;
      padding: 3px 8px !important;
      text-align: center !important;
    }
  
    .location-item a {
      font-size: 10px !important;
    }
  
    .location-item i {
      font-size: 10px !important;
    }
  
    /* Slide Down Animation */
    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  
    /* Body Overflow Control */
    body.menu-open {
      overflow: hidden !important;
    }
  
    /* Fix Header Overlap Issues */
    .hero-container {
      margin-top: 0 !important;
      padding-top: 20px !important;
    }
  
    /* Ensure Phone Number is Clickable */
    .phone-number:hover {
      transform: scale(1.02) !important;
    }
  
    .phone-number:active {
      transform: scale(0.98) !important;
    }
  }
  
  /* Extra Small Mobile - 360px and below */
  @media (max-width: 360px) {
    .logo img {
      height: 35px !important;
      max-width: 120px !important;
    }
  
    .phone-number {
      font-size: 16px !important;
    }
  
    .phone-text {
      font-size: 10px !important;
    }
  
    .nav-toggle span {
      width: 20px !important;
    }
  
    .top-container {
      padding: 8px 10px !important;
    }
  
    .location-item {
      flex: 1 1 100% !important;
      font-size: 9px !important;
    }
  
    .location-item a {
      font-size: 9px !important;
    }
  }
  /* ================================
   MOBILE LOCATION BAR - 480px and below
   ================================ */

@media (max-width: 480px) {
  /* Location Bar Mobile Layout */
  .location-bar {
    padding: 8px 0 !important;
    font-size: 11px !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1002 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  }

  .location-container {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 8px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 6px 3px !important;
    justify-items: center !important;
    align-items: center !important;
  }

  /* Location Items - 3 per row */
  .location-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    padding: 4px 3px !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    background: rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
    max-width: 80px !important;
    text-align: center !important;
  }

  .location-item:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px) !important;
  }

  .location-item:active {
    transform: translateY(0) !important;
  }

  /* Phone Icons */
  .location-item i {
    font-size: 7px !important;
    color: white !important;
    flex-shrink: 0 !important;
  }

  /* Location Links */
  .location-item a {
    color: white !important;
    text-decoration: none !important;
    font-size: 7px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .location-item a:hover {
    color: white !important;
  }

  /* Consistent styling for all items - remove special case */
  .location-item:nth-child(1) a,
  .location-item:nth-child(2) a,
  .location-item:nth-child(3) a,
  .location-item:nth-child(4) a,
  .location-item:nth-child(5) a {
    font-size: 7px !important;
    font-weight: 600 !important;
    color: white !important;
  }

  /* Second row - center the remaining 2 items across all 3 columns */
  .location-item:nth-child(4) {
    grid-column: 1 / 2 !important;
    justify-self: center !important;
    margin-left: 25% !important;
  }

  .location-item:nth-child(5) {
    grid-column: 2 / 3 !important;
    justify-self: center !important;
    margin-right: 25% !important;
  }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
  .location-bar {
    padding: 6px 0 !important;
  }

  .location-container {
    padding: 0 4px !important;
    gap: 4px 1px !important;
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  .location-item {
    padding: 3px 2px !important;
    max-width: 70px !important;
  }

  .location-item a {
    font-size: 6px !important;
  }

  .location-item i {
    font-size: 6px !important;
  }

  /* All items consistent - no special cases */
  .location-item:nth-child(1) a,
  .location-item:nth-child(2) a,
  .location-item:nth-child(3) a,
  .location-item:nth-child(4) a,
  .location-item:nth-child(5) a {
    font-size: 6px !important;
    font-weight: 600 !important;
    color: white !important;
  }
}

/* Very Small Screens - 320px and below */
@media (max-width: 320px) {
  .location-container {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }

  .location-item {
    max-width: 160px !important;
  }

  .location-item:nth-child(5) {
    grid-column: 1 !important;
  }

  .location-item a {
    font-size: 10px !important;
  }

  .location-item:nth-child(3) a {
    font-size: 10px !important;
  }
}/* ================================
   MOBILE LOCATION BAR - 480px and below
   ================================ */

@media (max-width: 480px) {
  /* Location Bar Mobile Layout */
  .location-bar {
    padding: 8px 0 !important;
    font-size: 11px !important;
    position: relative !important;
    z-index: 1002 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  }

  .location-container {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 8px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 6px 3px !important;
    justify-items: center !important;
    align-items: center !important;
  }

  /* Location Items - 3 per row */
  .location-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    padding: 4px 3px !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    background: rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
    max-width: 80px !important;
    text-align: center !important;
  }

  .location-item:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px) !important;
  }

  .location-item:active {
    transform: translateY(0) !important;
  }

  /* Phone Icons */
  .location-item i {
    font-size: 7px !important;
    color: white !important;
    flex-shrink: 0 !important;
  }

  /* Location Links */
  .location-item a {
    color: white !important;
    text-decoration: none !important;
    font-size: 7px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .location-item a:hover {
    color: white !important;
  }

  /* Consistent styling for all items - remove special case */
  .location-item:nth-child(1) a,
  .location-item:nth-child(2) a,
  .location-item:nth-child(3) a,
  .location-item:nth-child(4) a,
  .location-item:nth-child(5) a {
    font-size: 7px !important;
    font-weight: 600 !important;
    color: white !important;
  }

  /* Second row - center the remaining 2 items across all 3 columns */
  .location-item:nth-child(4) {
    grid-column: 1 / 2 !important;
    justify-self: end !important;
    margin-right: 20px !important;
  }

  .location-item:nth-child(5) {
    grid-column: 3 / 4 !important;
    justify-self: start !important;
    margin-left: -100px !important;
  }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
  .location-bar {
    padding: 6px 0 !important;
  }

  .location-container {
    padding: 0 4px !important;
    gap: 4px 1px !important;
    grid-template-columns: 1fr 1fr 1fr !important;
  }

  .location-item {
    padding: 3px 2px !important;
    max-width: 70px !important;
  }

  .location-item a {
    font-size: 6px !important;
  }

  .location-item i {
    font-size: 6px !important;
  }

  /* All items consistent - no special cases */
  .location-item:nth-child(1) a,
  .location-item:nth-child(2) a,
  .location-item:nth-child(3) a,
  .location-item:nth-child(4) a,
  .location-item:nth-child(5) a {
    font-size: 6px !important;
    font-weight: 600 !important;
    color: white !important;
  }
}

/* Very Small Screens - 320px and below */
@media (max-width: 320px) {
  .location-container {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }

  .location-item {
    max-width: 160px !important;
  }

  .location-item:nth-child(5) {
    grid-column: 1 !important;
  }

  .location-item a {
    font-size: 10px !important;
  }

  .location-item:nth-child(3) a {
    font-size: 10px !important;
  }
}


