/* Updated AC Repair Styles - Force Refresh */
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2ecc71;
  --contrast: #2c3e50;
  --accent: #f8f9fa;
  --secondary: #f1f5f9;
  --silver: #94a3b8;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--contrast);
  margin: 0;
  padding: 0;
}

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

/* --- POLISHED GLOBAL HEADER & MENU STYLES --- */
.site-header {
  width: 100%;
  background: #fff !important;
  border-bottom: none;
  box-shadow: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-height: unset;
  height: auto;
  z-index: 1000;
  position: fixed;
  margin-bottom: 0;
}
.header-top {
  background: transparent;
  padding: 24px 48px 30px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px;
}
.logo {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  margin-right: auto;
}
.logo a {
  text-decoration: none;
}
.logo-bold {
  color: #222;
}
.logo-green {
  color: #22c55e;
  margin-left: 2px;
}
.header-contact {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.call-icon {
  color: #22c55e;
  font-size: 1.2em;
  margin-right: 4px;
}
.call-label {
  color: #222;
  font-weight: 500;
  margin-right: 4px;
}
.call-number {
  color: #22c55e;
  font-weight: 600;
  text-decoration: none;
  margin-right: 16px;
  transition: color 0.2s;
}
.call-number:hover {
  color: #15803d;
}
.quote-btn {
  background: #222f3e;
  color: #fff;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 40px;
  text-decoration: none;
  font-size: 1.15rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
  margin-left: 24px;
  margin-right: 0;
}
.quote-btn:hover {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.12);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
}
.menu-toggle .hamburger {
  width: 28px;
  height: 3px;
  background: #222;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open .hamburger:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  width: 100%;
  background: #22c55e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  position: relative;
  z-index: 1101;
  margin-top: -64px; /* Pull up the green bar to cover header, adjust as needed */
}
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul li {
  position: relative;
}
.main-nav ul li a,
.main-nav ul li > a {
  color: #fff;
  font-weight: 500;
  font-size: 1.15rem;
  text-decoration: none;
  padding: 22px 0 20px 0;
  display: block;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
}
.main-nav ul li a:hover,
.main-nav ul li > a:hover {
  color: #222f3e;
  background: rgba(255, 255, 255, 0.12);
}
.main-nav ul li.nav-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav ul li.nav-dropdown > a .arrow {
  margin-left: 12px;
  margin-right: 0;
  font-size: 1.1em;
  order: 2;
}
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 240px;
  padding: 12px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 10px 10px;
  z-index: 100;
  padding: 10px 0;
}
.nav-dropdown.open > .dropdown-menu,
.main-nav ul li.nav-dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a,
.dropdown-menu li a {
  color: #1a202c !important; /* much darker for contrast */
  background: none;
  padding: 16px 32px !important;
  font-size: 1.08rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover,
.dropdown-menu li a:hover {
  background: #22c55e !important;
  color: #fff !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .header-top {
    padding: 18px 18px 12px 18px;
  }
  .main-nav ul {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .header-top {
    flex-direction: row;
    padding: 18px 16px 12px 16px;
    gap: 16px;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #22c55e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: none;
    margin-top: -56px;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 16px 0;
  }
  .main-nav ul li {
    width: 100%;
  }
  .main-nav ul li a {
    padding: 18px 24px;
    width: 100%;
    font-size: 1.1rem;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f3f4f6;
    border-radius: 0;
    min-width: 100%;
    padding: 0;
  }
  .nav-dropdown.open > .dropdown-menu {
    display: block;
  }
  .dropdown-menu li a {
    color: #222;
    padding: 14px 32px;
    font-size: 1rem;
  }
  .menu-toggle {
    display: flex;
  }
  .header-contact {
    margin-left: 0;
  }
  .quote-btn {
    padding: 12px 24px;
    font-size: 1rem;
    margin-left: 12px;
  }
}
  .hero {
@media (max-width: 600px) {
  .header-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 16px;
  }
  .logo {
    font-size: 1.2rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: flex-start;
    margin: 0;
    flex: 1;
  }
  .logo-bold,
  .logo-green {
    display: inline;
    font-size: inherit;
    line-height: 1;
    margin: 0;
    padding: 0;
  }
  .header-contact {
    display: none !important;
  }
  .quote-btn {
    display: none !important;
  }
  .call-icon,
  .call-number {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
    z-index: 1001;
    margin-left: auto;
    order: 2;
  }
  .hero {
    padding-top: 0 !important;
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex;
    align-items: center;
  }
  .main-nav {
    margin-top: -48px;
  }
}    padding-top: 0 !important;
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex;
    align-items: center;
  }
  .main-nav {
    margin-top: -48px;
  }
}

/* Hide old header/menu wrappers if present */
.header-nav-wrapper,
.header-container,
.navbar,
nav.navbar,
.site-header:not(:first-child) {
  display: none !important;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: #22c55e;
  z-index: 999;
  border-bottom: none;
  box-shadow: none;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
}

.nav-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  height: 100%;
  padding: 1.25rem 0;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
  padding: 0.5rem 0;
  display: inline-block;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: #2ecc71;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown span {
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-dropdown:hover span {
  color: #2ecc71;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
}

.dropdown-menu a {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #2ecc71;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }

  .header-contact {
    gap: 1rem;
  }

  .call-section {
    display: none;
  }

  .cta-quote-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .header-phone-topright .phone-label {
    display: none;
  }

  .header-phone-topright .phone-number {
    font-size: 0.875rem;
  }

  .header-actions {
    gap: 0.5rem;
    display: flex !important;
  }

  .navbar {
    top: 70px;
  }

  /* Show mobile menu button on mobile - IMPORTANT! */
  .mobile-menu-btn {
    display: block !important;
    order: 3;
  }

  /* Hide navigation menu by default on mobile */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
    width: 100%;
  }

  /* Show navigation menu when active */
  .nav-menu.active {
    display: flex;
  }

  /* Mobile nav links */
  .nav-link {
    font-size: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    color: #333;
    width: 100%;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Mobile dropdown behavior */
  .nav-dropdown {
    position: relative;
    width: 100%;
  }

  .nav-dropdown span {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
    width: 100%;
    background: white;
    transition: background-color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .nav-dropdown span:hover,
  .nav-dropdown span:active {
    background: #f8f9fa;
  }

  .dropdown-menu {
    display: none;
    position: static;
    background: white;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-direction: column;
    border-left: 3px solid #2ecc71;
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex !important;
    animation: slideDown 0.3s ease;
  }

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

  .dropdown-menu a {
    padding: 1rem 2rem !important;
    border: none;
    border-bottom: 1px solid #e9ecef !important;
    color: #2c3e50 !important;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    background: white !important;
    margin: 0;
    line-height: 1;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .dropdown-menu a:last-child {
    border-bottom: none !important;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:active {
    background-color: #f8f9fa !important;
    color: #2ecc71 !important;
    padding-left: 2.5rem !important;
  }
}

@media (min-width: 769px) {
  .navbar {
    padding: 0.75rem 0;
  }
  .nav-container {
    padding-top: 0.075rem;
    padding-bottom: 0.075rem;
  }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0.5rem 1rem;
    box-shadow: none;
  }

  /* Hide mobile menu button on desktop */
  .mobile-menu-btn {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 2rem;
  }
}

/* Update hero section to account for fixed navbar */
.hero {
  position: relative;
  width: 100%;
  height: 120vh;
  min-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 200px;
}

.hero-image {
  position: absolute !important;
  top: 20% !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 70% !important;
  z-index: 1 !important;
}

.hero-image-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 500px;
    padding-top: 120px;
  }
  .hero-image {
    display: none;
  }
  .hero-image-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    z-index: 1;
  }
}

.hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) !important;
  z-index: 2 !important;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
  margin-left: 0;
  color: white;
}

.hero-content h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  color: white;
  text-align: left;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
  color: white;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-button {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: none;
}

.hero-button.primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.hero-button.primary:hover {
  background-color: #1a7fd9;
  border-color: #1a7fd9;
  transform: translateY(-2px);
}

.hero-button.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 1rem 3rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.btn-primary:hover {
  background-color: var(--contrast);
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary);
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: background-color 0.3s;
}

.floating-contact i {
  font-size: 1.5rem;
}

.floating-contact:hover {
  background-color: var(--contrast);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background-color: white;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  background-color: var(--accent);
  border-radius: 50%;
}

.service-card h3 {
  color: var(--contrast);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--silver);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.learn-more {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: 2px solid var(--primary);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.learn-more:hover {
  background-color: var(--primary);
  color: white;
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
}

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

.testimonial-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent);
}

.testimonial-rating {
  margin: 1rem 0;
  color: #fbbf24; /* Amber color for stars */
}

.testimonial-rating i {
  margin-right: 0.25rem;
}

.quote-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Service Area Section */
.service-area {
  padding: 5rem 0;
  background-color: white;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  min-height: 600px;
}

.areas-we-serve,
.map-container {
  background-color: var(--accent);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-container {
  position: relative;
}

.map-frame {
  flex-grow: 1;
  margin-top: 1.5rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.5rem;
}

.map-header {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--contrast);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem 2.5rem;
  margin: 1.5rem 0;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.area-check {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}

.contact-intro {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-intro h3 {
  color: #2ecc71;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

.quick-contact {
  background-color: rgba(248, 249, 250, 0.4);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.contact-item {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.75rem;
  margin-top: 0.25rem;
}

.contact-item .label {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-item .note {
  color: var(--silver);
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
}

select {
  height: 3.25rem;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

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

.btn-submit {
  width: 100%;
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: var(--contrast);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Footer */
footer {
  background-color: var(--contrast);
  color: white;
  padding: 2.5rem 0;
  margin-top: 2.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* Footer sections for detailed footer layout */
.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #2ecc71 !important;
}

.footer-section p {
  color: white;
  line-height: 1.6;
}

.footer-logo .logo-black {
  color: white !important;
}

.footer-contact h4,
.footer-hours h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-contact p,
.footer-hours p {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: white;
  margin: 0;
}

.company-info {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
}

.company-info a {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s;
}

.company-info a:hover {
  color: #2ecc71 !important;
}

.company-info .logo-black {
  color: white !important;
}

.company-info .logo-green {
  color: white !important;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: white !important;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #2ecc71 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Utility Classes */
.section-description {
  text-align: center;
  color: rgba(44, 62, 80, 0.8);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.form-message {
  margin: 1rem 0;
}

.form-message.error {
  color: #dc2626;
}

.form-message.success {
.form-message.loading {
  color: #2563eb;
  font-style: italic;
}  color: #059669;
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-content h1 {
    text-align: center;
  }
  .hero-content p {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .hero-button {
    width: 100%;
    text-align: center;
    max-width: 400px;
  }
  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 250px;
    height: 45vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.site-header {
  background: #fff !important;
  border-bottom: none;
  box-shadow: none;
  padding: 1rem 0; /* Increased padding */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  margin-bottom: 0;
}

.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0 2.5rem;
  gap: 2rem;
  position: relative;
}

.header-logo {
  flex: 0 0 auto;
  text-align: left;
}

.header-lang {
  margin-left: auto;
}

.header-phone-topright {
  margin-left: 2rem;
  display: flex;
  align-items: center;
}

.header-contact {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
  margin: 0 auto;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--contrast);
}

.header-contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
}

.header-contact-icon i {
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.header-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  justify-content: center;
}

.header-contact-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--contrast);
}

.header-contact-text a,
.header-contact-text span {
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  word-break: break-all;
}

.flag {
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.flag:hover {
  transform: scale(1.15);
}

.cta-quote-btn {
  background-color: white;
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  margin-left: 2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  border: none;
  display: inline-block;
  white-space: nowrap;
}

.cta-quote-btn:hover {
  background-color: var(--contrast);
  color: white;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
}

@media (max-width: 1200px) {
  .nav-container {
    padding: 0 1.25rem;
  }
  .nav-menu {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .header-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  .header-phone-topright {
    margin-left: 0;
    justify-content: flex-end;
    width: 100%;
    margin-top: 0.5rem;
  }
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 500px;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.submenu-section {
  flex: 1;
}

.submenu-section h4 {
  color: var(--contrast);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.dropdown-menu a {
  display: block;
  color: var(--contrast);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 1rem;
  transition: color 0.2s;
}

.dropdown-menu a:hover {
  color: var(--primary);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    display: none;
  }

  .submenu-section h4 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .dropdown-menu a {
    color: white;
    padding: 0.5rem;
  }

  .dropdown-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex;
  }
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* Only stretch the trigger on mobile */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .nav-dropdown > span {
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
  }
}

.nav-dropdown > span {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

/* Add top padding to main content to prevent it from being hidden */
.hero,
.main-content,
.container:first-of-type {
  padding-top: 120px; /* Adjusted to account for new header + navbar height */
}

.logo-text {
  font-weight: bold;
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Inter', sans-serif;
}
.logo-black {
  color: #000000;
}
.logo-green {
  color: #27ae60;
}

@media (max-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white !important;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
    padding: 0;
    width: 100%;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    min-height: 60px;
    width: 100%;
    margin: 0;
    position: relative;
  }

  .header-logo {
    flex: 0 0 auto;
    text-align: left;
    order: 1;
  }

  .header-logo .logo-black {
    font-size: 1.1rem;
  }

  .header-logo .logo-green {
    font-size: 1.1rem;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0.5rem 1rem;
    box-shadow: none;
  }

  .header-logo {
    font-size: 1.25rem;
  }

  /* Hide mobile menu button on desktop */
  .mobile-menu-btn {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
  }

  .header-phone-topright {
    font-size: 1.1rem;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .cta-quote-btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    margin-left: 0;
    background-color: #2c3e50 !important;
    color: #fff !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  }

  .cta-quote-btn:hover {
    background: transparent !important;
    color: #2c3e50 !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
  }

  .nav-menu {
    padding: 1rem;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    z-index: 1000;
  }

  .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Ensure proper spacing and hover states for desktop */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown span {
    color: #333;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-dropdown:hover span {
    color: #2ecc71;
  }
}

/* About Us Section */
.about-us {
  padding: 5rem 0 4rem 0;
  background: #fff;
}
.about-us-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-us-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-img {
  width: 270px;
  height: 320px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
  background: #f8f9fa;
}
.about-us-content {
  flex: 1 1 400px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-us-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.25rem;
}
.about-us-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--contrast);
  text-align: left;
}
.about-us-desc {
  font-size: 1.15rem;
  color: var(--contrast);
  margin-bottom: 1.5rem;
}
.about-us-features {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 1 0;
}
.about-feature-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-top: 0.1rem;
}
.about-feature-title {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--contrast);
}
.about-feature-desc {
  color: var(--silver);
  font-size: 1rem;
}
.about-us-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
}
.about-btn.primary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.about-btn.primary:hover {
  background: #218c5a;
}
.about-btn.secondary {
  background: #fff;
  color: #222;
  border: none;
  font-weight: 700;
  font-size: 1.2rem;
  gap: 0.5rem;
  box-shadow: none;
}
.about-btn.secondary i {
  color: #1dbf73;
  font-size: 2rem;
  margin-right: 0.5rem;
}
@media (max-width: 1024px) {
  .about-us-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 1rem;
  }
  .about-img {
    width: 180px;
    height: 200px;
  }
  .about-us-content {
    max-width: 100%;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 2.5rem 0 2rem 0;
  }
  .about-us-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
  }
  .about-img {
    width: 120px;
    height: 120px;
  }
  .about-us-content h2 {
    font-size: 1.5rem;
  }
  .about-us-label {
    font-size: 1rem;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1rem;
  }
  .about-us-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .about-btn {
    width: 100%;
    justify-content: center;
  }
}

/* AC Repair Page Redesign - Hero Section */
.ac-specialist-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(
      135deg,
      rgba(46, 204, 113, 0.95) 0%,
      rgba(44, 62, 80, 0.95) 100%
    ),
    url('images/Hero-DependableAC.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.ac-specialist-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(46, 204, 113, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(52, 152, 219, 0.3) 0%,
      transparent 50%
    );
  z-index: 1;
}

.ac-specialist-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-specialist-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
  text-align: center;
}

.ac-specialist-hero .hero-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  color: #2ecc71;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ac-specialist-hero .hero-tagline-sub {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ac-specialist-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  color: white !important;
  -webkit-text-fill-color: white !important;
  text-align: center;
}

.ac-specialist-hero .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.ac-specialist-hero .hero-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.ac-specialist-hero .hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.ac-specialist-hero .hero-button:hover::before {
  left: 100%;
}

.ac-specialist-hero .hero-button.primary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  border: 2px solid transparent;
}

.ac-specialist-hero .hero-button.primary:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.ac-specialist-hero .hero-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.ac-specialist-hero .hero-button.secondary:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content Redesign */
.main-content {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
  padding: 4rem 0;
  position: relative;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    180deg,
    rgba(46, 204, 113, 0.1) 0%,
    transparent 100%
  );
}

.main-content .container {
  position: relative;
  z-index: 2;
}

.main-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-content h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  border-radius: 2px;
}

.content-text {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 0 2rem;
}

.content-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cta-text {
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-text::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.cta-text strong {
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Problem Sections Redesign */
.ac-problems-section,
.troubleshooting-section,
.hot-air-section,
.when-repair-section,
.replacement-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 204, 113, 0.1);
}

.ac-problems-section::before,
.troubleshooting-section::before,
.hot-air-section::before,
.when-repair-section::before,
.replacement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
}

.ac-problems-section h2,
.troubleshooting-section h2,
.hot-air-section h2,
.when-repair-section h2,
.replacement-section h2 {
  font-size: 2.3rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  font-weight: 700;
}

.ac-problems-section h2::after,
.troubleshooting-section h2::after,
.hot-air-section h2::after,
.when-repair-section h2::after,
.replacement-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 2px;
}

.ac-problems-section > p,
.troubleshooting-section > p,
.hot-air-section > p,
.when-repair-section > p,
.replacement-section > p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5a6c7d;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.problems-grid,
.troubleshooting-grid,
.hot-air-grid,
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.problems-column,
.troubleshooting-column,
.hot-air-column,
.signs-column {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.problems-column:hover,
.troubleshooting-column:hover,
.hot-air-column:hover,
.signs-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
}

/* Updated AC Repair Styles - Force Refresh */
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2ecc71;
  --contrast: #2c3e50;
  --accent: #f8f9fa;
  --secondary: #f1f5f9;
  --silver: #94a3b8;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--contrast);
  margin: 0;
  padding: 0;
}

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

/* --- POLISHED GLOBAL HEADER & MENU STYLES --- */
.site-header {
  width: 100%;
  background: #fff !important;
  border-bottom: none;
  box-shadow: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-height: unset;
  height: auto;
  z-index: 1000;
  position: fixed;
  margin-bottom: 0;
}
.header-top {
  background: transparent;
  padding: 24px 48px 30px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px;
}
.logo {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  margin-right: auto;
}
.logo a {
  text-decoration: none;
}
.logo-bold {
  color: #222;
}
.logo-green {
  color: #22c55e;
  margin-left: 2px;
}
.header-contact {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.call-icon {
  color: #22c55e;
  font-size: 1.2em;
  margin-right: 4px;
}
.call-label {
  color: #222;
  font-weight: 500;
  margin-right: 4px;
}
.call-number {
  color: #22c55e;
  font-weight: 600;
  text-decoration: none;
  margin-right: 16px;
  transition: color 0.2s;
}
.call-number:hover {
  color: #15803d;
}
.quote-btn {
  background: #222f3e;
  color: #fff;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 40px;
  text-decoration: none;
  font-size: 1.15rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
  margin-left: 24px;
  margin-right: 0;
}
.quote-btn:hover {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.12);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
}
.menu-toggle .hamburger {
  width: 28px;
  height: 3px;
  background: #222;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open .hamburger:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  width: 100%;
  background: #22c55e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  position: relative;
  z-index: 1101;
  margin-top: -64px; /* Pull up the green bar to cover header, adjust as needed */
}
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul li {
  position: relative;
}
.main-nav ul li a,
.main-nav ul li > a {
  color: #fff;
  font-weight: 500;
  font-size: 1.15rem;
  text-decoration: none;
  padding: 22px 0 20px 0;
  display: block;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
}
.main-nav ul li a:hover,
.main-nav ul li > a:hover {
  color: #222f3e;
  background: rgba(255, 255, 255, 0.12);
}
.main-nav ul li.nav-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav ul li.nav-dropdown > a .arrow {
  margin-left: 12px;
  margin-right: 0;
  font-size: 1.1em;
  order: 2;
}
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 240px;
  padding: 12px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 10px 10px;
  z-index: 100;
  padding: 10px 0;
}
.nav-dropdown.open > .dropdown-menu,
.main-nav ul li.nav-dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a,
.dropdown-menu li a {
  color: #1a202c !important; /* much darker for contrast */
  background: none;
  padding: 16px 32px !important;
  font-size: 1.08rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover,
.dropdown-menu li a:hover {
  background: #22c55e !important;
  color: #fff !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .header-top {
    padding: 18px 18px 12px 18px;
  }
  .main-nav ul {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .header-top {
    flex-direction: row;
    padding: 18px 16px 12px 16px;
    gap: 16px;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #22c55e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: none;
    margin-top: -56px;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 16px 0;
  }
  .main-nav ul li {
    width: 100%;
  }
  .main-nav ul li a {
    padding: 18px 24px;
    width: 100%;
    font-size: 1.1rem;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f3f4f6;
    border-radius: 0;
    min-width: 100%;
    padding: 0;
  }
  .nav-dropdown.open > .dropdown-menu {
    display: block;
  }
  .dropdown-menu li a {
    color: #222;
    padding: 14px 32px;
    font-size: 1rem;
  }
  .menu-toggle {
    display: flex;
  }
  .header-contact {
    margin-left: 0;
  }
  .quote-btn {
    padding: 12px 24px;
    font-size: 1rem;
    margin-left: 12px;
  }
}
@media (max-width: 600px) {
  .header-top {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 4vw 10px 4vw;
    gap: 10px;
  }
  .logo {
    font-size: 0.95rem;
    max-width: 100vw;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
    margin: 0 auto 8px auto;
  }
  .logo-bold,
  .logo-green {
    display: inline;
    font-size: inherit;
    line-height: 1;
    margin: 0;
    padding: 0;
  }
  .header-contact {
    display: none !important;
  }
  .quote-btn {
    width: 100%;
    margin: 10px 0 0 0;
    padding: 12px 0;
    font-size: 1rem;
  }
  .call-icon,
  .call-number {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
    z-index: 1001;
  }
  .hero {
    padding-top: 0 !important;
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex;
    align-items: center;
  }
  .main-nav {
    margin-top: -48px;
  }
}

/* Hide old header/menu wrappers if present */
.header-nav-wrapper,
.header-container,
.navbar,
nav.navbar,
.site-header:not(:first-child) {
  display: none !important;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
  border-bottom: 1px solid #ddd;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
}

.nav-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  height: 100%;
  padding: 1.25rem 0;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
  padding: 0.5rem 0;
  display: inline-block;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: #2ecc71;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown span {
  color: #333;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-dropdown:hover span {
  color: #2ecc71;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
}

.dropdown-menu a {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #2ecc71;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }

  .header-contact {
    gap: 1rem;
  }

  .call-section {
    display: none;
  }

  .cta-quote-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .header-phone-topright .phone-label {
    display: none;
  }

  .header-phone-topright .phone-number {
    font-size: 0.875rem;
  }

  .header-actions {
    gap: 0.5rem;
    display: flex !important;
  }

  .navbar {
    top: 70px;
  }

  /* Show mobile menu button on mobile - IMPORTANT! */
  .mobile-menu-btn {
    display: block !important;
    order: 3;
  }

  /* Hide navigation menu by default on mobile */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
    width: 100%;
  }

  /* Show navigation menu when active */
  .nav-menu.active {
    display: flex;
  }

  /* Mobile nav links */
  .nav-link {
    font-size: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    color: #333;
    width: 100%;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Mobile dropdown behavior */
  .nav-dropdown {
    position: relative;
    width: 100%;
  }

  .nav-dropdown span {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
    width: 100%;
    background: white;
    transition: background-color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .nav-dropdown span:hover,
  .nav-dropdown span:active {
    background: #f8f9fa;
  }

  .dropdown-menu {
    display: none;
    position: static;
    background: white;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-direction: column;
    border-left: 3px solid #2ecc71;
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex !important;
    animation: slideDown 0.3s ease;
  }

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

  .dropdown-menu a {
    padding: 1rem 2rem !important;
    border: none;
    border-bottom: 1px solid #e9ecef !important;
    color: #2c3e50 !important;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    background: white !important;
    margin: 0;
    line-height: 1;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .dropdown-menu a:last-child {
    border-bottom: none !important;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:active {
    background-color: #f8f9fa !important;
    color: #2ecc71 !important;
    padding-left: 2.5rem !important;
  }
}

@media (min-width: 769px) {
  .navbar {
    padding: 0.75rem 0;
  }
  .nav-container {
    padding-top: 0.075rem;
    padding-bottom: 0.075rem;
  }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0.5rem 1rem;
    box-shadow: none;
  }

  /* Hide mobile menu button on desktop */
  .mobile-menu-btn {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 2rem;
  }
}

/* Update hero section to account for fixed navbar */
.hero {
  position: relative;
  width: 100%;
  height: 120vh;
  min-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 200px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
  z-index: 1;
}

.hero-image-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 500px;
    padding-top: 120px;
  }
  .hero-image {
    display: none;
  }
  .hero-image-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    z-index: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
  margin-left: 0;
  color: white;
}

.hero-content h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  color: white;
  text-align: left;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
  color: white;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-button {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: none;
}

.hero-button.primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.hero-button.primary:hover {
  background-color: #1a7fd9;
  border-color: #1a7fd9;
  transform: translateY(-2px);
}

.hero-button.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 1rem 3rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.btn-primary:hover {
  background-color: var(--contrast);
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary);
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: background-color 0.3s;
}

.floating-contact i {
  font-size: 1.5rem;
}

.floating-contact:hover {
  background-color: var(--contrast);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background-color: white;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  background-color: var(--accent);
  border-radius: 50%;
}

.service-card h3 {
  color: var(--contrast);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--silver);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.learn-more {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: 2px solid var(--primary);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.learn-more:hover {
  background-color: var(--primary);
  color: white;
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
}

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

.testimonial-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent);
}

.testimonial-rating {
  margin: 1rem 0;
  color: #fbbf24; /* Amber color for stars */
}

.testimonial-rating i {
  margin-right: 0.25rem;
}

.quote-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Service Area Section */
.service-area {
  padding: 5rem 0;
  background-color: white;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  min-height: 600px;
}

.areas-we-serve,
.map-container {
  background-color: var(--accent);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-container {
  position: relative;
}

.map-frame {
  flex-grow: 1;
  margin-top: 1.5rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.5rem;
}

.map-header {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--contrast);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem 2.5rem;
  margin: 1.5rem 0;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.area-check {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}

.contact-intro {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-intro h3 {
  color: #2ecc71;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

.quick-contact {
  background-color: rgba(248, 249, 250, 0.4);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.contact-item {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.75rem;
  margin-top: 0.25rem;
}

.contact-item .label {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-item .note {
  color: var(--silver);
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
}

select {
  height: 3.25rem;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

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

.btn-submit {
  width: 100%;
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: var(--contrast);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Footer */
footer {
  background-color: var(--contrast);
  color: white;
  padding: 2.5rem 0;
  margin-top: 2.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* Footer sections for detailed footer layout */
.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #2ecc71 !important;
}

.footer-section p {
  color: white;
  line-height: 1.6;
}

.footer-logo .logo-black {
  color: white !important;
}

.footer-contact h4,
.footer-hours h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-contact p,
.footer-hours p {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: white;
  margin: 0;
}

.company-info {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
}

.company-info a {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s;
}

.company-info a:hover {
  color: #2ecc71 !important;
}

.company-info .logo-black {
  color: white !important;
}

.company-info .logo-green {
  color: white !important;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: white !important;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #2ecc71 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Utility Classes */
.section-description {
  text-align: center;
  color: rgba(44, 62, 80, 0.8);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.form-message {
  margin: 1rem 0;
}

.form-message.error {
  color: #dc2626;
}

.form-message.success {
.form-message.loading {
  color: #2563eb;
  font-style: italic;
}  color: #059669;
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-content h1 {
    text-align: center;
  }
  .hero-content p {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .hero-button {
    width: 100%;
    text-align: center;
    max-width: 400px;
  }
  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 250px;
    height: 45vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.site-header {
  background: #fff !important;
  border-bottom: none;
  box-shadow: none;
  padding: 1rem 0; /* Increased padding */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  margin-bottom: 0;
}

.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0 2.5rem;
  gap: 2rem;
  position: relative;
}

.header-logo {
  flex: 0 0 auto;
  text-align: left;
}

.header-lang {
  margin-left: auto;
}

.header-phone-topright {
  margin-left: 2rem;
  display: flex;
  align-items: center;
}

.header-contact {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
  margin: 0 auto;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--contrast);
}

.header-contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
}

.header-contact-icon i {
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.header-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  justify-content: center;
}

.header-contact-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--contrast);
}

.header-contact-text a,
.header-contact-text span {
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  word-break: break-all;
}

.flag {
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.flag:hover {
  transform: scale(1.15);
}

.cta-quote-btn {
  background-color: white;
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  margin-left: 2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  border: none;
  display: inline-block;
  white-space: nowrap;
}

.cta-quote-btn:hover {
  background-color: var(--contrast);
  color: white;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
}

@media (max-width: 1200px) {
  .nav-container {
    padding: 0 1.25rem;
  }
  .nav-menu {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .header-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  .header-phone-topright {
    margin-left: 0;
    justify-content: flex-end;
    width: 100%;
    margin-top: 0.5rem;
  }
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 500px;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.submenu-section {
  flex: 1;
}

.submenu-section h4 {
  color: var(--contrast);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.dropdown-menu a {
  display: block;
  color: var(--contrast);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 1rem;
  transition: color 0.2s;
}

/* Updated AC Repair Styles - Force Refresh */
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2ecc71;
  --contrast: #2c3e50;
  --accent: #f8f9fa;
  --secondary: #f1f5f9;
  --silver: #94a3b8;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--contrast);
  margin: 0;
  padding: 0;
}

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

/* --- POLISHED GLOBAL HEADER & MENU STYLES --- */
.site-header {
  width: 100%;
  background: #fff !important;
  border-bottom: 1px solid #e5e7eb;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-height: unset;
  height: auto;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.07);
  z-index: 1000;
  position: fixed;
  margin-bottom: 0;
}
.header-top {
  background: transparent;
  padding: 24px 48px 30px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px;
}
.logo {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  margin-right: auto;
}
.logo a {
  text-decoration: none;
}
.logo-bold {
  color: #222;
}
.logo-green {
  color: #22c55e;
  margin-left: 2px;
}
.header-contact {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.call-icon {
  color: #22c55e;
  font-size: 1.2em;
  margin-right: 4px;
}
.call-label {
  color: #222;
  font-weight: 500;
  margin-right: 4px;
}
.call-number {
  color: #22c55e;
  font-weight: 600;
  text-decoration: none;
  margin-right: 16px;
  transition: color 0.2s;
}
.call-number:hover {
  color: #15803d;
}
.quote-btn {
  background: #222f3e;
  color: #fff;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 40px;
  text-decoration: none;
  font-size: 1.15rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
  margin-left: 24px;
  margin-right: 0;
}
.quote-btn:hover {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.12);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
}
.menu-toggle .hamburger {
  width: 28px;
  height: 3px;
  background: #222;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open .hamburger:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  width: 100%;
  background: #22c55e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  position: relative;
  z-index: 1100;
  margin-top: -8px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul li {
  position: relative;
}
.main-nav ul li a,
.main-nav ul li > a {
  color: #fff;
  font-weight: 500;
  font-size: 1.15rem;
  text-decoration: none;
  padding: 22px 0 20px 0;
  display: block;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
}
.main-nav ul li a:hover,
.main-nav ul li > a:hover {
  color: #222f3e;
  background: rgba(255, 255, 255, 0.12);
}
.main-nav ul li.nav-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav ul li.nav-dropdown > a .arrow {
  margin-left: 12px;
  margin-right: 0;
  font-size: 1.1em;
  order: 2;
}
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 240px;
  padding: 12px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 10px 10px;
  z-index: 100;
  padding: 10px 0;
}
.nav-dropdown.open > .dropdown-menu,
.main-nav ul li.nav-dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a,
.dropdown-menu li a {
  color: #1a202c !important; /* much darker for contrast */
  background: none;
  padding: 16px 32px !important;
  font-size: 1.08rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover,
.dropdown-menu li a:hover {
  background: #22c55e !important;
  color: #fff !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .header-top {
    padding: 18px 18px 12px 18px;
  }
  .main-nav ul {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .header-top {
    flex-direction: row;
    padding: 18px 16px 12px 16px;
    gap: 16px;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #22c55e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: none;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 16px 0;
  }
  .main-nav ul li {
    width: 100%;
  }
  .main-nav ul li a {
    padding: 18px 24px;
    width: 100%;
    font-size: 1.1rem;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f3f4f6;
    border-radius: 0;
    min-width: 100%;
    padding: 0;
  }
  .nav-dropdown.open > .dropdown-menu {
    display: block;
  }
  .dropdown-menu li a {
    color: #222;
    padding: 14px 32px;
    font-size: 1rem;
  }
  .menu-toggle {
    display: flex;
  }
  .header-contact {
    margin-left: 0;
  }
  .quote-btn {
    padding: 12px 24px;
    font-size: 1rem;
    margin-left: 12px;
  }
}
@media (max-width: 600px) {
  .header-top {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 4vw 10px 4vw;
    gap: 10px;
  }
  .logo {
    font-size: 0.95rem;
    max-width: 100vw;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
    margin: 0 auto 8px auto;
  }
  .logo-bold,
  .logo-green {
    display: inline;
    font-size: inherit;
    line-height: 1;
    margin: 0;
    padding: 0;
  }
  .header-contact {
    display: none !important;
  }
  .quote-btn {
    width: 100%;
    margin: 10px 0 0 0;
    padding: 12px 0;
    font-size: 1rem;
  }
  .call-icon,
  .call-number {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
    z-index: 1001;
  }
  .hero {
    padding-top: 0 !important;
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex;
    align-items: center;
  }
}

/* Hide old header/menu wrappers if present */
.header-nav-wrapper,
.header-container,
.navbar,
nav.navbar,
.site-header:not(:first-child) {
  display: none !important;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: #22c55e;
  z-index: 999;
  border-bottom: none;
  box-shadow: none;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
}

.nav-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  height: 100%;
  padding: 1.25rem 0;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
  padding: 0.5rem 0;
  display: inline-block;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: #2ecc71;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown span {
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-dropdown:hover span {
  color: #2ecc71;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
}

.dropdown-menu a {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #2ecc71;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }

  .header-contact {
    gap: 1rem;
  }

  .call-section {
    display: none;
  }

  .cta-quote-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .header-phone-topright .phone-label {
    display: none;
  }

  .header-phone-topright .phone-number {
    font-size: 0.875rem;
  }

  .header-actions {
    gap: 0.5rem;
    display: flex !important;
  }

  .navbar {
    top: 70px;
  }

  /* Show mobile menu button on mobile - IMPORTANT! */
  .mobile-menu-btn {
    display: block !important;
    order: 3;
  }

  /* Hide navigation menu by default on mobile */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
    width: 100%;
  }

  /* Show navigation menu when active */
  .nav-menu.active {
    display: flex;
  }

  /* Mobile nav links */
  .nav-link {
    font-size: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    color: #333;
    width: 100%;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Mobile dropdown behavior */
  .nav-dropdown {
    position: relative;
    width: 100%;
  }

  .nav-dropdown span {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
    width: 100%;
    background: white;
    transition: background-color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .nav-dropdown span:hover,
  .nav-dropdown span:active {
    background: #f8f9fa;
  }

  .dropdown-menu {
    display: none;
    position: static;
    background: white;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-direction: column;
    border-left: 3px solid #2ecc71;
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex !important;
    animation: slideDown 0.3s ease;
  }

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

  .dropdown-menu a {
    padding: 1rem 2rem !important;
    border: none;
    border-bottom: 1px solid #e9ecef !important;
    color: #2c3e50 !important;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    background: white !important;
    margin: 0;
    line-height: 1;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .dropdown-menu a:last-child {
    border-bottom: none !important;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:active {
    background-color: #f8f9fa !important;
    color: #2ecc71 !important;
    padding-left: 2.5rem !important;
  }
}

@media (min-width: 769px) {
  .navbar {
    padding: 0.75rem 0;
  }
  .nav-container {
    padding-top: 0.075rem;
    padding-bottom: 0.075rem;
  }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0.5rem 1rem;
    box-shadow: none;
  }

  /* Hide mobile menu button on desktop */
  .mobile-menu-btn {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 2rem;
  }
}

/* Update hero section to account for fixed navbar */
.hero {
  position: relative;
  width: 100%;
  height: 120vh;
  min-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 200px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
  z-index: 1;
}

.hero-image-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 500px;
    padding-top: 120px;
  }
  .hero-image {
    display: none;
  }
  .hero-image-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    z-index: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
  margin-left: 0;
  color: white;
}

.hero-content h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  color: white;
  text-align: left;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
  color: white;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-button {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: none;
}

.hero-button.primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.hero-button.primary:hover {
  background-color: #1a7fd9;
  border-color: #1a7fd9;
  transform: translateY(-2px);
}

.hero-button.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 1rem 3rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.btn-primary:hover {
  background-color: var(--contrast);
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary);
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: background-color 0.3s;
}

.floating-contact i {
  font-size: 1.5rem;
}

.floating-contact:hover {
  background-color: var(--contrast);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background-color: white;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  background-color: var(--accent);
  border-radius: 50%;
}

.service-card h3 {
  color: var(--contrast);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--silver);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.learn-more {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: 2px solid var(--primary);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.learn-more:hover {
  background-color: var(--primary);
  color: white;
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
}

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

.testimonial-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent);
}

.testimonial-rating {
  margin: 1rem 0;
  color: #fbbf24; /* Amber color for stars */
}

.testimonial-rating i {
  margin-right: 0.25rem;
}

.quote-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Service Area Section */
.service-area {
  padding: 5rem 0;
  background-color: white;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  min-height: 600px;
}

.areas-we-serve,
.map-container {
  background-color: var(--accent);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-container {
  position: relative;
}

.map-frame {
  flex-grow: 1;
  margin-top: 1.5rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.5rem;
}

.map-header {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--contrast);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem 2.5rem;
  margin: 1.5rem 0;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.area-check {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}

.contact-intro {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-intro h3 {
  color: #2ecc71;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

.quick-contact {
  background-color: rgba(248, 249, 250, 0.4);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.contact-item {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.75rem;
  margin-top: 0.25rem;
}

.contact-item .label {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-item .note {
  color: var(--silver);
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
}

select {
  height: 3.25rem;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

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

.btn-submit {
  width: 100%;
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: var(--contrast);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Footer */
footer {
  background-color: var(--contrast);
  color: white;
  padding: 2.5rem 0;
  margin-top: 2.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* Footer sections for detailed footer layout */
.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #2ecc71 !important;
}

.footer-section p {
  color: white;
  line-height: 1.6;
}

.footer-logo .logo-black {
  color: white !important;
}

.footer-contact h4,
.footer-hours h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-contact p,
.footer-hours p {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: white;
  margin: 0;
}

.company-info {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
}

.company-info a {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s;
}

.company-info a:hover {
  color: #2ecc71 !important;
}

.company-info .logo-black {
  color: white !important;
}

.company-info .logo-green {
  color: white !important;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: white !important;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #2ecc71 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Utility Classes */
.section-description {
  text-align: center;
  color: rgba(44, 62, 80, 0.8);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.form-message {
  margin: 1rem 0;
}

.form-message.error {
  color: #dc2626;
}

.form-message.success {
.form-message.loading {
  color: #2563eb;
  font-style: italic;
}  color: #059669;
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-content h1 {
    text-align: center;
  }
  .hero-content p {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .hero-button {
    width: 100%;
    text-align: center;
    max-width: 400px;
  }
  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 250px;
    height: 45vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.site-header {
  background: #fff !important;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.07);
  padding: 1rem 0; /* Increased padding */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  margin-bottom: 0;
}

.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0 2.5rem;
  gap: 2rem;
  position: relative;
}

.header-logo {
  flex: 0 0 auto;
  text-align: left;
}

.header-lang {
  margin-left: auto;
}

.header-phone-topright {
  margin-left: 2rem;
  display: flex;
  align-items: center;
}

.header-contact {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
  margin: 0 auto;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--contrast);
}

.header-contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
}

.header-contact-icon i {
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.header-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  justify-content: center;
}

.header-contact-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--contrast);
}

.header-contact-text a,
.header-contact-text span {
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  word-break: break-all;
}

.flag {
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.flag:hover {
  transform: scale(1.15);
}

.cta-quote-btn {
  background-color: white;
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  margin-left: 2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  border: none;
  display: inline-block;
  white-space: nowrap;
}

.cta-quote-btn:hover {
  background-color: var(--contrast);
  color: white;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
}

@media (max-width: 1200px) {
  .nav-container {
    padding: 0 1.25rem;
  }
  .nav-menu {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .header-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  .header-phone-topright {
    margin-left: 0;
    justify-content: flex-end;
    width: 100%;
    margin-top: 0.5rem;
  }
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 500px;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.submenu-section {
  flex: 1;
}

.submenu-section h4 {
  color: var(--contrast);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.dropdown-menu a {
  display: block;
  color: var(--contrast);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 1rem;
  transition: color 0.2s;
}

.dropdown-menu a:hover {
  color: var(--primary);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    display: none;
  }

  .submenu-section h4 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .dropdown-menu a {
    color: white;
    padding: 0.5rem;
  }

  .dropdown-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex;
  }
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* Only stretch the trigger on mobile */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .nav-dropdown > span {
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
  }
}

.nav-dropdown > span {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

/* Add top padding to main content to prevent it from being hidden */
.hero,
.main-content,
.container:first-of-type {
  padding-top: 120px; /* Adjusted to account for new header + navbar height */
}

.logo-text {
  font-weight: bold;
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Inter', sans-serif;
}
.logo-black {
  color: #000000;
}
.logo-green {
  color: #27ae60;
}

@media (max-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white !important;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
    padding: 0;
    width: 100%;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    min-height: 60px;
    width: 100%;
    margin: 0;
    position: relative;
  }

  .header-logo {
    flex: 0 0 auto;
    text-align: left;
    order: 1;
  }

  .header-logo .logo-black {
    font-size: 1.1rem;
  }

  .header-logo .logo-green {
    font-size: 1.1rem;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0.5rem 1rem;
    box-shadow: none;
  }

  .header-logo {
    font-size: 1.25rem;
  }

  /* Hide mobile menu button on desktop */
  .mobile-menu-btn {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
  }

  .header-phone-topright {
    font-size: 1.1rem;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .cta-quote-btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    margin-left: 0;
    background-color: #2c3e50 !important;
    color: #fff !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  }

  .cta-quote-btn:hover {
    background: transparent !important;
    color: #2c3e50 !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
  }

  .nav-menu {
    padding: 1rem;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    z-index: 1000;
  }

  .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Ensure proper spacing and hover states for desktop */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown span {
    color: #333;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-dropdown:hover span {
    color: #2ecc71;
  }
}

/* About Us Section */
.about-us {
  padding: 5rem 0 4rem 0;
  background: #fff;
}
.about-us-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-us-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-img {
  width: 270px;
  height: 320px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
  background: #f8f9fa;
}
.about-us-content {
  flex: 1 1 400px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-us-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.25rem;
}
.about-us-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--contrast);
  text-align: left;
}
.about-us-desc {
  font-size: 1.15rem;
  color: var(--contrast);
  margin-bottom: 1.5rem;
}
.about-us-features {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 1 0;
}
.about-feature-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-top: 0.1rem;
}
.about-feature-title {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--contrast);
}
.about-feature-desc {
  color: var(--silver);
  font-size: 1rem;
}
.about-us-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
}
.about-btn.primary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.about-btn.primary:hover {
  background: #218c5a;
}
.about-btn.secondary {
  background: #fff;
  color: #222;
  border: none;
  font-weight: 700;
  font-size: 1.2rem;
  gap: 0.5rem;
  box-shadow: none;
}
.about-btn.secondary i {
  color: #1dbf73;
  font-size: 2rem;
  margin-right: 0.5rem;
}
@media (max-width: 1024px) {
  .about-us-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 1rem;
  }
  .about-img {
    width: 180px;
    height: 200px;
  }
  .about-us-content {
    max-width: 100%;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 2.5rem 0 2rem 0;
  }
  .about-us-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
  }
  .about-img {
    width: 120px;
    height: 120px;
  }
  .about-us-content h2 {
    font-size: 1.5rem;
  }
  .about-us-label {
    font-size: 1rem;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1rem;
  }
  .about-us-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .about-btn {
    width: 100%;
    justify-content: center;
  }
}

/* AC Repair Page Redesign - Hero Section */
.ac-specialist-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(
      135deg,
      rgba(46, 204, 113, 0.95) 0%,
      rgba(44, 62, 80, 0.95) 100%
    ),
    url('images/Hero-DependableAC.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.ac-specialist-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(46, 204, 113, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(52, 152, 219, 0.3) 0%,
      transparent 50%
    );
  z-index: 1;
}

.ac-specialist-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-specialist-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
  text-align: center;
}

.ac-specialist-hero .hero-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  color: #2ecc71;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ac-specialist-hero .hero-tagline-sub {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ac-specialist-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  color: white !important;
  -webkit-text-fill-color: white !important;
  text-align: center;
}

.ac-specialist-hero .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.ac-specialist-hero .hero-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.ac-specialist-hero .hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.ac-specialist-hero .hero-button:hover::before {
  left: 100%;
}

.ac-specialist-hero .hero-button.primary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  border: 2px solid transparent;
}

.ac-specialist-hero .hero-button.primary:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.ac-specialist-hero .hero-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.ac-specialist-hero .hero-button.secondary:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content Redesign */
.main-content {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
  padding: 4rem 0;
  position: relative;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    180deg,
    rgba(46, 204, 113, 0.1) 0%,
    transparent 100%
  );
}

.main-content .container {
  position: relative;
  z-index: 2;
}

.main-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-content h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  border-radius: 2px;
}

.content-text {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 0 2rem;
}

.content-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cta-text {
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-text::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.cta-text strong {
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Problem Sections Redesign */
.ac-problems-section,
.troubleshooting-section,
.hot-air-section,
.when-repair-section,
.replacement-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 204, 113, 0.1);
}

.ac-problems-section::before,
.troubleshooting-section::before,
.hot-air-section::before,
.when-repair-section::before,
.replacement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
}

.ac-problems-section h2,
.troubleshooting-section h2,
.hot-air-section h2,
.when-repair-section h2,
.replacement-section h2 {
  font-size: 2.3rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  font-weight: 700;
}

.ac-problems-section h2::after,
.troubleshooting-section h2::after,
.hot-air-section h2::after,
.when-repair-section h2::after,
.replacement-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 2px;
}

.ac-problems-section > p,
.troubleshooting-section > p,
.hot-air-section > p,
.when-repair-section > p,
.replacement-section > p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5a6c7d;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.problems-grid,
.troubleshooting-grid,
.hot-air-grid,
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.problems-column,
.troubleshooting-column,
.hot-air-column,
.signs-column {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.problems-column:hover,
.troubleshooting-column:hover,
.hot-air-column:hover,
.signs-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
}

/* Updated AC Repair Styles - Force Refresh */
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2ecc71;
  --contrast: #2c3e50;
  --accent: #f8f9fa;
  --secondary: #f1f5f9;
  --silver: #94a3b8;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--contrast);
  margin: 0;
  padding: 0;
}

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

/* --- POLISHED GLOBAL HEADER & MENU STYLES --- */
.site-header {
  width: 100%;
  background: #fff !important;
  border-bottom: 1px solid #e5e7eb;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-height: unset;
  height: auto;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.07);
  z-index: 1000;
  position: fixed;
  margin-bottom: 0;
}
.header-top {
  background: transparent;
  padding: 24px 48px 30px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px;
}
.logo {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  margin-right: auto;
}
.logo a {
  text-decoration: none;
}
.logo-bold {
  color: #222;
}
.logo-green {
  color: #22c55e;
  margin-left: 2px;
}
.header-contact {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.call-icon {
  color: #22c55e;
  font-size: 1.2em;
  margin-right: 4px;
}
.call-label {
  color: #222;
  font-weight: 500;
  margin-right: 4px;
}
.call-number {
  color: #22c55e;
  font-weight: 600;
  text-decoration: none;
  margin-right: 16px;
  transition: color 0.2s;
}
.call-number:hover {
  color: #15803d;
}
.quote-btn {
  background: #222f3e;
  color: #fff;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 40px;
  text-decoration: none;
  font-size: 1.15rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
  margin-left: 24px;
  margin-right: 0;
}
.quote-btn:hover {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.12);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
}
.menu-toggle .hamburger {
  width: 28px;
  height: 3px;
  background: #222;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open .hamburger:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  width: 100%;
  background: #22c55e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  position: relative;
  z-index: 1100;
  margin-top: -20px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul li {
  position: relative;
}
.main-nav ul li a,
.main-nav ul li > a {
  color: #fff;
  font-weight: 500;
  font-size: 1.15rem;
  text-decoration: none;
  padding: 22px 0 20px 0;
  display: block;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
}
.main-nav ul li a:hover,
.main-nav ul li > a:hover {
  color: #222f3e;
  background: rgba(255, 255, 255, 0.12);
}
.main-nav ul li.nav-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav ul li.nav-dropdown > a .arrow {
  margin-left: 12px;
  margin-right: 0;
  font-size: 1.1em;
  order: 2;
}
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 240px;
  padding: 12px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 10px 10px;
  z-index: 100;
  padding: 10px 0;
}
.nav-dropdown.open > .dropdown-menu,
.main-nav ul li.nav-dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a,
.dropdown-menu li a {
  color: #1a202c !important; /* much darker for contrast */
  background: none;
  padding: 16px 32px !important;
  font-size: 1.08rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover,
.dropdown-menu li a:hover {
  background: #22c55e !important;
  color: #fff !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .header-top {
    padding: 18px 18px 12px 18px;
  }
  .main-nav ul {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .header-top {
    flex-direction: row;
    padding: 18px 16px 12px 16px;
    gap: 16px;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #22c55e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: none;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 16px 0;
  }
  .main-nav ul li {
    width: 100%;
  }
  .main-nav ul li a {
    padding: 18px 24px;
    width: 100%;
    font-size: 1.1rem;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f3f4f6;
    border-radius: 0;
    min-width: 100%;
    padding: 0;
  }
  .nav-dropdown.open > .dropdown-menu {
    display: block;
  }
  .dropdown-menu li a {
    color: #222;
    padding: 14px 32px;
    font-size: 1rem;
  }
  .menu-toggle {
    display: flex;
  }
  .header-contact {
    margin-left: 0;
  }
  .quote-btn {
    padding: 12px 24px;
    font-size: 1rem;
    margin-left: 12px;
  }
}
@media (max-width: 600px) {
  .header-top {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 4vw 10px 4vw;
    gap: 10px;
  }
  .logo {
    font-size: 0.95rem;
    max-width: 100vw;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
    margin: 0 auto 8px auto;
  }
  .logo-bold,
  .logo-green {
    display: inline;
    font-size: inherit;
    line-height: 1;
    margin: 0;
    padding: 0;
  }
  .header-contact {
    display: none !important;
  }
  .quote-btn {
    width: 100%;
    margin: 10px 0 0 0;
    padding: 12px 0;
    font-size: 1rem;
  }
  .call-icon,
  .call-number {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
    z-index: 1001;
  }
  .hero {
    padding-top: 0 !important;
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex;
    align-items: center;
  }
}

/* Hide old header/menu wrappers if present */
.header-nav-wrapper,
.header-container,
.navbar,
nav.navbar,
.site-header:not(:first-child) {
  display: none !important;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
  border-bottom: 1px solid #ddd;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
}

.nav-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  height: 100%;
  padding: 1.25rem 0;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
  padding: 0.5rem 0;
  display: inline-block;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: #2ecc71;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown span {
  color: #333;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-dropdown:hover span {
  color: #2ecc71;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
}

.dropdown-menu a {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #2ecc71;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }

  .header-contact {
    gap: 1rem;
  }

  .call-section {
    display: none;
  }

  .cta-quote-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .header-phone-topright .phone-label {
    display: none;
  }

  .header-phone-topright .phone-number {
    font-size: 0.875rem;
  }

  .header-actions {
    gap: 0.5rem;
    display: flex !important;
  }

  .navbar {
    top: 70px;
  }

  /* Show mobile menu button on mobile - IMPORTANT! */
  .mobile-menu-btn {
    display: block !important;
    order: 3;
  }

  /* Hide navigation menu by default on mobile */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
    width: 100%;
  }

  /* Show navigation menu when active */
  .nav-menu.active {
    display: flex;
  }

  /* Mobile nav links */
  .nav-link {
    font-size: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    color: #333;
    width: 100%;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Mobile dropdown behavior */
  .nav-dropdown {
    position: relative;
    width: 100%;
  }

  .nav-dropdown span {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
    width: 100%;
    background: white;
    transition: background-color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .nav-dropdown span:hover,
  .nav-dropdown span:active {
    background: #f8f9fa;
  }

  .dropdown-menu {
    display: none;
    position: static;
    background: white;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-direction: column;
    border-left: 3px solid #2ecc71;
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex !important;
    animation: slideDown 0.3s ease;
  }

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

  .dropdown-menu a {
    padding: 1rem 2rem !important;
    border: none;
    border-bottom: 1px solid #e9ecef !important;
    color: #2c3e50 !important;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    background: white !important;
    margin: 0;
    line-height: 1;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .dropdown-menu a:last-child {
    border-bottom: none !important;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:active {
    background-color: #f8f9fa !important;
    color: #2ecc71 !important;
    padding-left: 2.5rem !important;
  }
}

@media (min-width: 769px) {
  .navbar {
    padding: 0.75rem 0;
  }
  .nav-container {
    padding-top: 0.075rem;
    padding-bottom: 0.075rem;
  }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0.5rem 1rem;
    box-shadow: none;
  }

  /* Hide mobile menu button on desktop */
  .mobile-menu-btn {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 2rem;
  }
}

/* Update hero section to account for fixed navbar */
.hero {
  position: relative;
  width: 100%;
  height: 120vh;
  min-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 200px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
  z-index: 1;
}

.hero-image-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 500px;
    padding-top: 120px;
  }
  .hero-image {
    display: none;
  }
  .hero-image-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    z-index: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
  margin-left: 0;
  color: white;
}

.hero-content h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  color: white;
  text-align: left;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
  color: white;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-button {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: none;
}

.hero-button.primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.hero-button.primary:hover {
  background-color: #1a7fd9;
  border-color: #1a7fd9;
  transform: translateY(-2px);
}

.hero-button.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 1rem 3rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.btn-primary:hover {
  background-color: var(--contrast);
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary);
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: background-color 0.3s;
}

.floating-contact i {
  font-size: 1.5rem;
}

.floating-contact:hover {
  background-color: var(--contrast);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background-color: white;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  background-color: var(--accent);
  border-radius: 50%;
}

.service-card h3 {
  color: var(--contrast);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--silver);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.learn-more {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: 2px solid var(--primary);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.learn-more:hover {
  background-color: var(--primary);
  color: white;
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
}

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

.testimonial-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent);
}

.testimonial-rating {
  margin: 1rem 0;
  color: #fbbf24; /* Amber color for stars */
}

.testimonial-rating i {
  margin-right: 0.25rem;
}

.quote-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Service Area Section */
.service-area {
  padding: 5rem 0;
  background-color: white;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  min-height: 600px;
}

.areas-we-serve,
.map-container {
  background-color: var(--accent);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-container {
  position: relative;
}

.map-frame {
  flex-grow: 1;
  margin-top: 1.5rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.5rem;
}

.map-header {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--contrast);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem 2.5rem;
  margin: 1.5rem 0;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.area-check {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}

.contact-intro {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-intro h3 {
  color: #2ecc71;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

.quick-contact {
  background-color: rgba(248, 249, 250, 0.4);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.contact-item {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.75rem;
  margin-top: 0.25rem;
}

.contact-item .label {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-item .note {
  color: var(--silver);
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
}

select {
  height: 3.25rem;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

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

.btn-submit {
  width: 100%;
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: var(--contrast);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Footer */
footer {
  background-color: var(--contrast);
  color: white;
  padding: 2.5rem 0;
  margin-top: 2.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* Footer sections for detailed footer layout */
.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #2ecc71 !important;
}

.footer-section p {
  color: white;
  line-height: 1.6;
}

.footer-logo .logo-black {
  color: white !important;
}

.footer-contact h4,
.footer-hours h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-contact p,
.footer-hours p {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: white;
  margin: 0;
}

.company-info {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
}

.company-info a {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s;
}

.company-info a:hover {
  color: #2ecc71 !important;
}

.company-info .logo-black {
  color: white !important;
}

.company-info .logo-green {
  color: white !important;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: white !important;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #2ecc71 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Utility Classes */
.section-description {
  text-align: center;
  color: rgba(44, 62, 80, 0.8);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.form-message {
  margin: 1rem 0;
}

.form-message.error {
  color: #dc2626;
}

.form-message.success {
.form-message.loading {
  color: #2563eb;
  font-style: italic;
}  color: #059669;
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-content h1 {
    text-align: center;
  }
  .hero-content p {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .hero-button {
    width: 100%;
    text-align: center;
    max-width: 400px;
  }
  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 250px;
    height: 45vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.site-header {
  background: #fff !important;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.07);
  padding: 1rem 0; /* Increased padding */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  margin-bottom: 0;
}

.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0 2.5rem;
  gap: 2rem;
  position: relative;
}

.header-logo {
  flex: 0 0 auto;
  text-align: left;
}

.header-lang {
  margin-left: auto;
}

.header-phone-topright {
  margin-left: 2rem;
  display: flex;
  align-items: center;
}

.header-contact {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
  margin: 0 auto;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--contrast);
}

.header-contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
}

.header-contact-icon i {
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.header-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  justify-content: center;
}

.header-contact-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--contrast);
}

.header-contact-text a,
.header-contact-text span {
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  word-break: break-all;
}

.flag {
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.flag:hover {
  transform: scale(1.15);
}

.cta-quote-btn {
  background-color: white;
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  margin-left: 2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  border: none;
  display: inline-block;
  white-space: nowrap;
}

.cta-quote-btn:hover {
  background-color: var(--contrast);
  color: white;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
}

@media (max-width: 1200px) {
  .nav-container {
    padding: 0 1.25rem;
  }
  .nav-menu {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .header-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  .header-phone-topright {
    margin-left: 0;
    justify-content: flex-end;
    width: 100%;
    margin-top: 0.5rem;
  }
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 500px;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.submenu-section {
  flex: 1;
}

.submenu-section h4 {
  color: var(--contrast);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.dropdown-menu a {
  display: block;
  color: var(--contrast);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 1rem;
  transition: color 0.2s;
}

.dropdown-menu a:hover {
  color: var(--primary);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    display: none;
  }

  .submenu-section h4 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }

  .dropdown-menu a {
    color: white;
    padding: 0.5rem;
  }

  .dropdown-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex;
  }
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* Only stretch the trigger on mobile */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .nav-dropdown > span {
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
  }
}

.nav-dropdown > span {
  display: flex;
  align-items: center;
  gap: 0.4em;
}

/* Add top padding to main content to prevent it from being hidden */
.hero,
.main-content,
.container:first-of-type {
  padding-top: 120px; /* Adjusted to account for new header + navbar height */
}

.logo-text {
  font-weight: bold;
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Inter', sans-serif;
}
.logo-black {
  color: #000000;
}
.logo-green {
  color: #27ae60;
}

@media (max-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white !important;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
    padding: 0;
    width: 100%;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    min-height: 60px;
    width: 100%;
    margin: 0;
    position: relative;
  }

  .header-logo {
    flex: 0 0 auto;
    text-align: left;
    order: 1;
  }

  .header-logo .logo-black {
    font-size: 1.1rem;
  }

  .header-logo .logo-green {
    font-size: 1.1rem;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0.5rem 1rem;
    box-shadow: none;
  }

  .header-logo {
    font-size: 1.25rem;
  }

  /* Hide mobile menu button on desktop */
  .mobile-menu-btn {
    display: none !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
  }

  .header-phone-topright {
    font-size: 1.1rem;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .cta-quote-btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    margin-left: 0;
    background-color: #2c3e50 !important;
    color: #fff !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  }

  .cta-quote-btn:hover {
    background: transparent !important;
    color: #2c3e50 !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
  }

  .nav-menu {
    padding: 1rem;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    z-index: 1000;
  }

  .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Ensure proper spacing and hover states for desktop */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown span {
    color: #333;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-dropdown:hover span {
    color: #2ecc71;
  }
}

/* About Us Section */
.about-us {
  padding: 5rem 0 4rem 0;
  background: #fff;
}
.about-us-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-us-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-img {
  width: 270px;
  height: 320px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
  background: #f8f9fa;
}
.about-us-content {
  flex: 1 1 400px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-us-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.25rem;
}
.about-us-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--contrast);
  text-align: left;
}
.about-us-desc {
  font-size: 1.15rem;
  color: var(--contrast);
  margin-bottom: 1.5rem;
}
.about-us-features {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 1 0;
}
.about-feature-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-top: 0.1rem;
}
.about-feature-title {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--contrast);
}
.about-feature-desc {
  color: var(--silver);
  font-size: 1rem;
}
.about-us-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
}
.about-btn.primary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.about-btn.primary:hover {
  background: #218c5a;
}
.about-btn.secondary {
  background: #fff;
  color: #222;
  border: none;
  font-weight: 700;
  font-size: 1.2rem;
  gap: 0.5rem;
  box-shadow: none;
}
.about-btn.secondary i {
  color: #1dbf73;
  font-size: 2rem;
  margin-right: 0.5rem;
}
@media (max-width: 1024px) {
  .about-us-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 1rem;
  }
  .about-img {
    width: 180px;
    height: 200px;
  }
  .about-us-content {
    max-width: 100%;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 2.5rem 0 2rem 0;
  }
  .about-us-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
  }
  .about-img {
    width: 120px;
    height: 120px;
  }
  .about-us-content h2 {
    font-size: 1.5rem;
  }
  .about-us-label {
    font-size: 1rem;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1rem;
  }
  .about-us-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .about-btn {
    width: 100%;
    justify-content: center;
  }
}

/* AC Repair Page Redesign - Hero Section */
.ac-specialist-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(
      135deg,
      rgba(46, 204, 113, 0.95) 0%,
      rgba(44, 62, 80, 0.95) 100%
    ),
    url('images/Hero-DependableAC.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.ac-specialist-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(46, 204, 113, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(52, 152, 219, 0.3) 0%,
      transparent 50%
    );
  z-index: 1;
}

.ac-specialist-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-specialist-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
  text-align: center;
}

.ac-specialist-hero .hero-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  color: #2ecc71;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ac-specialist-hero .hero-tagline-sub {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ac-specialist-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  color: white !important;
  -webkit-text-fill-color: white !important;
  text-align: center;
}

.ac-specialist-hero .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.ac-specialist-hero .hero-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.ac-specialist-hero .hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.ac-specialist-hero .hero-button:hover::before {
  left: 100%;
}

.ac-specialist-hero .hero-button.primary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  border: 2px solid transparent;
}

.ac-specialist-hero .hero-button.primary:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.ac-specialist-hero .hero-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.ac-specialist-hero .hero-button.secondary:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content Redesign */
.main-content {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
  padding: 4rem 0;
  position: relative;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    180deg,
    rgba(46, 204, 113, 0.1) 0%,
    transparent 100%
  );
}

.main-content .container {
  position: relative;
  z-index: 2;
}

.main-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-content h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  border-radius: 2px;
}

.content-text {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 0 2rem;
}

.content-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cta-text {
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-text::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.cta-text strong {
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Problem Sections Redesign */
.ac-problems-section,
.troubleshooting-section,
.hot-air-section,
.when-repair-section,
.replacement-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 204, 113, 0.1);
}

.ac-problems-section::before,
.troubleshooting-section::before,
.hot-air-section::before,
.when-repair-section::before,
.replacement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
}

.ac-problems-section h2,
.troubleshooting-section h2,
.hot-air-section h2,
.when-repair-section h2,
.replacement-section h2 {
  font-size: 2.3rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  font-weight: 700;
}

.ac-problems-section h2::after,
.troubleshooting-section h2::after,
.hot-air-section h2::after,
.when-repair-section h2::after,
.replacement-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 2px;
}

.ac-problems-section > p,
.troubleshooting-section > p,
.hot-air-section > p,
.when-repair-section > p,
.replacement-section > p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5a6c7d;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.problems-grid,
.troubleshooting-grid,
.hot-air-grid,
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.problems-column,
.troubleshooting-column,
.hot-air-column,
.signs-column {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.problems-column:hover,
.troubleshooting-column:hover,
.hot-air-column:hover,
.signs-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
}

.problems-column h3,
.troubleshooting-column h3,
.hot-air-column h3,
.signs-column h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problems-column h3::before,
.troubleshooting-column h3::before,
.hot-air-column h3::before,
.signs-column h3::before {
  content: '⚡';
  font-size: 1.2rem;
  color: #2ecc71;
}

.problems-column ul,
.troubleshooting-column ul,
.hot-air-column ul,
.signs-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problems-column li,
.troubleshooting-column li,
.hot-air-column li,
.signs-column li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(224, 230, 237, 0.6);
  color: #5a6c7d;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
  transition: all 0.2s ease;
}

.problems-column li:hover,
.troubleshooting-column li:hover,
.hot-air-column li:hover,
.signs-column li:hover {
  color: #2c3e50;
  background: rgba(46, 204, 113, 0.05);
  padding-left: 2.5rem;
  border-radius: 8px;
  margin: 0 -0.5rem;
  padding-right: 1rem;
}

.problems-column li:before,
.troubleshooting-column li:before,
.hot-air-column li:before,
.signs-column li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2ecc71;
  font-weight: bold;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.problems-column li:last-child,
.troubleshooting-column li:last-child,
.hot-air-column li:last-child,
.signs-column li:last-child {
  border-bottom: none;
}

/* DIY Section Enhancement */
.diy-troubleshooting {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
  box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
  position: relative;
  overflow: hidden;
}

.diy-troubleshooting::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.diy-troubleshooting h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.diy-item {
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.diy-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.diy-item h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.diy-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a6c7d;
}

/* Professional Inspection */
.inspection-components {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 15px;
  margin: 3rem 0;
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.2);
}

.inspection-components h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.inspection-components ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.inspection-components li {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.inspection-components li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 4rem 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(52, 152, 219, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.contact-form-section .container {
  position: relative;
  z-index: 2;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  border-radius: 2px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.contact-intro h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2ecc71;
  font-weight: 600;
}

.contact-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.contact-form p {
  color: #5a6c7d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.repair-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.repair-form .form-group {
  margin-bottom: 1.5rem;
}

.repair-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.95rem;
}

.repair-form input,
.repair-form select,
.repair-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #2c3e50;
}

.repair-form input:focus,
.repair-form select:focus,
.repair-form textarea:focus {
  outline: none;
  border-color: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
  transform: translateY(-2px);
}

.repair-form .submit-btn {
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  color: white;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.repair-form .submit-btn:hover {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

/* Contact Info Side */
.contact-info-side {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details h4 {
  color: #2ecc71;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-details h4::before {
  content: '📞';
  font-size: 1.2rem;
}

.contact-details .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details .contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.contact-details .contact-item i {
  font-size: 1.5rem;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.2);
  padding: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details .contact-item a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
}

.hours {
  margin: 2rem 0;
}

.hours h4 {
  color: #3498db;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours h4::before {
  content: '🕒';
  font-size: 1.1rem;
}

.hours p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

.features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.feature-item i {
  font-size: 1.8rem;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.2);
  padding: 1rem;
  border-radius: 15px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h5 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 0.95rem;
}

.emergency-contact {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.emergency-contact p {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ac-specialist-hero {
    height: 60vh;
    min-height: 400px;
  }

  .ac-specialist-hero .hero-tagline {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .ac-specialist-hero .hero-tagline-sub {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .ac-specialist-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .ac-specialist-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .ac-specialist-hero .hero-button {
    min-width: 250px;
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .main-content h2,
  .ac-problems-section h2,
  .contact-form-section h2,
  .diy-troubleshooting h3,
  .replacement-benefits h3 {
    font-size: 2rem;
    text-align: center;
  }

  .problems-grid,
  .diy-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .repair-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .diy-grid {
    gap: 1.5rem;
  }

  .ac-problems-section,
  .diy-troubleshooting,
  .contact-form-section {
    padding: 3rem 0;
  }

  .contact-form,
  .contact-info-side,
  .contact-intro {
    padding: 2rem;
  }
}

/* Replacement Benefits Styling */
.replacement-benefits {
  margin: 3rem 0;
  text-align: center;
}

.replacement-benefits h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-align: center;
  position: relative;
}

.replacement-benefits h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
  justify-content: center;
  place-items: start;
  width: 100%;
}

.benefits-column {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
  height: 100%;
}

.benefits-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
}

.benefits-column h4 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
}

.benefits-column h4::before {
  content: '⚡';
  font-size: 1.2rem;
  color: #2ecc71;
}

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

.benefits-column li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(224, 230, 237, 0.6);
  color: #5a6c7d;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
  transition: all 0.2s ease;
}

.benefits-column li:hover {
  color: #2c3e50;
  background: rgba(46, 204, 113, 0.05);
  padding-left: 2.5rem;
  border-radius: 8px;
  margin: 0 -0.5rem;
  padding-right: 1rem;
}

.benefits-column li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2ecc71;
  font-weight: bold;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.benefits-column li:last-child {
  border-bottom: none;
}

.contact-form,
.contact-intro {
  padding: 2rem 1rem;
}

.benefits-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefits-column {
  padding: 2rem 1.5rem;
}

.replacement-benefits h3 {
  font-size: 1.5rem;
}

/* Better handling for 3-column benefits layout */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .benefits-column {
    padding: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1025px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
  }
}

/* Gallery Page Styles */
.gallery-hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url('images/gallery-hero.jpg');
  background-size: cover;
  background-position: center;
  margin-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.gallery-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-hero .hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.gallery-section {
  padding: 80px 0;
  background: #f8fafc;
}

.gallery-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.gallery-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.gallery-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-hero {
    height: 50vh;
    min-height: 400px;
  }

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

  .gallery-hero .hero-content p {
    font-size: 1.1rem;
  }

  .gallery-intro h2 {
    font-size: 2rem;
  }

  .gallery-intro p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .gallery-hero .hero-content h1 {
    font-size: 1.75rem;
  }

  .gallery-hero .hero-content p {
    font-size: 0.9rem;
  }

  .gallery-intro h2 {
    font-size: 1.5rem;
  }

  .gallery-intro p {
    font-size: 0.9rem;
  }
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid #e9ecef;
  background: white;
  color: #5a6c7d;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
  border-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.gallery-grid {
  column-count: 4;
  column-gap: 20px;
  line-height: 0;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  cursor: pointer;
  break-inside: avoid;
  page-break-inside: avoid;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px 15px 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.2;
}

.gallery-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.3;
}

/* Gallery Filtering Animation */
.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

/* Additional Responsive Styles for Gallery Grid */
@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 3;
    column-gap: 18px;
  }

  .gallery-item {
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 15px;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .gallery-item {
    margin-bottom: 15px;
  }

  .gallery-overlay {
    padding: 15px 12px 12px;
  }

  .gallery-overlay h3 {
    font-size: 0.9rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item {
    height: 200px;
  }

  .gallery-overlay {
    padding: 15px;
  }

  .gallery-overlay h3 {
    font-size: 1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

/* Mobile menu button - hidden by default, shown on mobile */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #2c3e50;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  background-color: rgba(44, 62, 80, 0.1);
}

.cta-quote-btn {
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  margin-left: 0;
  background-color: #2c3e50 !important;
  color: #fff !important;
  border: 2px solid #2c3e50 !important;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}

.cta-quote-btn:hover {
  background: transparent !important;
  color: #2c3e50 !important;
  border: 2px solid #2c3e50 !important;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
}

.nav-menu {
  padding: 1rem;
}

.hero-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  z-index: 1000;
}

.dropdown-menu a {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #2ecc71;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* Ensure proper spacing and hover states for desktop */
.nav-dropdown {
  position: relative;
}

.nav-dropdown span {
  color: #333;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-dropdown:hover span {
  color: #2ecc71;
}

/* About Us Section */
.about-us {
  padding: 5rem 0 4rem 0;
  background: #fff;
}
.about-us-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-us-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-img {
  width: 270px;
  height: 320px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
  background: #f8f9fa;
}
.about-us-content {
  flex: 1 1 400px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-us-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.25rem;
}
.about-us-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--contrast);
  text-align: left;
}
.about-us-desc {
  font-size: 1.15rem;
  color: var(--contrast);
  margin-bottom: 1.5rem;
}
.about-us-features {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 1 0;
}
.about-feature-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-top: 0.1rem;
}
.about-feature-title {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--contrast);
}
.about-feature-desc {
  color: var(--silver);
  font-size: 1rem;
}
.about-us-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
}
.about-btn.primary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.about-btn.primary:hover {
  background: #218c5a;
}
.about-btn.secondary {
  background: #fff;
  color: #222;
  border: none;
  font-weight: 700;
  font-size: 1.2rem;
  gap: 0.5rem;
  box-shadow: none;
}
.about-btn.secondary i {
  color: #1dbf73;
  font-size: 2rem;
  margin-right: 0.5rem;
}
@media (max-width: 1024px) {
  .about-us-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 1rem;
  }
  .about-img {
    width: 180px;
    height: 200px;
  }
  .about-us-content {
    max-width: 100%;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 2.5rem 0 2rem 0;
  }
  .about-us-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
  }
  .about-img {
    width: 120px;
    height: 120px;
  }
  .about-us-content h2 {
    font-size: 1.5rem;
  }
  .about-us-label {
    font-size: 1rem;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1rem;
  }
  .about-us-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .about-btn {
    width: 100%;
    justify-content: center;
  }
}

/* AC Repair Page Redesign - Hero Section */
.ac-specialist-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(
      135deg,
      rgba(46, 204, 113, 0.95) 0%,
      rgba(44, 62, 80, 0.95) 100%
    ),
    url('images/Hero-DependableAC.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.ac-specialist-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(46, 204, 113, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(52, 152, 219, 0.3) 0%,
      transparent 50%
    );
  z-index: 1;
}

.ac-specialist-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-specialist-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
  text-align: center;
}

.ac-specialist-hero .hero-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  color: #2ecc71;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ac-specialist-hero .hero-tagline-sub {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ac-specialist-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  color: white !important;
  -webkit-text-fill-color: white !important;
  text-align: center;
}

.ac-specialist-hero .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.ac-specialist-hero .hero-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.ac-specialist-hero .hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.ac-specialist-hero .hero-button:hover::before {
  left: 100%;
}

.ac-specialist-hero .hero-button.primary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  border: 2px solid transparent;
}

.ac-specialist-hero .hero-button.primary:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.ac-specialist-hero .hero-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.ac-specialist-hero .hero-button.secondary:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content Redesign */
.main-content {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
  padding: 4rem 0;
  position: relative;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    180deg,
    rgba(46, 204, 113, 0.1) 0%,
    transparent 100%
  );
}

.main-content .container {
  position: relative;
  z-index: 2;
}

.main-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-content h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  border-radius: 2px;
}

.content-text {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 0 2rem;
}

.content-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cta-text {
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-text::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.cta-text strong {
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Problem Sections Redesign */
.ac-problems-section,
.troubleshooting-section,
.hot-air-section,
.when-repair-section,
.replacement-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 204, 113, 0.1);
}

.ac-problems-section::before,
.troubleshooting-section::before,
.hot-air-section::before,
.when-repair-section::before,
.replacement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
}

.ac-problems-section h2,
.troubleshooting-section h2,
.hot-air-section h2,
.when-repair-section h2,
.replacement-section h2 {
  font-size: 2.3rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  font-weight: 700;
}

.ac-problems-section h2::after,
.troubleshooting-section h2::after,
.hot-air-section h2::after,
.when-repair-section h2::after,
.replacement-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 2px;
}

.ac-problems-section > p,
.troubleshooting-section > p,
.hot-air-section > p,
.when-repair-section > p,
.replacement-section > p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5a6c7d;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.problems-grid,
.troubleshooting-grid,
.hot-air-grid,
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.problems-column,
.troubleshooting-column,
.hot-air-column,
.signs-column {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.problems-column:hover,
.troubleshooting-column:hover,
.hot-air-column:hover,
.signs-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
}

.problems-column h3,
.troubleshooting-column h3,
.hot-air-column h3,
.signs-column h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problems-column h3::before,
.troubleshooting-column h3::before,
.hot-air-column h3::before,
.signs-column h3::before {
  content: '⚡';
  font-size: 1.2rem;
  color: #2ecc71;
}

.problems-column ul,
.troubleshooting-column ul,
.hot-air-column ul,
.signs-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problems-column li,
.troubleshooting-column li,
.hot-air-column li,
.signs-column li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(224, 230, 237, 0.6);
  color: #5a6c7d;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
  transition: all 0.2s ease;
}

.problems-column li:hover,
.troubleshooting-column li:hover,
.hot-air-column li:hover,
.signs-column li:hover {
  color: #2c3e50;
  background: rgba(46, 204, 113, 0.05);
  padding-left: 2.5rem;
  border-radius: 8px;
  margin: 0 -0.5rem;
  padding-right: 1rem;
}

.problems-column li:before,
.troubleshooting-column li:before,
.hot-air-column li:before,
.signs-column li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2ecc71;
  font-weight: bold;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.problems-column li:last-child,
.troubleshooting-column li:last-child,
.hot-air-column li:last-child,
.signs-column li:last-child {
  border-bottom: none;
}

/* DIY Section Enhancement */
.diy-troubleshooting {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
  box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
  position: relative;
  overflow: hidden;
}

.diy-troubleshooting::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.diy-troubleshooting h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.diy-item {
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.diy-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.diy-item h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.diy-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a6c7d;
}

/* Professional Inspection */
.inspection-components {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 15px;
  margin: 3rem 0;
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.2);
}

.inspection-components h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.inspection-components ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.inspection-components li {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.inspection-components li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 4rem 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(52, 152, 219, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.contact-form-section .container {
  position: relative;
  z-index: 2;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  border-radius: 2px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.contact-intro h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2ecc71;
  font-weight: 600;
}

.contact-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.contact-form p {
  color: #5a6c7d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.repair-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.repair-form .form-group {
  margin-bottom: 1.5rem;
}

.repair-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.95rem;
}

.repair-form input,
.repair-form select,
.repair-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #2c3e50;
}

.repair-form input:focus,
.repair-form select:focus,
.repair-form textarea:focus {
  outline: none;
  border-color: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
  transform: translateY(-2px);
}

.repair-form .submit-btn {
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  color: white;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.repair-form .submit-btn:hover {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

/* Contact Info Side */
.contact-info-side {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details h4 {
  color: #2ecc71;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-details h4::before {
  content: '📞';
  font-size: 1.2rem;
}

.contact-details .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details .contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.contact-details .contact-item i {
  font-size: 1.5rem;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.2);
  padding: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details .contact-item a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
}

.hours {
  margin: 2rem 0;
}

.hours h4 {
  color: #3498db;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours h4::before {
  content: '🕒';
  font-size: 1.1rem;
}

.hours p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

.features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.feature-item i {
  font-size: 1.8rem;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.2);
  padding: 1rem;
  border-radius: 15px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h5 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 0.95rem;
}

.emergency-contact {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.emergency-contact p {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ac-specialist-hero {
    height: 60vh;
    min-height: 400px;
  }

  .ac-specialist-hero .hero-tagline {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .ac-specialist-hero .hero-tagline-sub {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .ac-specialist-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .ac-specialist-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .ac-specialist-hero .hero-button {
    min-width: 250px;
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .main-content h2,
  .ac-problems-section h2,
  .contact-form-section h2,
  .diy-troubleshooting h3,
  .replacement-benefits h3 {
    font-size: 2rem;
    text-align: center;
  }

  .problems-grid,
  .diy-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .repair-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .diy-grid {
    gap: 1.5rem;
  }

  .ac-problems-section,
  .diy-troubleshooting,
  .contact-form-section {
    padding: 3rem 0;
  }

  .contact-form,
  .contact-info-side,
  .contact-intro {
    padding: 2rem;
  }
}

/* Replacement Benefits Styling */
.replacement-benefits {
  margin: 3rem 0;
  text-align: center;
}

.replacement-benefits h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-align: center;
  position: relative;
}

.replacement-benefits h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
  justify-content: center;
  place-items: start;
  width: 100%;
}

.benefits-column {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
  height: 100%;
}

.benefits-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
}

.benefits-column h4 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
}

.benefits-column h4::before {
  content: '⚡';
  font-size: 1.2rem;
  color: #2ecc71;
}

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

.benefits-column li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(224, 230, 237, 0.6);
  color: #5a6c7d;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
  transition: all 0.2s ease;
}

.benefits-column li:hover {
  color: #2c3e50;
  background: rgba(46, 204, 113, 0.05);
  padding-left: 2.5rem;
  border-radius: 8px;
  margin: 0 -0.5rem;
  padding-right: 1rem;
}

.benefits-column li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2ecc71;
  font-weight: bold;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.benefits-column li:last-child {
  border-bottom: none;
}

.contact-form,
.contact-intro {
  padding: 2rem 1rem;
}

.benefits-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefits-column {
  padding: 2rem 1.5rem;
}

.replacement-benefits h3 {
  font-size: 1.5rem;
}

/* Better handling for 3-column benefits layout */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .benefits-column {
    padding: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1025px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
  }
}

/* Gallery Page Styles */
.gallery-hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url('images/gallery-hero.jpg');
  background-size: cover;
  background-position: center;
  margin-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.gallery-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-hero .hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.gallery-section {
  padding: 80px 0;
  background: #f8fafc;
}

.gallery-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.gallery-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.gallery-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-hero {
    height: 50vh;
    min-height: 400px;
  }

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

  .gallery-hero .hero-content p {
    font-size: 1.1rem;
  }

  .gallery-intro h2 {
    font-size: 2rem;
  }

  .gallery-intro p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .gallery-hero .hero-content h1 {
    font-size: 1.75rem;
  }

  .gallery-hero .hero-content p {
    font-size: 0.9rem;
  }

  .gallery-intro h2 {
    font-size: 1.5rem;
  }

  .gallery-intro p {
    font-size: 0.9rem;
  }
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid #e9ecef;
  background: white;
  color: #5a6c7d;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
  border-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.gallery-grid {
  column-count: 4;
  column-gap: 20px;
  line-height: 0;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  cursor: pointer;
  break-inside: avoid;
  page-break-inside: avoid;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px 15px 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.2;
}

.gallery-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.3;
}

/* Gallery Filtering Animation */
.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

/* Additional Responsive Styles for Gallery Grid */
@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 3;
    column-gap: 18px;
  }

  .gallery-item {
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 15px;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .gallery-item {
    margin-bottom: 15px;
  }

  .gallery-overlay {
    padding: 15px 12px 12px;
  }

  .gallery-overlay h3 {
    font-size: 0.9rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item {
    height: 200px;
  }

  .gallery-overlay {
    padding: 15px;
  }

  .gallery-overlay h3 {
    font-size: 1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

/* Mobile menu button - hidden by default, shown on mobile */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #2c3e50;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  background-color: rgba(44, 62, 80, 0.1);
}

.cta-quote-btn {
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  margin-left: 0;
  background-color: #2c3e50 !important;
  color: #fff !important;
  border: 2px solid #2c3e50 !important;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}

.cta-quote-btn:hover {
  background: transparent !important;
  color: #2c3e50 !important;
  border: 2px solid #2c3e50 !important;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
}

.nav-menu {
  padding: 1rem;
}

.hero-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  z-index: 1000;
}

.dropdown-menu a {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #2ecc71;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* Ensure proper spacing and hover states for desktop */
.nav-dropdown {
  position: relative;
}

.nav-dropdown span {
  color: #333;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-dropdown:hover span {
  color: #2ecc71;
}

/* About Us Section */
.about-us {
  padding: 5rem 0 4rem 0;
  background: #fff;
}
.about-us-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-us-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-img {
  width: 270px;
  height: 320px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
  background: #f8f9fa;
}
.about-us-content {
  flex: 1 1 400px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-us-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.25rem;
}
.about-us-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--contrast);
  text-align: left;
}
.about-us-desc {
  font-size: 1.15rem;
  color: var(--contrast);
  margin-bottom: 1.5rem;
}
.about-us-features {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 1 0;
}
.about-feature-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-top: 0.1rem;
}
.about-feature-title {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--contrast);
}
.about-feature-desc {
  color: var(--silver);
  font-size: 1rem;
}
.about-us-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
}
.about-btn.primary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.about-btn.primary:hover {
  background: #218c5a;
}
.about-btn.secondary {
  background: #fff;
  color: #222;
  border: none;
  font-weight: 700;
  font-size: 1.2rem;
  gap: 0.5rem;
  box-shadow: none;
}
.about-btn.secondary i {
  color: #1dbf73;
  font-size: 2rem;
  margin-right: 0.5rem;
}
@media (max-width: 1024px) {
  .about-us-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 1rem;
  }
  .about-img {
    width: 180px;
    height: 200px;
  }
  .about-us-content {
    max-width: 100%;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 2.5rem 0 2rem 0;
  }
  .about-us-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
  }
  .about-img {
    width: 120px;
    height: 120px;
  }
  .about-us-content h2 {
    font-size: 1.5rem;
  }
  .about-us-label {
    font-size: 1rem;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1rem;
  }
  .about-us-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .about-btn {
    width: 100%;
    justify-content: center;
  }
}

/* AC Repair Page Redesign - Hero Section */
.ac-specialist-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(
      135deg,
      rgba(46, 204, 113, 0.95) 0%,
      rgba(44, 62, 80, 0.95) 100%
    ),
    url('images/Hero-DependableAC.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.ac-specialist-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(46, 204, 113, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(52, 152, 219, 0.3) 0%,
      transparent 50%
    );
  z-index: 1;
}

.ac-specialist-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-specialist-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
  text-align: center;
}

.ac-specialist-hero .hero-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  color: #2ecc71;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ac-specialist-hero .hero-tagline-sub {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ac-specialist-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  color: white !important;
  -webkit-text-fill-color: white !important;
  text-align: center;
}

.ac-specialist-hero .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.ac-specialist-hero .hero-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.ac-specialist-hero .hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.ac-specialist-hero .hero-button:hover::before {
  left: 100%;
}

.ac-specialist-hero .hero-button.primary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  border: 2px solid transparent;
}

.ac-specialist-hero .hero-button.primary:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.ac-specialist-hero .hero-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.ac-specialist-hero .hero-button.secondary:hover {
  background: white;
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content Redesign */
.main-content {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
  padding: 4rem 0;
  position: relative;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    180deg,
    rgba(46, 204, 113, 0.1) 0%,
    transparent 100%
  );
}

.main-content .container {
  position: relative;
  z-index: 2;
}

.main-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-content h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  border-radius: 2px;
}

.content-text {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 0 2rem;
}

.content-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cta-text {
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-text::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.cta-text strong {
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Problem Sections Redesign */
.ac-problems-section,
.troubleshooting-section,
.hot-air-section,
.when-repair-section,
.replacement-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 204, 113, 0.1);
}

.ac-problems-section::before,
.troubleshooting-section::before,
.hot-air-section::before,
.when-repair-section::before,
.replacement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
}

.ac-problems-section h2,
.troubleshooting-section h2,
.hot-air-section h2,
.when-repair-section h2,
.replacement-section h2 {
  font-size: 2.3rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  font-weight: 700;
}

.ac-problems-section h2::after,
.troubleshooting-section h2::after,
.hot-air-section h2::after,
.when-repair-section h2::after,
.replacement-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 2px;
}

.ac-problems-section > p,
.troubleshooting-section > p,
.hot-air-section > p,
.when-repair-section > p,
.replacement-section > p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5a6c7d;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.problems-grid,
.troubleshooting-grid,
.hot-air-grid,
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.problems-column,
.troubleshooting-column,
.hot-air-column,
.signs-column {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.problems-column:hover,
.troubleshooting-column:hover,
.hot-air-column:hover,
.signs-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
}

.problems-column h3,
.troubleshooting-column h3,
.hot-air-column h3,
.signs-column h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problems-column h3::before,
.troubleshooting-column h3::before,
.hot-air-column h3::before,
.signs-column h3::before {
  content: '⚡';
  font-size: 1.2rem;
  color: #2ecc71;
}

.problems-column ul,
.troubleshooting-column ul,
.hot-air-column ul,
.signs-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problems-column li,
.troubleshooting-column li,
.hot-air-column li,
.signs-column li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(224, 230, 237, 0.6);
  color: #5a6c7d;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
  transition: all 0.2s ease;
}

.problems-column li:hover,
.troubleshooting-column li:hover,
.hot-air-column li:hover,
.signs-column li:hover {
  color: #2c3e50;
  background: rgba(46, 204, 113, 0.05);
  padding-left: 2.5rem;
  border-radius: 8px;
  margin: 0 -0.5rem;
  padding-right: 1rem;
}

.problems-column li:before,
.troubleshooting-column li:before,
.hot-air-column li:before,
.signs-column li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2ecc71;
  font-weight: bold;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.problems-column li:last-child,
.troubleshooting-column li:last-child,
.hot-air-column li:last-child,
.signs-column li:last-child {
  border-bottom: none;
}

/* DIY Section Enhancement */
.diy-troubleshooting {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
  box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
  position: relative;
  overflow: hidden;
}

.diy-troubleshooting::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.diy-troubleshooting h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.diy-item {
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.diy-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.diy-item h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.diy-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a6c7d;
}

/* Professional Inspection */
.inspection-components {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 15px;
  margin: 3rem 0;
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.2);
}

.inspection-components h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.inspection-components ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.inspection-components li {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.inspection-components li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 4rem 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(52, 152, 219, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.contact-form-section .container {
  position: relative;
  z-index: 2;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  border-radius: 2px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.contact-intro h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2ecc71;
  font-weight: 600;
}

.contact-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.contact-form p {
  color: #5a6c7d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.repair-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.repair-form .form-group {
  margin-bottom: 1.5rem;
}

.repair-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.95rem;
}

.repair-form input,
.repair-form select,
.repair-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #2c3e50;
}

.repair-form input:focus,
.repair-form select:focus,
.repair-form textarea:focus {
  outline: none;
  border-color: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
  transform: translateY(-2px);
}

.repair-form .submit-btn {
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  color: white;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.repair-form .submit-btn:hover {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

/* Contact Info Side */
.contact-info-side {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details h4 {
  color: #2ecc71;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-details h4::before {
  content: '📞';
  font-size: 1.2rem;
}

.contact-details .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details .contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.contact-details .contact-item i {
  font-size: 1.5rem;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.2);
  padding: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details .contact-item a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
}

.hours {
  margin: 2rem 0;
}

.hours h4 {
  color: #3498db;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours h4::before {
  content: '🕒';
  font-size: 1.1rem;
}

.hours p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

.features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.feature-item i {
  font-size: 1.8rem;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.2);
  padding: 1rem;
  border-radius: 15px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h5 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 0.95rem;
}

.emergency-contact {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.emergency-contact p {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ac-specialist-hero {
    height: 60vh;
    min-height: 400px;
  }

  .ac-specialist-hero .hero-tagline {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .ac-specialist-hero .hero-tagline-sub {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .ac-specialist-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .ac-specialist-hero .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .ac-specialist-hero .hero-button {
    min-width: 250px;
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .main-content h2,
  .ac-problems-section h2,
  .contact-form-section h2,
  .diy-troubleshooting h3,
  .replacement-benefits h3 {
    font-size: 2rem;
    text-align: center;
  }

  .problems-grid,
  .diy-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .repair-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .diy-grid {
    gap: 1.5rem;
  }

  .ac-problems-section,
  .diy-troubleshooting,
  .contact-form-section {
    padding: 3rem 0;
  }

  .contact-form,
  .contact-info-side,
  .contact-intro {
    padding: 2rem;
  }
}

/* Replacement Benefits Styling */
.replacement-benefits {
  margin: 3rem 0;
  text-align: center;
}

.replacement-benefits h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-align: center;
  position: relative;
}

.replacement-benefits h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
  justify-content: center;
  place-items: start;
  width: 100%;
}

.benefits-column {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.1);
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
  height: 100%;
}

.benefits-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.3);
}

.benefits-column h4 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
}

.benefits-column h4::before {
  content: '⚡';
  font-size: 1.2rem;
  color: #2ecc71;
}

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

.benefits-column li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(224, 230, 237, 0.6);
  color: #5a6c7d;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
  transition: all 0.2s ease;
}

.benefits-column li:hover {
  color: #2c3e50;
  background: rgba(46, 204, 113, 0.05);
  padding-left: 2.5rem;
  border-radius: 8px;
  margin: 0 -0.5rem;
  padding-right: 1rem;
}

.benefits-column li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2ecc71;
  font-weight: bold;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.benefits-column li:last-child {
  border-bottom: none;
}

.contact-form,
.contact-intro {
  padding: 2rem 1rem;
}

.benefits-grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefits-column {
  padding: 2rem 1.5rem;
}

.replacement-benefits h3 {
  font-size: 1.5rem;
}

/* Better handling for 3-column benefits layout */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .benefits-column {
    padding: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1025px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
  }
}

/* Gallery Page Styles */
.gallery-hero {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url('images/gallery-hero.jpg');
  background-size: cover;
  background-position: center;
  margin-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.gallery-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-hero .hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.gallery-section {
  padding: 80px 0;
  background: #f8fafc;
}

.gallery-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.gallery-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.gallery-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-hero {
    height: 50vh;
    min-height: 400px;
  }

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

  .gallery-hero .hero-content p {
    font-size: 1.1rem;
  }

  .gallery-intro h2 {
    font-size: 2rem;
  }

  .gallery-intro p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .gallery-hero .hero-content h1 {
    font-size: 1.75rem;
  }

  .gallery-hero .hero-content p {
    font-size: 0.9rem;
  }

  .gallery-intro h2 {
    font-size: 1.5rem;
  }

  .gallery-intro p {
    font-size: 0.9rem;
  }
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid #e9ecef;
  background: white;
  color: #5a6c7d;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
  border-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.gallery-grid {
  column-count: 4;
  column-gap: 20px;
  line-height: 0;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  cursor: pointer;
  break-inside: avoid;
  page-break-inside: avoid;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px 15px 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.2;
}

.gallery-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.3;
}

/* Gallery Filtering Animation */
.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

/* Additional Responsive Styles for Gallery Grid */
@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 3;
    column-gap: 18px;
  }

  .gallery-item {
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 15px;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .gallery-item {
    margin-bottom: 15px;
  }

  .gallery-overlay {
    padding: 15px 12px 12px;
  }

  .gallery-overlay h3 {
    font-size: 0.9rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item {
    height: 200px;
  }

  .gallery-overlay {
    padding: 15px;
  }

  .gallery-overlay h3 {
    font-size: 1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

/* Mobile menu button - hidden by default, shown on mobile */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #2c3e50;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  background-color: rgba(44, 62, 80, 0.1);
}

.cta-quote-btn {
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  margin-left: 0;
  background-color: #2c3e50 !important;
  color: #fff !important;
  border: 2px solid #2c3e50 !important;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}

.cta-quote-btn:hover {
  background: transparent !important;
  color: #2c3e50 !important;
  border: 2px solid #2c3e50 !important;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
}

.nav-menu {
  padding: 1rem;
}

.hero-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  z-index: 1000;
}

.dropdown-menu a {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #2ecc71;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* Ensure proper spacing and hover states for desktop */
.nav-dropdown {
  position: relative;
}

.nav-dropdown span {
  color: #333;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-dropdown:hover span {
  color: #2ecc71;
}

/* About Us Section */
.about-us {
  padding: 5rem 0 4rem 0;
  background: #fff;
}
.about-us-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-us-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-img {
  width: 270px;
  height: 320px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
  background: #f8f9fa;
}
.about-us-content {
  flex: 1 1 400px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-us-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.25rem;
}
.about-us-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--contrast);
  text-align: left;
}
.about-us-desc {
  font-size: 1.15rem;
  color: var(--contrast);
  margin-bottom: 1.5rem;
}
.about-us-features {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 1 0;
}
.about-feature-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-top: 0.1rem;
}
.about-feature-title {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--contrast);
}
.about-feature-desc {
  color: var(--silver);
  font-size: 1rem;
}
.about-us-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
}
.about-btn.primary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.about-btn.primary:hover {
  background: #218c5a;
}
.about-btn.secondary {
  background: #fff;
  color: #222;
  border: none;
  font-weight: 700;
  font-size: 1.2rem;
  gap: 0.5rem;
  box-shadow: none;
}
.about-btn.secondary i {
  color: #1dbf73;
  font-size: 2rem;
  margin-right: 0.5rem;
}
@media (max-width: 1024px) {
  .about-us-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 1rem;
  }
  .about-img {
    width: 180px;
    height: 200px;
  }
  .about-us-content {
    max-width: 100%;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 2.5rem 0 2rem 0;
  }
  .about-us-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .about-us-images {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
  }
  .about-img {
    width: 120px;
    height: 120px;
  }
  .about-us-content h2 {
    font-size: 1.5rem;
  }
  .about-us-label {
    font-size: 1rem;
  }
  .about-us-features {
    flex-direction: column;
    gap: 1rem;
  }
  .about-us-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .about-btn {
    width: 100%;
    justify-content: center;
  }
}

/* AC Repair Page Redesign - Hero Section */
.ac-specialist-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(
      135deg,
      rgba(46, 204, 113, 0.95) 0%,
      rgba(44, 62, 80, 0.95) 100%
    ),
    url('images/Hero-DependableAC.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.ac-specialist-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(46, 204, 113, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(52, 152, 219, 0.3) 0%,
      transparent 50%
    );
  z-index: 1;
}

.ac-specialist-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-specialist-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  /* Updated AC Repair Styles - Force Refresh */
  /* Reset and base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --primary: #2ecc71;
    --contrast: #2c3e50;
    --accent: #f8f9fa;
    --secondary: #f1f5f9;
    --silver: #94a3b8;
  }

  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--contrast);
    margin: 0;
    padding: 0;
  }

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

  /* --- POLISHED GLOBAL HEADER & MENU STYLES --- */
  .site-header {
    width: 100%;
    background: #fff !important;
    border-bottom: none;
    box-shadow: none;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    min-height: unset;
    height: auto;
    z-index: 1000;
    position: fixed;
    margin-bottom: 0;
  }
  .header-top {
    background: transparent;
    padding: 24px 48px 30px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 32px;
  }
  .logo {
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    margin-right: auto;
  }
  .logo a {
    text-decoration: none;
  }
  .logo-bold {
    color: #222;
  }
  .logo-green {
    color: #22c55e;
    margin-left: 2px;
  }
  .header-contact {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .call-icon {
    color: #22c55e;
    font-size: 1.2em;
    margin-right: 4px;
  }
  .call-label {
    color: #222;
    font-weight: 500;
    margin-right: 4px;
  }
  .call-number {
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
    margin-right: 16px;
    transition: color 0.2s;
  }
  .call-number:hover {
    color: #15803d;
  }
  .quote-btn {
    background: #222f3e;
    color: #fff;
    font-weight: 700;
    border-radius: 14px;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 1.15rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: none;
    outline: none;
    display: inline-block;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
    margin-left: 24px;
    margin-right: 0;
  }
  .quote-btn:hover {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.12);
  }
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 18px;
  }
  .menu-toggle .hamburger {
    width: 28px;
    height: 3px;
    background: #222;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .menu-toggle.open .hamburger:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.open .hamburger:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open .hamburger:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    width: 100%;
    background: #22c55e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
    position: relative;
    z-index: 1101;
    margin-top: -64px; /* Pull up the green bar to cover header, adjust as needed */
  }
  .main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-nav ul li {
    position: relative;
  }
  .main-nav ul li a,
  .main-nav ul li > a {
    color: #fff;
    font-weight: 500;
    font-size: 1.15rem;
    text-decoration: none;
    padding: 22px 0 20px 0;
    display: block;
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
  }
  .main-nav ul li a:hover,
  .main-nav ul li > a:hover {
    color: #222f3e;
    background: rgba(255, 255, 255, 0.12);
  }
  .main-nav ul li.nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-nav ul li.nav-dropdown > a .arrow {
    margin-left: 12px;
    margin-right: 0;
    font-size: 1.1em;
    order: 2;
  }
  .nav-dropdown {
    position: relative;
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 240px;
    padding: 12px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 10px 10px;
    z-index: 100;
    padding: 10px 0;
  }
  .nav-dropdown.open > .dropdown-menu,
  .main-nav ul li.nav-dropdown:hover > .dropdown-menu {
    display: block;
  }
  .dropdown-menu li {
    width: 100%;
  }
  .dropdown-menu a,
  .dropdown-menu li a {
    color: #1a202c !important; /* much darker for contrast */
    background: none;
    padding: 16px 32px !important;
    font-size: 1.08rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }
  .dropdown-menu a:hover,
  .dropdown-menu li a:hover {
    background: #22c55e !important;
    color: #fff !important;
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
    .header-top {
      padding: 18px 18px 12px 18px;
    }
    .main-nav ul {
      gap: 24px;
    }
  }
  @media (max-width: 900px) {
    .header-top {
      flex-direction: row;
      padding: 18px 16px 12px 16px;
      gap: 16px;
    }
    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100vw;
      background: #22c55e;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      z-index: 999;
      display: none;
      margin-top: -56px;
    }
    .main-nav.open {
      display: block;
    }
    .main-nav ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 0 0 16px 0;
    }
    .main-nav ul li {
      width: 100%;
    }
    .main-nav ul li a {
      padding: 18px 24px;
      width: 100%;
      font-size: 1.1rem;
    }
    .dropdown-menu {
      position: static;
      box-shadow: none;
      background: #f3f4f6;
      border-radius: 0;
      min-width: 100%;
      padding: 0;
    }
    .nav-dropdown.open > .dropdown-menu {
      display: block;
    }
    .dropdown-menu li a {
      color: #222;
      padding: 14px 32px;
      font-size: 1rem;
    }
    .menu-toggle {
      display: flex;
    }
    .header-contact {
      margin-left: 0;
    }
    .quote-btn {
      padding: 12px 24px;
      font-size: 1rem;
      margin-left: 12px;
    }
  }
  @media (max-width: 600px) {
    .header-top {
      flex-direction: column;
      align-items: stretch;
      padding: 10px 4vw 10px 4vw;
      gap: 10px;
    }
    .logo {
      font-size: 0.95rem;
      max-width: 100vw;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 2px;
      justify-content: center;
      margin: 0 auto 8px auto;
    }
    .logo-bold,
    .logo-green {
      display: inline;
      font-size: inherit;
      line-height: 1;
      margin: 0;
      padding: 0;
    }
    .header-contact {
      display: none !important;
    }
    .quote-btn {
      width: 100%;
      margin: 10px 0 0 0;
      padding: 12px 0;
      font-size: 1rem;
    }
    .call-icon,
    .call-number {
      display: none !important;
    }
    .menu-toggle {
      display: flex !important;
      z-index: 1001;
    }
    .hero {
      padding-top: 0 !important;
      min-height: 100vh !important;
      height: 100vh !important;
      display: flex;
      align-items: center;
    }
    .main-nav {
      margin-top: -48px;
    }
  }

  /* Hide old header/menu wrappers if present */
  .header-nav-wrapper,
  .header-container,
  .navbar,
  nav.navbar,
  .site-header:not(:first-child) {
    display: none !important;
  }

  /* Navigation */
  .navbar {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: #22c55e;
    z-index: 999;
    border-bottom: none;
    box-shadow: none;
  }

  .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
  }

  .nav-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    height: 100%;
    padding: 1.25rem 0;
  }

  .nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: inline-block;
    letter-spacing: 0.02em;
  }

  .nav-link:hover {
    color: #2ecc71;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown span {
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-dropdown:hover span {
    color: #2ecc71;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
  }

  .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  @media (max-width: 768px) {
    .header-container {
      padding: 0 1rem;
    }

    .header-contact {
      gap: 1rem;
    }

    .call-section {
      display: none;
    }

    .cta-quote-btn {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
    }

    .header-phone-topright .phone-label {
      display: none;
    }

    .header-phone-topright .phone-number {
      font-size: 0.875rem;
    }

    .header-actions {
      gap: 0.5rem;
      display: flex !important;
    }

    .navbar {
      top: 70px;
    }

    /* Show mobile menu button on mobile - IMPORTANT! */
    .mobile-menu-btn {
      display: block !important;
      order: 3;
    }

    /* Hide navigation menu by default on mobile */
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid #ddd;
      border-top: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      padding: 0;
      width: 100%;
    }

    /* Show navigation menu when active */
    .nav-menu.active {
      display: flex;
    }

    /* Mobile nav links */
    .nav-link {
      font-size: 1rem;
      padding: 1rem;
      border-bottom: 1px solid #eee;
      text-align: left;
      color: #333;
      width: 100%;
    }

    .nav-link:last-child {
      border-bottom: none;
    }

    /* Mobile dropdown behavior */
    .nav-dropdown {
      position: relative;
      width: 100%;
    }

    .nav-dropdown span {
      padding: 1rem;
      border-bottom: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: #333;
      width: 100%;
      background: white;
      transition: background-color 0.3s ease;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .nav-dropdown span:hover,
    .nav-dropdown span:active {
      background: #f8f9fa;
    }

    .dropdown-menu {
      display: none;
      position: static;
      background: white;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
      border: none;
      border-radius: 0;
      margin: 0;
      padding: 0;
      width: 100%;
      flex-direction: column;
      border-left: 3px solid #2ecc71;
    }

    .nav-dropdown.active .dropdown-menu {
      display: flex !important;
      animation: slideDown 0.3s ease;
    }

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

    .dropdown-menu a {
      padding: 1rem 2rem !important;
      border: none;
      border-bottom: 1px solid #e9ecef !important;
      color: #2c3e50 !important;
      text-decoration: none;
      display: block;
      font-size: 0.9rem;
      font-weight: 400;
      background: white !important;
      margin: 0;
      line-height: 1;
      transition: all 0.3s ease;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .dropdown-menu a:last-child {
      border-bottom: none !important;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:active {
      background-color: #f8f9fa !important;
      color: #2ecc71 !important;
      padding-left: 2.5rem !important;
    }
  }

  @media (min-width: 769px) {
    .navbar {
      padding: 0.75rem 0;
    }
    .nav-container {
      padding-top: 0.075rem;
      padding-bottom: 0.075rem;
    }
    .nav-menu {
      display: flex !important;
      flex-direction: row;
      position: static;
      background: transparent;
      padding: 0.5rem 1rem;
      box-shadow: none;
    }

    /* Hide mobile menu button on desktop */
    .mobile-menu-btn {
      display: none !important;
    }

    .header-actions {
      display: flex !important;
      align-items: center;
      gap: 2rem;
    }
  }

  /* Update hero section to account for fixed navbar */
  .hero {
    position: relative;
    width: 100%;
    height: 120vh;
    min-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 200px;
  }

  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 90%;
    z-index: 1;
  }

  .hero-image-mobile {
    display: none;
  }

  @media (max-width: 768px) {
    .hero {
      height: 80vh;
      min-height: 500px;
      padding-top: 120px;
    }
    .hero-image {
      display: none;
    }
    .hero-image-mobile {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 80%;
      z-index: 1;
    }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    margin-left: 0;
    color: white;
  }

  .hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
  }

  .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
    color: white;
  }

  .hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .hero-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-shadow: none;
  }

  .hero-button.primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
  }

  .hero-button.primary:hover {
    background-color: #1a7fd9;
    border-color: #1a7fd9;
    transform: translateY(-2px);
  }

  .hero-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }

  .hero-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  /* Typography */
  h1,
  h2,
  h3 {
    font-weight: 700;
    line-height: 1.2;
  }

  h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Buttons */
  .btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 3rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }

  .btn-primary:hover {
    background-color: var(--contrast);
  }

  /* Floating Contact Button */
  .floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s;
  }

  .floating-contact i {
    font-size: 1.5rem;
  }

  .floating-contact:hover {
    background-color: var(--contrast);
  }

  /* Services Section */
  .services {
    padding: 5rem 0;
    background-color: white;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    background-color: white;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-5px);
  }

  .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
  }

  .service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .service-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    background-color: var(--accent);
    border-radius: 50%;
  }

  .service-card h3 {
    color: var(--contrast);
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .service-card p {
    color: var(--silver);
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .learn-more {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    transition: all 0.3s;
  }

  .learn-more:hover {
    background-color: var(--primary);
    color: white;
  }

  @media (min-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

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

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

  /* Testimonials Section */
  .testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
  }

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

  .testimonial-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent);
  }

  .testimonial-rating {
    margin: 1rem 0;
    color: #fbbf24; /* Amber color for stars */
  }

  .testimonial-rating i {
    margin-right: 0.25rem;
  }

  .quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Service Area Section */
  .service-area {
    padding: 5rem 0;
    background-color: white;
  }

  .service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    min-height: 600px;
  }

  .areas-we-serve,
  .map-container {
    background-color: var(--accent);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .map-container {
    position: relative;
  }

  .map-frame {
    flex-grow: 1;
    margin-top: 1.5rem;
  }

  .map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.5rem;
  }

  .map-header {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--contrast);
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem 2.5rem;
    margin: 1.5rem 0;
  }

  .area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }

  .area-check {
    color: var(--primary);
    font-size: 1.1rem;
  }

  /* Contact Section */
  .contact {
    padding: 5rem 0;
    background-color: white;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
  }

  .contact-intro {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-intro h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .contact-intro p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
  }

  .quick-contact {
    background-color: rgba(248, 249, 250, 0.4);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

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

  .contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .contact-item i {
    color: var(--primary);
    font-size: 1.75rem;
    margin-top: 0.25rem;
  }

  .contact-item .label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
  }

  .contact-item .note {
    color: var(--silver);
    margin-top: 0.25rem;
    font-size: 0.9rem;
  }

  .contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  input,
  select,
  textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
  }

  select {
    height: 3.25rem;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
  }

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

  .btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn-submit:hover {
    background-color: var(--contrast);
  }

  .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* Footer */
  footer {
    background-color: var(--contrast);
    color: white;
    padding: 2.5rem 0;
    margin-top: 2.5rem;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }

  /* Footer sections for detailed footer layout */
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
  }

  .footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section ul li a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-section ul li a:hover {
    color: #2ecc71 !important;
  }

  .footer-section p {
    color: white;
    line-height: 1.6;
  }

  .footer-logo .logo-black {
    color: white !important;
  }

  .footer-contact h4,
  .footer-hours h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .footer-contact p,
  .footer-hours p {
    color: white;
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
  }

  .footer-bottom p {
    color: white;
    margin: 0;
  }

  .company-info {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
  }

  .company-info a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
  }

  .company-info a:hover {
    color: #2ecc71 !important;
  }

  .company-info .logo-black {
    color: white !important;
  }

  .company-info .logo-green {
    color: white !important;
  }

  .social-links {
    display: flex;
    gap: 1.5rem;
  }

  .social-links a {
    color: white !important;
    transition: color 0.3s;
  }

  .social-links a:hover {
    color: #2ecc71 !important;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }

    h2 {
      font-size: 2rem;
    }

    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  }

  /* Utility Classes */
  .section-description {
    text-align: center;
    color: rgba(44, 62, 80, 0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }

  .form-message {
    margin: 1rem 0;
  }

  .form-message.error {
    color: #dc2626;
  }

  .form-message.success {
.form-message.loading {
  color: #2563eb;
  font-style: italic;
}    color: #059669;
  }

  @media (max-width: 768px) {
    .hero {
      height: 100vh;
      min-height: 100vh;
      padding-top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-content {
      text-align: center;
      align-items: center;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-content h1 {
      text-align: center;
    }
    .hero-content p {
      text-align: center;
    }
    .hero-buttons {
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }
    .hero-button {
      width: 100%;
      text-align: center;
      max-width: 400px;
    }
    .hero-overlay {
      background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.2)
      );
    }
  }

  @media (max-width: 480px) {
    .hero {
      min-height: 250px;
      height: 45vh;
    }

    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-content p {
      font-size: 1rem;
    }
  }

  .site-header {
    background: #fff !important;
    border-bottom: none;
    box-shadow: none;
    padding: 1rem 0; /* Increased padding */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    margin-bottom: 0;
  }

  .header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0 2.5rem;
    gap: 2rem;
    position: relative;
  }

  .header-logo {
    flex: 0 0 auto;
    text-align: left;
  }

  .header-lang {
    margin-left: auto;
  }

  .header-phone-topright {
    margin-left: 2rem;
    display: flex;
    align-items: center;
  }

  .header-contact {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
    margin: 0 auto;
  }

  .header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--contrast);
  }

  .header-contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
  }

  .header-contact-icon i {
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
  }

  .header-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    justify-content: center;
  }

  .header-contact-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--contrast);
  }

  .header-contact-text a,
  .header-contact-text span {
    color: var(--primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    word-break: break-all;
  }

  .flag {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .flag:hover {
    transform: scale(1.15);
  }

  .cta-quote-btn {
    background-color: white;
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-left: 2rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    border: none;
    display: inline-block;
    white-space: nowrap;
  }

  .cta-quote-btn:hover {
    background-color: var(--contrast);
    color: white;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
  }

  @media (max-width: 1200px) {
    .nav-container {
      padding: 0 1.25rem;
    }
    .nav-menu {
      gap: 1.5rem;
    }
  }

  @media (max-width: 900px) {
    .header-container {
      flex-direction: column;
      align-items: stretch;
      gap: 0.5rem;
      padding: 0 0.5rem;
    }
    .header-phone-topright {
      margin-left: 0;
      justify-content: flex-end;
      width: 100%;
      margin-top: 0.5rem;
    }
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 500px;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .submenu-section {
    flex: 1;
  }

  .submenu-section h4 {
    color: var(--contrast);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
  }

  .dropdown-menu a {
    display: block;
    color: var(--contrast);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    transition: color 0.2s;
  }

  .dropdown-menu a:hover {
    color: var(--primary);
  }

  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  @media (max-width: 768px) {
    .dropdown-menu {
      position: static;
      min-width: 100%;
      box-shadow: none;
      padding: 1rem;
      flex-direction: column;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.1);
      display: none;
    }

    .submenu-section h4 {
      color: white;
      border-bottom-color: rgba(255, 255, 255, 0.2);
    }

    .dropdown-menu a {
      color: white;
      padding: 0.5rem;
    }

    .dropdown-menu a:hover {
      color: white;
      background: rgba(255, 255, 255, 0.1);
    }

    .nav-dropdown.active .dropdown-menu {
      display: flex;
    }
  }

  .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }

  /* Only stretch the trigger on mobile */
  @media (max-width: 768px) {
    .nav-dropdown {
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      display: flex;
    }

    .nav-dropdown > span {
      justify-content: space-between;
      width: 100%;
      padding: 1rem 0;
    }
  }

  .nav-dropdown > span {
    display: flex;
    align-items: center;
    gap: 0.4em;
  }

  /* Add top padding to main content to prevent it from being hidden */
  .hero,
  .main-content,
  .container:first-of-type {
    padding-top: 120px; /* Adjusted to account for new header + navbar height */
  }

  .logo-text {
    font-weight: bold;
    font-size: 1.25rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
  }
  .logo-black {
    color: #000000;
  }
  .logo-green {
    color: #27ae60;
  }

  @media (max-width: 768px) {
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: white !important;
      border-bottom: 1px solid #ddd;
      z-index: 1000;
      padding: 0;
      width: 100%;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1rem;
      min-height: 60px;
      width: 100%;
      margin: 0;
      position: relative;
    }

    .header-logo {
      flex: 0 0 auto;
      text-align: left;
      order: 1;
    }

    .header-logo .logo-black {
      font-size: 1.1rem;
    }

    .header-logo .logo-green {
      font-size: 1.1rem;
    }

    .nav-menu {
      display: flex !important;
      flex-direction: row;
      position: static;
      background: transparent;
      padding: 0.5rem 1rem;
      box-shadow: none;
    }

    .header-logo {
      font-size: 1.25rem;
    }

    /* Hide mobile menu button on desktop */
    .mobile-menu-btn {
      display: none !important;
    }

    .header-actions {
      display: flex !important;
      align-items: center;
      gap: 0.5rem;
    }

    .header-phone-topright {
      font-size: 1.1rem;
      margin-left: 0;
      margin-right: 0;
      display: flex;
      align-items: center;
      height: 100%;
    }

    .cta-quote-btn {
      font-size: 1.1rem;
      padding: 0.75rem 2rem;
      margin-left: 0;
      background-color: #2c3e50 !important;
      color: #fff !important;
      border: 2px solid #2c3e50 !important;
      box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
      transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
    }

    .cta-quote-btn:hover {
      background: transparent !important;
      color: #2c3e50 !important;
      border: 2px solid #2c3e50 !important;
      box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
    }

    .nav-menu {
      padding: 1rem;
    }

    .hero-overlay {
      background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.2)
      );
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 220px;
      padding: 1rem 0;
      border-radius: 0.5rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      margin-top: 0.5rem;
      z-index: 1000;
    }

    .dropdown-menu a {
      color: #333;
      text-decoration: none;
      padding: 0.5rem 1.5rem;
      display: block;
      transition: background-color 0.3s;
    }

    .dropdown-menu a:hover {
      background-color: #f8f9fa;
      color: #2ecc71;
    }

    .nav-dropdown:hover .dropdown-menu {
      display: block;
    }

    /* Ensure proper spacing and hover states for desktop */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown span {
      color: #333;
      cursor: pointer;
      font-weight: 500;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-dropdown:hover span {
      color: #2ecc71;
    }
  }

  /* About Us Section */
  .about-us {
    padding: 5rem 0 4rem 0;
    background: #fff;
  }
  .about-us-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .about-us-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .about-img {
    width: 270px;
    height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
    background: #f8f9fa;
  }
  .about-us-content {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-us-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .about-us-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--contrast);
    text-align: left;
  }
  .about-us-desc {
    font-size: 1.15rem;
    color: var(--contrast);
    margin-bottom: 1.5rem;
  }
  .about-us-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 0;
  }
  .about-feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-top: 0.1rem;
  }
  .about-feature-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--contrast);
  }
  .about-feature-desc {
    color: var(--silver);
    font-size: 1rem;
  }
  .about-us-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
  }
  .about-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  }
  .about-btn.primary {
    background: var(--primary);
    color: #fff;
    border: none;
  }
  .about-btn.primary:hover {
    background: #218c5a;
  }
  .about-btn.secondary {
    background: #fff;
    color: #222;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    gap: 0.5rem;
    box-shadow: none;
  }
  .about-btn.secondary i {
    color: #1dbf73;
    font-size: 2rem;
    margin-right: 0.5rem;
  }
  @media (max-width: 1024px) {
    .about-us-container {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 1rem;
    }
    .about-img {
      width: 180px;
      height: 200px;
    }
    .about-us-content {
      max-width: 100%;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  @media (max-width: 768px) {
    .about-us {
      padding: 2.5rem 0 2rem 0;
    }
    .about-us-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0 1rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 0.5rem;
      justify-content: center;
    }
    .about-img {
      width: 120px;
      height: 120px;
    }
    .about-us-content h2 {
      font-size: 1.5rem;
    }
    .about-us-label {
      font-size: 1rem;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1rem;
    }
    .about-us-buttons {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }
    .about-btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* AC Repair Page Redesign - Hero Section */
  .ac-specialist-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(
        135deg,
        rgba(46, 204, 113, 0.95) 0%,
        rgba(44, 62, 80, 0.95) 100%
      ),
      url('images/Hero-DependableAC.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }

  .ac-specialist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 80%,
        rgba(46, 204, 113, 0.3) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(52, 152, 219, 0.3) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .ac-specialist-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.4);
    z-index: 2;
  }

  .ac-specialist-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    text-align: center;
  }

  .ac-specialist-hero .hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: #2ecc71;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero .hero-tagline-sub {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    color: white !important;
    -webkit-text-fill-color: white !important;
    text-align: center;
  }

  .ac-specialist-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .ac-specialist-hero .hero-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .ac-specialist-hero .hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s;
  }

  .ac-specialist-hero .hero-button:hover::before {
    left: 100%;
  }

  .ac-specialist-hero .hero-button.primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: 2px solid transparent;
  }

  .ac-specialist-hero .hero-button.primary:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
  }

  .ac-specialist-hero .hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .ac-specialist-hero .hero-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Main Content Redesign */
  .main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 4rem 0;
    position: relative;
  }

  .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
      180deg,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 100%
    );
  }

  .main-content .container {
    position: relative;
    z-index: 2;
  }

  .main-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .main-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .content-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
  }

  .content-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .cta-text {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
    position: relative;
    overflow: hidden;
  }

  .cta-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%
    );
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }

  .cta-text strong {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  /* Problem Sections Redesign */
  .ac-problems-section,
  .troubleshooting-section,
  .hot-air-section,
  .when-repair-section,
  .replacement-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.1);
  }

  .ac-problems-section::before,
  .troubleshooting-section::before,
  .hot-air-section::before,
  .when-repair-section::before,
  .replacement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  }

  .ac-problems-section h2,
  .troubleshooting-section h2,
  .hot-air-section h2,
  .when-repair-section h2,
  .replacement-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 700;
  }

  .ac-problems-section h2::after,
  .troubleshooting-section h2::after,
  .hot-air-section h2::after,
  .when-repair-section h2::after,
  .replacement-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 2px;
  }

  .ac-problems-section > p,
  .troubleshooting-section > p,
  .hot-air-section > p,
  .when-repair-section > p,
  .replacement-section > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Grid Layouts */
  .problems-grid,
  .troubleshooting-grid,
  .hot-air-grid,
  .signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
  }

  .problems-column,
  .troubleshooting-column,
  .hot-air-column,
  .signs-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
  }

  .problems-column:hover,
  .troubleshooting-column:hover,
  .hot-air-column:hover,
  .signs-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
  }

  /* Updated AC Repair Styles - Force Refresh */
  /* Reset and base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --primary: #2ecc71;
    --contrast: #2c3e50;
    --accent: #f8f9fa;
    --secondary: #f1f5f9;
    --silver: #94a3b8;
  }

  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--contrast);
    margin: 0;
    padding: 0;
  }

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

  /* --- POLISHED GLOBAL HEADER & MENU STYLES --- */
  .site-header {
    width: 100%;
    background: #fff !important;
    border-bottom: none;
    box-shadow: none;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    min-height: unset;
    height: auto;
    z-index: 1000;
    position: fixed;
    margin-bottom: 0;
  }
  .header-top {
    background: transparent;
    padding: 24px 48px 30px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 32px;
  }
  .logo {
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    margin-right: auto;
  }
  .logo a {
    text-decoration: none;
  }
  .logo-bold {
    color: #222;
  }
  .logo-green {
    color: #22c55e;
    margin-left: 2px;
  }
  .header-contact {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .call-icon {
    color: #22c55e;
    font-size: 1.2em;
    margin-right: 4px;
  }
  .call-label {
    color: #222;
    font-weight: 500;
    margin-right: 4px;
  }
  .call-number {
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
    margin-right: 16px;
    transition: color 0.2s;
  }
  .call-number:hover {
    color: #15803d;
  }
  .quote-btn {
    background: #222f3e;
    color: #fff;
    font-weight: 700;
    border-radius: 14px;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 1.15rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: none;
    outline: none;
    display: inline-block;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
    margin-left: 24px;
    margin-right: 0;
  }
  .quote-btn:hover {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.12);
  }
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 18px;
  }
  .menu-toggle .hamburger {
    width: 28px;
    height: 3px;
    background: #222;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .menu-toggle.open .hamburger:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.open .hamburger:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open .hamburger:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    width: 100%;
    background: #22c55e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
    position: relative;
    z-index: 1101;
    margin-top: -64px; /* Pull up the green bar to cover header, adjust as needed */
  }
  .main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-nav ul li {
    position: relative;
  }
  .main-nav ul li a,
  .main-nav ul li > a {
    color: #fff;
    font-weight: 500;
    font-size: 1.15rem;
    text-decoration: none;
    padding: 22px 0 20px 0;
    display: block;
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
  }
  .main-nav ul li a:hover,
  .main-nav ul li > a:hover {
    color: #222f3e;
    background: rgba(255, 255, 255, 0.12);
  }
  .main-nav ul li.nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-nav ul li.nav-dropdown > a .arrow {
    margin-left: 12px;
    margin-right: 0;
    font-size: 1.1em;
    order: 2;
  }
  .nav-dropdown {
    position: relative;
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 240px;
    padding: 12px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 10px 10px;
    z-index: 100;
    padding: 10px 0;
  }
  .nav-dropdown.open > .dropdown-menu,
  .main-nav ul li.nav-dropdown:hover > .dropdown-menu {
    display: block;
  }
  .dropdown-menu li {
    width: 100%;
  }
  .dropdown-menu a,
  .dropdown-menu li a {
    color: #1a202c !important; /* much darker for contrast */
    background: none;
    padding: 16px 32px !important;
    font-size: 1.08rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }
  .dropdown-menu a:hover,
  .dropdown-menu li a:hover {
    background: #22c55e !important;
    color: #fff !important;
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
    .header-top {
      padding: 18px 18px 12px 18px;
    }
    .main-nav ul {
      gap: 24px;
    }
  }
  @media (max-width: 900px) {
    .header-top {
      flex-direction: row;
      padding: 18px 16px 12px 16px;
      gap: 16px;
    }
    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100vw;
      background: #22c55e;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      z-index: 999;
      display: none;
      margin-top: -56px;
    }
    .main-nav.open {
      display: block;
    }
    .main-nav ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 0 0 16px 0;
    }
    .main-nav ul li {
      width: 100%;
    }
    .main-nav ul li a {
      padding: 18px 24px;
      width: 100%;
      font-size: 1.1rem;
    }
    .dropdown-menu {
      position: static;
      box-shadow: none;
      background: #f3f4f6;
      border-radius: 0;
      min-width: 100%;
      padding: 0;
    }
    .nav-dropdown.open > .dropdown-menu {
      display: block;
    }
    .dropdown-menu li a {
      color: #222;
      padding: 14px 32px;
      font-size: 1rem;
    }
    .menu-toggle {
      display: flex;
    }
    .header-contact {
      margin-left: 0;
    }
    .quote-btn {
      padding: 12px 24px;
      font-size: 1rem;
      margin-left: 12px;
    }
  }
  @media (max-width: 600px) {
    .header-top {
      flex-direction: column;
      align-items: stretch;
      padding: 10px 4vw 10px 4vw;
      gap: 10px;
    }
    .logo {
      font-size: 0.95rem;
      max-width: 100vw;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 2px;
      justify-content: center;
      margin: 0 auto 8px auto;
    }
    .logo-bold,
    .logo-green {
      display: inline;
      font-size: inherit;
      line-height: 1;
      margin: 0;
      padding: 0;
    }
    .header-contact {
      display: none !important;
    }
    .quote-btn {
      width: 100%;
      margin: 10px 0 0 0;
      padding: 12px 0;
      font-size: 1rem;
    }
    .call-icon,
    .call-number {
      display: none !important;
    }
    .menu-toggle {
      display: flex !important;
      z-index: 1001;
    }
    .hero {
      padding-top: 0 !important;
      min-height: 100vh !important;
      height: 100vh !important;
      display: flex;
      align-items: center;
    }
    .main-nav {
      margin-top: -48px;
    }
  }

  /* Hide old header/menu wrappers if present */
  .header-nav-wrapper,
  .header-container,
  .navbar,
  nav.navbar,
  .site-header:not(:first-child) {
    display: none !important;
  }

  /* Navigation */
  .navbar {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: white;
    z-index: 999;
    border-bottom: 1px solid #ddd;
  }

  .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
  }

  .nav-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    height: 100%;
    padding: 1.25rem 0;
  }

  .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: inline-block;
    letter-spacing: 0.02em;
  }

  .nav-link:hover {
    color: #2ecc71;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown span {
    color: #333;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-dropdown:hover span {
    color: #2ecc71;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
  }

  .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  @media (max-width: 768px) {
    .header-container {
      padding: 0 1rem;
    }

    .header-contact {
      gap: 1rem;
    }

    .call-section {
      display: none;
    }

    .cta-quote-btn {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
    }

    .header-phone-topright .phone-label {
      display: none;
    }

    .header-phone-topright .phone-number {
      font-size: 0.875rem;
    }

    .header-actions {
      gap: 0.5rem;
      display: flex !important;
    }

    .navbar {
      top: 70px;
    }

    /* Show mobile menu button on mobile - IMPORTANT! */
    .mobile-menu-btn {
      display: block !important;
      order: 3;
    }

    /* Hide navigation menu by default on mobile */
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid #ddd;
      border-top: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      padding: 0;
      width: 100%;
    }

    /* Show navigation menu when active */
    .nav-menu.active {
      display: flex;
    }

    /* Mobile nav links */
    .nav-link {
      font-size: 1rem;
      padding: 1rem;
      border-bottom: 1px solid #eee;
      text-align: left;
      color: #333;
      width: 100%;
    }

    .nav-link:last-child {
      border-bottom: none;
    }

    /* Mobile dropdown behavior */
    .nav-dropdown {
      position: relative;
      width: 100%;
    }

    .nav-dropdown span {
      padding: 1rem;
      border-bottom: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: #333;
      width: 100%;
      background: white;
      transition: background-color 0.3s ease;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .nav-dropdown span:hover,
    .nav-dropdown span:active {
      background: #f8f9fa;
    }

    .dropdown-menu {
      display: none;
      position: static;
      background: white;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
      border: none;
      border-radius: 0;
      margin: 0;
      padding: 0;
      width: 100%;
      flex-direction: column;
      border-left: 3px solid #2ecc71;
    }

    .nav-dropdown.active .dropdown-menu {
      display: flex !important;
      animation: slideDown 0.3s ease;
    }

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

    .dropdown-menu a {
      padding: 1rem 2rem !important;
      border: none;
      border-bottom: 1px solid #e9ecef !important;
      color: #2c3e50 !important;
      text-decoration: none;
      display: block;
      font-size: 0.9rem;
      font-weight: 400;
      background: white !important;
      margin: 0;
      line-height: 1;
      transition: all 0.3s ease;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .dropdown-menu a:last-child {
      border-bottom: none !important;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:active {
      background-color: #f8f9fa !important;
      color: #2ecc71 !important;
      padding-left: 2.5rem !important;
    }
  }

  @media (min-width: 769px) {
    .navbar {
      padding: 0.75rem 0;
    }
    .nav-container {
      padding-top: 0.075rem;
      padding-bottom: 0.075rem;
    }
    .nav-menu {
      display: flex !important;
      flex-direction: row;
      position: static;
      background: transparent;
      padding: 0.5rem 1rem;
      box-shadow: none;
    }

    /* Hide mobile menu button on desktop */
    .mobile-menu-btn {
      display: none !important;
    }

    .header-actions {
      display: flex !important;
      align-items: center;
      gap: 2rem;
    }
  }

  /* Update hero section to account for fixed navbar */
  .hero {
    position: relative;
    width: 100%;
    height: 120vh;
    min-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 200px;
  }

  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 90%;
    z-index: 1;
  }

  .hero-image-mobile {
    display: none;
  }

  @media (max-width: 768px) {
    .hero {
      height: 80vh;
      min-height: 500px;
      padding-top: 120px;
    }
    .hero-image {
      display: none;
    }
    .hero-image-mobile {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 80%;
      z-index: 1;
    }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    margin-left: 0;
    color: white;
  }

  .hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
  }

  .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
    color: white;
  }

  .hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .hero-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-shadow: none;
  }

  .hero-button.primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
  }

  .hero-button.primary:hover {
    background-color: #1a7fd9;
    border-color: #1a7fd9;
    transform: translateY(-2px);
  }

  .hero-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }

  .hero-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  /* Typography */
  h1,
  h2,
  h3 {
    font-weight: 700;
    line-height: 1.2;
  }

  h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Buttons */
  .btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 3rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }

  .btn-primary:hover {
    background-color: var(--contrast);
  }

  /* Floating Contact Button */
  .floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s;
  }

  .floating-contact i {
    font-size: 1.5rem;
  }

  .floating-contact:hover {
    background-color: var(--contrast);
  }

  /* Services Section */
  .services {
    padding: 5rem 0;
    background-color: white;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    background-color: white;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-5px);
  }

  .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
  }

  .service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .service-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    background-color: var(--accent);
    border-radius: 50%;
  }

  .service-card h3 {
    color: var(--contrast);
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .service-card p {
    color: var(--silver);
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .learn-more {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    transition: all 0.3s;
  }

  .learn-more:hover {
    background-color: var(--primary);
    color: white;
  }

  @media (min-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

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

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

  /* Testimonials Section */
  .testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
  }

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

  .testimonial-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent);
  }

  .testimonial-rating {
    margin: 1rem 0;
    color: #fbbf24; /* Amber color for stars */
  }

  .testimonial-rating i {
    margin-right: 0.25rem;
  }

  .quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Service Area Section */
  .service-area {
    padding: 5rem 0;
    background-color: white;
  }

  .service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    min-height: 600px;
  }

  .areas-we-serve,
  .map-container {
    background-color: var(--accent);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .map-container {
    position: relative;
  }

  .map-frame {
    flex-grow: 1;
    margin-top: 1.5rem;
  }

  .map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.5rem;
  }

  .map-header {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--contrast);
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem 2.5rem;
    margin: 1.5rem 0;
  }

  .area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }

  .area-check {
    color: var(--primary);
    font-size: 1.1rem;
  }

  /* Contact Section */
  .contact {
    padding: 5rem 0;
    background-color: white;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
  }

  .contact-intro {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-intro h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .contact-intro p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
  }

  .quick-contact {
    background-color: rgba(248, 249, 250, 0.4);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

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

  .contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .contact-item i {
    color: var(--primary);
    font-size: 1.75rem;
    margin-top: 0.25rem;
  }

  .contact-item .label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
  }

  .contact-item .note {
    color: var(--silver);
    margin-top: 0.25rem;
    font-size: 0.9rem;
  }

  .contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  input,
  select,
  textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
  }

  select {
    height: 3.25rem;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
  }

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

  .btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn-submit:hover {
    background-color: var(--contrast);
  }

  .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* Footer */
  footer {
    background-color: var(--contrast);
    color: white;
    padding: 2.5rem 0;
    margin-top: 2.5rem;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }

  /* Footer sections for detailed footer layout */
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
  }

  .footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section ul li a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-section ul li a:hover {
    color: #2ecc71 !important;
  }

  .footer-section p {
    color: white;
    line-height: 1.6;
  }

  .footer-logo .logo-black {
    color: white !important;
  }

  .footer-contact h4,
  .footer-hours h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .footer-contact p,
  .footer-hours p {
    color: white;
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
  }

  .footer-bottom p {
    color: white;
    margin: 0;
  }

  .company-info {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
  }

  .company-info a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
  }

  .company-info a:hover {
    color: #2ecc71 !important;
  }

  .company-info .logo-black {
    color: white !important;
  }

  .company-info .logo-green {
    color: white !important;
  }

  .social-links {
    display: flex;
    gap: 1.5rem;
  }

  .social-links a {
    color: white !important;
    transition: color 0.3s;
  }

  .social-links a:hover {
    color: #2ecc71 !important;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }

    h2 {
      font-size: 2rem;
    }

    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  }

  /* Utility Classes */
  .section-description {
    text-align: center;
    color: rgba(44, 62, 80, 0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }

  .form-message {
    margin: 1rem 0;
  }

  .form-message.error {
    color: #dc2626;
  }

  .form-message.success {
.form-message.loading {
  color: #2563eb;
  font-style: italic;
}    color: #059669;
  }

  @media (max-width: 768px) {
    .hero {
      height: 100vh;
      min-height: 100vh;
      padding-top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-content {
      text-align: center;
      align-items: center;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-content h1 {
      text-align: center;
    }
    .hero-content p {
      text-align: center;
    }
    .hero-buttons {
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }
    .hero-button {
      width: 100%;
      text-align: center;
      max-width: 400px;
    }
    .hero-overlay {
      background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.2)
      );
    }
  }

  @media (max-width: 480px) {
    .hero {
      min-height: 250px;
      height: 45vh;
    }

    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-content p {
      font-size: 1rem;
    }
  }

  .site-header {
    background: #fff !important;
    border-bottom: none;
    box-shadow: none;
    padding: 1rem 0; /* Increased padding */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    margin-bottom: 0;
  }

  .header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0 2.5rem;
    gap: 2rem;
    position: relative;
  }

  .header-logo {
    flex: 0 0 auto;
    text-align: left;
  }

  .header-lang {
    margin-left: auto;
  }

  .header-phone-topright {
    margin-left: 2rem;
    display: flex;
    align-items: center;
  }

  .header-contact {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
    margin: 0 auto;
  }

  .header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--contrast);
  }

  .header-contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
  }

  .header-contact-icon i {
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
  }

  .header-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    justify-content: center;
  }

  .header-contact-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--contrast);
  }

  .header-contact-text a,
  .header-contact-text span {
    color: var(--primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    word-break: break-all;
  }

  .flag {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .flag:hover {
    transform: scale(1.15);
  }

  .cta-quote-btn {
    background-color: white;
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-left: 2rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    border: none;
    display: inline-block;
    white-space: nowrap;
  }

  .cta-quote-btn:hover {
    background-color: var(--contrast);
    color: white;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
  }

  @media (max-width: 1200px) {
    .nav-container {
      padding: 0 1.25rem;
    }
    .nav-menu {
      gap: 1.5rem;
    }
  }

  @media (max-width: 900px) {
    .header-container {
      flex-direction: column;
      align-items: stretch;
      gap: 0.5rem;
      padding: 0 0.5rem;
    }
    .header-phone-topright {
      margin-left: 0;
      justify-content: flex-end;
      width: 100%;
      margin-top: 0.5rem;
    }
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 500px;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .submenu-section {
    flex: 1;
  }

  .submenu-section h4 {
    color: var(--contrast);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
  }

  .dropdown-menu a {
    display: block;
    color: var(--contrast);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    transition: color 0.2s;
  }

  /* Updated AC Repair Styles - Force Refresh */
  /* Reset and base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --primary: #2ecc71;
    --contrast: #2c3e50;
    --accent: #f8f9fa;
    --secondary: #f1f5f9;
    --silver: #94a3b8;
  }

  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--contrast);
    margin: 0;
    padding: 0;
  }

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

  /* --- POLISHED GLOBAL HEADER & MENU STYLES --- */
  .site-header {
    width: 100%;
    background: #fff !important;
    border-bottom: 1px solid #e5e7eb;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    min-height: unset;
    height: auto;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.07);
    z-index: 1000;
    position: fixed;
    margin-bottom: 0;
  }
  .header-top {
    background: transparent;
    padding: 24px 48px 30px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 32px;
  }
  .logo {
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    margin-right: auto;
  }
  .logo a {
    text-decoration: none;
  }
  .logo-bold {
    color: #222;
  }
  .logo-green {
    color: #22c55e;
    margin-left: 2px;
  }
  .header-contact {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .call-icon {
    color: #22c55e;
    font-size: 1.2em;
    margin-right: 4px;
  }
  .call-label {
    color: #222;
    font-weight: 500;
    margin-right: 4px;
  }
  .call-number {
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
    margin-right: 16px;
    transition: color 0.2s;
  }
  .call-number:hover {
    color: #15803d;
  }
  .quote-btn {
    background: #222f3e;
    color: #fff;
    font-weight: 700;
    border-radius: 14px;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 1.15rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: none;
    outline: none;
    display: inline-block;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
    margin-left: 24px;
    margin-right: 0;
  }
  .quote-btn:hover {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.12);
  }
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 18px;
  }
  .menu-toggle .hamburger {
    width: 28px;
    height: 3px;
    background: #222;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .menu-toggle.open .hamburger:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.open .hamburger:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open .hamburger:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    width: 100%;
    background: #22c55e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
    position: relative;
    z-index: 1100;
    margin-top: -8px;
  }
  .main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-nav ul li {
    position: relative;
  }
  .main-nav ul li a,
  .main-nav ul li > a {
    color: #fff;
    font-weight: 500;
    font-size: 1.15rem;
    text-decoration: none;
    padding: 22px 0 20px 0;
    display: block;
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
  }
  .main-nav ul li a:hover,
  .main-nav ul li > a:hover {
    color: #222f3e;
    background: rgba(255, 255, 255, 0.12);
  }
  .main-nav ul li.nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-nav ul li.nav-dropdown > a .arrow {
    margin-left: 12px;
    margin-right: 0;
    font-size: 1.1em;
    order: 2;
  }
  .nav-dropdown {
    position: relative;
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 240px;
    padding: 12px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 10px 10px;
    z-index: 100;
    padding: 10px 0;
  }
  .nav-dropdown.open > .dropdown-menu,
  .main-nav ul li.nav-dropdown:hover > .dropdown-menu {
    display: block;
  }
  .dropdown-menu li {
    width: 100%;
  }
  .dropdown-menu a,
  .dropdown-menu li a {
    color: #1a202c !important; /* much darker for contrast */
    background: none;
    padding: 16px 32px !important;
    font-size: 1.08rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }
  .dropdown-menu a:hover,
  .dropdown-menu li a:hover {
    background: #22c55e !important;
    color: #fff !important;
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
    .header-top {
      padding: 18px 18px 12px 18px;
    }
    .main-nav ul {
      gap: 24px;
    }
  }
  @media (max-width: 900px) {
    .header-top {
      flex-direction: row;
      padding: 18px 16px 12px 16px;
      gap: 16px;
    }
    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100vw;
      background: #22c55e;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      z-index: 999;
      display: none;
    }
    .main-nav.open {
      display: block;
    }
    .main-nav ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 0 0 16px 0;
    }
    .main-nav ul li {
      width: 100%;
    }
    .main-nav ul li a {
      padding: 18px 24px;
      width: 100%;
      font-size: 1.1rem;
    }
    .dropdown-menu {
      position: static;
      box-shadow: none;
      background: #f3f4f6;
      border-radius: 0;
      min-width: 100%;
      padding: 0;
    }
    .nav-dropdown.open > .dropdown-menu {
      display: block;
    }
    .dropdown-menu li a {
      color: #222;
      padding: 14px 32px;
      font-size: 1rem;
    }
    .menu-toggle {
      display: flex;
    }
    .header-contact {
      margin-left: 0;
    }
    .quote-btn {
      padding: 12px 24px;
      font-size: 1rem;
      margin-left: 12px;
    }
  }
  @media (max-width: 600px) {
    .header-top {
      flex-direction: column;
      align-items: stretch;
      padding: 10px 4vw 10px 4vw;
      gap: 10px;
    }
    .logo {
      font-size: 0.95rem;
      max-width: 100vw;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 2px;
      justify-content: center;
      margin: 0 auto 8px auto;
    }
    .logo-bold,
    .logo-green {
      display: inline;
      font-size: inherit;
      line-height: 1;
      margin: 0;
      padding: 0;
    }
    .header-contact {
      display: none !important;
    }
    .quote-btn {
      width: 100%;
      margin: 10px 0 0 0;
      padding: 12px 0;
      font-size: 1rem;
    }
    .call-icon,
    .call-number {
      display: none !important;
    }
    .menu-toggle {
      display: flex !important;
      z-index: 1001;
    }
    .hero {
      padding-top: 0 !important;
      min-height: 100vh !important;
      height: 100vh !important;
      display: flex;
      align-items: center;
    }
  }

  /* Hide old header/menu wrappers if present */
  .header-nav-wrapper,
  .header-container,
  .navbar,
  nav.navbar,
  .site-header:not(:first-child) {
    display: none !important;
  }

  /* Navigation */
  .navbar {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: #22c55e;
    z-index: 999;
    border-bottom: none;
    box-shadow: none;
  }

  .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
  }

  .nav-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    height: 100%;
    padding: 1.25rem 0;
  }

  .nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: inline-block;
    letter-spacing: 0.02em;
  }

  .nav-link:hover {
    color: #2ecc71;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown span {
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-dropdown:hover span {
    color: #2ecc71;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
  }

  .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  @media (max-width: 768px) {
    .header-container {
      padding: 0 1rem;
    }

    .header-contact {
      gap: 1rem;
    }

    .call-section {
      display: none;
    }

    .cta-quote-btn {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
    }

    .header-phone-topright .phone-label {
      display: none;
    }

    .header-phone-topright .phone-number {
      font-size: 0.875rem;
    }

    .header-actions {
      gap: 0.5rem;
      display: flex !important;
    }

    .navbar {
      top: 70px;
    }

    /* Show mobile menu button on mobile - IMPORTANT! */
    .mobile-menu-btn {
      display: block !important;
      order: 3;
    }

    /* Hide navigation menu by default on mobile */
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid #ddd;
      border-top: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      padding: 0;
      width: 100%;
    }

    /* Show navigation menu when active */
    .nav-menu.active {
      display: flex;
    }

    /* Mobile nav links */
    .nav-link {
      font-size: 1rem;
      padding: 1rem;
      border-bottom: 1px solid #eee;
      text-align: left;
      color: #333;
      width: 100%;
    }

    .nav-link:last-child {
      border-bottom: none;
    }

    /* Mobile dropdown behavior */
    .nav-dropdown {
      position: relative;
      width: 100%;
    }

    .nav-dropdown span {
      padding: 1rem;
      border-bottom: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: #333;
      width: 100%;
      background: white;
      transition: background-color 0.3s ease;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .nav-dropdown span:hover,
    .nav-dropdown span:active {
      background: #f8f9fa;
    }

    .dropdown-menu {
      display: none;
      position: static;
      background: white;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
      border: none;
      border-radius: 0;
      margin: 0;
      padding: 0;
      width: 100%;
      flex-direction: column;
      border-left: 3px solid #2ecc71;
    }

    .nav-dropdown.active .dropdown-menu {
      display: flex !important;
      animation: slideDown 0.3s ease;
    }

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

    .dropdown-menu a {
      padding: 1rem 2rem !important;
      border: none;
      border-bottom: 1px solid #e9ecef !important;
      color: #2c3e50 !important;
      text-decoration: none;
      display: block;
      font-size: 0.9rem;
      font-weight: 400;
      background: white !important;
      margin: 0;
      line-height: 1;
      transition: all 0.3s ease;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .dropdown-menu a:last-child {
      border-bottom: none !important;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:active {
      background-color: #f8f9fa !important;
      color: #2ecc71 !important;
      padding-left: 2.5rem !important;
    }
  }

  @media (min-width: 769px) {
    .navbar {
      padding: 0.75rem 0;
    }
    .nav-container {
      padding-top: 0.075rem;
      padding-bottom: 0.075rem;
    }
    .nav-menu {
      display: flex !important;
      flex-direction: row;
      position: static;
      background: transparent;
      padding: 0.5rem 1rem;
      box-shadow: none;
    }

    /* Hide mobile menu button on desktop */
    .mobile-menu-btn {
      display: none !important;
    }

    .header-actions {
      display: flex !important;
      align-items: center;
      gap: 2rem;
    }
  }

  /* Update hero section to account for fixed navbar */
  .hero {
    position: relative;
    width: 100%;
    height: 120vh;
    min-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 200px;
  }

  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 90%;
    z-index: 1;
  }

  .hero-image-mobile {
    display: none;
  }

  @media (max-width: 768px) {
    .hero {
      height: 80vh;
      min-height: 500px;
      padding-top: 120px;
    }
    .hero-image {
      display: none;
    }
    .hero-image-mobile {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 80%;
      z-index: 1;
    }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    margin-left: 0;
    color: white;
  }

  .hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
  }

  .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
    color: white;
  }

  .hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .hero-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-shadow: none;
  }

  .hero-button.primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
  }

  .hero-button.primary:hover {
    background-color: #1a7fd9;
    border-color: #1a7fd9;
    transform: translateY(-2px);
  }

  .hero-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }

  .hero-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  /* Typography */
  h1,
  h2,
  h3 {
    font-weight: 700;
    line-height: 1.2;
  }

  h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Buttons */
  .btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 3rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }

  .btn-primary:hover {
    background-color: var(--contrast);
  }

  /* Floating Contact Button */
  .floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s;
  }

  .floating-contact i {
    font-size: 1.5rem;
  }

  .floating-contact:hover {
    background-color: var(--contrast);
  }

  /* Services Section */
  .services {
    padding: 5rem 0;
    background-color: white;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    background-color: white;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-5px);
  }

  .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
  }

  .service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .service-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    background-color: var(--accent);
    border-radius: 50%;
  }

  .service-card h3 {
    color: var(--contrast);
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .service-card p {
    color: var(--silver);
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .learn-more {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    transition: all 0.3s;
  }

  .learn-more:hover {
    background-color: var(--primary);
    color: white;
  }

  @media (min-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

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

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

  /* Testimonials Section */
  .testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
  }

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

  .testimonial-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent);
  }

  .testimonial-rating {
    margin: 1rem 0;
    color: #fbbf24; /* Amber color for stars */
  }

  .testimonial-rating i {
    margin-right: 0.25rem;
  }

  .quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Service Area Section */
  .service-area {
    padding: 5rem 0;
    background-color: white;
  }

  .service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    min-height: 600px;
  }

  .areas-we-serve,
  .map-container {
    background-color: var(--accent);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .map-container {
    position: relative;
  }

  .map-frame {
    flex-grow: 1;
    margin-top: 1.5rem;
  }

  .map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.5rem;
  }

  .map-header {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--contrast);
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem 2.5rem;
    margin: 1.5rem 0;
  }

  .area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }

  .area-check {
    color: var(--primary);
    font-size: 1.1rem;
  }

  /* Contact Section */
  .contact {
    padding: 5rem 0;
    background-color: white;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
  }

  .contact-intro {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-intro h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .contact-intro p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
  }

  .quick-contact {
    background-color: rgba(248, 249, 250, 0.4);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

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

  .contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .contact-item i {
    color: var(--primary);
    font-size: 1.75rem;
    margin-top: 0.25rem;
  }

  .contact-item .label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
  }

  .contact-item .note {
    color: var(--silver);
    margin-top: 0.25rem;
    font-size: 0.9rem;
  }

  .contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  input,
  select,
  textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
  }

  select {
    height: 3.25rem;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
  }

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

  .btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn-submit:hover {
    background-color: var(--contrast);
  }

  .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* Footer */
  footer {
    background-color: var(--contrast);
    color: white;
    padding: 2.5rem 0;
    margin-top: 2.5rem;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }

  /* Footer sections for detailed footer layout */
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
  }

  .footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section ul li a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-section ul li a:hover {
    color: #2ecc71 !important;
  }

  .footer-section p {
    color: white;
    line-height: 1.6;
  }

  .footer-logo .logo-black {
    color: white !important;
  }

  .footer-contact h4,
  .footer-hours h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .footer-contact p,
  .footer-hours p {
    color: white;
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
  }

  .footer-bottom p {
    color: white;
    margin: 0;
  }

  .company-info {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
  }

  .company-info a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
  }

  .company-info a:hover {
    color: #2ecc71 !important;
  }

  .company-info .logo-black {
    color: white !important;
  }

  .company-info .logo-green {
    color: white !important;
  }

  .social-links {
    display: flex;
    gap: 1.5rem;
  }

  .social-links a {
    color: white !important;
    transition: color 0.3s;
  }

  .social-links a:hover {
    color: #2ecc71 !important;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }

    h2 {
      font-size: 2rem;
    }

    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  }

  /* Utility Classes */
  .section-description {
    text-align: center;
    color: rgba(44, 62, 80, 0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }

  .form-message {
    margin: 1rem 0;
  }

  .form-message.error {
    color: #dc2626;
  }

  .form-message.success {
.form-message.loading {
  color: #2563eb;
  font-style: italic;
}    color: #059669;
  }

  @media (max-width: 768px) {
    .hero {
      height: 100vh;
      min-height: 100vh;
      padding-top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-content {
      text-align: center;
      align-items: center;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-content h1 {
      text-align: center;
    }
    .hero-content p {
      text-align: center;
    }
    .hero-buttons {
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }
    .hero-button {
      width: 100%;
      text-align: center;
      max-width: 400px;
    }
    .hero-overlay {
      background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.2)
      );
    }
  }

  @media (max-width: 480px) {
    .hero {
      min-height: 250px;
      height: 45vh;
    }

    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-content p {
      font-size: 1rem;
    }
  }

  .site-header {
    background: #fff !important;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.07);
    padding: 1rem 0; /* Increased padding */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    margin-bottom: 0;
  }

  .header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0 2.5rem;
    gap: 2rem;
    position: relative;
  }

  .header-logo {
    flex: 0 0 auto;
    text-align: left;
  }

  .header-lang {
    margin-left: auto;
  }

  .header-phone-topright {
    margin-left: 2rem;
    display: flex;
    align-items: center;
  }

  .header-contact {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
    margin: 0 auto;
  }

  .header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--contrast);
  }

  .header-contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
  }

  .header-contact-icon i {
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
  }

  .header-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    justify-content: center;
  }

  .header-contact-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--contrast);
  }

  .header-contact-text a,
  .header-contact-text span {
    color: var(--primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    word-break: break-all;
  }

  .flag {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .flag:hover {
    transform: scale(1.15);
  }

  .cta-quote-btn {
    background-color: white;
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-left: 2rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    border: none;
    display: inline-block;
    white-space: nowrap;
  }

  .cta-quote-btn:hover {
    background-color: var(--contrast);
    color: white;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
  }

  @media (max-width: 1200px) {
    .nav-container {
      padding: 0 1.25rem;
    }
    .nav-menu {
      gap: 1.5rem;
    }
  }

  @media (max-width: 900px) {
    .header-container {
      flex-direction: column;
      align-items: stretch;
      gap: 0.5rem;
      padding: 0 0.5rem;
    }
    .header-phone-topright {
      margin-left: 0;
      justify-content: flex-end;
      width: 100%;
      margin-top: 0.5rem;
    }
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 500px;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .submenu-section {
    flex: 1;
  }

  .submenu-section h4 {
    color: var(--contrast);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
  }

  .dropdown-menu a {
    display: block;
    color: var(--contrast);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    transition: color 0.2s;
  }

  .dropdown-menu a:hover {
    color: var(--primary);
  }

  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  @media (max-width: 768px) {
    .dropdown-menu {
      position: static;
      min-width: 100%;
      box-shadow: none;
      padding: 1rem;
      flex-direction: column;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.1);
      display: none;
    }

    .submenu-section h4 {
      color: white;
      border-bottom-color: rgba(255, 255, 255, 0.2);
    }

    .dropdown-menu a {
      color: white;
      padding: 0.5rem;
    }

    .dropdown-menu a:hover {
      color: white;
      background: rgba(255, 255, 255, 0.1);
    }

    .nav-dropdown.active .dropdown-menu {
      display: flex;
    }
  }

  .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }

  /* Only stretch the trigger on mobile */
  @media (max-width: 768px) {
    .nav-dropdown {
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      display: flex;
    }

    .nav-dropdown > span {
      justify-content: space-between;
      width: 100%;
      padding: 1rem 0;
    }
  }

  .nav-dropdown > span {
    display: flex;
    align-items: center;
    gap: 0.4em;
  }

  /* Add top padding to main content to prevent it from being hidden */
  .hero,
  .main-content,
  .container:first-of-type {
    padding-top: 120px; /* Adjusted to account for new header + navbar height */
  }

  .logo-text {
    font-weight: bold;
    font-size: 1.25rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
  }
  .logo-black {
    color: #000000;
  }
  .logo-green {
    color: #27ae60;
  }

  @media (max-width: 768px) {
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: white !important;
      border-bottom: 1px solid #ddd;
      z-index: 1000;
      padding: 0;
      width: 100%;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1rem;
      min-height: 60px;
      width: 100%;
      margin: 0;
      position: relative;
    }

    .header-logo {
      flex: 0 0 auto;
      text-align: left;
      order: 1;
    }

    .header-logo .logo-black {
      font-size: 1.1rem;
    }

    .header-logo .logo-green {
      font-size: 1.1rem;
    }

    .nav-menu {
      display: flex !important;
      flex-direction: row;
      position: static;
      background: transparent;
      padding: 0.5rem 1rem;
      box-shadow: none;
    }

    .header-logo {
      font-size: 1.25rem;
    }

    /* Hide mobile menu button on desktop */
    .mobile-menu-btn {
      display: none !important;
    }

    .header-actions {
      display: flex !important;
      align-items: center;
      gap: 0.5rem;
    }

    .header-phone-topright {
      font-size: 1.1rem;
      margin-left: 0;
      margin-right: 0;
      display: flex;
      align-items: center;
      height: 100%;
    }

    .cta-quote-btn {
      font-size: 1.1rem;
      padding: 0.75rem 2rem;
      margin-left: 0;
      background-color: #2c3e50 !important;
      color: #fff !important;
      border: 2px solid #2c3e50 !important;
      box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
      transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
    }

    .cta-quote-btn:hover {
      background: transparent !important;
      color: #2c3e50 !important;
      border: 2px solid #2c3e50 !important;
      box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
    }

    .nav-menu {
      padding: 1rem;
    }

    .hero-overlay {
      background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.2)
      );
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 220px;
      padding: 1rem 0;
      border-radius: 0.5rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      margin-top: 0.5rem;
      z-index: 1000;
    }

    .dropdown-menu a {
      color: #333;
      text-decoration: none;
      padding: 0.5rem 1.5rem;
      display: block;
      transition: background-color 0.3s;
    }

    .dropdown-menu a:hover {
      background-color: #f8f9fa;
      color: #2ecc71;
    }

    .nav-dropdown:hover .dropdown-menu {
      display: block;
    }

    /* Ensure proper spacing and hover states for desktop */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown span {
      color: #333;
      cursor: pointer;
      font-weight: 500;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-dropdown:hover span {
      color: #2ecc71;
    }
  }

  /* About Us Section */
  .about-us {
    padding: 5rem 0 4rem 0;
    background: #fff;
  }
  .about-us-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .about-us-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .about-img {
    width: 270px;
    height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
    background: #f8f9fa;
  }
  .about-us-content {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-us-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .about-us-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--contrast);
    text-align: left;
  }
  .about-us-desc {
    font-size: 1.15rem;
    color: var(--contrast);
    margin-bottom: 1.5rem;
  }
  .about-us-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 0;
  }
  .about-feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-top: 0.1rem;
  }
  .about-feature-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--contrast);
  }
  .about-feature-desc {
    color: var(--silver);
    font-size: 1rem;
  }
  .about-us-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
  }
  .about-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  }
  .about-btn.primary {
    background: var(--primary);
    color: #fff;
    border: none;
  }
  .about-btn.primary:hover {
    background: #218c5a;
  }
  .about-btn.secondary {
    background: #fff;
    color: #222;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    gap: 0.5rem;
    box-shadow: none;
  }
  .about-btn.secondary i {
    color: #1dbf73;
    font-size: 2rem;
    margin-right: 0.5rem;
  }
  @media (max-width: 1024px) {
    .about-us-container {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 1rem;
    }
    .about-img {
      width: 180px;
      height: 200px;
    }
    .about-us-content {
      max-width: 100%;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  @media (max-width: 768px) {
    .about-us {
      padding: 2.5rem 0 2rem 0;
    }
    .about-us-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0 1rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 0.5rem;
      justify-content: center;
    }
    .about-img {
      width: 120px;
      height: 120px;
    }
    .about-us-content h2 {
      font-size: 1.5rem;
    }
    .about-us-label {
      font-size: 1rem;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1rem;
    }
    .about-us-buttons {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }
    .about-btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* AC Repair Page Redesign - Hero Section */
  .ac-specialist-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(
        135deg,
        rgba(46, 204, 113, 0.95) 0%,
        rgba(44, 62, 80, 0.95) 100%
      ),
      url('images/Hero-DependableAC.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }

  .ac-specialist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 80%,
        rgba(46, 204, 113, 0.3) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(52, 152, 219, 0.3) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .ac-specialist-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.4);
    z-index: 2;
  }

  .ac-specialist-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    text-align: center;
  }

  .ac-specialist-hero .hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: #2ecc71;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero .hero-tagline-sub {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    color: white !important;
    -webkit-text-fill-color: white !important;
    text-align: center;
  }

  .ac-specialist-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .ac-specialist-hero .hero-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .ac-specialist-hero .hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s;
  }

  .ac-specialist-hero .hero-button:hover::before {
    left: 100%;
  }

  .ac-specialist-hero .hero-button.primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: 2px solid transparent;
  }

  .ac-specialist-hero .hero-button.primary:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
  }

  .ac-specialist-hero .hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .ac-specialist-hero .hero-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Main Content Redesign */
  .main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 4rem 0;
    position: relative;
  }

  .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
      180deg,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 100%
    );
  }

  .main-content .container {
    position: relative;
    z-index: 2;
  }

  .main-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .main-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .content-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
  }

  .content-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .cta-text {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
    position: relative;
    overflow: hidden;
  }

  .cta-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%
    );
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }

  .cta-text strong {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  /* Problem Sections Redesign */
  .ac-problems-section,
  .troubleshooting-section,
  .hot-air-section,
  .when-repair-section,
  .replacement-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.1);
  }

  .ac-problems-section::before,
  .troubleshooting-section::before,
  .hot-air-section::before,
  .when-repair-section::before,
  .replacement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  }

  .ac-problems-section h2,
  .troubleshooting-section h2,
  .hot-air-section h2,
  .when-repair-section h2,
  .replacement-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 700;
  }

  .ac-problems-section h2::after,
  .troubleshooting-section h2::after,
  .hot-air-section h2::after,
  .when-repair-section h2::after,
  .replacement-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 2px;
  }

  .ac-problems-section > p,
  .troubleshooting-section > p,
  .hot-air-section > p,
  .when-repair-section > p,
  .replacement-section > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Grid Layouts */
  .problems-grid,
  .troubleshooting-grid,
  .hot-air-grid,
  .signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
  }

  .problems-column,
  .troubleshooting-column,
  .hot-air-column,
  .signs-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
  }

  .problems-column:hover,
  .troubleshooting-column:hover,
  .hot-air-column:hover,
  .signs-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
  }

  /* Updated AC Repair Styles - Force Refresh */
  /* Reset and base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --primary: #2ecc71;
    --contrast: #2c3e50;
    --accent: #f8f9fa;
    --secondary: #f1f5f9;
    --silver: #94a3b8;
  }

  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--contrast);
    margin: 0;
    padding: 0;
  }

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

  /* --- POLISHED GLOBAL HEADER & MENU STYLES --- */
  .site-header {
    width: 100%;
    background: #fff !important;
    border-bottom: 1px solid #e5e7eb;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    min-height: unset;
    height: auto;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.07);
    z-index: 1000;
    position: fixed;
    margin-bottom: 0;
  }
  .header-top {
    background: transparent;
    padding: 24px 48px 30px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 32px;
  }
  .logo {
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    margin-right: auto;
  }
  .logo a {
    text-decoration: none;
  }
  .logo-bold {
    color: #222;
  }
  .logo-green {
    color: #22c55e;
    margin-left: 2px;
  }
  .header-contact {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .call-icon {
    color: #22c55e;
    font-size: 1.2em;
    margin-right: 4px;
  }
  .call-label {
    color: #222;
    font-weight: 500;
    margin-right: 4px;
  }
  .call-number {
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
    margin-right: 16px;
    transition: color 0.2s;
  }
  .call-number:hover {
    color: #15803d;
  }
  .quote-btn {
    background: #222f3e;
    color: #fff;
    font-weight: 700;
    border-radius: 14px;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 1.15rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: none;
    outline: none;
    display: inline-block;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.1);
    margin-left: 24px;
    margin-right: 0;
  }
  .quote-btn:hover {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.12);
  }
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 18px;
  }
  .menu-toggle .hamburger {
    width: 28px;
    height: 3px;
    background: #222;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .menu-toggle.open .hamburger:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.open .hamburger:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open .hamburger:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    width: 100%;
    background: #22c55e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
    position: relative;
    z-index: 1100;
    margin-top: -20px;
  }
  .main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-nav ul li {
    position: relative;
  }
  .main-nav ul li a,
  .main-nav ul li > a {
    color: #fff;
    font-weight: 500;
    font-size: 1.15rem;
    text-decoration: none;
    padding: 22px 0 20px 0;
    display: block;
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
  }
  .main-nav ul li a:hover,
  .main-nav ul li > a:hover {
    color: #222f3e;
    background: rgba(255, 255, 255, 0.12);
  }
  .main-nav ul li.nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-nav ul li.nav-dropdown > a .arrow {
    margin-left: 12px;
    margin-right: 0;
    font-size: 1.1em;
    order: 2;
  }
  .nav-dropdown {
    position: relative;
  }
  .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 240px;
    padding: 12px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 10px 10px;
    z-index: 100;
    padding: 10px 0;
  }
  .nav-dropdown.open > .dropdown-menu,
  .main-nav ul li.nav-dropdown:hover > .dropdown-menu {
    display: block;
  }
  .dropdown-menu li {
    width: 100%;
  }
  .dropdown-menu a,
  .dropdown-menu li a {
    color: #1a202c !important; /* much darker for contrast */
    background: none;
    padding: 16px 32px !important;
    font-size: 1.08rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }
  .dropdown-menu a:hover,
  .dropdown-menu li a:hover {
    background: #22c55e !important;
    color: #fff !important;
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
    .header-top {
      padding: 18px 18px 12px 18px;
    }
    .main-nav ul {
      gap: 24px;
    }
  }
  @media (max-width: 900px) {
    .header-top {
      flex-direction: row;
      padding: 18px 16px 12px 16px;
      gap: 16px;
    }
    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100vw;
      background: #22c55e;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      z-index: 999;
      display: none;
    }
    .main-nav.open {
      display: block;
    }
    .main-nav ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 0 0 16px 0;
    }
    .main-nav ul li {
      width: 100%;
    }
    .main-nav ul li a {
      padding: 18px 24px;
      width: 100%;
      font-size: 1.1rem;
    }
    .dropdown-menu {
      position: static;
      box-shadow: none;
      background: #f3f4f6;
      border-radius: 0;
      min-width: 100%;
      padding: 0;
    }
    .nav-dropdown.open > .dropdown-menu {
      display: block;
    }
    .dropdown-menu li a {
      color: #222;
      padding: 14px 32px;
      font-size: 1rem;
    }
    .menu-toggle {
      display: flex;
    }
    .header-contact {
      margin-left: 0;
    }
    .quote-btn {
      padding: 12px 24px;
      font-size: 1rem;
      margin-left: 12px;
    }
  }
  @media (max-width: 600px) {
    .header-top {
      flex-direction: column;
      align-items: stretch;
      padding: 10px 4vw 10px 4vw;
      gap: 10px;
    }
    .logo {
      font-size: 0.95rem;
      max-width: 100vw;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 2px;
      justify-content: center;
      margin: 0 auto 8px auto;
    }
    .logo-bold,
    .logo-green {
      display: inline;
      font-size: inherit;
      line-height: 1;
      margin: 0;
      padding: 0;
    }
    .header-contact {
      display: none !important;
    }
    .quote-btn {
      width: 100%;
      margin: 10px 0 0 0;
      padding: 12px 0;
      font-size: 1rem;
    }
    .call-icon,
    .call-number {
      display: none !important;
    }
    .menu-toggle {
      display: flex !important;
      z-index: 1001;
    }
    .hero {
      padding-top: 0 !important;
      min-height: 100vh !important;
      height: 100vh !important;
      display: flex;
      align-items: center;
    }
  }

  /* Hide old header/menu wrappers if present */
  .header-nav-wrapper,
  .header-container,
  .navbar,
  nav.navbar,
  .site-header:not(:first-child) {
    display: none !important;
  }

  /* Navigation */
  .navbar {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: white;
    z-index: 999;
    border-bottom: 1px solid #ddd;
  }

  .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
  }

  .nav-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    height: 100%;
    padding: 1.25rem 0;
  }

  .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: inline-block;
    letter-spacing: 0.02em;
  }

  .nav-link:hover {
    color: #2ecc71;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown span {
    color: #333;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-dropdown:hover span {
    color: #2ecc71;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
  }

  .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  @media (max-width: 768px) {
    .header-container {
      padding: 0 1rem;
    }

    .header-contact {
      gap: 1rem;
    }

    .call-section {
      display: none;
    }

    .cta-quote-btn {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
    }

    .header-phone-topright .phone-label {
      display: none;
    }

    .header-phone-topright .phone-number {
      font-size: 0.875rem;
    }

    .header-actions {
      gap: 0.5rem;
      display: flex !important;
    }

    .navbar {
      top: 70px;
    }

    /* Show mobile menu button on mobile - IMPORTANT! */
    .mobile-menu-btn {
      display: block !important;
      order: 3;
    }

    /* Hide navigation menu by default on mobile */
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid #ddd;
      border-top: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      padding: 0;
      width: 100%;
    }

    /* Show navigation menu when active */
    .nav-menu.active {
      display: flex;
    }

    /* Mobile nav links */
    .nav-link {
      font-size: 1rem;
      padding: 1rem;
      border-bottom: 1px solid #eee;
      text-align: left;
      color: #333;
      width: 100%;
    }

    .nav-link:last-child {
      border-bottom: none;
    }

    /* Mobile dropdown behavior */
    .nav-dropdown {
      position: relative;
      width: 100%;
    }

    .nav-dropdown span {
      padding: 1rem;
      border-bottom: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: #333;
      width: 100%;
      background: white;
      transition: background-color 0.3s ease;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .nav-dropdown span:hover,
    .nav-dropdown span:active {
      background: #f8f9fa;
    }

    .dropdown-menu {
      display: none;
      position: static;
      background: white;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
      border: none;
      border-radius: 0;
      margin: 0;
      padding: 0;
      width: 100%;
      flex-direction: column;
      border-left: 3px solid #2ecc71;
    }

    .nav-dropdown.active .dropdown-menu {
      display: flex !important;
      animation: slideDown 0.3s ease;
    }

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

    .dropdown-menu a {
      padding: 1rem 2rem !important;
      border: none;
      border-bottom: 1px solid #e9ecef !important;
      color: #2c3e50 !important;
      text-decoration: none;
      display: block;
      font-size: 0.9rem;
      font-weight: 400;
      background: white !important;
      margin: 0;
      line-height: 1;
      transition: all 0.3s ease;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .dropdown-menu a:last-child {
      border-bottom: none !important;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:active {
      background-color: #f8f9fa !important;
      color: #2ecc71 !important;
      padding-left: 2.5rem !important;
    }
  }

  @media (min-width: 769px) {
    .navbar {
      padding: 0.75rem 0;
    }
    .nav-container {
      padding-top: 0.075rem;
      padding-bottom: 0.075rem;
    }
    .nav-menu {
      display: flex !important;
      flex-direction: row;
      position: static;
      background: transparent;
      padding: 0.5rem 1rem;
      box-shadow: none;
    }

    /* Hide mobile menu button on desktop */
    .mobile-menu-btn {
      display: none !important;
    }

    .header-actions {
      display: flex !important;
      align-items: center;
      gap: 2rem;
    }
  }

  /* Update hero section to account for fixed navbar */
  .hero {
    position: relative;
    width: 100%;
    height: 120vh;
    min-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 200px;
  }

  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 90%;
    z-index: 1;
  }

  .hero-image-mobile {
    display: none;
  }

  @media (max-width: 768px) {
    .hero {
      height: 80vh;
      min-height: 500px;
      padding-top: 120px;
    }
    .hero-image {
      display: none;
    }
    .hero-image-mobile {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 80%;
      z-index: 1;
    }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    margin-left: 0;
    color: white;
  }

  .hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    color: white;
    text-align: left;
  }

  .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
    color: white;
  }

  .hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .hero-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-shadow: none;
  }

  .hero-button.primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
  }

  .hero-button.primary:hover {
    background-color: #1a7fd9;
    border-color: #1a7fd9;
    transform: translateY(-2px);
  }

  .hero-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
  }

  .hero-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  /* Typography */
  h1,
  h2,
  h3 {
    font-weight: 700;
    line-height: 1.2;
  }

  h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Buttons */
  .btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 3rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }

  .btn-primary:hover {
    background-color: var(--contrast);
  }

  /* Floating Contact Button */
  .floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s;
  }

  .floating-contact i {
    font-size: 1.5rem;
  }

  .floating-contact:hover {
    background-color: var(--contrast);
  }

  /* Services Section */
  .services {
    padding: 5rem 0;
    background-color: white;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    background-color: white;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-5px);
  }

  .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
  }

  .service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .service-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    background-color: var(--accent);
    border-radius: 50%;
  }

  .service-card h3 {
    color: var(--contrast);
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .service-card p {
    color: var(--silver);
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .learn-more {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    transition: all 0.3s;
  }

  .learn-more:hover {
    background-color: var(--primary);
    color: white;
  }

  @media (min-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

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

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

  /* Testimonials Section */
  .testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
  }

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

  .testimonial-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent);
  }

  .testimonial-rating {
    margin: 1rem 0;
    color: #fbbf24; /* Amber color for stars */
  }

  .testimonial-rating i {
    margin-right: 0.25rem;
  }

  .quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Service Area Section */
  .service-area {
    padding: 5rem 0;
    background-color: white;
  }

  .service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    min-height: 600px;
  }

  .areas-we-serve,
  .map-container {
    background-color: var(--accent);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .map-container {
    position: relative;
  }

  .map-frame {
    flex-grow: 1;
    margin-top: 1.5rem;
  }

  .map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.5rem;
  }

  .map-header {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--contrast);
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem 2.5rem;
    margin: 1.5rem 0;
  }

  .area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }

  .area-check {
    color: var(--primary);
    font-size: 1.1rem;
  }

  /* Contact Section */
  .contact {
    padding: 5rem 0;
    background-color: white;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
  }

  .contact-intro {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-intro h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .contact-intro p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
  }

  .quick-contact {
    background-color: rgba(248, 249, 250, 0.4);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

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

  .contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .contact-item i {
    color: var(--primary);
    font-size: 1.75rem;
    margin-top: 0.25rem;
  }

  .contact-item .label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
  }

  .contact-item .note {
    color: var(--silver);
    margin-top: 0.25rem;
    font-size: 0.9rem;
  }

  .contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  input,
  select,
  textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
  }

  select {
    height: 3.25rem;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
  }

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

  .btn-submit {
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .btn-submit:hover {
    background-color: var(--contrast);
  }

  .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* Footer */
  footer {
    background-color: var(--contrast);
    color: white;
    padding: 2.5rem 0;
    margin-top: 2.5rem;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }

  /* Footer sections for detailed footer layout */
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
  }

  .footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section ul li a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-section ul li a:hover {
    color: #2ecc71 !important;
  }

  .footer-section p {
    color: white;
    line-height: 1.6;
  }

  .footer-logo .logo-black {
    color: white !important;
  }

  .footer-contact h4,
  .footer-hours h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .footer-contact p,
  .footer-hours p {
    color: white;
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
  }

  .footer-bottom p {
    color: white;
    margin: 0;
  }

  .company-info {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
  }

  .company-info a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
  }

  .company-info a:hover {
    color: #2ecc71 !important;
  }

  .company-info .logo-black {
    color: white !important;
  }

  .company-info .logo-green {
    color: white !important;
  }

  .social-links {
    display: flex;
    gap: 1.5rem;
  }

  .social-links a {
    color: white !important;
    transition: color 0.3s;
  }

  .social-links a:hover {
    color: #2ecc71 !important;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }

    h2 {
      font-size: 2rem;
    }

    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  }

  /* Utility Classes */
  .section-description {
    text-align: center;
    color: rgba(44, 62, 80, 0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }

  .form-message {
    margin: 1rem 0;
  }

  .form-message.error {
    color: #dc2626;
  }

  .form-message.success {
.form-message.loading {
  color: #2563eb;
  font-style: italic;
}    color: #059669;
  }

  @media (max-width: 768px) {
    .hero {
      height: 100vh;
      min-height: 100vh;
      padding-top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-content {
      text-align: center;
      align-items: center;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-content h1 {
      text-align: center;
    }
    .hero-content p {
      text-align: center;
    }
    .hero-buttons {
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }
    .hero-button {
      width: 100%;
      text-align: center;
      max-width: 400px;
    }
    .hero-overlay {
      background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.2)
      );
    }
  }

  @media (max-width: 480px) {
    .hero {
      min-height: 250px;
      height: 45vh;
    }

    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-content p {
      font-size: 1rem;
    }
  }

  .site-header {
    background: #fff !important;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.07);
    padding: 1rem 0; /* Increased padding */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    margin-bottom: 0;
  }

  .header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0 2.5rem;
    gap: 2rem;
    position: relative;
  }

  .header-logo {
    flex: 0 0 auto;
    text-align: left;
  }

  .header-lang {
    margin-left: auto;
  }

  .header-phone-topright {
    margin-left: 2rem;
    display: flex;
    align-items: center;
  }

  .header-contact {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
    margin: 0 auto;
  }

  .header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--contrast);
  }

  .header-contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
  }

  .header-contact-icon i {
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
  }

  .header-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    justify-content: center;
  }

  .header-contact-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--contrast);
  }

  .header-contact-text a,
  .header-contact-text span {
    color: var(--primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    word-break: break-all;
  }

  .flag {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .flag:hover {
    transform: scale(1.15);
  }

  .cta-quote-btn {
    background-color: white;
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-left: 2rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    border: none;
    display: inline-block;
    white-space: nowrap;
  }

  .cta-quote-btn:hover {
    background-color: var(--contrast);
    color: white;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
  }

  @media (max-width: 1200px) {
    .nav-container {
      padding: 0 1.25rem;
    }
    .nav-menu {
      gap: 1.5rem;
    }
  }

  @media (max-width: 900px) {
    .header-container {
      flex-direction: column;
      align-items: stretch;
      gap: 0.5rem;
      padding: 0 0.5rem;
    }
    .header-phone-topright {
      margin-left: 0;
      justify-content: flex-end;
      width: 100%;
      margin-top: 0.5rem;
    }
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 500px;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .submenu-section {
    flex: 1;
  }

  .submenu-section h4 {
    color: var(--contrast);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
  }

  .dropdown-menu a {
    display: block;
    color: var(--contrast);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    transition: color 0.2s;
  }

  .dropdown-menu a:hover {
    color: var(--primary);
  }

  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  @media (max-width: 768px) {
    .dropdown-menu {
      position: static;
      min-width: 100%;
      box-shadow: none;
      padding: 1rem;
      flex-direction: column;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.1);
      display: none;
    }

    .submenu-section h4 {
      color: white;
      border-bottom-color: rgba(255, 255, 255, 0.2);
    }

    .dropdown-menu a {
      color: white;
      padding: 0.5rem;
    }

    .dropdown-menu a:hover {
      color: white;
      background: rgba(255, 255, 255, 0.1);
    }

    .nav-dropdown.active .dropdown-menu {
      display: flex;
    }
  }

  .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }

  /* Only stretch the trigger on mobile */
  @media (max-width: 768px) {
    .nav-dropdown {
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      display: flex;
    }

    .nav-dropdown > span {
      justify-content: space-between;
      width: 100%;
      padding: 1rem 0;
    }
  }

  .nav-dropdown > span {
    display: flex;
    align-items: center;
    gap: 0.4em;
  }

  /* Add top padding to main content to prevent it from being hidden */
  .hero,
  .main-content,
  .container:first-of-type {
    padding-top: 120px; /* Adjusted to account for new header + navbar height */
  }

  .logo-text {
    font-weight: bold;
    font-size: 1.25rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
  }
  .logo-black {
    color: #000000;
  }
  .logo-green {
    color: #27ae60;
  }

  @media (max-width: 768px) {
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: white !important;
      border-bottom: 1px solid #ddd;
      z-index: 1000;
      padding: 0;
      width: 100%;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1rem;
      min-height: 60px;
      width: 100%;
      margin: 0;
      position: relative;
    }

    .header-logo {
      flex: 0 0 auto;
      text-align: left;
      order: 1;
    }

    .header-logo .logo-black {
      font-size: 1.1rem;
    }

    .header-logo .logo-green {
      font-size: 1.1rem;
    }

    .nav-menu {
      display: flex !important;
      flex-direction: row;
      position: static;
      background: transparent;
      padding: 0.5rem 1rem;
      box-shadow: none;
    }

    .header-logo {
      font-size: 1.25rem;
    }

    /* Hide mobile menu button on desktop */
    .mobile-menu-btn {
      display: none !important;
    }

    .header-actions {
      display: flex !important;
      align-items: center;
      gap: 0.5rem;
    }

    .header-phone-topright {
      font-size: 1.1rem;
      margin-left: 0;
      margin-right: 0;
      display: flex;
      align-items: center;
      height: 100%;
    }

    .cta-quote-btn {
      font-size: 1.1rem;
      padding: 0.75rem 2rem;
      margin-left: 0;
      background-color: #2c3e50 !important;
      color: #fff !important;
      border: 2px solid #2c3e50 !important;
      box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
      transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
    }

    .cta-quote-btn:hover {
      background: transparent !important;
      color: #2c3e50 !important;
      border: 2px solid #2c3e50 !important;
      box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
    }

    .nav-menu {
      padding: 1rem;
    }

    .hero-overlay {
      background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.2)
      );
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 220px;
      padding: 1rem 0;
      border-radius: 0.5rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      margin-top: 0.5rem;
      z-index: 1000;
    }

    .dropdown-menu a {
      color: #333;
      text-decoration: none;
      padding: 0.5rem 1.5rem;
      display: block;
      transition: background-color 0.3s;
    }

    .dropdown-menu a:hover {
      background-color: #f8f9fa;
      color: #2ecc71;
    }

    .nav-dropdown:hover .dropdown-menu {
      display: block;
    }

    /* Ensure proper spacing and hover states for desktop */
    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown span {
      color: #333;
      cursor: pointer;
      font-weight: 500;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-dropdown:hover span {
      color: #2ecc71;
    }
  }

  /* About Us Section */
  .about-us {
    padding: 5rem 0 4rem 0;
    background: #fff;
  }
  .about-us-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .about-us-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .about-img {
    width: 270px;
    height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
    background: #f8f9fa;
  }
  .about-us-content {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-us-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .about-us-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--contrast);
    text-align: left;
  }
  .about-us-desc {
    font-size: 1.15rem;
    color: var(--contrast);
    margin-bottom: 1.5rem;
  }
  .about-us-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 0;
  }
  .about-feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-top: 0.1rem;
  }
  .about-feature-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--contrast);
  }
  .about-feature-desc {
    color: var(--silver);
    font-size: 1rem;
  }
  .about-us-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
  }
  .about-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  }
  .about-btn.primary {
    background: var(--primary);
    color: #fff;
    border: none;
  }
  .about-btn.primary:hover {
    background: #218c5a;
  }
  .about-btn.secondary {
    background: #fff;
    color: #222;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    gap: 0.5rem;
    box-shadow: none;
  }
  .about-btn.secondary i {
    color: #1dbf73;
    font-size: 2rem;
    margin-right: 0.5rem;
  }
  @media (max-width: 1024px) {
    .about-us-container {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 1rem;
    }
    .about-img {
      width: 180px;
      height: 200px;
    }
    .about-us-content {
      max-width: 100%;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  @media (max-width: 768px) {
    .about-us {
      padding: 2.5rem 0 2rem 0;
    }
    .about-us-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0 1rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 0.5rem;
      justify-content: center;
    }
    .about-img {
      width: 120px;
      height: 120px;
    }
    .about-us-content h2 {
      font-size: 1.5rem;
    }
    .about-us-label {
      font-size: 1rem;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1rem;
    }
    .about-us-buttons {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }
    .about-btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* AC Repair Page Redesign - Hero Section */
  .ac-specialist-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(
        135deg,
        rgba(46, 204, 113, 0.95) 0%,
        rgba(44, 62, 80, 0.95) 100%
      ),
      url('images/Hero-DependableAC.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }

  .ac-specialist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 80%,
        rgba(46, 204, 113, 0.3) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(52, 152, 219, 0.3) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .ac-specialist-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.4);
    z-index: 2;
  }

  .ac-specialist-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    text-align: center;
  }

  .ac-specialist-hero .hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: #2ecc71;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero .hero-tagline-sub {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    color: white !important;
    -webkit-text-fill-color: white !important;
    text-align: center;
  }

  .ac-specialist-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .ac-specialist-hero .hero-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .ac-specialist-hero .hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s;
  }

  .ac-specialist-hero .hero-button:hover::before {
    left: 100%;
  }

  .ac-specialist-hero .hero-button.primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: 2px solid transparent;
  }

  .ac-specialist-hero .hero-button.primary:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
  }

  .ac-specialist-hero .hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .ac-specialist-hero .hero-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Main Content Redesign */
  .main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 4rem 0;
    position: relative;
  }

  .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
      180deg,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 100%
    );
  }

  .main-content .container {
    position: relative;
    z-index: 2;
  }

  .main-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .main-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .content-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
  }

  .content-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .cta-text {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
    position: relative;
    overflow: hidden;
  }

  .cta-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%
    );
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }

  .cta-text strong {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  /* Problem Sections Redesign */
  .ac-problems-section,
  .troubleshooting-section,
  .hot-air-section,
  .when-repair-section,
  .replacement-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.1);
  }

  .ac-problems-section::before,
  .troubleshooting-section::before,
  .hot-air-section::before,
  .when-repair-section::before,
  .replacement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  }

  .ac-problems-section h2,
  .troubleshooting-section h2,
  .hot-air-section h2,
  .when-repair-section h2,
  .replacement-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 700;
  }

  .ac-problems-section h2::after,
  .troubleshooting-section h2::after,
  .hot-air-section h2::after,
  .when-repair-section h2::after,
  .replacement-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 2px;
  }

  .ac-problems-section > p,
  .troubleshooting-section > p,
  .hot-air-section > p,
  .when-repair-section > p,
  .replacement-section > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Grid Layouts */
  .problems-grid,
  .troubleshooting-grid,
  .hot-air-grid,
  .signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
  }

  .problems-column,
  .troubleshooting-column,
  .hot-air-column,
  .signs-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
  }

  .problems-column:hover,
  .troubleshooting-column:hover,
  .hot-air-column:hover,
  .signs-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
  }

  .problems-column h3,
  .troubleshooting-column h3,
  .hot-air-column h3,
  .signs-column h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .problems-column h3::before,
  .troubleshooting-column h3::before,
  .hot-air-column h3::before,
  .signs-column h3::before {
    content: '⚡';
    font-size: 1.2rem;
    color: #2ecc71;
  }

  .problems-column ul,
  .troubleshooting-column ul,
  .hot-air-column ul,
  .signs-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .problems-column li,
  .troubleshooting-column li,
  .hot-air-column li,
  .signs-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(224, 230, 237, 0.6);
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.2s ease;
  }

  .problems-column li:hover,
  .troubleshooting-column li:hover,
  .hot-air-column li:hover,
  .signs-column li:hover {
    color: #2c3e50;
    background: rgba(46, 204, 113, 0.05);
    padding-left: 2.5rem;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-right: 1rem;
  }

  .problems-column li:before,
  .troubleshooting-column li:before,
  .hot-air-column li:before,
  .signs-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

  .problems-column li:last-child,
  .troubleshooting-column li:last-child,
  .hot-air-column li:last-child,
  .signs-column li:last-child {
    border-bottom: none;
  }

  /* DIY Section Enhancement */
  .diy-troubleshooting {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
  }

  .diy-troubleshooting::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%
    );
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
    }
  }

  .diy-troubleshooting h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

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

  .diy-item {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }

  .diy-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .diy-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .diy-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
  }

  /* Professional Inspection */
  .inspection-components {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.2);
  }

  .inspection-components h3 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  .inspection-components ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .inspection-components li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .inspection-components li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Contact Form Section */
  .contact-form-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
  }

  .contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 10% 20%,
        rgba(46, 204, 113, 0.1) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 90% 80%,
        rgba(52, 152, 219, 0.1) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .contact-form-section .container {
    position: relative;
    z-index: 2;
  }

  .contact-form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
  }

  .contact-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2ecc71;
    font-weight: 600;
  }

  .contact-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
  }

  .contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
  }

  .contact-form p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .repair-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .repair-form .form-group {
    margin-bottom: 1.5rem;
  }

  .repair-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
  }

  .repair-form input,
  .repair-form select,
  .repair-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
  }

  .repair-form input:focus,
  .repair-form select:focus,
  .repair-form textarea:focus {
    outline: none;
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
  }

  .repair-form .submit-btn {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
  }

  .repair-form .submit-btn:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
  }

  /* Contact Info Side */
  .contact-info-side {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-details h4 {
    color: #2ecc71;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .contact-details h4::before {
    content: '📞';
    font-size: 1.2rem;
  }

  .contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact-details .contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
  }

  .contact-details .contact-item i {
    font-size: 1.5rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.2);
    padding: 0.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-details .contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .hours {
    margin: 2rem 0;
  }

  .hours h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hours h4::before {
    content: '🕒';
    font-size: 1.1rem;
  }

  .hours p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
  }

  .features {
    margin-top: 2rem;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
  }

  .feature-item i {
    font-size: 1.8rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.2);
    padding: 1rem;
    border-radius: 15px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-item h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
  }

  .emergency-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
  }

  .emergency-contact p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .ac-specialist-hero {
      height: 60vh;
      min-height: 400px;
    }

    .ac-specialist-hero .hero-tagline {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .ac-specialist-hero .hero-tagline-sub {
      font-size: 0.8rem;
      margin-bottom: 1rem;
    }

    .ac-specialist-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .ac-specialist-hero .hero-buttons {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }

    .ac-specialist-hero .hero-button {
      min-width: 250px;
      font-size: 1rem;
      padding: 1rem 2rem;
    }

    .main-content h2,
    .ac-problems-section h2,
    .contact-form-section h2,
    .diy-troubleshooting h3,
    .replacement-benefits h3 {
      font-size: 2rem;
      text-align: center;
    }

    .problems-grid,
    .diy-grid {
      grid-template-columns: 1fr;
    }

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0 1rem;
    }

    .repair-form .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .diy-grid {
      gap: 1.5rem;
    }

    .ac-problems-section,
    .diy-troubleshooting,
    .contact-form-section {
      padding: 3rem 0;
    }

    .contact-form,
    .contact-info-side,
    .contact-intro {
      padding: 2rem;
    }
  }

  /* Replacement Benefits Styling */
  .replacement-benefits {
    margin: 3rem 0;
    text-align: center;
  }

  .replacement-benefits h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-align: center;
    position: relative;
  }

  .replacement-benefits h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    justify-content: center;
    place-items: start;
    width: 100%;
  }

  .benefits-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    height: 100%;
  }

  .benefits-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
  }

  .benefits-column h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
  }

  .benefits-column h4::before {
    content: '⚡';
    font-size: 1.2rem;
    color: #2ecc71;
  }

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

  .benefits-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(224, 230, 237, 0.6);
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.2s ease;
  }

  .benefits-column li:hover {
    color: #2c3e50;
    background: rgba(46, 204, 113, 0.05);
    padding-left: 2.5rem;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-right: 1rem;
  }

  .benefits-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

  .benefits-column li:last-child {
    border-bottom: none;
  }

  .contact-form,
  .contact-intro {
    padding: 2rem 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .benefits-column {
    padding: 2rem 1.5rem;
  }

  .replacement-benefits h3 {
    font-size: 1.5rem;
  }

  /* Better handling for 3-column benefits layout */
  @media (max-width: 768px) {
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin: 2rem 0;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding: 0 1rem;
    }

    .benefits-column {
      padding: 1.5rem;
    }

    .contact-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }

  @media (min-width: 1025px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
    }
  }

  /* Gallery Page Styles */
  .gallery-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('images/gallery-hero.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
  }

  .gallery-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .gallery-hero .hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  .gallery-section {
    padding: 80px 0;
    background: #f8fafc;
  }

  .gallery-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
  }

  .gallery-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
  }

  .gallery-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .gallery-hero {
      height: 50vh;
      min-height: 400px;
    }

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

    .gallery-hero .hero-content p {
      font-size: 1.1rem;
    }

    .gallery-intro h2 {
      font-size: 2rem;
    }

    .gallery-intro p {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 480px) {
    .gallery-hero .hero-content h1 {
      font-size: 1.75rem;
    }

    .gallery-hero .hero-content p {
      font-size: 0.9rem;
    }

    .gallery-intro h2 {
      font-size: 1.5rem;
    }

    .gallery-intro p {
      font-size: 0.9rem;
    }
  }

  .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #5a6c7d;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
  }

  .gallery-grid {
    column-count: 4;
    column-gap: 20px;
    line-height: 0;
  }

  .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.03);
  }

  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }

  .gallery-overlay h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
  }

  .gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
  }

  /* Gallery Filtering Animation */
  .gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
  }

  .gallery-item.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
  }

  /* Additional Responsive Styles for Gallery Grid */
  @media (max-width: 1200px) {
    .gallery-grid {
      column-count: 3;
      column-gap: 18px;
    }

    .gallery-item {
      margin-bottom: 18px;
    }
  }

  @media (max-width: 768px) {
    .gallery-grid {
      column-count: 2;
      column-gap: 15px;
    }

    .gallery-filters {
      gap: 0.5rem;
    }

    .filter-btn {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
    }

    .gallery-item {
      margin-bottom: 15px;
    }

    .gallery-overlay {
      padding: 15px 12px 12px;
    }

    .gallery-overlay h3 {
      font-size: 0.9rem;
    }

    .gallery-overlay p {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .gallery-item {
      height: 200px;
    }

    .gallery-overlay {
      padding: 15px;
    }

    .gallery-overlay h3 {
      font-size: 1rem;
    }

    .gallery-overlay p {
      font-size: 0.8rem;
    }
  }

  /* Mobile menu button - hidden by default, shown on mobile */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    z-index: 1001;
  }

  .mobile-menu-btn:hover {
    background-color: rgba(44, 62, 80, 0.1);
  }

  .cta-quote-btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    margin-left: 0;
    background-color: #2c3e50 !important;
    color: #fff !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  }

  .cta-quote-btn:hover {
    background: transparent !important;
    color: #2c3e50 !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
  }

  .nav-menu {
    padding: 1rem;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    z-index: 1000;
  }

  .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Ensure proper spacing and hover states for desktop */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown span {
    color: #333;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-dropdown:hover span {
    color: #2ecc71;
  }

  /* About Us Section */
  .about-us {
    padding: 5rem 0 4rem 0;
    background: #fff;
  }
  .about-us-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .about-us-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .about-img {
    width: 270px;
    height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
    background: #f8f9fa;
  }
  .about-us-content {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-us-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .about-us-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--contrast);
    text-align: left;
  }
  .about-us-desc {
    font-size: 1.15rem;
    color: var(--contrast);
    margin-bottom: 1.5rem;
  }
  .about-us-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 0;
  }
  .about-feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-top: 0.1rem;
  }
  .about-feature-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--contrast);
  }
  .about-feature-desc {
    color: var(--silver);
    font-size: 1rem;
  }
  .about-us-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
  }
  .about-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  }
  .about-btn.primary {
    background: var(--primary);
    color: #fff;
    border: none;
  }
  .about-btn.primary:hover {
    background: #218c5a;
  }
  .about-btn.secondary {
    background: #fff;
    color: #222;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    gap: 0.5rem;
    box-shadow: none;
  }
  .about-btn.secondary i {
    color: #1dbf73;
    font-size: 2rem;
    margin-right: 0.5rem;
  }
  @media (max-width: 1024px) {
    .about-us-container {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 1rem;
    }
    .about-img {
      width: 180px;
      height: 200px;
    }
    .about-us-content {
      max-width: 100%;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  @media (max-width: 768px) {
    .about-us {
      padding: 2.5rem 0 2rem 0;
    }
    .about-us-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0 1rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 0.5rem;
      justify-content: center;
    }
    .about-img {
      width: 120px;
      height: 120px;
    }
    .about-us-content h2 {
      font-size: 1.5rem;
    }
    .about-us-label {
      font-size: 1rem;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1rem;
    }
    .about-us-buttons {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }
    .about-btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* AC Repair Page Redesign - Hero Section */
  .ac-specialist-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(
        135deg,
        rgba(46, 204, 113, 0.95) 0%,
        rgba(44, 62, 80, 0.95) 100%
      ),
      url('images/Hero-DependableAC.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }

  .ac-specialist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 80%,
        rgba(46, 204, 113, 0.3) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(52, 152, 219, 0.3) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .ac-specialist-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.4);
    z-index: 2;
  }

  .ac-specialist-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    text-align: center;
  }

  .ac-specialist-hero .hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: #2ecc71;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero .hero-tagline-sub {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    color: white !important;
    -webkit-text-fill-color: white !important;
    text-align: center;
  }

  .ac-specialist-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .ac-specialist-hero .hero-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .ac-specialist-hero .hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s;
  }

  .ac-specialist-hero .hero-button:hover::before {
    left: 100%;
  }

  .ac-specialist-hero .hero-button.primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: 2px solid transparent;
  }

  .ac-specialist-hero .hero-button.primary:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
  }

  .ac-specialist-hero .hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .ac-specialist-hero .hero-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Main Content Redesign */
  .main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 4rem 0;
    position: relative;
  }

  .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
      180deg,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 100%
    );
  }

  .main-content .container {
    position: relative;
    z-index: 2;
  }

  .main-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .main-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .content-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
  }

  .content-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .cta-text {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
    position: relative;
    overflow: hidden;
  }

  .cta-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%
    );
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }

  .cta-text strong {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  /* Problem Sections Redesign */
  .ac-problems-section,
  .troubleshooting-section,
  .hot-air-section,
  .when-repair-section,
  .replacement-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.1);
  }

  .ac-problems-section::before,
  .troubleshooting-section::before,
  .hot-air-section::before,
  .when-repair-section::before,
  .replacement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  }

  .ac-problems-section h2,
  .troubleshooting-section h2,
  .hot-air-section h2,
  .when-repair-section h2,
  .replacement-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 700;
  }

  .ac-problems-section h2::after,
  .troubleshooting-section h2::after,
  .hot-air-section h2::after,
  .when-repair-section h2::after,
  .replacement-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 2px;
  }

  .ac-problems-section > p,
  .troubleshooting-section > p,
  .hot-air-section > p,
  .when-repair-section > p,
  .replacement-section > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Grid Layouts */
  .problems-grid,
  .troubleshooting-grid,
  .hot-air-grid,
  .signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
  }

  .problems-column,
  .troubleshooting-column,
  .hot-air-column,
  .signs-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
  }

  .problems-column:hover,
  .troubleshooting-column:hover,
  .hot-air-column:hover,
  .signs-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
  }

  .problems-column h3,
  .troubleshooting-column h3,
  .hot-air-column h3,
  .signs-column h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .problems-column h3::before,
  .troubleshooting-column h3::before,
  .hot-air-column h3::before,
  .signs-column h3::before {
    content: '⚡';
    font-size: 1.2rem;
    color: #2ecc71;
  }

  .problems-column ul,
  .troubleshooting-column ul,
  .hot-air-column ul,
  .signs-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .problems-column li,
  .troubleshooting-column li,
  .hot-air-column li,
  .signs-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(224, 230, 237, 0.6);
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.2s ease;
  }

  .problems-column li:hover,
  .troubleshooting-column li:hover,
  .hot-air-column li:hover,
  .signs-column li:hover {
    color: #2c3e50;
    background: rgba(46, 204, 113, 0.05);
    padding-left: 2.5rem;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-right: 1rem;
  }

  .problems-column li:before,
  .troubleshooting-column li:before,
  .hot-air-column li:before,
  .signs-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

  .problems-column li:last-child,
  .troubleshooting-column li:last-child,
  .hot-air-column li:last-child,
  .signs-column li:last-child {
    border-bottom: none;
  }

  /* DIY Section Enhancement */
  .diy-troubleshooting {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
  }

  .diy-troubleshooting::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%
    );
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
    }
  }

  .diy-troubleshooting h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

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

  .diy-item {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }

  .diy-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .diy-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .diy-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
  }

  /* Professional Inspection */
  .inspection-components {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.2);
  }

  .inspection-components h3 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  .inspection-components ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .inspection-components li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .inspection-components li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Contact Form Section */
  .contact-form-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
  }

  .contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 10% 20%,
        rgba(46, 204, 113, 0.1) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 90% 80%,
        rgba(52, 152, 219, 0.1) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .contact-form-section .container {
    position: relative;
    z-index: 2;
  }

  .contact-form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
  }

  .contact-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2ecc71;
    font-weight: 600;
  }

  .contact-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
  }

  .contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
  }

  .contact-form p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .repair-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .repair-form .form-group {
    margin-bottom: 1.5rem;
  }

  .repair-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
  }

  .repair-form input,
  .repair-form select,
  .repair-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
  }

  .repair-form input:focus,
  .repair-form select:focus,
  .repair-form textarea:focus {
    outline: none;
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
  }

  .repair-form .submit-btn {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
  }

  .repair-form .submit-btn:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
  }

  /* Contact Info Side */
  .contact-info-side {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-details h4 {
    color: #2ecc71;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .contact-details h4::before {
    content: '📞';
    font-size: 1.2rem;
  }

  .contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact-details .contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
  }

  .contact-details .contact-item i {
    font-size: 1.5rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.2);
    padding: 0.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-details .contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .hours {
    margin: 2rem 0;
  }

  .hours h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hours h4::before {
    content: '🕒';
    font-size: 1.1rem;
  }

  .hours p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
  }

  .features {
    margin-top: 2rem;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
  }

  .feature-item i {
    font-size: 1.8rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.2);
    padding: 1rem;
    border-radius: 15px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-item h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
  }

  .emergency-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
  }

  .emergency-contact p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .ac-specialist-hero {
      height: 60vh;
      min-height: 400px;
    }

    .ac-specialist-hero .hero-tagline {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .ac-specialist-hero .hero-tagline-sub {
      font-size: 0.8rem;
      margin-bottom: 1rem;
    }

    .ac-specialist-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .ac-specialist-hero .hero-buttons {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }

    .ac-specialist-hero .hero-button {
      min-width: 250px;
      font-size: 1rem;
      padding: 1rem 2rem;
    }

    .main-content h2,
    .ac-problems-section h2,
    .contact-form-section h2,
    .diy-troubleshooting h3,
    .replacement-benefits h3 {
      font-size: 2rem;
      text-align: center;
    }

    .problems-grid,
    .diy-grid {
      grid-template-columns: 1fr;
    }

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0 1rem;
    }

    .repair-form .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .diy-grid {
      gap: 1.5rem;
    }

    .ac-problems-section,
    .diy-troubleshooting,
    .contact-form-section {
      padding: 3rem 0;
    }

    .contact-form,
    .contact-info-side,
    .contact-intro {
      padding: 2rem;
    }
  }

  /* Replacement Benefits Styling */
  .replacement-benefits {
    margin: 3rem 0;
    text-align: center;
  }

  .replacement-benefits h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-align: center;
    position: relative;
  }

  .replacement-benefits h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    justify-content: center;
    place-items: start;
    width: 100%;
  }

  .benefits-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    height: 100%;
  }

  .benefits-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
  }

  .benefits-column h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
  }

  .benefits-column h4::before {
    content: '⚡';
    font-size: 1.2rem;
    color: #2ecc71;
  }

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

  .benefits-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(224, 230, 237, 0.6);
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.2s ease;
  }

  .benefits-column li:hover {
    color: #2c3e50;
    background: rgba(46, 204, 113, 0.05);
    padding-left: 2.5rem;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-right: 1rem;
  }

  .benefits-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

  .benefits-column li:last-child {
    border-bottom: none;
  }

  .contact-form,
  .contact-intro {
    padding: 2rem 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .benefits-column {
    padding: 2rem 1.5rem;
  }

  .replacement-benefits h3 {
    font-size: 1.5rem;
  }

  /* Better handling for 3-column benefits layout */
  @media (max-width: 768px) {
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin: 2rem 0;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding: 0 1rem;
    }

    .benefits-column {
      padding: 1.5rem;
    }

    .contact-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }

  @media (min-width: 1025px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
    }
  }

  /* Gallery Page Styles */
  .gallery-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('images/gallery-hero.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
  }

  .gallery-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .gallery-hero .hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  .gallery-section {
    padding: 80px 0;
    background: #f8fafc;
  }

  .gallery-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
  }

  .gallery-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
  }

  .gallery-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .gallery-hero {
      height: 50vh;
      min-height: 400px;
    }

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

    .gallery-hero .hero-content p {
      font-size: 1.1rem;
    }

    .gallery-intro h2 {
      font-size: 2rem;
    }

    .gallery-intro p {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 480px) {
    .gallery-hero .hero-content h1 {
      font-size: 1.75rem;
    }

    .gallery-hero .hero-content p {
      font-size: 0.9rem;
    }

    .gallery-intro h2 {
      font-size: 1.5rem;
    }

    .gallery-intro p {
      font-size: 0.9rem;
    }
  }

  .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #5a6c7d;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
  }

  .gallery-grid {
    column-count: 4;
    column-gap: 20px;
    line-height: 0;
  }

  .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.03);
  }

  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }

  .gallery-overlay h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
  }

  .gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
  }

  /* Gallery Filtering Animation */
  .gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
  }

  .gallery-item.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
  }

  /* Additional Responsive Styles for Gallery Grid */
  @media (max-width: 1200px) {
    .gallery-grid {
      column-count: 3;
      column-gap: 18px;
    }

    .gallery-item {
      margin-bottom: 18px;
    }
  }

  @media (max-width: 768px) {
    .gallery-grid {
      column-count: 2;
      column-gap: 15px;
    }

    .gallery-filters {
      gap: 0.5rem;
    }

    .filter-btn {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
    }

    .gallery-item {
      margin-bottom: 15px;
    }

    .gallery-overlay {
      padding: 15px 12px 12px;
    }

    .gallery-overlay h3 {
      font-size: 0.9rem;
    }

    .gallery-overlay p {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .gallery-item {
      height: 200px;
    }

    .gallery-overlay {
      padding: 15px;
    }

    .gallery-overlay h3 {
      font-size: 1rem;
    }

    .gallery-overlay p {
      font-size: 0.8rem;
    }
  }

  /* Mobile menu button - hidden by default, shown on mobile */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    z-index: 1001;
  }

  .mobile-menu-btn:hover {
    background-color: rgba(44, 62, 80, 0.1);
  }

  .cta-quote-btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    margin-left: 0;
    background-color: #2c3e50 !important;
    color: #fff !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  }

  .cta-quote-btn:hover {
    background: transparent !important;
    color: #2c3e50 !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
  }

  .nav-menu {
    padding: 1rem;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    z-index: 1000;
  }

  .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Ensure proper spacing and hover states for desktop */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown span {
    color: #333;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-dropdown:hover span {
    color: #2ecc71;
  }

  /* About Us Section */
  .about-us {
    padding: 5rem 0 4rem 0;
    background: #fff;
  }
  .about-us-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .about-us-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .about-img {
    width: 270px;
    height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
    background: #f8f9fa;
  }
  .about-us-content {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-us-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .about-us-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--contrast);
    text-align: left;
  }
  .about-us-desc {
    font-size: 1.15rem;
    color: var(--contrast);
    margin-bottom: 1.5rem;
  }
  .about-us-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 0;
  }
  .about-feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-top: 0.1rem;
  }
  .about-feature-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--contrast);
  }
  .about-feature-desc {
    color: var(--silver);
    font-size: 1rem;
  }
  .about-us-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
  }
  .about-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  }
  .about-btn.primary {
    background: var(--primary);
    color: #fff;
    border: none;
  }
  .about-btn.primary:hover {
    background: #218c5a;
  }
  .about-btn.secondary {
    background: #fff;
    color: #222;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    gap: 0.5rem;
    box-shadow: none;
  }
  .about-btn.secondary i {
    color: #1dbf73;
    font-size: 2rem;
    margin-right: 0.5rem;
  }
  @media (max-width: 1024px) {
    .about-us-container {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 1rem;
    }
    .about-img {
      width: 180px;
      height: 200px;
    }
    .about-us-content {
      max-width: 100%;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  @media (max-width: 768px) {
    .about-us {
      padding: 2.5rem 0 2rem 0;
    }
    .about-us-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0 1rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 0.5rem;
      justify-content: center;
    }
    .about-img {
      width: 120px;
      height: 120px;
    }
    .about-us-content h2 {
      font-size: 1.5rem;
    }
    .about-us-label {
      font-size: 1rem;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1rem;
    }
    .about-us-buttons {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }
    .about-btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* AC Repair Page Redesign - Hero Section */
  .ac-specialist-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(
        135deg,
        rgba(46, 204, 113, 0.95) 0%,
        rgba(44, 62, 80, 0.95) 100%
      ),
      url('images/Hero-DependableAC.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }

  .ac-specialist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 80%,
        rgba(46, 204, 113, 0.3) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(52, 152, 219, 0.3) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .ac-specialist-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.4);
    z-index: 2;
  }

  .ac-specialist-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    text-align: center;
  }

  .ac-specialist-hero .hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: #2ecc71;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero .hero-tagline-sub {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    color: white !important;
    -webkit-text-fill-color: white !important;
    text-align: center;
  }

  .ac-specialist-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .ac-specialist-hero .hero-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .ac-specialist-hero .hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s;
  }

  .ac-specialist-hero .hero-button:hover::before {
    left: 100%;
  }

  .ac-specialist-hero .hero-button.primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: 2px solid transparent;
  }

  .ac-specialist-hero .hero-button.primary:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
  }

  .ac-specialist-hero .hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .ac-specialist-hero .hero-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Main Content Redesign */
  .main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 4rem 0;
    position: relative;
  }

  .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
      180deg,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 100%
    );
  }

  .main-content .container {
    position: relative;
    z-index: 2;
  }

  .main-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .main-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .content-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
  }

  .content-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .cta-text {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
    position: relative;
    overflow: hidden;
  }

  .cta-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%
    );
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }

  .cta-text strong {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  /* Problem Sections Redesign */
  .ac-problems-section,
  .troubleshooting-section,
  .hot-air-section,
  .when-repair-section,
  .replacement-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.1);
  }

  .ac-problems-section::before,
  .troubleshooting-section::before,
  .hot-air-section::before,
  .when-repair-section::before,
  .replacement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  }

  .ac-problems-section h2,
  .troubleshooting-section h2,
  .hot-air-section h2,
  .when-repair-section h2,
  .replacement-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 700;
  }

  .ac-problems-section h2::after,
  .troubleshooting-section h2::after,
  .hot-air-section h2::after,
  .when-repair-section h2::after,
  .replacement-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 2px;
  }

  .ac-problems-section > p,
  .troubleshooting-section > p,
  .hot-air-section > p,
  .when-repair-section > p,
  .replacement-section > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Grid Layouts */
  .problems-grid,
  .troubleshooting-grid,
  .hot-air-grid,
  .signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
  }

  .problems-column,
  .troubleshooting-column,
  .hot-air-column,
  .signs-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
  }

  .problems-column:hover,
  .troubleshooting-column:hover,
  .hot-air-column:hover,
  .signs-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
  }

  .problems-column h3,
  .troubleshooting-column h3,
  .hot-air-column h3,
  .signs-column h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .problems-column h3::before,
  .troubleshooting-column h3::before,
  .hot-air-column h3::before,
  .signs-column h3::before {
    content: '⚡';
    font-size: 1.2rem;
    color: #2ecc71;
  }

  .problems-column ul,
  .troubleshooting-column ul,
  .hot-air-column ul,
  .signs-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .problems-column li,
  .troubleshooting-column li,
  .hot-air-column li,
  .signs-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(224, 230, 237, 0.6);
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.2s ease;
  }

  .problems-column li:hover,
  .troubleshooting-column li:hover,
  .hot-air-column li:hover,
  .signs-column li:hover {
    color: #2c3e50;
    background: rgba(46, 204, 113, 0.05);
    padding-left: 2.5rem;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-right: 1rem;
  }

  .problems-column li:before,
  .troubleshooting-column li:before,
  .hot-air-column li:before,
  .signs-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

  .problems-column li:last-child,
  .troubleshooting-column li:last-child,
  .hot-air-column li:last-child,
  .signs-column li:last-child {
    border-bottom: none;
  }

  /* DIY Section Enhancement */
  .diy-troubleshooting {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
  }

  .diy-troubleshooting::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%
    );
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
    }
  }

  .diy-troubleshooting h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

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

  .diy-item {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }

  .diy-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .diy-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .diy-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
  }

  /* Professional Inspection */
  .inspection-components {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.2);
  }

  .inspection-components h3 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  .inspection-components ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .inspection-components li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .inspection-components li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Contact Form Section */
  .contact-form-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
  }

  .contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 10% 20%,
        rgba(46, 204, 113, 0.1) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 90% 80%,
        rgba(52, 152, 219, 0.1) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .contact-form-section .container {
    position: relative;
    z-index: 2;
  }

  .contact-form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
  }

  .contact-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2ecc71;
    font-weight: 600;
  }

  .contact-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
  }

  .contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
  }

  .contact-form p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .repair-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .repair-form .form-group {
    margin-bottom: 1.5rem;
  }

  .repair-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
  }

  .repair-form input,
  .repair-form select,
  .repair-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
  }

  .repair-form input:focus,
  .repair-form select:focus,
  .repair-form textarea:focus {
    outline: none;
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
  }

  .repair-form .submit-btn {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
  }

  .repair-form .submit-btn:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
  }

  /* Contact Info Side */
  .contact-info-side {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-details h4 {
    color: #2ecc71;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .contact-details h4::before {
    content: '📞';
    font-size: 1.2rem;
  }

  .contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact-details .contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
  }

  .contact-details .contact-item i {
    font-size: 1.5rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.2);
    padding: 0.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-details .contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .hours {
    margin: 2rem 0;
  }

  .hours h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hours h4::before {
    content: '🕒';
    font-size: 1.1rem;
  }

  .hours p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
  }

  .features {
    margin-top: 2rem;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
  }

  .feature-item i {
    font-size: 1.8rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.2);
    padding: 1rem;
    border-radius: 15px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-item h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
  }

  .emergency-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
  }

  .emergency-contact p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .ac-specialist-hero {
      height: 60vh;
      min-height: 400px;
    }

    .ac-specialist-hero .hero-tagline {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .ac-specialist-hero .hero-tagline-sub {
      font-size: 0.8rem;
      margin-bottom: 1rem;
    }

    .ac-specialist-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .ac-specialist-hero .hero-buttons {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }

    .ac-specialist-hero .hero-button {
      min-width: 250px;
      font-size: 1rem;
      padding: 1rem 2rem;
    }

    .main-content h2,
    .ac-problems-section h2,
    .contact-form-section h2,
    .diy-troubleshooting h3,
    .replacement-benefits h3 {
      font-size: 2rem;
      text-align: center;
    }

    .problems-grid,
    .diy-grid {
      grid-template-columns: 1fr;
    }

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0 1rem;
    }

    .repair-form .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .diy-grid {
      gap: 1.5rem;
    }

    .ac-problems-section,
    .diy-troubleshooting,
    .contact-form-section {
      padding: 3rem 0;
    }

    .contact-form,
    .contact-info-side,
    .contact-intro {
      padding: 2rem;
    }
  }

  /* Replacement Benefits Styling */
  .replacement-benefits {
    margin: 3rem 0;
    text-align: center;
  }

  .replacement-benefits h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-align: center;
    position: relative;
  }

  .replacement-benefits h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    justify-content: center;
    place-items: start;
    width: 100%;
  }

  .benefits-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    height: 100%;
  }

  .benefits-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
  }

  .benefits-column h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
  }

  .benefits-column h4::before {
    content: '⚡';
    font-size: 1.2rem;
    color: #2ecc71;
  }

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

  .benefits-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(224, 230, 237, 0.6);
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.2s ease;
  }

  .benefits-column li:hover {
    color: #2c3e50;
    background: rgba(46, 204, 113, 0.05);
    padding-left: 2.5rem;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-right: 1rem;
  }

  .benefits-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

  .benefits-column li:last-child {
    border-bottom: none;
  }

  .contact-form,
  .contact-intro {
    padding: 2rem 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .benefits-column {
    padding: 2rem 1.5rem;
  }

  .replacement-benefits h3 {
    font-size: 1.5rem;
  }

  /* Better handling for 3-column benefits layout */
  @media (max-width: 768px) {
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin: 2rem 0;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding: 0 1rem;
    }

    .benefits-column {
      padding: 1.5rem;
    }

    .contact-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }

  @media (min-width: 1025px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
    }
  }

  /* Gallery Page Styles */
  .gallery-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('images/gallery-hero.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
  }

  .gallery-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .gallery-hero .hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  .gallery-section {
    padding: 80px 0;
    background: #f8fafc;
  }

  .gallery-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
  }

  .gallery-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
  }

  .gallery-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .gallery-hero {
      height: 50vh;
      min-height: 400px;
    }

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

    .gallery-hero .hero-content p {
      font-size: 1.1rem;
    }

    .gallery-intro h2 {
      font-size: 2rem;
    }

    .gallery-intro p {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 480px) {
    .gallery-hero .hero-content h1 {
      font-size: 1.75rem;
    }

    .gallery-hero .hero-content p {
      font-size: 0.9rem;
    }

    .gallery-intro h2 {
      font-size: 1.5rem;
    }

    .gallery-intro p {
      font-size: 0.9rem;
    }
  }

  .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #5a6c7d;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
  }

  .gallery-grid {
    column-count: 4;
    column-gap: 20px;
    line-height: 0;
  }

  .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.03);
  }

  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }

  .gallery-overlay h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
  }

  .gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
  }

  /* Gallery Filtering Animation */
  .gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
  }

  .gallery-item.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
  }

  /* Additional Responsive Styles for Gallery Grid */
  @media (max-width: 1200px) {
    .gallery-grid {
      column-count: 3;
      column-gap: 18px;
    }

    .gallery-item {
      margin-bottom: 18px;
    }
  }

  @media (max-width: 768px) {
    .gallery-grid {
      column-count: 2;
      column-gap: 15px;
    }

    .gallery-filters {
      gap: 0.5rem;
    }

    .filter-btn {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
    }

    .gallery-item {
      margin-bottom: 15px;
    }

    .gallery-overlay {
      padding: 15px 12px 12px;
    }

    .gallery-overlay h3 {
      font-size: 0.9rem;
    }

    .gallery-overlay p {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .gallery-item {
      height: 200px;
    }

    .gallery-overlay {
      padding: 15px;
    }

    .gallery-overlay h3 {
      font-size: 1rem;
    }

    .gallery-overlay p {
      font-size: 0.8rem;
    }
  }

  /* Mobile menu button - hidden by default, shown on mobile */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    z-index: 1001;
  }

  .mobile-menu-btn:hover {
    background-color: rgba(44, 62, 80, 0.1);
  }

  .cta-quote-btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    margin-left: 0;
    background-color: #2c3e50 !important;
    color: #fff !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  }

  .cta-quote-btn:hover {
    background: transparent !important;
    color: #2c3e50 !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
  }

  .nav-menu {
    padding: 1rem;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    z-index: 1000;
  }

  .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Ensure proper spacing and hover states for desktop */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown span {
    color: #333;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-dropdown:hover span {
    color: #2ecc71;
  }

  /* About Us Section */
  .about-us {
    padding: 5rem 0 4rem 0;
    background: #fff;
  }
  .about-us-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .about-us-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .about-img {
    width: 270px;
    height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
    background: #f8f9fa;
  }
  .about-us-content {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-us-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .about-us-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--contrast);
    text-align: left;
  }
  .about-us-desc {
    font-size: 1.15rem;
    color: var(--contrast);
    margin-bottom: 1.5rem;
  }
  .about-us-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 0;
  }
  .about-feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-top: 0.1rem;
  }
  .about-feature-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--contrast);
  }
  .about-feature-desc {
    color: var(--silver);
    font-size: 1rem;
  }
  .about-us-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
  }
  .about-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  }
  .about-btn.primary {
    background: var(--primary);
    color: #fff;
    border: none;
  }
  .about-btn.primary:hover {
    background: #218c5a;
  }
  .about-btn.secondary {
    background: #fff;
    color: #222;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    gap: 0.5rem;
    box-shadow: none;
  }
  .about-btn.secondary i {
    color: #1dbf73;
    font-size: 2rem;
    margin-right: 0.5rem;
  }
  @media (max-width: 1024px) {
    .about-us-container {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 1rem;
    }
    .about-img {
      width: 180px;
      height: 200px;
    }
    .about-us-content {
      max-width: 100%;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  @media (max-width: 768px) {
    .about-us {
      padding: 2.5rem 0 2rem 0;
    }
    .about-us-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0 1rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 0.5rem;
      justify-content: center;
    }
    .about-img {
      width: 120px;
      height: 120px;
    }
    .about-us-content h2 {
      font-size: 1.5rem;
    }
    .about-us-label {
      font-size: 1rem;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1rem;
    }
    .about-us-buttons {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }
    .about-btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* AC Repair Page Redesign - Hero Section */
  .ac-specialist-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(
        135deg,
        rgba(46, 204, 113, 0.95) 0%,
        rgba(44, 62, 80, 0.95) 100%
      ),
      url('images/Hero-DependableAC.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }

  .ac-specialist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 80%,
        rgba(46, 204, 113, 0.3) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(52, 152, 219, 0.3) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .ac-specialist-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.4);
    z-index: 2;
  }

  .ac-specialist-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    text-align: center;
  }

  .ac-specialist-hero .hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: #2ecc71;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero .hero-tagline-sub {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    color: white !important;
    -webkit-text-fill-color: white !important;
    text-align: center;
  }

  .ac-specialist-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .ac-specialist-hero .hero-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .ac-specialist-hero .hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s;
  }

  .ac-specialist-hero .hero-button:hover::before {
    left: 100%;
  }

  .ac-specialist-hero .hero-button.primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: 2px solid transparent;
  }

  .ac-specialist-hero .hero-button.primary:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
  }

  .ac-specialist-hero .hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .ac-specialist-hero .hero-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Main Content Redesign */
  .main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 4rem 0;
    position: relative;
  }

  .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
      180deg,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 100%
    );
  }

  .main-content .container {
    position: relative;
    z-index: 2;
  }

  .main-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .main-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .content-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
  }

  .content-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .cta-text {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
    position: relative;
    overflow: hidden;
  }

  .cta-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%
    );
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }

  .cta-text strong {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  /* Problem Sections Redesign */
  .ac-problems-section,
  .troubleshooting-section,
  .hot-air-section,
  .when-repair-section,
  .replacement-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.1);
  }

  .ac-problems-section::before,
  .troubleshooting-section::before,
  .hot-air-section::before,
  .when-repair-section::before,
  .replacement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  }

  .ac-problems-section h2,
  .troubleshooting-section h2,
  .hot-air-section h2,
  .when-repair-section h2,
  .replacement-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 700;
  }

  .ac-problems-section h2::after,
  .troubleshooting-section h2::after,
  .hot-air-section h2::after,
  .when-repair-section h2::after,
  .replacement-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 2px;
  }

  .ac-problems-section > p,
  .troubleshooting-section > p,
  .hot-air-section > p,
  .when-repair-section > p,
  .replacement-section > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Grid Layouts */
  .problems-grid,
  .troubleshooting-grid,
  .hot-air-grid,
  .signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
  }

  .problems-column,
  .troubleshooting-column,
  .hot-air-column,
  .signs-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
  }

  .problems-column:hover,
  .troubleshooting-column:hover,
  .hot-air-column:hover,
  .signs-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
  }

  .problems-column h3,
  .troubleshooting-column h3,
  .hot-air-column h3,
  .signs-column h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .problems-column h3::before,
  .troubleshooting-column h3::before,
  .hot-air-column h3::before,
  .signs-column h3::before {
    content: '⚡';
    font-size: 1.2rem;
    color: #2ecc71;
  }

  .problems-column ul,
  .troubleshooting-column ul,
  .hot-air-column ul,
  .signs-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .problems-column li,
  .troubleshooting-column li,
  .hot-air-column li,
  .signs-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(224, 230, 237, 0.6);
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.2s ease;
  }

  .problems-column li:hover,
  .troubleshooting-column li:hover,
  .hot-air-column li:hover,
  .signs-column li:hover {
    color: #2c3e50;
    background: rgba(46, 204, 113, 0.05);
    padding-left: 2.5rem;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-right: 1rem;
  }

  .problems-column li:before,
  .troubleshooting-column li:before,
  .hot-air-column li:before,
  .signs-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

  .problems-column li:last-child,
  .troubleshooting-column li:last-child,
  .hot-air-column li:last-child,
  .signs-column li:last-child {
    border-bottom: none;
  }

  /* DIY Section Enhancement */
  .diy-troubleshooting {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
  }

  .diy-troubleshooting::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%
    );
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
    }
  }

  .diy-troubleshooting h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

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

  .diy-item {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }

  .diy-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .diy-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .diy-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
  }

  /* Professional Inspection */
  .inspection-components {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.2);
  }

  .inspection-components h3 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  .inspection-components ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .inspection-components li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .inspection-components li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Contact Form Section */
  .contact-form-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
  }

  .contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 10% 20%,
        rgba(46, 204, 113, 0.1) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 90% 80%,
        rgba(52, 152, 219, 0.1) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .contact-form-section .container {
    position: relative;
    z-index: 2;
  }

  .contact-form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
  }

  .contact-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2ecc71;
    font-weight: 600;
  }

  .contact-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
  }

  .contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
  }

  .contact-form p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .repair-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .repair-form .form-group {
    margin-bottom: 1.5rem;
  }

  .repair-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
  }

  .repair-form input,
  .repair-form select,
  .repair-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
  }

  .repair-form input:focus,
  .repair-form select:focus,
  .repair-form textarea:focus {
    outline: none;
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
  }

  .repair-form .submit-btn {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
  }

  .repair-form .submit-btn:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
  }

  /* Contact Info Side */
  .contact-info-side {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-details h4 {
    color: #2ecc71;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .contact-details h4::before {
    content: '📞';
    font-size: 1.2rem;
  }

  .contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact-details .contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
  }

  .contact-details .contact-item i {
    font-size: 1.5rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.2);
    padding: 0.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-details .contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .hours {
    margin: 2rem 0;
  }

  .hours h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hours h4::before {
    content: '🕒';
    font-size: 1.1rem;
  }

  .hours p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
  }

  .features {
    margin-top: 2rem;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
  }

  .feature-item i {
    font-size: 1.8rem;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.2);
    padding: 1rem;
    border-radius: 15px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-item h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
  }

  .emergency-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
  }

  .emergency-contact p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .ac-specialist-hero {
      height: 60vh;
      min-height: 400px;
    }

    .ac-specialist-hero .hero-tagline {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .ac-specialist-hero .hero-tagline-sub {
      font-size: 0.8rem;
      margin-bottom: 1rem;
    }

    .ac-specialist-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .ac-specialist-hero .hero-buttons {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }

    .ac-specialist-hero .hero-button {
      min-width: 250px;
      font-size: 1rem;
      padding: 1rem 2rem;
    }

    .main-content h2,
    .ac-problems-section h2,
    .contact-form-section h2,
    .diy-troubleshooting h3,
    .replacement-benefits h3 {
      font-size: 2rem;
      text-align: center;
    }

    .problems-grid,
    .diy-grid {
      grid-template-columns: 1fr;
    }

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0 1rem;
    }

    .repair-form .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .diy-grid {
      gap: 1.5rem;
    }

    .ac-problems-section,
    .diy-troubleshooting,
    .contact-form-section {
      padding: 3rem 0;
    }

    .contact-form,
    .contact-info-side,
    .contact-intro {
      padding: 2rem;
    }
  }

  /* Replacement Benefits Styling */
  .replacement-benefits {
    margin: 3rem 0;
    text-align: center;
  }

  .replacement-benefits h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-align: center;
    position: relative;
  }

  .replacement-benefits h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    justify-content: center;
    place-items: start;
    width: 100%;
  }

  .benefits-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    height: 100%;
  }

  .benefits-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
  }

  .benefits-column h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
  }

  .benefits-column h4::before {
    content: '⚡';
    font-size: 1.2rem;
    color: #2ecc71;
  }

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

  .benefits-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(224, 230, 237, 0.6);
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.2s ease;
  }

  .benefits-column li:hover {
    color: #2c3e50;
    background: rgba(46, 204, 113, 0.05);
    padding-left: 2.5rem;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-right: 1rem;
  }

  .benefits-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

  .benefits-column li:last-child {
    border-bottom: none;
  }

  .contact-form,
  .contact-intro {
    padding: 2rem 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .benefits-column {
    padding: 2rem 1.5rem;
  }

  .replacement-benefits h3 {
    font-size: 1.5rem;
  }

  /* Better handling for 3-column benefits layout */
  @media (max-width: 768px) {
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin: 2rem 0;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding: 0 1rem;
    }

    .benefits-column {
      padding: 1.5rem;
    }

    .contact-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }

  @media (min-width: 1025px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
    }
  }

  /* Gallery Page Styles */
  .gallery-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('images/gallery-hero.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
  }

  .gallery-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .gallery-hero .hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  .gallery-section {
    padding: 80px 0;
    background: #f8fafc;
  }

  .gallery-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
  }

  .gallery-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
  }

  .gallery-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .gallery-hero {
      height: 50vh;
      min-height: 400px;
    }

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

    .gallery-hero .hero-content p {
      font-size: 1.1rem;
    }

    .gallery-intro h2 {
      font-size: 2rem;
    }

    .gallery-intro p {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 480px) {
    .gallery-hero .hero-content h1 {
      font-size: 1.75rem;
    }

    .gallery-hero .hero-content p {
      font-size: 0.9rem;
    }

    .gallery-intro h2 {
      font-size: 1.5rem;
    }

    .gallery-intro p {
      font-size: 0.9rem;
    }
  }

  .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #5a6c7d;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
  }

  .gallery-grid {
    column-count: 4;
    column-gap: 20px;
    line-height: 0;
  }

  .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.03);
  }

  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }

  .gallery-overlay h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
  }

  .gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
  }

  /* Gallery Filtering Animation */
  .gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
  }

  .gallery-item.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
  }

  /* Additional Responsive Styles for Gallery Grid */
  @media (max-width: 1200px) {
    .gallery-grid {
      column-count: 3;
      column-gap: 18px;
    }

    .gallery-item {
      margin-bottom: 18px;
    }
  }

  @media (max-width: 768px) {
    .gallery-grid {
      column-count: 2;
      column-gap: 15px;
    }

    .gallery-filters {
      gap: 0.5rem;
    }

    .filter-btn {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
    }

    .gallery-item {
      margin-bottom: 15px;
    }

    .gallery-overlay {
      padding: 15px 12px 12px;
    }

    .gallery-overlay h3 {
      font-size: 0.9rem;
    }

    .gallery-overlay p {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .gallery-item {
      height: 200px;
    }

    .gallery-overlay {
      padding: 15px;
    }

    .gallery-overlay h3 {
      font-size: 1rem;
    }

    .gallery-overlay p {
      font-size: 0.8rem;
    }
  }

  /* Mobile menu button - hidden by default, shown on mobile */
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    z-index: 1001;
  }

  .mobile-menu-btn:hover {
    background-color: rgba(44, 62, 80, 0.1);
  }

  .cta-quote-btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    margin-left: 0;
    background-color: #2c3e50 !important;
    color: #fff !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  }

  .cta-quote-btn:hover {
    background: transparent !important;
    color: #2c3e50 !important;
    border: 2px solid #2c3e50 !important;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
  }

  .nav-menu {
    padding: 1rem;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.2)
    );
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    z-index: 1000;
  }

  .dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: block;
    transition: background-color 0.3s;
  }

  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2ecc71;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Ensure proper spacing and hover states for desktop */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown span {
    color: #333;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-dropdown:hover span {
    color: #2ecc71;
  }

  /* About Us Section */
  .about-us {
    padding: 5rem 0 4rem 0;
    background: #fff;
  }
  .about-us-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .about-us-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .about-img {
    width: 270px;
    height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
    background: #f8f9fa;
  }
  .about-us-content {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-us-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .about-us-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--contrast);
    text-align: left;
  }
  .about-us-desc {
    font-size: 1.15rem;
    color: var(--contrast);
    margin-bottom: 1.5rem;
  }
  .about-us-features {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 0;
  }
  .about-feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-top: 0.1rem;
  }
  .about-feature-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--contrast);
  }
  .about-feature-desc {
    color: var(--silver);
    font-size: 1rem;
  }
  .about-us-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
  }
  .about-btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
  }
  .about-btn.primary {
    background: var(--primary);
    color: #fff;
    border: none;
  }
  .about-btn.primary:hover {
    background: #218c5a;
  }
  .about-btn.secondary {
    background: #fff;
    color: #222;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    gap: 0.5rem;
    box-shadow: none;
  }
  .about-btn.secondary i {
    color: #1dbf73;
    font-size: 2rem;
    margin-right: 0.5rem;
  }
  @media (max-width: 1024px) {
    .about-us-container {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 1rem;
    }
    .about-img {
      width: 180px;
      height: 200px;
    }
    .about-us-content {
      max-width: 100%;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  @media (max-width: 768px) {
    .about-us {
      padding: 2.5rem 0 2rem 0;
    }
    .about-us-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0 1rem;
    }
    .about-us-images {
      flex-direction: row;
      gap: 0.5rem;
      justify-content: center;
    }
    .about-img {
      width: 120px;
      height: 120px;
    }
    .about-us-content h2 {
      font-size: 1.5rem;
    }
    .about-us-label {
      font-size: 1rem;
    }
    .about-us-features {
      flex-direction: column;
      gap: 1rem;
    }
    .about-us-buttons {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }
    .about-btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* AC Repair Page Redesign - Hero Section */
  .ac-specialist-hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(
        135deg,
        rgba(46, 204, 113, 0.95) 0%,
        rgba(44, 62, 80, 0.95) 100%
      ),
      url('images/Hero-DependableAC.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }

  .ac-specialist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 80%,
        rgba(46, 204, 113, 0.3) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 80% 20%,
        rgba(52, 152, 219, 0.3) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .ac-specialist-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.4);
    z-index: 2;
  }

  .ac-specialist-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    text-align: center;
  }

  .ac-specialist-hero .hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    color: #2ecc71;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero .hero-tagline-sub {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .ac-specialist-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    color: white !important;
    -webkit-text-fill-color: white !important;
    text-align: center;
  }

  .ac-specialist-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .ac-specialist-hero .hero-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

  .ac-specialist-hero .hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s;
  }

  .ac-specialist-hero .hero-button:hover::before {
    left: 100%;
  }

  .ac-specialist-hero .hero-button.primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: 2px solid transparent;
  }

  .ac-specialist-hero .hero-button.primary:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
  }

  .ac-specialist-hero .hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .ac-specialist-hero .hero-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Main Content Redesign */
  .main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 4rem 0;
    position: relative;
  }

  .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
      180deg,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 100%
    );
  }

  .main-content .container {
    position: relative;
    z-index: 2;
  }

  .main-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .main-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .content-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
  }

  .content-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .cta-text {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
    position: relative;
    overflow: hidden;
  }

  .cta-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%
    );
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }

  .cta-text strong {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  /* Problem Sections Redesign */
  .ac-problems-section,
  .troubleshooting-section,
  .hot-air-section,
  .when-repair-section,
  .replacement-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.1);
  }

  .ac-problems-section::before,
  .troubleshooting-section::before,
  .hot-air-section::before,
  .when-repair-section::before,
  .replacement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
  }

  .ac-problems-section h2,
  .troubleshooting-section h2,
  .hot-air-section h2,
  .when-repair-section h2,
  .replacement-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 700;
  }

  .ac-problems-section h2::after,
  .troubleshooting-section h2::after,
  .hot-air-section h2::after,
  .when-repair-section h2::after,
  .replacement-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 2px;
  }

  .ac-problems-section > p,
  .troubleshooting-section > p,
  .hot-air-section > p,
  .when-repair-section > p,
  .replacement-section > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Grid Layouts */
  .problems-grid,
  .troubleshooting-grid,
  .hot-air-grid,
  .signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
  }

  .problems-column,
  .troubleshooting-column,
  .hot-air-column,
  .signs-column {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.1);
    position: relative;
    transition: all 0.3s ease;
  }

  .problems-column:hover,
  .troubleshooting-column:hover,
  .hot-air-column:hover,
  .signs-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
  }

  .problems-column h3,
  .troubleshooting-column h3,
  .hot-air-column h3,
  .signs-column h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .problems-column h3::before,
  .troubleshooting-column h3::before,
  .hot-air-column h3::before,
  .signs-column h3::before {
    content: '⚡';
    font-size: 1.2rem;
    color: #2ecc71;
  }

  .problems-column ul,
  .troubleshooting-column ul,
  .hot-air-column ul,
  .signs-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .problems-column li,
  .troubleshooting-column li,
  .hot-air-column li,
  .signs-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(224, 230, 237, 0.6);
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.2s ease;
  }

  .problems-column li:hover,
  .troubleshooting-column li:hover,
  .hot-air-column li:hover,
  .signs-column li:hover {
    color: #2c3e50;
    background: rgba(46, 204, 113, 0.05);
    padding-left: 2.5rem;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-right: 1rem;
  }

  .problems-column li:before,
  .troubleshooting-column li:before,
  .hot-air-column li:before,
  .signs-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

  .problems-column li:last-child,
  .troubleshooting-column li:last-child,
  .hot-air-column li:last-child,
  .signs-column li:last-child {
    border-bottom: none;
  }

  /* DIY Section Enhancement */
  .diy-troubleshooting {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
  }

  .diy-troubleshooting::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%
    );
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
    }
  }

  .diy-troubleshooting h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

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

  .diy-item {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }

  .diy-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .diy-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .diy-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
  }

  /* Professional Inspection */
  .inspection-components {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.2);
  }

  .inspection-components h3 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  .inspection-components ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .inspection-components li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .inspection-components li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Contact Form Section */
  .contact-form-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
  }

  .contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 10% 20%,
        rgba(46, 204, 113, 0.1) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 90% 80%,
        rgba(52, 152, 219, 0.1) 0%,
        transparent 50%
      );
    z-index: 1;
  }

  .contact-form-section .container {
    position: relative;
    z-index: 2;
  }

  .contact-form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
    border-radius: 2px;
  }

  .contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
  }

  .contact-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2ecc71;
    font-weight: 600;
  }

  .contact-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  /* MOBILE ONLY - Show button and setup menu */
  @media screen and (max-width: 768px) {
    /* Force show mobile menu button */
    .mobile-menu-btn {
      display: block;
      visibility: visible;
      opacity: 1;
      z-index: 1001;
      position: relative;
    }

    /* Force hide desktop nav menu and setup mobile version */
    .nav-menu {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid #ddd;
      border-top: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 9999;
      padding: 0;
      width: 100%;
      max-height: calc(100vh - 80px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    /* Show mobile menu when active */
    .nav-menu.active {
      display: flex;
      pointer-events: auto;
    }

    /* Style mobile navigation links */
    .nav-menu .nav-link {
      font-size: 1.1rem;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid #eee;
      text-align: left;
      color: #333;
      width: 100%;
      display: block;
      pointer-events: auto;
    }

    .nav-menu .nav-dropdown {
      width: 100%;
      pointer-events: auto;
    }

    .nav-menu .nav-dropdown > span {
      padding: 1rem 1.5rem;
      border-bottom: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      pointer-events: auto;
    }

    .nav-menu .dropdown-menu {
      position: static;
      box-shadow: none;
      border-radius: 0;
      padding: 0;
      margin: 0;
      border: none;
      background: #f8f9fa;
      display: none;
      pointer-events: auto;
    }

    .nav-menu .nav-dropdown.active .dropdown-menu {
      display: block;
      pointer-events: auto;
    }

    .nav-menu .dropdown-menu a {
      padding: 1rem 2rem;
      border-bottom: 1px solid #eee;
      color: #333;
      pointer-events: auto;
    }
  }

  /* Ensure mobile menu button is clickable */
  .mobile-menu-btn {
    position: relative;
    z-index: 10000;
    pointer-events: auto;
  }

  /* DESKTOP ONLY - Ensure desktop nav works normally */
  @media screen and (min-width: 769px) {
    .mobile-menu-btn {
      display: none !important;
    }

    .nav-menu {
      display: flex !important;
      flex-direction: row !important;
      position: static !important;
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      z-index: auto !important;
    }

    /* Desktop dropdown hover behavior */
    .nav-dropdown:hover .dropdown-menu {
      display: block !important;
    }
  }

  /* END MOBILE MENU IMPLEMENTATION */

  /* Modern Process Section Styles */
  .modern-process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }

  .modern-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5" opacity="0.3"/></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: 1;
  }

  .modern-process-section .container {
    position: relative;
    z-index: 2;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    position: relative;
  }

  .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    border-radius: 2px;
  }

  .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
  }

  .modern-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }

  .process-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
    overflow: hidden;
  }

  .process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .process-card:hover::before {
    transform: scaleX(1);
  }

  .process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .process-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }

  .process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
  }

  .process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(46, 204, 113, 0.4);
  }

  .process-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2ecc71;
    opacity: 0.3;
    font-family: 'Montserrat', sans-serif;
  }

  .process-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .process-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .process-features {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .process-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #495057;
    font-size: 0.95rem;
  }

  .process-features li i {
    color: #2ecc71;
    margin-right: 12px;
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
  }

  .process-cta {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
  }

  .process-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(46, 204, 113, 0.1) 0%,
      transparent 70%
    );
    animation: pulse 4s ease-in-out infinite;
  }

  @keyframes pulse {
    0%,
    100% {
      transform: scale(1);
      opacity: 0.5;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
  }

  .cta-content {
    position: relative;
    z-index: 2;
  }

  .cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
  }

  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
  }

  .cta-button.primary {
    background: #2ecc71;
    color: white;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
  }

  .cta-button.primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(46, 204, 113, 0.4);
  }

  .cta-button.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .modern-process-section {
      padding: 60px 0;
    }

    .section-header h2 {
      font-size: 2rem;
    }

    .section-subtitle {
      font-size: 1.1rem;
    }

    .modern-process-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .process-card {
      padding: 24px;
    }

    .process-icon {
      width: 60px;
      height: 60px;
      font-size: 24px;
    }

    .process-number {
      font-size: 1.5rem;
    }

    .process-content h3 {
      font-size: 1.2rem;
    }

    .process-cta {
      padding: 40px 24px;
    }

    .cta-content h3 {
      font-size: 1.6rem;
    }

    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }

    .cta-button {
      min-width: 250px;
    }
  }

  @media (max-width: 480px) {
    .process-icon-wrapper {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }

    .process-number {
      order: -1;
    }
  }

  /* Stronger fix for testimonials page content under fixed header */
  .testimonials-hero,
  .testimonials-main {
    padding-top: 170px !important;
  }
  @media (max-width: 900px) {
    .testimonials-hero,
    .testimonials-main {
      padding-top: 130px !important;
    }
  }
  @media (max-width: 600px) {
    .testimonials-hero,
    .testimonials-main {
      padding-top: 100px !important;
    }
  }

  /* Fix for testimonials page content under fixed header - only on hero */
  .testimonials-hero {
    padding-top: 150px !important;
  }
  @media (max-width: 900px) {
    .testimonials-hero {
      padding-top: 110px !important;
    }
  }
  @media (max-width: 600px) {
    .testimonials-hero {
      padding-top: 80px !important;
    }
  }

  /* Tighter spacing between testimonials heading and grid */
  .testimonials-hero {
    padding-bottom: 1.5rem !important;
    margin-bottom: 0 !important;
  }
  .testimonials-main {
    margin-top: 0 !important;
  }
  .testimonials-grid {
    margin-top: 1.5rem !important;
  }

  @media (min-width: 769px) {
    .hero {
      padding-top: 180px !important;
    }
  }
  .ac-specialist-hero .hero-content {
    gap: 1.5rem !important;
  }
  .ac-specialist-hero .hero-buttons {
    margin-top: 0 !important;
  }

  /* Center hero content both vertically and horizontally */
  .ac-specialist-hero .hero-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    min-height: 100vh !important;
  }

  .ac-specialist-hero .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: row !important;
    gap: 1rem !important;
  }
}

.hero-buttons {
  justify-content: center !important;
}
.hero-buttons.homepage-hero-buttons {
  justify-content: flex-start !important;
  align-items: flex-start !important;
}
@media (max-width: 768px) {
  .hero-buttons.homepage-hero-buttons {
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
}
/* Modern Air Quality Process Section Enhancements */
.modern-process-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e6f4ea 100%);
  padding: 64px 0;
}
.modern-process-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-header .section-subtitle {
  text-align: center;
  color: #2ecc71;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}
.modern-process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.process-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.1);
  padding: 2rem 1.5rem;
  flex: 1 1 300px;
  max-width: 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s forwards;
}
.process-card:hover {
  box-shadow: 0 8px 32px rgba(46, 204, 113, 0.18);
  transform: translateY(-8px) scale(1.03);
}
.process-card:nth-child(1) {
  animation-delay: 0.1s;
}
.process-card:nth-child(2) {
  animation-delay: 0.2s;
}
.process-card:nth-child(3) {
  animation-delay: 0.3s;
}
.process-card:nth-child(4) {
  animation-delay: 0.4s;
}
.process-card:nth-child(5) {
  animation-delay: 0.5s;
}
.process-card:nth-child(6) {
  animation-delay: 0.6s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.process-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
}
.process-icon {
  background: #2ecc71;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
}
.process-number {
  font-size: 1.1rem;
  color: #2ecc71;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  text-align: center;
}
.process-content p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.process-features {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
  font-size: 1rem;
}
.process-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.2em;
  position: relative;
  text-align: left;
}
.process-features li i {
  color: #2ecc71;
  margin-right: 0.5em;
}
.process-cta {
  margin-top: 3rem;
  text-align: center;
}
.cta-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.cta-content p {
  color: #444;
  margin-bottom: 1.5rem;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 200px;
  justify-content: center;
}
.cta-button.primary {
  background: #2ecc71;
  color: white;
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}
.cta-button.primary:hover {
  background: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(46, 204, 113, 0.4);
}
.cta-button.secondary {
  background: #fff;
  color: #2ecc71;
  border: 2px solid #2ecc71;
}
.cta-button.secondary:hover {
  background: #e6f4ea;
  color: #222;
  border-color: #27ae60;
}
@media (max-width: 900px) {
  .modern-process-grid {
    flex-direction: column;
    align-items: center;
  }
  .process-card {
    max-width: 100%;
    width: 100%;
  }
}
.footer-contact a,
.footer-contact a:visited {
  color: #2ecc71 !important;
  text-decoration: underline;
}
.footer-contact a:hover {
  color: #218c5a !important;
}
@media (max-width: 768px) {
  /* Overlay for mobile menu */
  body.mobile-menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 34, 34, 0.35);
    z-index: 9998;
    pointer-events: auto;
    transition: opacity 0.3s;
  }
  /* Mobile menu as card */
  .nav-menu {
    background: #fff;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
    margin: 0 auto;
    max-width: 98vw;
    left: 1vw;
    right: 1vw;
    top: 70px;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    animation: mobileMenuFadeIn 0.35s cubic-bezier(0.4, 1.4, 0.6, 1) both;
    min-height: 60vh;
  }
  @keyframes mobileMenuFadeIn {
    0% {
      opacity: 0;
      transform: translateY(-32px);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  .nav-menu .nav-link {
    font-size: 1.15rem;
    padding: 1.1rem 0 1.1rem 0.5rem;
    border: none;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    color: #222;
    background: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    background: #e6f4ea;
    color: #2ecc71;
  }
  .nav-menu .nav-dropdown > span {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    padding: 1.1rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .nav-menu .nav-dropdown > span:hover,
  .nav-menu .nav-dropdown.active > span {
    background: #e6f4ea;
    color: #2ecc71;
  }
  .nav-menu .dropdown-menu {
    background: #f8fafc;
    border-radius: 8px;
    margin: 0.5rem 0 1rem 0.5rem;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
    padding: 0.5rem 0;
    display: none;
    animation: dropdownFadeIn 0.25s cubic-bezier(0.4, 1.4, 0.6, 1) both;
  }
  @keyframes dropdownFadeIn {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  .nav-menu .nav-dropdown.active .dropdown-menu {
    display: block;
  }
  .nav-menu .dropdown-menu a {
    padding: 0.9rem 1.2rem;
    color: #222;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    background: none;
    transition: background 0.2s, color 0.2s;
  }
  .nav-menu .dropdown-menu a:hover {
    background: #e6f4ea;
    color: #2ecc71;
  }
  /* Modernize mobile menu button */
  .mobile-menu-btn {
    background: #fff;
    border: 2px solid #2ecc71;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
    transition: border-color 0.2s, background 0.2s;
    font-size: 1.7rem;
    color: #2ecc71;
    margin-left: 0.5rem;
  }
  .mobile-menu-btn.menu-open {
    background: #2ecc71;
    color: #fff;
    border-color: #27ae60;
  }
  .mobile-menu-btn i {
    font-size: 1.7rem;
    color: inherit;
    transition: transform 0.3s;
  }
  .mobile-menu-btn.menu-open i {
    transform: rotate(90deg);
  }
  /* Hide default select styles in menu */
  .nav-menu select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 0.8rem 1rem;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    background: #fff;
    color: #222;
    width: 100%;
    box-shadow: 0 1px 4px rgba(44, 62, 80, 0.06);
    outline: none;
    transition: border-color 0.2s;
  }
  .nav-menu select:focus {
    border-color: #2ecc71;
  }
  /* Remove border from last nav-link */
  .nav-menu .nav-link:last-child {
    margin-bottom: 0;
  }
  /* Remove border from last dropdown-menu a */
  .nav-menu .dropdown-menu a:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .header-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.75rem 1.25rem !important;
    width: 100%;
    min-height: 64px;
    box-sizing: border-box;
  }
  .header-logo {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-menu-btn {
    flex: 0 0 auto;
    margin-left: 0;
    margin-right: 0.5rem;
    order: 0;
  }
}
@media (max-width: 768px) {
  .header-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 64px !important;
    box-sizing: border-box !important;
    gap: 0 !important;
  }
  .header-logo {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    font-size: 1.2rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin: 0 !important;
  }
  .mobile-menu-btn {
    flex: 0 0 auto !important;
    margin-left: 0 !important;
    margin-right: 0.5rem !important;
    order: 0 !important;
    align-self: center !important;
  }
}

.hidden {
  display: none;
}
