/* ═══════════════════════════════════════════
   PRECISION CUTS LAWN CARE — STYLE SYSTEM
   ═══════════════════════════════════════════ */

/* ── Custom Properties & Design Tokens ── */
:root {
  /* Color Palette */
  --green-dark: hsl(145, 45%, 12%);     /* Rich deep forest overlays */
  --green-primary: hsl(145, 42%, 18%);  /* Main brand green */
  --green-medium: hsl(145, 30%, 28%);   /* Highlight medium green */
  --green-light: hsl(145, 20%, 38%);    /* Subtitle green */
  
  --gold-primary: hsl(42, 72%, 52%);    /* Warm gold accent */
  --gold-dark: hsl(42, 70%, 42%);       /* High-contrast gold text */
  --gold-light: hsl(42, 80%, 62%);      /* Hover gold highlight */
  
  --brown-earth: hsl(19, 31%, 23%);     /* Bark / soil brown accent */
  
  --neutral-bg: hsl(120, 10%, 97%);     /* Clean grey-green tint bg */
  --neutral-light: #ffffff;             /* Pure white card bg */
  --neutral-dark: #111827;              /* Deep charcoal */
  --neutral-grey: #4b5563;              /* Muted text grey */
  --border-color: rgba(30, 70, 32, 0.1);/* Soft green border */

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(17, 70, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 40, 18, 0.15);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transition */
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

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

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

ul {
  list-style: none;
}

/* ── Container Layout ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Spacing Utilities ── */
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.bg-light { background-color: var(--neutral-light); }
.bg-dark { background-color: var(--green-dark); color: var(--neutral-light); }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-white { color: var(--neutral-light); }

/* ── Typographical Elements ── */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle.gold {
  color: var(--gold-primary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--gold-dark);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--neutral-grey);
  margin-top: 18px;
}

.divider {
  width: 60px;
  height: 4px;
  background-color: var(--gold-primary);
  margin-top: 20px;
  border-radius: 2px;
}

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

/* ── Button Components ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--gold-primary);
  color: var(--neutral-dark);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold {
  background-color: var(--gold-primary);
  color: var(--neutral-dark);
}

.btn-gold:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

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

.btn-outline-white:hover {
  border-color: var(--neutral-light);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ── Top Bar Details ── */
.topbar {
  background-color: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 0;
  z-index: 101;
  position: relative;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-items {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-link:hover {
  color: var(--gold-primary);
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-md {
  width: 20px;
  height: 20px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

/* ── Sticky Navbar ── */
.navbar {
  position: fixed;
  top: 37px; /* Matches topbar height */
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: top 0.3s, background-color 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 16px 0;
}

.navbar.scrolled {
  top: 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  background-color: var(--green-dark);
}

.logo-text {
  display: flex;
  flex-direction: column;
}


.logo-bold {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.logo-bold.text-white {
  color: var(--neutral-light);
}
.logo-sub.text-white {
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link-item {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-primary);
  padding: 6px 0;
  position: relative;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition);
}

.nav-link-item:hover {
  color: var(--gold-dark);
}

.nav-link-item:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--green-primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Hero Banners ── */
.hero-section {
  min-height: calc(100vh - 37px);
  position: relative;
  display: flex;
  align-items: center;
  color: var(--neutral-light);
  overflow: hidden;
  padding: 160px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: zoomBg 16s ease-out infinite alternate;
}

@keyframes zoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 48, 20, 0.9) 0%, rgba(11, 24, 13, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}

.hero-section h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-section h1 span {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--gold-primary);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-highlights {
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 36px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
}

.highlight-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.highlight-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ── ZIP Code Checker Strip ── */
.zip-section {
  position: relative;
  z-index: 5;
  margin-top: -48px;
}

.zip-card {
  background-color: var(--neutral-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border: 1px solid var(--border-color);
}

.zip-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-primary);
}

.zip-info p {
  color: var(--neutral-grey);
  font-size: 0.95rem;
  margin-top: 4px;
}

.zip-form {
  flex: 1;
  max-width: 480px;
}

.zip-input-group {
  display: flex;
  background-color: var(--neutral-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 4px;
  transition: var(--transition);
}

.zip-input-group:focus-within {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(30, 70, 32, 0.08);
}

.zip-input-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--neutral-dark);
  outline: none;
}

.zip-result {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.zip-success {
  color: #16a34a;
}
.zip-error {
  color: #dc2626;
}

/* ── About Us Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
}

.about-text .divider {
  margin-left: 0;
  margin-bottom: 28px;
}

.about-p {
  color: var(--neutral-grey);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.about-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(30, 70, 32, 0.08);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 4px;
}

.about-feature-item p {
  font-size: 0.9rem;
  color: var(--neutral-grey);
}

.about-image-column {
  position: relative;
  padding: 30px;
}

.about-image-frame {
  position: absolute;
  inset: 0 0 60px 60px;
  border: 4px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.about-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-floating-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  background-color: var(--green-primary);
  color: var(--neutral-light);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold-primary);
}

.badge-years {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--neutral-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 40px 32px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--green-primary);
  transition: var(--transition);
}

.service-card:hover::before {
  background-color: var(--gold-primary);
}

.service-icon {
  color: var(--green-primary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  color: var(--gold-primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--neutral-grey);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-points {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.service-points li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-medium);
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.service-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

/* Service Card Wide (Snow removal) */
.service-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: center;
}

.service-wide-content h3 {
  font-size: 1.35rem;
}

.service-wide-content p {
  margin-bottom: 18px;
}

.service-wide-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-wide-badges span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-primary);
  background-color: rgba(30, 70, 32, 0.08);
  padding: 4px 16px;
  border-radius: 50px;
}

/* ── Promotion Offer Banner ── */
.offer-section {
  position: relative;
  padding: 120px 0;
  color: var(--neutral-light);
  text-align: center;
}

.offer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 48, 20, 0.9), rgba(11, 24, 13, 0.8));
  z-index: 2;
}

.offer-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
}

.offer-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.offer-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.offer-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ── Cost Calculator ── */
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.calc-form {
  background-color: var(--neutral-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 48px;
  border: 1px solid var(--border-color);
}

.calc-group {
  margin-bottom: 32px;
}

.calc-group:last-child {
  margin-bottom: 0;
}

.calc-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.property-option {
  background-color: var(--neutral-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.property-option:hover {
  border-color: var(--green-light);
  background-color: rgba(30, 70, 32, 0.03);
}

.property-option.active {
  border-color: var(--green-primary);
  background-color: rgba(30, 70, 32, 0.08);
  box-shadow: 0 0 0 3px rgba(30, 70, 32, 0.05);
}

.property-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-primary);
}

.property-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--neutral-grey);
  margin-top: 4px;
}

.calc-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-primary);
  background-color: var(--neutral-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.calc-select:focus {
  border-color: var(--green-primary);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-display {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  background-color: rgba(212, 175, 55, 0.12);
  padding: 2px 12px;
  border-radius: 50px;
}

.range-container {
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
}

/* Range input styling */
.range-container input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background-color: var(--border-color);
  border-radius: 5px;
  outline: none;
  z-index: 2;
  position: relative;
}

.range-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  border: 3px solid var(--neutral-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: var(--transition);
  z-index: 3;
}

.range-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background-color: var(--gold-light);
}

.range-fill {
  position: absolute;
  left: 0;
  height: 6px;
  background-color: var(--green-primary);
  border-radius: 5px;
  z-index: 1;
  pointer-events: none;
}

.field-info-text {
  font-size: 0.75rem;
  color: var(--neutral-grey);
  margin-top: 6px;
  font-style: italic;
}

/* Checkbox Style */
.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 36px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-primary);
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: var(--neutral-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--green-light);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--green-primary);
  border-color: var(--green-primary);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
  display: block;
}

.checkbox-container .checkmark::after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--neutral-light);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Calculator Summary Card */
.calc-summary-card {
  background-color: var(--green-primary);
  color: var(--neutral-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  position: sticky;
  top: 110px;
}

.calc-summary-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.summary-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.summary-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 24px 0;
}

.price-container {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  margin-bottom: 32px;
}

.price-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.price-value-wrap {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.currency {
  font-size: 2rem;
  font-weight: 800;
  color: var(--neutral-light);
  margin-right: 4px;
}

.price-ticker {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--neutral-light);
}

.price-freq {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.summary-item-label {
  color: rgba(255, 255, 255, 0.75);
}

.summary-item-val {
  font-weight: 700;
  color: var(--gold-primary);
}

.summary-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 18px;
  line-height: 1.4;
}

/* ── Contact Form Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.950fr 1.050fr;
  gap: 80px;
  align-items: center;
}

.contact-info-column .section-title {
  text-align: left;
}

.contact-info-column .divider {
  margin-left: 0;
  margin-bottom: 28px;
}

.contact-p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-card {
  display: flex;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.channel-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon svg {
  width: 20px;
  height: 20px;
}

.channel-details h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.channel-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-light);
}

.channel-link:hover {
  color: var(--gold-primary);
}

.channel-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--neutral-light);
}

/* Contact Form Card */
.contact-form-card {
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 8px;
}

.contact-form-card p {
  font-size: 0.9rem;
  color: var(--neutral-grey);
  margin-bottom: 36px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: var(--neutral-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  outline: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-dark);
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

/* Floating labels */
.form-group label {
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--neutral-grey);
  pointer-events: none;
  transition: 0.25s ease all;
}

.form-group textarea ~ label {
  top: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  background-color: var(--neutral-light);
  box-shadow: 0 0 0 3px rgba(30, 70, 32, 0.08);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-primary);
  background-color: var(--neutral-light);
  padding: 0 6px;
}

.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-primary);
  background-color: var(--neutral-light);
  padding: 0 6px;
}

.form-group select {
  width: 100%;
  background-color: var(--neutral-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  outline: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-dark);
  cursor: pointer;
  transition: var(--transition);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
}

.form-group select:focus {
  border-color: var(--green-primary);
  background-color: var(--neutral-light);
  box-shadow: 0 0 0 3px rgba(30, 70, 32, 0.08);
}

.form-feedback {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.form-feedback.success {
  color: #16a34a;
}
.form-feedback.error {
  color: #dc2626;
}

/* ── Footer ── */
.footer {
  background-color: var(--green-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr 1fr;
  gap: 48px;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.footer-brand-col .logo {
  margin-bottom: 20px;
}

.footer-brand-col .footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.insurance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.insurance-badge svg {
  color: var(--gold-primary);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  position: relative;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 6px;
}

.footer-hours-col h4 {
  margin-bottom: 24px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.hours-note {
  font-size: 0.78rem;
  color: var(--gold-primary);
  font-style: italic;
  margin-top: 16px;
  border: none !important;
}

.footer-map-container {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(0, 0, 0, 0.15);
  padding: 24px 0;
  font-size: 0.8rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.separator {
  color: rgba(255, 255, 255, 0.2);
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

/* ── RESPONSIVE ADAPTABILITY ── */

@media (max-width: 1024px) {
  .about-grid,
  .calc-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-image-column {
    max-width: 520px;
    margin: 0 auto;
  }

  .calc-summary-card {
    position: static;
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-light);
    border-bottom: 2px solid var(--green-primary);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .nav-links.open {
    max-height: 360px;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link-item {
    display: block;
    padding: 16px 24px;
    width: 100%;
  }

  .nav-link-item::after {
    display: none;
  }

  .hide-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .zip-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px;
    gap: 24px;
  }
  
  .zip-input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    gap: 12px;
  }

  .zip-input-group input,
  .zip-input-group button {
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .zip-input-group input {
    background-color: var(--neutral-bg);
    border: 2px solid var(--border-color);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-card {
    padding: 36px 24px;
  }

  .hero-section {
    padding-top: 140px;
  }

  .hero-highlights {
    flex-direction: column;
    gap: 20px;
  }

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

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

/* ── PROJECT GALLERY SECTION ── */
.gallery-section {
  background-color: var(--neutral-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--neutral-dark);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-image-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 48, 20, 0.9) 0%, rgba(17, 48, 20, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-info {
  transform: translateY(15px);
  transition: transform 0.4s ease;
  color: var(--neutral-light);
}

.gallery-category {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.gallery-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Hover effects */
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

/* ── FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Pulsing effect */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.8;
  animation: waPulse 2s infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Responsive styles for Gallery */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
