@import 'variables.css';

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-body);
  color: var(--color-text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
}

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

.text-primary {
  color: var(--color-primary);
}

.text-accent {
  color: var(--color-accent);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .grid--2 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.5rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}

.btn--primary {
  background-color: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--accent {
  background-color: var(--color-accent);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn--outline:hover {
  background-color: white;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .btn--lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* --- Header --- */
.header {
  background-color: transparent;
  padding: var(--space-md) 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1100;
  transition: all var(--transition-normal);
}



.header.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-lg);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .header {
    padding-top: max(var(--space-sm), env(safe-area-inset-top));
    padding-bottom: var(--space-sm);
  }

  .header.scrolled {
    padding-top: max(var(--space-xs), env(safe-area-inset-top));
    padding-bottom: var(--space-xs);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .header__inner {
    gap: var(--space-sm);
  }
}

.nav__list {
  display: flex;
  gap: var(--space-lg);
}

.nav__link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active {
  color: white;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 85px !important;
  width: auto;
  transition: transform var(--transition-normal);
}

.header__logo:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .header__logo img {
    height: 65px !important;
  }
}

@media (max-width: 480px) {
  .header__logo img {
    height: 55px !important;
  }
}

.header__phone {
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.header__phone svg {
  flex-shrink: 0;
  display: block;
}

@media (max-width: 768px) {
  .header__phone {
    font-size: 0.85rem;
  }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  /* Increase touch target */
  position: relative;
  z-index: 1002;
  /* Ensure button itself is high including padding */
}

.menu-toggle__bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.menu-toggle.active .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary-dark);
  z-index: 1001;
  padding: var(--space-3xl) var(--space-lg);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--transition-smooth);
  visibility: hidden;
}

.mobile-nav.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.mobile-nav__link {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--color-accent);
}

@media (max-width: 900px) {

  .nav,
  .header__actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
    z-index: 1002;
    position: relative;
  }

  .mobile-nav {
    display: block;
  }
}

/* --- Sticky Mobile CTA Bar --- */
.mobile-cta-bar {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  /* Above regular content, below headers/modals if needed */
  gap: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.mobile-cta-bar .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    /* Show on mobile */
  }

  /* Add padding to body to prevent content from being hidden behind the bar */
  body {
    padding-bottom: 80px;
  }
}


/* --- Impact Hero --- */
.hero {
  position: relative;
  padding-top: 180px;
  /* Added spacing for fixed header */
  padding-bottom: var(--space-3xl);
  background-color: var(--color-primary-dark);
  color: white;
  overflow: hidden;
  min-height: 800px;
  /* Increased min-height */
  display: flex;
  align-items: center;
}

/* Background Image */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/land-clearing-hero.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}

/* Very transparent black overlay for text readability */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-3xl);
}

@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero__layout {
    gap: var(--space-lg);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
  color: white !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: white !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.4);
  font-weight: 800;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
  }

  .hero {
    min-height: 550px;
    padding-top: 140px !important;
    /* Mobile fixed header spacing */
    padding-bottom: var(--space-2xl);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero {
    min-height: 450px;
    padding-top: 130px !important;
    /* Small mobile fixed header spacing */
    padding-bottom: var(--space-xl);
  }
}

.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: var(--space-xl);
  max-width: 100%;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero__cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero__cta {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero__cta .btn {
    width: 100%;
  }
}

/* Hero Form */
.hero__form {
  position: relative;
  z-index: 1;
}

.hero__form-wrapper {
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__form-wrapper iframe {
  flex: 1;
  min-height: 550px;
  border-radius: var(--radius-md);
  border: none;
}

@media (max-width: 900px) {
  .hero__form {
    margin-top: var(--space-xl);
  }

  .hero__form-wrapper {
    min-height: 450px;
  }

  .hero__form-wrapper iframe {
    min-height: 450px;
  }
}

@media (max-width: 768px) {
  .hero__form-wrapper {
    padding: 0;
    min-height: 400px;
  }

  .hero__form-wrapper iframe {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .hero__form-wrapper {
    padding: 0;
    min-height: 350px;
  }

  .hero__form-wrapper iframe {
    min-height: 350px;
  }
}

/* --- Bento Grid (Features) --- */
.section {
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-xl) 0;
  }
}

.section--light {
  background-color: var(--color-bg-white);
}

.section--primary {
  background-color: var(--color-primary-dark);
  color: white;
  padding-top: 180px !important;
  /* Offset for fixed header */
  padding-bottom: var(--space-3xl);
}

.section--gray {
  background-color: var(--color-bg-light-gray);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: var(--space-lg);
  }
}

.section-header__label {
  display: block;
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

@media (max-width: 480px) {
  .section-header__label {
    font-size: 0.8rem;
  }
}

.section-header__title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .section-header__title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-header__title {
    font-size: 1.75rem;
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.bento-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .bento-card {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .bento-card {
    padding: var(--space-md);
  }
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.bento-card:hover::before {
  transform: scaleX(1);
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.bento-card--featured {
  /* grid-column: span 2; Removed for symmetry (2x2 grid) */
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  border: none;
}

@media (max-width: 992px) {
  .bento-card--featured {
    grid-column: span 1;
  }
}

.bento-card--featured::before {
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
}

.bento-card--featured .bento-card__title {
  color: white;
}

.bento-card--featured .bento-card__text {
  color: rgba(255, 255, 255, 0.95);
}

.bento-card--featured .bento-card__icon {
  fill: var(--color-accent);
}

.bento-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  fill: var(--color-accent);
  transition: transform var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.bento-card__icon svg {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .bento-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-md);
  }

  .bento-card__icon svg {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .bento-card__icon {
    width: 48px;
    height: 48px;
  }

  .bento-card__icon svg {
    width: 48px;
    height: 48px;
  }
}

.bento-card:hover .bento-card__icon svg {
  transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
}

.bento-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .bento-card__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .bento-card__title {
    font-size: 1.15rem;
  }
}

.bento-card__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bento-card__text {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
  }
}

.bento-card__link {
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  margin-top: auto;
}

.bento-card__link:hover {
  color: var(--color-accent);
  gap: 0.75rem;
}

.bento-card--featured .bento-card__link {
  color: var(--color-accent-light);
}

.bento-card--featured .bento-card__link:hover {
  color: white;
}

/* --- Footer --- */
.footer {
  background-color: #000000;
  color: white;
  padding: var(--space-3xl) 0 var(--space-xl);
}

@media (max-width: 768px) {
  .footer {
    padding: var(--space-2xl) 0 var(--space-lg);
  }
}

@media (max-width: 480px) {
  .footer {
    padding: var(--space-xl) 0 var(--space-md);
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
}

.footer__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  color: white;
}

@media (max-width: 768px) {
  .footer__title {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
  }
}

.footer__links li {
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .footer__links li {
    margin-bottom: 0.5rem;
  }

  .footer__links a {
    font-size: 0.9rem;
  }
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
  }
}

/* Section with primary background */
.section--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.section--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/land-clearing-hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.section--primary>.container {
  position: relative;
  z-index: 1;
}

/* Gallery Image Cards */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-card:hover::after {
  opacity: 1;
}

/* Improved Image Handling */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* Icon Alignment */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Icons in flex containers */
li svg,
li>svg,
.flex svg,
[style*="display: flex"] svg {
  flex-shrink: 0;
  align-self: center;
  vertical-align: middle;
}

/* Icons in buttons */
.btn svg {
  flex-shrink: 0;
  vertical-align: middle;
  display: inline-block;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity var(--transition-normal);
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }

  .section-header__label {
    font-size: 0.8rem;
  }

  .section-header {
    margin-bottom: var(--space-xl);
  }
}

/* Improved Mobile Image Handling */
@media (max-width: 768px) {
  img {
    border-radius: var(--radius-lg);
  }

  .gallery-card {
    border-radius: var(--radius-lg);
  }
}

/* Better Mobile Spacing for Hero Badge */
@media (max-width: 768px) {
  .hero__badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.875rem;
    margin-bottom: var(--space-md);
  }
}

/* Improved Mobile Navigation */
@media (max-width: 900px) {
  .mobile-nav__list {
    gap: var(--space-md);
  }

  .mobile-nav__link {
    font-size: 1.1rem;
    padding: var(--space-sm) 0;
  }
}

/* --- Sticky Mobile CTA Bar --- */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  gap: 10px;
}

.mobile-cta-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-cta-bar__btn--call {
  background-color: var(--color-primary);
  color: white;
}

.mobile-cta-bar__btn--book {
  background-color: var(--color-accent);
  color: white;
}

.mobile-cta-bar__btn:active {
  transform: scale(0.98);
}

@media (min-width: 901px) {
  .mobile-cta-bar {
    display: none;
  }
}

/* --- Reviews System --- */
.reviews-section-header {
  margin-bottom: 3rem;
}

.reviews-masonry {
  margin-bottom: 3rem;
}

.review-card {
  padding: 2rem;
  break-inside: avoid;
  margin-bottom: 2rem;
  display: inline-block;
  width: 100%;
}

.review-card__rating {
  margin-bottom: 1rem;
}

.review-card__image-wrapper {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.review-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.review-card__text {
  color: var(--color-dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A7C43 0%, #2D5A27 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.review-card__name {
  font-weight: 600;
  color: var(--color-dark-gray);
}

.review-card__location {
  font-size: 0.875rem;
  color: var(--color-medium-gray);
}

/* Service Areas System */
.service-area-item--rome {
  background: var(--color-primary);
  color: white;
  text-decoration: none;
}

.service-area-item--alabama {
  border: 2px solid var(--color-primary);
  text-decoration: none;
}

.service-area-item--more {
  background: var(--color-off-white);
  font-weight: 600;
}

.service-area-item__icon {
  width: 18px;
  height: 18px;
}

/* Thank You Page */
.thank-you-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-steps {
  text-align: left;
  margin-top: 2rem;
}

.thank-you-step {
  margin-bottom: 1.5rem;
}

.thank-you-urgent {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
}

.thank-you-more {
  margin-top: 3rem;
}

.header__logo img {
  height: 65px;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

/* Utility / Page Content */
.h-65 {
  height: 65px;
}

.text-medium-gray {
  color: var(--color-medium-gray);
}

.max-w-700 {
  max-width: 700px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-3 {
  margin-top: 3rem;
}

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

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

.footer__legal-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer__legal-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer__legal-link:hover {
  text-decoration: underline;
  color: white;
}

.text-white {
  color: white;
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.no-decoration {
  text-decoration: none;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-date {
  color: var(--color-medium-gray);
  margin: 1rem 0 2rem;
}

.legal-list {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-contact {
  margin-top: 1rem;
}

.pt-fixed-header {
  padding-top: calc(72px + 3rem);
}

.fw-600 {
  font-weight: 600;
}

.text-dark-gray {
  color: var(--color-dark-gray);
}

.text-medium-gray {
  color: var(--color-medium-gray);
}