/* ===== DESIGN TOKENS ===== */
:root {
  /* Color Palette - Deep Forest Green with Warm Amber Accents */
  --color-bg-primary: #0a110d;
  --color-bg-secondary: #0e1a12;
  --color-bg-tertiary: #142818;
  --color-bg-card: #101e14;
  --color-bg-glass: rgba(14, 26, 18, 0.65);

  --color-text-primary: #edf5ef;
  --color-text-secondary: #b3c9b8;
  --color-text-muted: #7a9a82;

  --color-accent-green: #2e8b57;
  --color-accent-green-light: #43a96d;
  --color-accent-amber: #d4952a;
  --color-accent-amber-light: #e8ad4a;
  --color-accent-sage: #a0c4aa;

  --gradient-green: linear-gradient(135deg, #2e8b57 0%, #43a96d 50%, #2e8b57 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10,17,13,0.96) 0%, rgba(10,17,13,0.75) 50%, rgba(10,17,13,0.92) 100%);
  --gradient-dark: linear-gradient(180deg, #0a110d 0%, #0e1a12 100%);
  --gradient-card: linear-gradient(145deg, rgba(46,139,87,0.06) 0%, rgba(16,30,20,0.95) 100%);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Borders */
  --border-subtle: 1px solid rgba(46, 139, 87, 0.12);
  --border-glow: 1px solid rgba(46, 139, 87, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(46, 139, 87, 0.1);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

ul {
  list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== ANIMATED ELEMENTS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: var(--gradient-green);
  text-align: center;
  padding: 10px var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  transition: transform var(--transition-smooth);
}

.announcement-bar.hidden {
  transform: translateY(-100%);
}

.announcement-bar a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 17, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-subtle);
  padding: var(--space-sm) 0;
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.nav-logo-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-green);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-phone {
  color: var(--color-accent-amber) !important;
  font-weight: 600 !important;
}

.nav-phone::after {
  display: none !important;
}

.nav-cta {
  background: var(--color-accent-green) !important;
  color: #ffffff !important;
  padding: 10px 28px !important;
  font-size: 0.75rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: var(--transition-smooth) !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--color-accent-green-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 20px rgba(46, 139, 87, 0.3) !important;
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding-top: 110px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.hero-title em {
  font-style: normal;
  color: var(--color-accent-green-light);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero-leaf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 139, 87, 0.12);
  border: 1px solid rgba(46, 139, 87, 0.25);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: var(--space-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: badgeFadeIn 1s ease-out;
}

.leaf-wreath-left,
.leaf-wreath-right {
  font-size: 1rem;
  display: inline-block;
}

.leaf-wreath-right {
  transform: scaleX(-1);
}

.leaf-badge-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent-green-light);
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-trust-badges {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-accent-green);
  color: #ffffff;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-slow);
}

.btn-primary:hover {
  background: var(--color-accent-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 139, 87, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: transparent;
  color: var(--color-text-primary);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(237, 245, 239, 0.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--color-accent-amber);
  color: var(--color-accent-amber);
  transform: translateY(-2px);
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===== FEATURED STRIP ===== */
.featured-strip {
  background: var(--color-bg-secondary);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  padding: var(--space-lg) 0;
}

.featured-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.featured-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-align: left;
}

.featured-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  color: var(--color-accent-green);
  font-size: 1.2rem;
  background: rgba(46, 139, 87, 0.08);
}

.featured-text h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.featured-text p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.featured-divider {
  width: 1px;
  height: 40px;
  background: rgba(46, 139, 87, 0.12);
}

/* ===== SERVICES ===== */
.services {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-primary);
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
  group: service;
}

.service-card.featured-card {
  grid-row: span 2;
  aspect-ratio: auto;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 17, 13, 0.1) 0%, rgba(10, 17, 13, 0.4) 35%, rgba(10, 17, 13, 0.85) 65%, rgba(10, 17, 13, 0.98) 100%);
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, rgba(10, 17, 13, 0.2) 0%, rgba(10, 17, 13, 0.5) 30%, rgba(10, 17, 13, 0.9) 60%, rgba(10, 17, 13, 0.99) 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(180deg, transparent 0%, rgba(8, 14, 10, 0.7) 30%);
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-content {
  transform: translateY(0);
}

.service-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-amber);
  margin-bottom: var(--space-xs);
  padding: 4px 12px;
  background: rgba(10, 17, 13, 0.6);
  border: 1px solid rgba(212, 149, 42, 0.4);
  border-radius: var(--radius-full);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-xs);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.service-card-desc {
  font-size: 0.85rem;
  color: rgba(230, 240, 232, 1);
  line-height: 1.7;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.service-card:hover .service-card-desc {
  opacity: 1;
  max-height: 100px;
  margin-bottom: var(--space-sm);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-top: var(--space-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ===== EXPERIENCE / ABOUT SECTION ===== */
.experience {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.experience-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.experience-image-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: var(--color-bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.experience-image-badge .badge-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent-green);
  line-height: 1;
}

.experience-image-badge .badge-text {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

.experience-content {
  padding-left: var(--space-lg);
}

.experience-content .section-title {
  margin-bottom: var(--space-lg);
}

.experience-content .section-title em {
  font-style: normal;
  color: var(--color-accent-green-light);
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.experience-feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: var(--border-subtle);
  background: rgba(16, 30, 20, 0.5);
  transition: var(--transition-smooth);
}

.experience-feature:hover {
  border-color: rgba(46, 139, 87, 0.3);
  background: rgba(46, 139, 87, 0.05);
  transform: translateX(8px);
}

.experience-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 139, 87, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent-green);
  font-size: 1.2rem;
}

.experience-feature h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.experience-feature p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== PRODUCT MARQUEE ===== */
.marquee-section {
  padding: var(--space-xl) 0;
  background: var(--color-bg-primary);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: var(--space-2xl);
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-green);
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-primary);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--gradient-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(46, 139, 87, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
  color: var(--color-accent-amber);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border-top: var(--border-subtle);
  padding-top: var(--space-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(46, 139, 87, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent-green);
}

.testimonial-author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.testimonial-author-service {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
}

.testimonial-verified {
  font-size: 0.65rem;
  color: var(--color-accent-green);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== BOOKING CTA ===== */
.booking-cta {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-cta::before,
.booking-cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.booking-cta::before {
  top: -200px;
  left: -100px;
}

.booking-cta::after {
  bottom: -200px;
  right: -100px;
}

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

.booking-content .section-title {
  max-width: 700px;
  margin: 0 auto var(--space-md);
}

.booking-content .section-title em {
  font-style: normal;
}

.booking-content .section-subtitle {
  margin: 0 auto var(--space-xl);
}

.booking-perks {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.booking-perk {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.booking-perk-icon {
  color: var(--color-accent-green);
}

.booking-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* ===== SERVICE AREAS ===== */
.service-areas {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-primary);
  border-top: var(--border-subtle);
}

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

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  max-width: 900px;
  margin: 0 auto;
}

.area-tag {
  padding: 10px 24px;
  border: var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  transition: var(--transition-smooth);
  cursor: default;
}

.area-tag:hover {
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
  background: rgba(46, 139, 87, 0.05);
}

/* ===== GALLERY / PROJECT PHOTOS ===== */
.gallery-section {
  padding: var(--space-2xl) 0 0;
  background: var(--color-bg-secondary);
}

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

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

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 13, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-item-overlay span {
  color: white;
  font-size: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-primary);
  border-top: var(--border-subtle);
  padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-brand .nav-logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: var(--space-md);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
  background: rgba(46, 139, 87, 0.08);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.footer-column ul li {
  margin-bottom: var(--space-xs);
}

.footer-column ul li a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--color-accent-green);
  padding-left: 4px;
}

.footer-bottom {
  border-top: var(--border-subtle);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-bottom-links a:hover {
  color: var(--color-accent-green);
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-secondary);
}
.faq-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: var(--border-subtle);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  transition: var(--transition-fast);
}
.faq-question:hover {
  color: var(--color-accent-green);
}
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent-green);
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-md);
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ===== STICKY MOBILE CTA BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 17, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(46, 139, 87, 0.2);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}

.mobile-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--color-accent-green);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-fast);
}

.mobile-cta-call:active {
  transform: scale(0.97);
  background: var(--color-accent-green-light);
}

.mobile-cta-icon {
  font-size: 1.1rem;
}

/* ===== SHIMMER EFFECT ===== */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.shimmer {
  background: linear-gradient(90deg,
    var(--color-accent-green) 0%,
    var(--color-accent-green-light) 50%,
    var(--color-accent-green) 100%);
  background-size: 1000px 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite linear;
}

/* ===== FLOAT ANIMATION ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== PULSE GLOW ===== */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(46, 139, 87, 0.1); }
  50% { box-shadow: 0 0 40px rgba(46, 139, 87, 0.2); }
}

/* ===== RESPONSIVE — Tablet ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured-card {
    grid-row: span 1;
  }

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

  .experience-content {
    padding-left: 0;
  }

  .experience-image img {
    height: 400px;
  }

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

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

  .nav-links {
    gap: var(--space-md);
  }
}

/* ===== RESPONSIVE — Mobile ===== */
@media (max-width: 768px) {

  /* --- Mobile CTA Bar --- */
  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  /* --- Leaf Badge --- */
  .hero-leaf-badge {
    padding: 6px 14px;
    gap: 6px;
  }
  .leaf-badge-text {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }
  .leaf-wreath-left,
  .leaf-wreath-right {
    font-size: 0.85rem;
  }

  /* --- Announcement Bar --- */
  .announcement-bar {
    font-size: 0.6rem;
    letter-spacing: 1px;
    padding: 8px var(--space-xs);
    line-height: 1.4;
  }

  /* --- Navigation --- */
  .navbar {
    top: 34px;
    padding: var(--space-sm) 0;
  }

  .navbar.scrolled {
    padding: 10px 0;
  }

  .nav-logo-name {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }

  .nav-logo-tagline {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 17, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  /* --- Hero Section --- */
  .hero {
    min-height: 100svh;
    height: auto;
    padding-top: 120px;
    padding-bottom: var(--space-xl);
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: var(--space-sm);
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
    width: 100%;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 0.72rem;
    letter-spacing: 2px;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  /* --- Featured Strip --- */
  .featured-strip {
    padding: var(--space-md) 0;
  }

  .featured-strip .container {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .featured-divider {
    display: none;
  }

  .featured-item {
    width: 100%;
    padding: var(--space-xs) 0;
    border-bottom: var(--border-subtle);
  }

  .featured-item:last-of-type {
    border-bottom: none;
  }

  .featured-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .featured-text h4 {
    font-size: 0.75rem;
  }

  .featured-text p {
    font-size: 0.72rem;
  }

  /* --- Services --- */
  .services {
    padding: var(--space-2xl) 0;
  }

  .services-header {
    margin-bottom: var(--space-lg);
  }

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

  .service-card {
    aspect-ratio: 4/3;
  }

  .service-card.featured-card {
    aspect-ratio: 4/3;
  }

  .service-card-content {
    padding: var(--space-md);
  }

  .service-card-title {
    font-size: 1.25rem;
  }

  .service-card-desc {
    font-size: 0.8rem;
  }

  /* --- Marquee --- */
  .marquee-section {
    padding: var(--space-md) 0;
  }

  .marquee-item {
    font-size: 1rem;
    gap: var(--space-md);
  }

  .marquee-track {
    gap: var(--space-lg);
  }

  /* --- Experience --- */
  .experience {
    padding: var(--space-2xl) 0;
  }

  .experience-grid {
    gap: var(--space-lg);
  }

  .experience-image img {
    height: 280px;
  }

  .experience-image-badge {
    bottom: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-sm);
  }

  .experience-image-badge .badge-number {
    font-size: 1.6rem;
  }

  .experience-features {
    margin-top: var(--space-lg);
    gap: var(--space-sm);
  }

  .experience-feature {
    padding: var(--space-sm);
  }

  .experience-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .experience-feature h4 {
    font-size: 0.88rem;
  }

  .experience-feature p {
    font-size: 0.8rem;
  }

  /* --- Testimonials --- */
  .testimonials {
    padding: var(--space-2xl) 0;
  }

  .testimonials-header {
    margin-bottom: var(--space-lg);
  }

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

  .testimonial-card {
    padding: var(--space-md);
  }

  .testimonial-text {
    font-size: 1.05rem;
  }

  /* --- Booking CTA --- */
  .booking-cta {
    padding: var(--space-2xl) 0;
  }

  .booking-perks {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .booking-actions {
    flex-direction: column;
    gap: var(--space-sm);
  }

  /* --- Service Areas --- */
  .areas-grid {
    gap: var(--space-xs);
  }

  .area-tag {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

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

  /* --- Footer --- */
  .footer {
    padding: var(--space-xl) 0 var(--space-md);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* --- Section typography --- */
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  .section-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }

  /* --- FAQ --- */
  .faq {
    padding: var(--space-2xl) 0;
  }
  .faq-question {
    font-size: 0.95rem;
    padding: var(--space-sm) 0;
  }
  .faq-icon {
    font-size: 1.2rem;
  }
  .faq-answer p {
    font-size: 0.88rem;
  }
}

/* ===== RESPONSIVE — Small Mobile ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .hero {
    padding-top: 110px;
  }

  .hero-title {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 13px 20px;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
  }

  .service-card {
    aspect-ratio: 3/2;
  }

  .experience-image img {
    height: 220px;
  }

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

  .testimonial-text {
    font-size: 0.95rem;
  }

  .marquee-item {
    font-size: 0.85rem;
  }

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