/* ==========================================================================
   Global Variables
   ========================================================================== */
:root {
  --brand-green: #d1ff75;
  --brand-black: #1a1a1a;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --mid-gray: #4a5568;
  --dark-gray: #2d3748;

  /* Text colors */
  --text-light: rgba(255, 255, 255, 0.9);
  --text-lighter: rgba(255, 255, 255, 0.6);
  --text-dark: #1a1a1a;
  --text-mid: #666;

  /* Box shadows */
  --shadow-button: 4px 4px 0px 0px #8cb340;
  --shadow-phone: 4px 4px 0px 0px #555555;
  --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-card-hover: 0 12px 30px rgba(0, 0, 0, 0.15);

  /* Border radius */
  --radius-small: 4px;
  --radius-medium: 6px;
  --radius-large: 8px;
  --radius-xl: 12px;
  --radius-circle: 50%;
  --radius-pill: 100px;

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-default: all 0.3s ease;
  --transition-slow: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

  /* Font weights */
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Layout */
  --container-width: 1200px;
  --header-height: 100px;
}

/* ==========================================================================
       Reset & Base Styles
       ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

main {
  margin-top: var(--header-height);
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Switzer", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

table {
  border-collapse: collapse;
}

button,
input,
select,
textarea {
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}
.cta-button {
  font-family: "Switzer", sans-serif;
  font-weight: var(--font-semibold);
  text-shadow: 1px 1px 1px #8cb340;
  padding: 1rem 1rem;
  border: none;
  border-radius: var(--radius-medium);
  font-size: 1rem;
  cursor: pointer;
  background: var(--brand-green);
  color: var(--brand-black);
  box-shadow: var(--shadow-button);
  height: 50px;
  transition: var(--transition-default);
}
/* ==========================================================================
   Header Styles - Complete Version
   ========================================================================== */

/* Main Header Structure */
.header {
  background-color: var(--brand-black);
  width: 100%;
  height: var(--header-height);
  padding: 0 32px;
  align-content: center;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 125px;
}

/* Navigation Menu */
.header-nav {
  display: flex;
}

.header-nav__list {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav__list > li {
  position: relative;
}

.header-nav__link {
  font-size: 1.2rem;
  font-weight: var(--font-semibold);
  color: var(--white);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.header-nav__link:hover,
.header-nav__link:focus {
  color: var(--brand-green);
}

.dropdown-toggle.active svg {
  transform: rotate(180deg);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

.dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.dropdown-toggle.active svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  background-color: #f8f9fa;
  min-width: 280px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 20;
  border-radius: 0 0 8px 8px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu .dropdown-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 1.2rem;
}

.dropdown-menu .dropdown-link:hover {
  background-color: var(--brand-green);
  border-radius: var(--radius-medium);
  color: var(--text-dark);
}

/* Header CTA and Contact Section */
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Shared styles for header elements */
.header-contact-phone,
.header-cta .cta-button {
  height: 54px; /* Increased height */
  display: flex;
  align-items: center;
  border-radius: var(--radius-medium);
  transition: var(--transition-default);
  font-weight: var(--font-semibold);
}

/* Contact widget styling */
.header-contact-phone {
  background: rgba(40, 40, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 20px;
  gap: 14px;
  min-width: 225px;
}

.header-contact-phone:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px 0px rgba(140, 179, 64, 0.3);
  background: rgba(50, 50, 50, 0.9);
}

.header-contact-phone svg {
  width: 26px;
  height: 26px;
  stroke: none;
  fill: var(--brand-green);
  flex-shrink: 0;
}

.phone-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
  padding: 2px 0;
}

.phone-number {
  font-size: 1.15rem;
  font-weight: var(--font-bold);
  color: var(--white);
  white-space: nowrap;
}

.business-hours {
  font-size: 0.7rem;
  color: var(--brand-green);
  white-space: nowrap;
}

/* CTA button styling */
.header-cta .cta-button {
  background: var(--brand-green);
  color: var(--brand-black);
  font-weight: var(--font-semibold);
  text-shadow: 1px 1px 1px rgba(140, 179, 64, 0.7);
  padding: 0 26px; /* Increased padding */
  box-shadow: var(--shadow-button);
  justify-content: center;
  font-size: 1rem;
  border: none;
  white-space: nowrap;
  cursor: pointer;
}

.header-cta .cta-button:hover {
  transform: translateY(-2px) translateX(-2px);
  box-shadow: 6px 6px 0px 0px #8cb340;
}

.header-contact-widget.desktop-only {
  display: block;
}

/* Hamburger Button */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger div {
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition-default);
}

/* Footer of the mobile menu */
.header-nav__footer {
  display: none;
}

/* Mobile Contact Widget */
.header-nav__contact-mobile {
  display: none;
}

/* Mobile Menu CTA Button */
.header-nav__cta-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .dropdown-toggle.active svg {
    transform: rotate(180deg);
  }
}
@media (max-width: 1200px) {
  /* Header structure */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }

  .header-container {
    padding: 0 16px;
  }

  .header-contact-phone,
  .header-cta .cta-button {
    height: 50px;
    padding: 0 14px;
  }

  .header-cta .cta-button {
    font-size: 0.95rem;
  }

  .phone-number {
    font-size: 1.1rem;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    background: var(--brand-black);
    flex-direction: column;
    z-index: 3;
    height: calc(100vh - var(--header-height));
    overflow: hidden;
  }

  .header-nav.active {
    display: flex;
    flex-direction: column;
    height: calc(90vh - var(--header-height));
  }
  .header-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header-nav__list li {
    border-bottom: 1px solid rgb(255, 255, 255, 0.1);
  }

  .header-nav__link {
    width: 100%;
    display: block;
    padding: 16px 32px;
    transition: var(--transition-default);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-nav__link::after {
    display: none;
  }

  .header-nav__link:hover,
  .header-nav__link:focus {
    background-color: var(--brand-green);
    color: var(--brand-black);
  }
  .header-nav__sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 15px;
    background-color: var(--brand-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-nav__contact-mobile {
    display: block;
    flex: 1;
  }

  .header-nav__contact-mobile .header-contact-phone {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border-radius: var(--radius-medium);
    background-color: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-default);
    gap: 12px;
  }

  .header-nav__contact-mobile .header-contact-phone:hover {
    background-color: rgba(50, 50, 50, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .header-nav__contact-mobile .header-contact-phone svg {
    width: 24px;
    height: 24px;
    stroke: var(--brand-green);
    flex-shrink: 0;
  }

  .header-nav__contact-mobile .phone-details {
    display: flex;
    flex-direction: column;
    padding: 2px 0;
  }

  .header-nav__contact-mobile .phone-number {
    font-size: 1.1rem;
    font-weight: var(--font-bold);
    color: var(--white);
  }

  .header-nav__contact-mobile .business-hours {
    font-size: 0.8rem;
    color: var(--brand-green);
  }
  .header-nav__cta-mobile {
    display: block;
    flex: 1;
  }

  .header-nav__cta-mobile .cta-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-size: 1rem;
    background: var(--brand-green);
    color: var(--brand-black);
    font-weight: var(--font-semibold);
    text-shadow: 1px 1px 1px rgba(140, 179, 64, 0.7);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-button);
  }

  .header-nav__cta-mobile .cta-button:hover {
    transform: translateY(-2px) translateX(-2px);
    box-shadow: 6px 6px 0px 0px #8cb340;
  }

  /* Hamburger button */
  .hamburger {
    display: block;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Dropdown handling for mobile */
  .dropdown-menu {
    position: static;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 0;
    background-color: rgb(59, 59, 59);
  }
  .dropdown-menu li {
    margin: 0;
    padding: 0;
  }
  .dropdown-menu.active {
    display: block;
    max-height: 500px;
  }

  .header-nav.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu .dropdown-link {
    padding: 0.75rem 32px;
    color: var(--white);
  }

  .dropdown-menu .dropdown-link:hover {
    background-color: var(--brand-green);
    color: var(--brand-black);
  }

  span.header-nav__link {
    width: 100%;
    display: flex;
    padding: 16px 32px;
    transition: var(--transition-default);
  }

  .dropdown-toggle:hover {
    background-color: var(--brand-green);
    color: var(--brand-black);
  }
}
@media (max-width: 900px) {
  /* Adjust CTA button at medium screens */
  .header-cta .cta-button {
    font-size: 0.9rem;
    padding: 0 14px;
  }
}

@media (max-width: 768px) {
  /* Header elements for smaller screens */
  .header-contact-widget.desktop-only {
    display: none;
  }

  .header-cta .cta-button {
    display: none;
  }

  /* Adjust logo size */
  .logo-image {
    width: 100px;
  }

  /* Smaller spacing for mobile */
  .header-nav__sticky-footer {
    padding: 12px;
    gap: 8px;
  }

  .header-nav__contact-mobile .header-contact-phone {
    height: 54px;
  }

  .header-nav__cta-mobile .cta-button {
    height: 54px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  /* Reset any flex properties */
  .header-nav__contact-mobile {
    flex: 0 0 auto !important;
    width: auto !important;
  }

  /* Force the phone button to be square */
  .header-nav__contact-mobile .header-contact-phone {
    width: 60px !important; /* Increased from 48px */
    height: 54px !important; /* Increased from 48px */
    min-width: 60px !important;
    max-width: 54px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 4px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: rgba(50, 50, 50, 0.9) !important;
  }

  /* Hide the phone details */
  .header-nav__contact-mobile .header-contact-phone .phone-details {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  /* Center the phone icon */
  .header-nav__contact-mobile .header-contact-phone svg {
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    stroke: var(--brand-green) !important;
  }

  /* Force the CTA button to take remaining space */
  .header-nav__cta-mobile {
    flex: 1 1 auto !important;
    width: auto !important;
  }

  /* Set proper spacing in footer */
  .header-nav__sticky-footer {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 14px !important;
    gap: 10px !important;
  }
}

@media (max-width: 360px) {
  .header-nav__sticky-footer {
    padding: 10px;
    gap: 6px;
  }

  .header-nav__contact-mobile .header-contact-phone,
  .header-nav__cta-mobile .cta-button {
    height: 46px;
  }

  .header-nav__cta-mobile .cta-button {
    font-size: 0.9rem;
  }
}
/* ==========================================================================
       Hero Section
       ========================================================================== */
.hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  max-height: 600px;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding: 3rem 2rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);

}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  opacity: 0.2;
  filter: brightness(1) contrast(1);
  z-index: 1;
  animation: fadeIn 0.6s ease-in forwards;
}
.webp .hero::before {
  background-image: url('/images/banners/van.webp');
}

.no-webp .hero::before {
  background-image: url('/images/banners/van.png');
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.2;
  }
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  place-items: center;
}

.hero-message {
  max-width: 600px;
}

.hero-message h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: var(--font-extrabold);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-light);
}

.action-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
  width: 100%;
  justify-content: flex-start;
}

.review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  flex: 0 0 auto;
  text-align: center;
  white-space: nowrap;
}

.review-badge img {
  height: 20px;
  width: auto;
}

.review-badge span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: var(--font-medium);
}
.quote-box {
  background: rgba(32, 32, 32, 0.4);
  backdrop-filter: blur(1px);
  padding: var(--spacing-md);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.step-pill {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--brand-green);
  background: rgba(209, 255, 117, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.quote-box h2 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.input-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.location-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

input {
  width: 100%;
  height: 54px;
  padding: 0 1rem 0 3rem;
  font-size: 1rem;
  background: var(--white);
  border: none;
  border-radius: var(--radius-medium);
}

.cta-button {
  width: 100%;
  height: 54px;
  font-size: 1rem;
  font-weight: var(--font-semibold);
  color: var(--text-dark);
  background: var(--brand-green);
  border: none;
  border-radius: var(--radius-medium);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cta-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.no-card-text {
  color: var(--text-lighter);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1rem;
}

/* Fix for the crooked button in hero section */
.quote-box .cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 54px;
  padding: 0 1rem;
  border: none;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;

}

@media (max-width: 1200px) {
  .trust-badges {
    justify-content: flex-start;
    max-width: 600px;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 500px;
    max-height: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    place-items: center;
    text-align: center;
  }

  .hero-message {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-message h1 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
  }
  .action-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    align-items: center;
  }

  .quote-box {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .quote-box h2 {
    text-align: center;
  }

  /* Center the no-card text */
  .no-card-text {
    text-align: center;
    width: 100%;
  }
  .trust-badges {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem;
  }

  .hero-message h1 {
    font-size: clamp(2.8rem, 5vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .quote-box {
    padding: 1.25rem;
  }

  .quote-box h2 {
    font-size: 1.4rem;
  }

  .trust-badges {
    margin: 1rem 0 1.5rem 0;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .review-badge {
    padding: 0.6rem 0.8rem;
  }

  .review-badge span {
    font-size: 0.85rem;
  }
}
@media (max-width: 600px) {
  .trust-badges {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center; /* Center the badges in the container */
  }

  .review-badge {
    padding: 0.4rem 0.6rem;
    gap: 0.3rem;
    flex-basis: calc(50% - 0.5rem); /* Two badges per row with gap considered */
    max-width: calc(50% - 0.5rem);
    box-sizing: border-box;
    justify-content: center; /* Ensure content is centered */
  }

  .review-badge:nth-child(3) {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }

  .review-badge img {
    height: 16px;
  }

  .review-badge span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1rem;
    min-height: 400px;
  }

  .hero-content {
    gap: 1rem;
  }

  .hero-message h1 {
    font-size: clamp(2.2rem, 7vw, 2.8rem) !important;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-align: left;
  }

  /* Badges in a single row with better balance */
  .trust-badges {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 0.3rem; /* Reduced gap to help fit all 3 in one row */
    margin: 1rem 0 1.25rem;
    justify-content: flex-start;
    width: 100%;
  }

  .review-badge {
    padding: 0.35rem 0.5rem; 
    gap: 0.25rem; 
    flex: 0 1 auto; 
  }

 
  .review-badge:nth-child(1) {
    flex-basis: 32%;
  }

 
  .review-badge:nth-child(2) {
    flex-basis: 30%;
  }

 
  .review-badge:nth-child(3) {
    flex-basis: 38%;
  }

  .review-badge img {
    height: 16px;
    width: auto;
  }

  .review-badge:nth-child(1) span {
    font-size: 0;
  }

  .review-badge:nth-child(1) span:before {
    content: "5.0★ (76+)";
    font-size: 0.7rem;
  }

  .review-badge:nth-child(2) span {
    font-size: 0;
  }

  .review-badge:nth-child(2) span:before {
    content: "100%";
    font-size: 0.7rem;
  }

  .review-badge:nth-child(3) span {
    font-size: 0;
  }

  .review-badge:nth-child(3) span:before {
    content: "Best of 2024"; 
    font-size: 0.7rem;
  }

  .quote-box {
    padding: 1.25rem;
    margin-left: 0;
  }

  .quote-box h2 {
    font-size: 1.3rem;
  }

  input,
  .cta-button {
    height: 48px;
  }
}
@media (max-width: 400px) {
  .trust-badges {
    margin: 0.75rem 0;
  }

  .review-badge {
    padding: 0.3rem 0.5rem;
  }

  .review-badge span {
    font-size: 0.75rem;
  }
}

@media (max-width: 380px) {
  .hero-message h1 {
    font-size: clamp(2.1rem, 8vw, 2.6rem) !important;
  }

  .hero {
    padding: 2rem 0.75rem;
    min-height: 400px;
  }
}

/* Simple direct Mobile Call Link */
.mobile-call-link {
  display: none; /* Hidden by default */
  margin-top: 1rem; /* Slightly increased spacing */
  text-align: center;
  width: 100%;
  max-width: 100%; /* Should never exceed parent container width */
}

.mobile-call-link a {
  color: var(--white);
  font-size: 1.1rem; /* Increased from 0.95rem */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-medium); /* Match the main CTA button radius */
  transition: var(--transition-default);
  width: 100%;
  font-weight: var(--font-medium);
  text-align: center;
}
.underline {
  text-decoration: underline;
}

.mobile-call-link a:hover, 
.mobile-call-link a:active {
  background-color: rgba(255, 255, 255, 0.25);
}

.mobile-call-link svg {
  width: 20px; /* Increased from 18px */
  height: 20px; /* Increased from 18px */
  stroke: var(--brand-green);
  flex-shrink: 0;
}

/* Only show on mobile devices */
@media (max-width: 768px) {
  .mobile-call-link {
    display: block;
    width: 100%;
    max-width: 500px; /* Same as the quote box max-width */
  }
  
  /* Ensure the call link matches quote box width */
  .action-container .mobile-call-link {
    width: 100%;
    max-width: 500px; /* Explicitly match quote box width */
  }
  
  .banner-cta .mobile-call-link {
    width: 100%;
    max-width: 500px; /* Match the banner quote box width */
    margin: 1rem auto 0; /* Slightly increased spacing */
  }
  
  /* Add minimal spacing between the quote box and the call link */
  .quote-box {
    margin-bottom: 0;
  }
  
  /* Same for the banner CTA section */
  .banner-cta__quote-box {
    margin-bottom: 0;
  }
}

/* Additional optimizations for very small screens */
@media (max-width: 480px) {
  .mobile-call-link {
    margin-top: 0.75rem; /* Increased slightly, but still compact for small screens */
  }
  
  .mobile-call-link a {
    padding: 0.5rem 0.75rem;
    font-size: 1rem; /* Increased from 0.85rem */
  }
}

/* Height-based media query for short screens */
@media (max-height: 640px) {
  .mobile-call-link {
    margin-top: 0.6rem; /* Slightly increased, but keeping it compact for short screens */
  }
  
  .mobile-call-link a {
    padding: 0.4rem 0.75rem;
  }
}
/* ==========================================================================
     Features Section
     ========================================================================== */
.features {
  padding: 1rem 1rem;
  background-color: var(--white);
}

.features-container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: var(--spacing-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: var(--radius-circle);
  margin-bottom: 1.25rem;
  transition: transform 0.2s ease;
}

.feature-icon:hover {
  transform: translateY(-2px);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--text-dark);
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: var(--font-semibold);
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  width: 100%;
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-mid);
  margin: 0;
  width: 100%;
}

/* Features Media Queries */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .features {
    padding: 3rem 1rem;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .features {
    padding: 2rem 1rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .feature-item p {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
     Services Section
     ========================================================================== */
.services-section {
  padding: 6rem 1rem;
  background-color: var(--light-gray);
}

.services-container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Modern service card design */
.services-card {
  position: relative;
  height: 340px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
  cursor: pointer;
}

.services-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

/* Improved gradient overlay - darkened */
.services-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.2) 85%,
    transparent
  );
  z-index: 1;
  transition: height 0.4s ease;
}

.services-card:hover::before {
  height: 80%;
}

/* Image styling */
.services-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.services-card:hover .services-card__image {
  transform: scale(1.05);
}

/* Content styling - keeping title and CTA close together */
.services-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: var(--spacing-md);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

/* Title styling - minimal bottom margin */
.services-card__title {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

/* Description styling - hidden by default, animated on hover */
.services-card__description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
  height: 0;
  font-size: 0.875rem;
  max-width: 95%;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, height 0.4s ease, margin 0.4s ease;
}

.services-card:hover .services-card__description {
  opacity: 1;
  height: auto;
  margin: 0.75rem 0;
}

/* Enhanced CTA styling */
.services-card__cta {
  color: var(--brand-green);
  font-weight: var(--font-semibold);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.services-card__cta svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand-green);
  transition: transform 0.3s ease;
}

.services-card:hover .services-card__cta svg {
  transform: translateX(6px);
}

/* Before-After Image Styling Refinements */
.services-card__before-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.8s ease;
}

.services-card:hover .services-card__before-after {
  transform: scale(1.05);
}

.services-card__before-after::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
  pointer-events: none;
}

.services-card__before,
.services-card__after {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services-card__before img,
.services-card__after img {
  position: absolute;
  height: 100%;
  width: 200%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.services-card__before img {
  left: 0;
}

.services-card__after img {
  right: 0;
}

/* Enhanced divider line between before/after */
.services-card__before::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 3;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.services-card:hover .services-card__before::after {
  opacity: 1;
}

/* Enhanced Labels for before/after */
.services-card__before::before,
.services-card__after::before {
  content: "BEFORE";
  position: absolute;
  top: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 4px 8px;
  font-size: 0.65rem;
  font-weight: var(--font-semibold);
  border-radius: var(--radius-small);
  z-index: 4;
  opacity: 0.9;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.services-card__before::before {
  left: 10px;
}

.services-card__after::before {
  content: "AFTER";
  right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .services-card {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .services-card {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-card {
    height: 280px;
  }
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
  padding: 6rem 1rem;
  margin-top: 0;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: var(--font-extrabold);
  color: var(--dark-gray);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--mid-gray);
  max-width: 42em;
  margin: 0 auto;
}

/* Platform Ratings */
.review-platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 1rem;
}

.platform-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.platform-logo {
  height: 40px;
  width: auto;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.platform-logo:hover {
  opacity: 1;
}

.platform-rating {
  font-size: 1.125rem;
  font-weight: var(--font-semibold);
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

.platform-reviews {
  font-size: 0.875rem;
  color: var(--mid-gray);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-large);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.reviewer-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-circle);
  margin-right: 1rem;
  overflow: hidden;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reviewer-info {
  flex-grow: 1;
}

.reviewer-name {
  font-weight: var(--font-semibold);
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.review-platform {
  font-size: 0.875rem;
  color: var(--mid-gray);
}

.review-rating {
  color: #fbbc05;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.review-text {
  color: var(--mid-gray);
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .reviews-section {
    padding: 2rem 0.75rem;
    margin-top: 1.5rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2rem);
  }

  .review-card {
    padding: 1.25rem;
  }

  .platform-logos {
    flex-direction: column;
    gap: 2rem;
  }

  .platform-logo {
    height: 32px;
  }
}

/* ==========================================================================
     Banner CTA - Updated with more specific selectors
     ========================================================================== */
/* More specific Banner CTA styles with !important declarations */
section.banner-cta {
  background-color: var(--brand-black) !important;
  padding: 4rem 2rem !important;
  position: relative !important;
  overflow: hidden !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin-top: 0 !important;
}

section.banner-cta::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: url("/images/banners/team-working.png") center/cover no-repeat !important;
  background-position: center 65% !important;
  opacity: 0.2 !important;
  filter: brightness(1) contrast(1.2) !important;
  z-index: 1 !important;
}

.banner-cta .banner-cta__container {
  max-width: var(--container-width) !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2.5rem !important;
}

/* Header styling with more specific selectors */
.banner-cta .section-header.banner-cta__header {
  text-align: center !important;
  margin-bottom: 0 !important;
  max-width: 800px !important;
}

.banner-cta .section-hook.banner-cta__hook {
  background: rgba(209, 255, 117, 0.15) !important;
  color: var(--brand-green) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-weight: var(--font-semibold) !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: var(--radius-small) !important;
  display: inline-block !important;
  margin-bottom: 1.5rem !important;
}

.banner-cta .section-heading.banner-cta__heading {
  color: var(--white) !important;
  font-size: clamp(2.2rem, 4vw, 3rem) !important;
  font-weight: var(--font-extrabold) !important;
  margin-bottom: 1rem !important;
  line-height: 1.2 !important;
}

.banner-cta .highlight.banner-cta__highlight::after {
  background-color: rgba(209, 255, 117, 0.3) !important;
}

.banner-cta .section-subtitle.banner-cta__subtitle {
  color: var(--white) !important;
  font-size: clamp(1rem, 2vw, 1.2rem) !important;
  line-height: 1.6 !important;
  margin: 0 auto 1.5rem !important;
  max-width: 600px !important;
}

/* Trust badges with more specific selectors */
.banner-cta .banner-cta__trust-badges {
  display: flex !important;
  gap: 1rem !important;
  margin-bottom: 0.5rem !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

.banner-cta .banner-cta__trust-badge {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.875rem !important;
  color: var(--brand-green) !important;
  background: rgba(209, 255, 117, 0.15) !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: var(--radius-pill) !important;
}

.banner-cta .banner-cta__trust-badge svg {
  width: 16px !important;
  height: 16px !important;
  stroke: var(--brand-green) !important;
}

/* Quote box styling */
.banner-cta .banner-cta__quote-box {
  background: rgba(32, 32, 32, 0.4) !important;
  backdrop-filter: blur(10px) !important;
  padding: var(--spacing-md) !important;
  border-radius: var(--radius-xl) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  width: 100% !important;
  max-width: 500px !important;
}

.banner-cta .banner-cta__step-pill {
  display: inline-block !important;
  font-size: 0.875rem !important;
  color: var(--brand-green) !important;
  background: rgba(209, 255, 117, 0.15) !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: var(--radius-pill) !important;
  margin-bottom: 0.75rem !important;
}

.banner-cta .banner-cta__quote-box h3 {
  color: var(--white) !important;
  font-size: 1.5rem !important;
  font-weight: var(--font-bold) !important;
  margin-bottom: 1rem !important;
}

.banner-cta .banner-cta__input-wrapper {
  position: relative !important;
  margin-bottom: 1rem !important;
}

.banner-cta .banner-cta__location-icon {
  position: absolute !important;
  left: 1rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #666 !important;
}

.banner-cta .banner-cta__input {
  width: 100% !important;
  height: 54px !important;
  padding: 0 1rem 0 3rem !important;
  font-size: 1rem !important;
  background: var(--white) !important;
  border: none !important;
  border-radius: var(--radius-medium) !important;
}

.banner-cta .banner-cta__button {
  width: 100% !important;
  height: 54px !important;
  font-size: 1rem !important;
  font-weight: var(--font-semibold) !important;
  color: var(--text-dark) !important;
  background: var(--brand-green) !important;
  border: none !important;
  border-radius: var(--radius-medium) !important;
  cursor: pointer !important;
  transition: var(--transition-fast) !important;
  text-shadow: 1px 1px 1px #8cb340 !important;
  box-shadow: var(--shadow-button) !important;
  font-family: "Switzer", sans-serif !important;
}

.banner-cta .banner-cta__button:hover {
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0px 0px #8cb340 !important;
}

.banner-cta .banner-cta__button:disabled {
  opacity: 0.7 !important;
  cursor: not-allowed !important;
}

.banner-cta .banner-cta__no-card {
  color: var(--text-lighter) !important;
  font-size: 0.875rem !important;
  text-align: center !important;
  margin-top: 1rem !important;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  section.banner-cta {
    padding: 3rem 1rem !important;
  }

  .banner-cta .banner-cta__trust-badges {
    gap: 0.5rem !important;
  }

  .banner-cta .banner-cta__trust-badge {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .banner-cta .banner-cta__quote-box {
    padding: 1.25rem !important;
  }
  .banner-cta .section-hook.banner-cta__hook {
    display: inline-block !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .banner-cta .section-header.banner-cta__header {
    text-align: left !important;
  }
  .banner-cta .section-heading.banner-cta__heading,
  .banner-cta .section-subtitle.banner-cta__subtitle {
    text-align: left !important;
  }

  /* Feature section adjustments */
  .feature-item {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .feature-item h3,
  .feature-item p {
    text-align: left !important;
  }

  .banner-cta .banner-cta__trust-badges {
    justify-content: flex-start !important;
  }
}
@media (max-width: 400px) {
  .banner-cta .section-hook.banner-cta__hook {
    font-size: 0.75rem !important;
  }

  .banner-cta .banner-cta__trust-badges {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }
  .banner-cta .banner-cta__container {
    align-items: flex-start !important;
  }
}
/* ==========================================================================
     Faq Section
     ========================================================================== */
.faq-section {
  padding: 6rem 1rem;
  background-color: var(--light-gray);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-group {
  margin-bottom: 3rem;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-large);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: var(--spacing-md);
  background: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--font-semibold);
  color: var(--text-dark);
  transition: var(--transition-default);
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question.active {
  background: var(--text-dark);
  color: var(--brand-green);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-default);
}

.faq-answer.active {
  padding: var(--spacing-md);
  max-height: 500px;
  border-top: 1px solid #e2e8f0;
}

.faq-answer p {
  color: var(--mid-gray);
  line-height: 1.7;
  margin: 0;
  margin-bottom: 1rem;
}

.faq-answer ul {
  list-style: disc;
  margin: 1rem 0 1rem 1.5rem;
  color: var(--mid-gray);
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.icon-plus {
  width: 20px;
  height: 20px;
  position: relative;
}

.icon-plus::before,
.icon-plus::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.icon-plus::before {
  width: 2px;
  height: 16px;
  left: 9px;
  top: 2px;
}

.icon-plus::after {
  width: 16px;
  height: 2px;
  left: 2px;
  top: 9px;
}

.faq-question.active .icon-plus::before {
  transform: rotate(90deg);
}

.faq-question.active .icon-plus::after {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 1rem;
  }

  .faq-question {
    padding: 1.25rem;
  }

  .faq-answer.active {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 3rem 1rem;
  }
}

/* ==========================================================================
     Footer Section
     ========================================================================== */
/* Horizontal Footer Styles */
.footer {
  background-color: var(--brand-black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
}

/* Main Section - Horizontal Layout */
.footer-main {
  display: flex;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 7rem; /* Substantially increased gap for better separation on desktop */
}

/* Brand Section */
.footer-brand {
  flex: 0 0 32%; /* Slightly reduced to accommodate larger gap */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 400px;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.brand-description {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.footer-contact {
  margin-top: 0.25rem;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-medium);
  backdrop-filter: blur(5px);
}

.footer-phone:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.footer-phone svg {
  stroke: var(--brand-green);
}

/* Navigation Section */
.footer-nav {
  flex: 1;
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
}

.footer-links-column {
  flex: 1;
}

.footer-links-column h4 {
  color: var(--brand-green);
  font-size: 1.1rem;
  font-weight: var(--font-semibold);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 2rem;
  height: 2px;
  background-color: var(--brand-green);
  border-radius: 1px;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links-column ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background-color: var(--brand-green);
  transition: all 0.25s ease;
  opacity: 0;
  transform: translateY(-50%);
}

.footer-links-column ul li a:hover {
  color: var(--brand-green);
}

/* Connect Column */
.footer-connect {
  min-width: 200px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-circle);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--brand-green);
  transform: translateY(-3px);
}

#footer-facebook:hover .social-icon-path {
  fill: #1a1a1a;
}
#footer-location:hover .social-icon-path {
  fill: #1a1a1a;
}
.social-icon:hover .social-icon-path {
  stroke: #1a1a1a;
}

.social-icon:hover .social-icon-circle {
  fill: var(--brand-green);
  stroke: #1a1a1a;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Business Hours */
.footer-business-hours {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-business-hours p {
  margin: 0;
  margin-bottom: 0.35rem;
}

.footer-business-hours strong {
  color: var(--white);
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--brand-green);
}

.separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Canadian Badge */
.canadian-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: all 0.3s ease;
}

.canadian-badge:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.canadian-badge img {
  height: 18px;
  width: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-main {
    padding: 3.5rem 1.5rem;
    gap: 2rem;
  }

  .footer-brand {
    flex: 0 0 40%;
  }
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-brand {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .brand-description {
    max-width: 500px;
  }

  .footer-nav {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 3rem 1.5rem;
  }

  .brand-description {
    max-width: 450px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 3rem 1.5rem;
  }

  .footer-links-column {
    flex: 0 0 calc(50% - 1.5rem);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    gap: 2.5rem;
  }

  .brand-description {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .footer-links-column {
    flex: 0 0 100%;
  }

  .footer-legal {
    gap: 0.5rem 1rem;
  }
}
/* ==========================================================================
     Common Section Styling
     ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.section-hook {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: var(--font-semibold);
  color: var(--brand-black);
  background: rgba(26, 26, 26, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-small);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: var(--font-extrabold);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  max-width: min(600px, 90%);
  color: var(--mid-gray);
  margin: 0 auto;
  line-height: 1.7;
}

.highlight {
  position: relative;
  z-index: 0;
}

.highlight::after {
  content: "";
  position: absolute;
  left: -0.25rem;
  right: -0.25rem;
  height: 0.6rem;
  background-color: var(--brand-green);
  bottom: 0.1rem;
  z-index: -1;
  transform: skew(-12deg);
}

/* View All Button Styles */
.view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Switzer", sans-serif;
  font-weight: var(--font-semibold);
  font-size: 1rem;
  text-decoration: none;
  color: var(--text-dark);
  background-color: var(--white);
  border: 2px solid var(--text-dark);
  border-radius: var(--radius-medium);
  padding: 0.75rem 1.25rem;
  transition: var(--transition-default);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.5);
}

.view-all__container {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .section-header {
    text-align: center;
    padding: 0;
  }

  .section-subtitle {
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-section,
  .reviews-section,
  .faq-section {
    padding: 4rem 1rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-hook {
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.2rem 0.4rem;
    margin-bottom: 0.75rem;
  }

  .section-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .view-all {
    font-size: 0.95rem;
    padding: 0.625rem 1rem;
  }
}

@media (max-width: 480px) {
  .services-section,
  .reviews-section,
  .faq-section {
    padding: 3rem 1rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-hook {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.3rem;
    margin-bottom: 0.5rem;
  }

  .section-heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .view-all {
    font-size: 0.9rem;
    padding: 0.5rem 0.875rem;
  }
}

@media (max-width: 400px) {
  .section-header {
    text-align: left;
  }

  .section-subtitle {
    margin: 0;
    text-align: left;
  }

  .section-heading {
    text-align: left;
  }
}

/* Dropdown Menu CSS Fixes */

/* Ensure dropdown menus are visible when active */
.dropdown-menu.active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Desktop non-touch hover behavior */
@media (min-width: 1201px) {
  body:not(.touch-device) .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  body:not(.touch-device) .dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
  }
}

/* Mobile specific styles */
@media (max-width: 1200px) {
  .dropdown-menu {
    position: static;
    max-height: none;
    width: 100%;
    border-radius: 0;
    background-color: rgb(59, 59, 59);
    box-shadow: none;
  }
  
  .dropdown-toggle.active svg {
    transform: rotate(180deg);
  }
}

/* Essential positioning for desktop dropdown menus */
@media (min-width: 1201px) {
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    z-index: 1000;
  }
}

.header-contact-phone svg {
  width: 26px;
  height: 26px;
  stroke: none;
  fill: var(--brand-green);
  flex-shrink: 0;
  transform: translateZ(0); /* GPU acceleration */
  backface-visibility: hidden; /* Prevent flickering */
}

@media (max-width: 768px) {
  .header-contact-phone svg {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
  }
}

