/* ============================================================
   PL Landscapes — Main Stylesheet
   Palette: forest greens, warm browns, sandstone, cream
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --green-dark: #2d4a1e;
  --green-mid: #3e6b32;
  --green-light: #5a8f4e;
  --brown-dark: #4a2c0a;
  --brown-mid: #7a5230;
  --sandstone: #c2a06b;
  --sandstone-light: #e4d4b0;
  --sandstone-pale: #f5efe0;
  --cream: #faf8f3;
  --cream-dark: #f0ebe0;
  --text-dark: #1a1916;
  --text-mid: #3d3830;
  --text-light: #7a7367;
  --white: #ffffff;
  --border: #d5c9b0;
  --shadow-sm: 0 2px 8px rgba(45, 74, 30, 0.08);
  --shadow-md: 0 6px 24px rgba(45, 74, 30, 0.12);
  --shadow-lg: 0 16px 48px rgba(45, 74, 30, 0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --nav-height: 72px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- 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(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-dark);
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}
h4 {
  font-size: 1.2rem;
}

p {
  color: var(--text-mid);
  line-height: 1.75;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--cream-dark);
}
.section-dark {
  background: var(--green-dark);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}
.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}
.section-dark .section-label {
  color: var(--sandstone);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border: 2px solid var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--green-mid);
  border: 2px solid var(--green-mid);
}
.btn-outline-dark:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-sandstone {
  background: var(--sandstone);
  color: var(--text-dark);
  border: 2px solid var(--sandstone);
}
.btn-sandstone:hover {
  background: #b08d52;
  border-color: #b08d52;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(250, 248, 243, 0.97);
  box-shadow: 0 2px 20px rgba(45, 74, 30, 0.12);
  backdrop-filter: blur(10px);
}

.navbar.transparent {
  background: transparent;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text {
  font-family: "Raleway", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  line-height: 1;
}
.logo-text span {
  color: var(--sandstone);
  font-weight: 300;
  letter-spacing: 0.18em;
}

.navbar.scrolled .logo-text {
  color: var(--text-dark);
}
.navbar.scrolled .logo-text span {
  color: var(--green-mid);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.nav-links li a.active {
  color: var(--sandstone);
}

.navbar.scrolled .nav-links li a {
  color: var(--text-mid);
}
.navbar.scrolled .nav-links li a:hover {
  color: var(--green-mid);
  background: var(--sandstone-pale);
}
.navbar.scrolled .nav-links li a.active {
  color: var(--green-mid);
}

.nav-cta {
  background: var(--green-mid) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span {
  background: var(--text-dark);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
  background: var(--green-dark);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--sandstone);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Hero Section (Home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 35, 14, 0.82) 0%,
    rgba(30, 52, 20, 0.65) 50%,
    rgba(15, 25, 10, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(194, 160, 107, 0.4);
  color: var(--sandstone);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--sandstone);
}
.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--green-dark);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 1rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--sandstone);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}
.card-body h3 {
  margin-bottom: 0.6rem;
}
.card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-body {
  padding: 1.5rem;
}
.service-card-body h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}
.service-card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.service-tag {
  background: var(--sandstone-pale);
  color: var(--brown-mid);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  border: 1px solid var(--sandstone-light);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green-mid);
  font-size: 0.9rem;
  font-weight: 600;
  transition: gap var(--transition);
}
.learn-more:hover {
  gap: 0.6rem;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--sandstone-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--green-mid);
}
.why-text h4 {
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.why-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--sandstone-light);
  font-family: Georgia, serif;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: #f0a500;
  font-size: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sandstone-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown-mid);
  flex-shrink: 0;
  overflow: hidden;
}
.author-info {
  flex: 1;
}
.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.author-location {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ---------- Portfolio / Gallery ---------- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text-mid);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--sandstone-light);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 35, 14, 0.85) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.gallery-info span {
  font-size: 0.75rem;
  color: var(--sandstone);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.gallery-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}

.lightbox-caption {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
}
.lightbox-caption h4 {
  font-family: var(--font-body);
  font-size: 1rem;
}
.lightbox-caption span {
  font-size: 0.8rem;
  color: var(--sandstone);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 5rem 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(90, 143, 78, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(194, 160, 107, 0.15) 0%,
      transparent 50%
    );
}
.cta-banner .container {
  position: relative;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(62, 107, 50, 0.1);
}
.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%237a7367' d='M8 10L3 5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
}

.form-success {
  display: none;
  background: #e8f5e0;
  border: 1px solid #b8dfa0;
  color: var(--green-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ---------- Contact Info Cards ---------- */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--sandstone-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-mid);
  flex-shrink: 0;
}
.contact-details h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.contact-details p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}
.contact-details a {
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-details a:hover {
  text-decoration: underline;
}

/* ---------- About Sections ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-split.reverse {
  direction: rtl;
}
.about-split.reverse > * {
  direction: ltr;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .big-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--sandstone);
  line-height: 1;
}
.about-badge p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.3;
  margin-top: 0.2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.team-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--sandstone-light);
}
.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.team-card .role {
  color: var(--green-mid);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.3rem;
}
.footer-brand .logo-text span {
  color: var(--sandstone);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links li a:hover {
  color: var(--sandstone);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}
.footer-contact li i {
  color: var(--sandstone);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact li a:hover {
  color: var(--sandstone);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer-bottom a {
  color: var(--sandstone);
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ---------- Scroll-reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---------- Home Featured Strip ---------- */
.features-strip {
  background: var(--white);
  border-top: 3px solid var(--green-mid);
  padding: 2.5rem 0;
}
.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--sandstone-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-mid);
  flex-shrink: 0;
}
.feature-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}
.feature-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 2.5rem;
  right: -0.75rem;
  width: 1.5rem;
  height: 2px;
  background: var(--sandstone-light);
}
.process-step:last-child::after {
  display: none;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(62, 107, 50, 0.3);
}
.process-step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ---------- Miscellaneous ---------- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--sandstone);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.divider.center {
  margin-left: auto;
  margin-right: auto;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  background: var(--sandstone-pale);
  color: var(--brown-mid);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid var(--sandstone-light);
}

.highlight-text {
  color: var(--green-mid);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--sandstone-pale);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  color: var(--text-light);
  font-size: 2rem;
  gap: 0.5rem;
  text-decoration: none;
  transition: all var(--transition);
}
.map-placeholder:hover {
  border-color: var(--green-mid);
  background: #eef3ec;
}
.map-placeholder span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-mid);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4,
  .stats-grid,
  .features-strip-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  .section {
    padding: 3.5rem 0;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-mid) !important;
    background: none !important;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
  .nav-cta {
    margin-top: 0.5rem !important;
    border-radius: var(--radius-sm) !important;
  }
  .nav-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .about-split,
  .form-row {
    grid-template-columns: 1fr;
  }
  .grid-4,
  .stats-grid,
  .features-strip-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .about-split.reverse {
    direction: ltr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .grid-4,
  .stats-grid,
  .features-strip-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .process-step::after {
    display: none;
  }
}

/* ============================================================
   STICKY CONTACT BANNER
   ============================================================ */
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--green-dark);
  border-top: 2px solid var(--sandstone);
  padding: 0;
}

.sticky-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-banner-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sandstone);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.sticky-btn-phone {
  background: var(--sandstone);
  color: var(--text-dark);
}
.sticky-btn-phone:hover {
  background: #d4b07a;
  transform: translateY(-1px);
}

.sticky-btn-email {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.sticky-btn-email:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.sticky-banner-dismiss {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}
.sticky-banner-dismiss:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* push content up so footer is never hidden behind the bar */
body {
  padding-bottom: 60px;
}

@media (max-width: 600px) {
  .sticky-banner-label {
    display: none;
  }
  .sticky-banner-inner {
    padding: 0.6rem 1rem;
    justify-content: center;
  }
  .sticky-btn {
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
  }
  body {
    padding-bottom: 70px;
  }
}
