/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #052e16;

  --olive-50: #f7f9f0;
  --olive-100: #ecf0dd;
  --olive-600: #5a6e32;
  --olive-700: #475724;
  --olive-800: #3b4a1c;

  --neutral-50: #fafaf9;
  --neutral-100: #f5f5f4;
  --neutral-200: #e7e5e4;
  --neutral-300: #d6d3d1;
  --neutral-400: #a8a29e;
  --neutral-500: #78716c;
  --neutral-600: #57534e;
  --neutral-700: #44403c;
  --neutral-800: #292524;
  --neutral-900: #1c1917;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.925rem + 0.4vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.4rem + 2.25vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.5rem + 3.5vw, 3.25rem);

  --max-width: 1240px;
  --radius: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--neutral-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.2; text-wrap: balance; }
p { text-wrap: pretty; }
input, button, textarea, select { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green-700);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Top Bar ===== */
.topbar {
  background: var(--green-800);
  color: var(--green-100);
  font-size: var(--text-xs);
  padding: 0.45rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--green-100); }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-item { display: flex; align-items: center; gap: 0.35rem; }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1rem + 0.75vw, 1.4rem);
  color: var(--green-800);
}
.logo img { height: 40px; width: auto; display: block; }
.logo svg { flex-shrink: 0; }
.logo span { color: var(--green-600); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.nav-links a:not(.nav-cta) {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-600);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-700); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-600);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(21, 128, 61, 0.8);
  color: #fff !important;
  padding: 0.65rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: var(--text-sm);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: rgba(22, 101, 52, 0.85); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-close {
  display: none;
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav { backdrop-filter: none; background: #fff; }
  .nav-toggle { display: flex; z-index: 1002; }
  .nav-close {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1004;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    align-items: center;
    gap: 2rem;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1003;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a:not(.nav-cta) { font-size: var(--text-xl); }
  .nav-cta { font-size: var(--text-base); padding: 0.75rem 2.25rem; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-50) 0%, #fff 50%, var(--olive-50) 100%);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3rem, 8vw, 5.5rem);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22,163,74,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-100);
  color: var(--green-800);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: var(--text-4xl);
  color: var(--neutral-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}
.hero h1 .accent { color: var(--green-600); }

.hero-desc {
  font-size: var(--text-lg);
  color: var(--neutral-500);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: var(--text-base);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}
.btn-primary:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
}
.btn-outline:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--green-700);
}
.hero-stat span {
  font-size: var(--text-sm);
  color: var(--neutral-500);
}

.hero-images {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-main {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.hero-img-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.hero-leaf-badge {
  position: absolute;
  top: 1.5rem;
  right: 0;
  background: #fff;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--green-800);
}


/* ===== Section Titles ===== */
.section-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: var(--text-3xl);
  color: var(--neutral-900);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--neutral-500);
  max-width: 560px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ===== Services ===== */
.services {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: #fff;
}
.services-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.services-header .section-subtitle { margin-inline: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: var(--green-200);
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg { color: var(--green-700); }

.service-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  line-height: 1.6;
}

/* ===== About ===== */
.about {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--green-50);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-images {
  position: relative;
}
.about-img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
}
.about-experience {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--green-700);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 24px rgba(22,163,74,0.3);
}
.about-experience strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
}
.about-experience span { font-size: var(--text-sm); }

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; color: var(--neutral-600); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--neutral-700);
}
.about-feature svg { color: var(--green-600); flex-shrink: 0; }

.about-mission {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: #fff;
  border-left: 3px solid var(--green-600);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-mission p {
  font-style: italic;
  color: var(--neutral-600);
  font-size: var(--text-sm);
  margin: 0;
}


/* ===== Gallery ===== */
.gallery {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: #fff;
}
.gallery-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.gallery-header .section-subtitle { margin-inline: auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* ===== Why Us ===== */
.why-us {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--neutral-50);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item-icon svg { color: var(--green-700); }
.why-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: 0.15rem;
}
.why-item p { font-size: var(--text-sm); color: var(--neutral-500); }

.why-img-wrap {
  position: relative;
}
.why-img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.why-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: #fff;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: var(--green-800);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}


/* ===== Service Areas ===== */
.areas {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--green-800);
  color: #fff;
}
.areas-inner {
  text-align: center;
}
.areas .section-label { color: var(--green-300); }
.areas .section-title { color: #fff; }
.areas-desc { color: var(--green-200); margin: 0 auto 2rem; font-size: var(--text-base); max-width: 540px; }
.areas-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
}
.area-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--green-100);
  transition: background 0.2s;
}
.area-tag:hover { background: rgba(255,255,255,0.18); }

/* ===== Contact ===== */
.contact {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-info { padding-top: 0.5rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--neutral-500); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg { color: var(--green-700); }
.contact-detail h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--neutral-800);
  margin-bottom: 0.15rem;
}
.contact-detail p, .contact-detail a {
  font-size: var(--text-sm);
  color: var(--neutral-500);
}
.contact-detail a:hover { color: var(--green-700); }

.contact-form {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.contact-form h3 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--neutral-700);
}
.form-input {
  padding: 0.7rem 1rem;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius);
  font-size: var(--text-base);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.08);
}
textarea.form-input { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--green-700);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: var(--text-base);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--green-800); transform: translateY(-1px); }

.form-note {
  margin-top: 0.75rem;
  font-size: var(--text-xs);
  color: var(--neutral-400);
  text-align: center;
}

.form-error {
  font-size: var(--text-xs);
  color: #dc2626;
  margin-top: 0.3rem;
  display: none;
}
.form-group.invalid .form-error { display: block; }
.form-group.invalid .form-input {
  border-color: #dc2626;
}
.form-group.invalid .form-input:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


/* ===== Map ===== */
.map-section {
  width: 100%;
  height: 350px;
  border-top: 1px solid var(--neutral-200);
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Footer ===== */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: clamp(3rem, 8vw, 5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 3rem;
}

.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo img { height: 36px; }
.footer-brand .logo span { color: var(--green-400); }
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  max-width: 300px;
  margin-bottom: 1.25rem;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.footer-social {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: var(--neutral-400);
  transition: all 0.2s;
}
.footer-social:hover {
  background: var(--green-700);
  color: #fff;
}

.footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a, .footer-links span {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--text-xs);
  color: var(--neutral-500);
}


/* ===== Floating Buttons ===== */
.float-btns {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.float-whatsapp { background: #25D366; }
.float-call { background: var(--green-700); }


/* ===== All Services List ===== */
.all-services {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: var(--olive-50);
}
.all-services-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.all-services-header .section-subtitle { margin-inline: auto; }
.all-services-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}
.service-tag {
  background: #fff;
  border: 1px solid var(--neutral-200);
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-700);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.service-tag:hover {
  border-color: var(--green-400);
  color: var(--green-800);
  background: var(--green-50);
}
.service-tag svg { width: 14px; height: 14px; color: var(--green-500); }

/* ===== Form success ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success.show { display: block; }
.form-success svg { margin: 0 auto 1rem; color: var(--green-600); }
.form-success h3 { font-family: var(--font-body); font-size: var(--text-xl); margin-bottom: 0.5rem; }
.form-success p { color: var(--neutral-500); font-size: var(--text-sm); }

/* ===== Comprehensive Responsive Fixes ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; gap: 1.75rem; }
  .hero-images { margin-top: 1.5rem; }
  .hero-img-float { left: auto; right: 0.5rem; bottom: -0.75rem; width: 110px; height: 110px; }
  .hero-leaf-badge { right: 0.5rem; top: 0.75rem; font-size: var(--text-xs); padding: 0.5rem 0.75rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-experience { bottom: -0.5rem; right: 0.5rem; padding: 1rem 1.25rem; }
  .about-experience strong { font-size: var(--text-2xl); }
  .about-features { grid-template-columns: 1fr; }

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

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .map-section { height: 280px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.75rem, 5vw, 2.25rem); }
  .hero-desc { font-size: var(--text-base); }
  .hero-stats { gap: 1.25rem; }
  .hero-stat strong { font-size: var(--text-xl); }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; }
  .hero-img-float { width: 90px; height: 90px; }

  .section-title { font-size: clamp(1.5rem, 4.5vw, 2rem); }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 16/10; }

  .all-services-tags { gap: 0.5rem; }
  .service-tag { font-size: var(--text-xs); padding: 0.4rem 0.85rem; }

  .areas-tags { gap: 0.5rem; }
  .area-tag { font-size: var(--text-xs); padding: 0.35rem 0.85rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand p { max-width: 100%; }

  .float-btns { bottom: 1rem; right: 1rem; }
  .float-btn { width: 50px; height: 50px; }

  .contact-form { padding: 1.25rem; }
  .contact-form h3 { font-size: var(--text-lg); }

  .why-item { gap: 0.75rem; }
  .why-item-icon { width: 40px; height: 40px; min-width: 40px; }

  .map-section { height: 240px; }
}

@media (max-width: 360px) {
  .container { padding-inline: 1rem; }
  .hero-img-float { display: none; }
  .hero-leaf-badge { display: none; }
  .about-experience { position: relative; bottom: auto; right: auto; margin-top: 1rem; display: inline-flex; gap: 0.5rem; align-items: center; }
  .about-experience strong { display: inline; font-size: var(--text-xl); }
  .nav-inner { padding: 0.65rem 0; }
}

/* ===== Inner Page Styles ===== */
.page-hero {
  background: var(--green-950);
  padding: clamp(6rem, 14vw, 9rem) 0 clamp(3rem, 7vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/banner03.jpg') center/cover no-repeat;
  opacity: 0.45;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,46,22,0.55) 0%, rgba(20,83,45,0.6) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label { color: var(--green-300); letter-spacing: 0.08em; }
.page-hero h1 {
  font-size: var(--text-4xl);
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.page-hero p {
  color: rgba(255,255,255,0.88);
  font-size: var(--text-lg);
  max-width: 540px;
  margin-inline: auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }

/* Service detail cards */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--neutral-200);
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail-img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-detail-content h3 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--neutral-800);
}
.service-detail-content p {
  color: var(--neutral-500);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
}

/* Gallery full page */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-full-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-full-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-full-item:hover::after { opacity: 1; }
.gallery-full-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.gallery-full-item:hover .gallery-full-label { opacity: 1; transform: translateY(0); }

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* About page specifics */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin-top: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.7rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green-200);
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.15rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--green-600);
  border-radius: 50%;
  border: 3px solid var(--green-100);
}
.timeline-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.timeline-item p { color: var(--neutral-500); font-size: var(--text-sm); }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover {
  border-color: var(--green-200);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--green-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.value-icon svg { color: var(--green-700); }
.value-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: var(--text-sm);
  color: var(--neutral-500);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
  color: #fff;
}
.cta-banner h2 {
  color: #fff;
  font-size: var(--text-3xl);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: var(--green-200);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: var(--text-lg);
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--green-800);
  border-color: #fff;
}
.cta-banner .btn-primary:hover {
  background: var(--green-50);
  border-color: var(--green-50);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.cta-banner .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* Contact page full width form */
.contact-full {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--neutral-50);
}
