/* ============================================================
   Alabama Lawns and More — Main Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

/* ------------------------------------------------------------
   CSS Custom Properties
   ------------------------------------------------------------ */
:root {
  /* Brand Colors */
  --green-dark:    #1b4332;
  --green-mid:     #2d6a4f;
  --green-bright:  #40c057;
  --green-light:   #d8f3dc;
  --gold:          #f0a500;
  --gold-dark:     #c8860a;
  --charcoal:      #1a1a1a;
  --gray-soft:     #f4f5f0;
  --gray-mid:      #e0e0e0;
  --white:         #ffffff;

  /* Navbar & Hero palette — aligned with Alabama Lawns and More logo */
  --green-primary:       #0F2D22;
  --green-hero:          #1F5138;
  --green-accent:        #7EDB82;
  --green-accent-bright: #42C75A;
  --gold-cta:            #F2A900;
  --gold-cta-hover:      #FFC247;
  --text-off-white:      #F7F4EA;
  --text-muted-green:    #C9D4C8;
  --border-muted-green:  rgba(201, 212, 200, 0.28);

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  /* Layout */
  --container-max: 1200px;
  --nav-height:    72px;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);

  /* Transitions */
  --ease: 0.25s ease;
}

/* ------------------------------------------------------------
   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);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--charcoal);
}

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

.section-desc {
  font-size: 1.0625rem;
  color: #4a5568;
  max-width: 560px;
  margin-top: var(--space-sm);
}

.section-desc--light {
  color: rgba(255,255,255,0.78);
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(240,165,0,0.35);
}

.btn--gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(240,165,0,0.45);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--green {
  background: var(--green-bright);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(64,192,87,0.3);
}

.btn--green:hover {
  background: #37b04a;
  box-shadow: 0 6px 20px rgba(64,192,87,0.4);
}

.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: linear-gradient(
    180deg,
    rgba(15, 45, 34, 0.98) 0%,
    rgba(15, 45, 34, 0.9) 100%
  );
  border-bottom: 1px solid var(--border-muted-green);
  transition: box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
  background: rgba(15, 45, 34, 0.97);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(201, 212, 200, 0.22);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.navbar__links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted-green);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 4px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-cta);
  transition: width var(--ease);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-off-white);
}

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

.navbar__cta {
  margin-left: var(--space-sm);
}

/* Navbar & hero CTA buttons — unified warm gold */
.navbar .btn--gold,
.hero .btn--gold,
.navbar__mobile-menu .btn--gold {
  background: var(--gold-cta);
  color: var(--green-primary);
  box-shadow: 0 4px 14px rgba(242, 169, 0, 0.28);
}

.navbar .btn--gold:hover,
.hero .btn--gold:hover,
.navbar__mobile-menu .btn--gold:hover {
  background: var(--gold-cta-hover);
  color: var(--green-primary);
  box-shadow: 0 6px 20px rgba(255, 194, 71, 0.35);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-off-white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 45, 34, 0.98) 0%,
    rgba(31, 81, 56, 0.96) 100%
  );
  padding: var(--space-md);
  border-top: 1px solid var(--border-muted-green);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.navbar__mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.navbar__mobile-menu a {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-muted-green);
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(201, 212, 200, 0.12);
  transition: color var(--ease);
}

.navbar__mobile-menu a:last-of-type {
  border-bottom: none;
}

.navbar__mobile-menu a:hover {
  color: var(--text-off-white);
}

.navbar__mobile-menu .btn {
  margin-top: var(--space-xs);
  width: 100%;
  justify-content: center;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-primary);
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    var(--green-primary) 0%,
    var(--green-primary) 42%,
    #173d2c 68%,
    var(--green-hero) 100%
  );
  z-index: 1;
}

/* Subtle warm glow + soft green depth — complements logo without competing */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 78% 18%, rgba(242, 169, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 92% 82%, rgba(126, 219, 130, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 12% 50%, rgba(15, 45, 34, 0.55) 0%, transparent 65%);
  z-index: 1;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) 0;
}

.hero-logo-wrap {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0.875rem;
  margin-bottom: var(--space-sm);
  background: rgba(15, 45, 34, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 212, 200, 0.25);
  border-radius: var(--radius-md);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(126, 219, 130, 0.12),
    0 0 48px rgba(242, 169, 0, 0.08),
    inset 0 1px 0 rgba(247, 244, 234, 0.06);
}

.hero__logo {
  width: 240px;
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.28));
}

.hero__logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto var(--space-md);
  width: fit-content;
}

.hero__logo-badge {
  width: 70px;
  height: 70px;
  background: var(--green-hero);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(247, 244, 234, 0.08);
}

.hero__logo-badge svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.hero__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hero__logo-text .name-line1 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--text-off-white);
}

.hero__logo-text .name-line2 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-accent);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text-off-white);
  max-width: 720px;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero__headline span {
  color: var(--green-accent);
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-muted-green);
  max-width: 600px;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-md);
}

.hero .btn--outline-white {
  color: var(--text-off-white);
  background: rgba(15, 45, 34, 0.3);
  border: 2px solid var(--border-muted-green);
}

.hero .btn--outline-white:hover {
  background: rgba(31, 81, 56, 0.4);
  border-color: rgba(201, 212, 200, 0.45);
  color: var(--text-off-white);
}

.hero__phone-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(15, 45, 34, 0.5);
  border: 1px solid var(--border-muted-green);
  border-radius: 100px;
  padding: 0.5rem 1.25rem 0.5rem 0.75rem;
  backdrop-filter: blur(6px);
}

.hero__phone-badge .phone-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__phone-badge .phone-icon svg {
  width: 16px;
  height: 16px;
  color: var(--green-primary);
}

.hero__phone-badge .phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero__phone-badge .phone-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 212, 200, 0.75);
}

.hero__phone-badge .phone-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-off-white);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(201, 212, 200, 0.55);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll-arrow {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(201, 212, 200, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

.hero__scroll-arrow svg {
  width: 12px;
  height: 12px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--gray-soft);
  padding: var(--space-xl) 0;
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.services__header .section-desc {
  margin: var(--space-sm) auto 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-bright);
}

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

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--green-dark);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.65;
}


/* ============================================================
   OUR WORK SECTION
   ============================================================ */
.our-work {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.our-work__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.our-work__header .section-desc {
  margin: var(--space-sm) auto 0;
}

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

.work-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--green-bright);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 2rem 1.75rem;
  transition: transform var(--ease), box-shadow var(--ease);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.work-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.work-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--green-dark);
}

.work-card__body {
  margin-bottom: 1.5rem;
}

.work-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.work-card__body p {
  font-size: 0.9375rem;
  color: #718096;
  line-height: 1.6;
}

.work-card__btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ============================================================
   OUR WORK — PHOTO GALLERY LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(26,26,26,0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__dialog {
  position: relative;
  width: 100%;
  max-width: 860px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(14px);
  transition: transform var(--ease);
}

.lightbox.open .lightbox__dialog {
  transform: translateY(0);
}

.lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-mid);
}

.lightbox__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.lightbox__close {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  background: var(--gray-soft);
  transition: background var(--ease), color var(--ease);
}

.lightbox__close:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
}

.lightbox__stage {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  text-align: center;
  color: rgba(255,255,255,0.75);
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lightbox__placeholder[hidden] {
  display: none;
}

.lightbox__placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.6;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
  transition: background var(--ease), transform var(--ease);
}

.lightbox__nav:hover {
  background: var(--white);
}

.lightbox__nav:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox__nav svg {
  width: 22px;
  height: 22px;
}

.lightbox__nav--prev { left: 14px; }
.lightbox__nav--next { right: 14px; }

.lightbox__nav[hidden] {
  display: none;
}

.lightbox__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: var(--gray-soft);
}

.lightbox__caption {
  font-size: 0.875rem;
  color: #718096;
}

.lightbox__counter {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  flex-shrink: 0;
}

/* "Our Work" CTA note */
.our-work__note {
  text-align: center;
  margin-top: var(--space-lg);
  padding: 1.5rem;
  background: var(--green-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(64,192,87,0.3);
}

.our-work__note p {
  font-size: 0.9375rem;
  color: var(--green-dark);
  font-weight: 500;
}


/* ============================================================
   SERVICE AREAS SECTION
   ============================================================ */
.service-areas {
  background: var(--green-dark);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.service-areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 90% 10%, rgba(64,192,87,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(240,165,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.service-areas__inner {
  position: relative;
  z-index: 1;
}

.service-areas__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.service-areas__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: var(--space-sm) auto 0;
  line-height: 1.7;
}

.service-areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}

.area-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
  cursor: default;
}

.area-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--green-bright);
  transform: translateY(-4px);
}

.area-card__pin {
  width: 44px;
  height: 44px;
  background: var(--green-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.area-card__pin svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.area-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.area-card__state {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-bright);
}

.service-areas__footer-note {
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.service-areas__footer-note p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
}

.service-areas__footer-note strong {
  color: var(--gold);
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--gray-soft);
  padding: var(--space-xl) 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.contact__info .section-desc {
  margin-bottom: var(--space-md);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

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

.contact__item-icon {
  width: 46px;
  height: 46px;
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-bright);
}

.contact__item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact__item-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #718096;
}

.contact__item-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.contact__item-value a {
  transition: color var(--ease);
}

.contact__item-value a:hover {
  color: var(--green-dark);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-md);
}

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

.footer__logo-img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.footer__logo-fallback {
  display: none;
}

.footer__logo-fallback .brand-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.footer__logo-fallback .brand-sub {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-bright);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

.footer__contact-list li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__contact-list a:hover {
  color: var(--green-bright);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__col ul li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__col ul li svg {
  width: 12px;
  height: 12px;
  color: var(--green-bright);
  flex-shrink: 0;
}

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

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.footer__bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer__bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}

.footer__bottom-links a:hover {
  color: var(--green-bright);
}


/* ============================================================
   SECTION DIVIDER / TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green-mid);
  padding: 1.25rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 600;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.trust-bar__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero__content {
    padding: var(--space-lg) 0;
  }

  .hero-logo-wrap {
    padding: 0.625rem;
  }

  .hero__logo {
    width: 180px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .our-work__grid {
    grid-template-columns: 1fr;
  }

  .lightbox__nav {
    width: 38px;
    height: 38px;
  }

  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }

  .service-areas__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-bar__divider {
    display: none;
  }

  .trust-bar__inner {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .service-areas__grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   SCROLL ANIMATION UTILITY
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
