/* ============================================
   SAVVY GREEN CLEANERS — LUXURY DESIGN SYSTEM
   ============================================ */

/* ============================================
   1. ROOT VARIABLES & DESIGN TOKENS
   ============================================ */

:root {
  /* Luxury Color Palette */
  --luxury-void: #040D05;
  --luxury-deep: #071009;
  --luxury-forest: #0C1B0E;
  --luxury-mid: #142416;
  --primary-green: #1E6B24;
  --primary-light: #3AA040;
  --primary-pale: rgba(58, 160, 64, 0.12);
  --accent-gold: #C8922A;
  --accent-gold-light: #E4B84D;
  --accent-gold-pale: rgba(200, 146, 42, 0.15);
  --accent-gold-hover: #A87825;
  --text-dark: #080F09;
  --text-mid: #3D5A3E;
  --text-light: #6B8C6C;
  --surface-white: #F8FAF8;
  --surface-cream: #F1F6F1;

  /* Glass Variables */
  --glass-dark: rgba(8, 20, 10, 0.55);
  --glass-dark-heavy: rgba(5, 14, 7, 0.75);
  --glass-light: rgba(255, 255, 255, 0.68);
  --glass-light-heavy: rgba(255, 255, 255, 0.82);
  --glass-border-bright: rgba(255, 255, 255, 0.18);
  --glass-border-soft: rgba(255, 255, 255, 0.08);
  --glass-border-light: rgba(255, 255, 255, 0.85);
  --glass-gold-border: rgba(200, 146, 42, 0.35);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);

  /* Shadows */
  --shadow-green: rgba(30, 107, 36, 0.2);
  --shadow-gold: rgba(200, 146, 42, 0.25);
  --shadow-deep: rgba(4, 10, 5, 0.6);
  --shadow-card: 0 8px 40px rgba(4, 10, 5, 0.25), 0 2px 8px rgba(4, 10, 5, 0.15);
  --shadow-glass: 0 16px 60px rgba(4, 10, 5, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --shadow-glass-light: 0 8px 40px rgba(8, 24, 10, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --glow-green: 0 0 40px rgba(58, 160, 64, 0.12);
  --glow-gold: 0 0 30px rgba(200, 146, 42, 0.2);

  /* Typography */
  --font-display: "Playfair Display", serif;
  --font-heading: "DM Serif Display", serif;
  --font-body: "Lato", sans-serif;
  --font-accent: "Montserrat", sans-serif;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 120px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Blur */
  --blur-glass: blur(20px) saturate(1.8);
  --blur-heavy: blur(32px) saturate(2);
}

/* ============================================
   2. RESET & GLOBAL STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-mid);
  background-color: var(--surface-white);
  line-height: 1.6;
  font-size: 16px;
}

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

a:hover {
  color: var(--primary-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.2rem);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-mid);
}

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

button, .btn {
  font-family: var(--font-accent);
  cursor: pointer;
  border: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 32px;
}

/* ============================================
   3. UTILITY CLASSES
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: 80px var(--spacing-md);
}

.section-dark {
  background: linear-gradient(160deg, var(--luxury-void) 0%, var(--luxury-forest) 50%, var(--luxury-void) 100%);
  color: var(--surface-white);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(58, 160, 64, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(200, 146, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.section-light {
  background-color: var(--surface-cream);
}

/* Feature strip section gets dark treatment */
.section.section-light:has(.feature-strip-enhanced) {
  background: linear-gradient(160deg, var(--luxury-forest) 0%, var(--luxury-mid) 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--accent-gold);
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}

.section-title p {
  margin: 0;
  color: var(--text-mid);
  font-size: 1rem;
  border: none;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-green);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

/* ============================================
   4. BUTTONS & CTA STYLES
   ============================================ */

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B07A1E 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 20px var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.15);
  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.15), transparent);
  transition: left 0.5s ease;
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.2);
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-green) 0%, #155A1A 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 16px var(--shadow-green);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--shadow-green);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
  backdrop-filter: var(--blur-glass);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-gold);
}

.btn-white {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  color: var(--primary-green);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-white:hover {
  background: white;
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.btn-pulse {
  animation: ctaPulse 2.5s infinite;
}

/* ============================================
   5. HEADER & NAVIGATION — GLASS
   ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 15, 7, 0.35);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid var(--glass-border-soft);
  transition: all var(--transition-base);
}

header.scrolled {
  background: rgba(6, 15, 7, 0.88);
  backdrop-filter: var(--blur-heavy);
  -webkit-backdrop-filter: var(--blur-heavy);
  border-bottom-color: rgba(200, 146, 42, 0.2);
  box-shadow: 0 4px 40px rgba(4, 10, 5, 0.5);
}

header .announcement-content {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 9px var(--spacing-md);
  font-size: 0.82rem;
  font-family: var(--font-accent);
  text-align: center;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
  background: transparent;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  transition: opacity var(--transition-base);
}

.logo:hover {
  opacity: 0.85;
}

.logo img {
  height: 48px;
  width: auto;
  filter: brightness(1.08) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  align-items: center;
}

nav a {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
  transform-origin: center;
}

nav a:hover {
  color: var(--accent-gold-light);
}

nav a:hover::after {
  transform: scaleX(1);
}

/* Desktop header height offset */
@media (min-width: 768px) {
  .hero {
    margin-top: 102px !important;
    height: calc(100vh - 102px) !important;
    min-height: 560px !important;
  }
}

@media (max-width: 767px) {
  .hero {
    margin-top: 102px !important;
    height: calc(100vh - 102px) !important;
    min-height: 480px !important;
  }
}

header {
  height: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: rgba(255,255,255,0.9);
  transition: all var(--transition-base);
  border-radius: 2px;
}

/* ============================================
   6. MOBILE NAVIGATION — DARK GLASS
   ============================================ */

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 14, 6, 0.96);
  backdrop-filter: var(--blur-heavy);
  -webkit-backdrop-filter: var(--blur-heavy);
  z-index: 999;
  padding: var(--spacing-lg) var(--spacing-md);
  padding-top: 100px;
  border-right: 1px solid var(--glass-border-soft);
}

.nav-drawer.open {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.nav-drawer a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.nav-drawer a:hover {
  color: var(--accent-gold-light);
}

/* ============================================
   7. MOBILE STICKY CTA BAR
   ============================================ */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(6, 15, 7, 0.92);
  backdrop-filter: var(--blur-glass);
  border-top: 1px solid rgba(200, 146, 42, 0.2);
  gap: 8px;
  padding: 10px 12px;
  box-shadow: 0 -8px 32px rgba(4, 10, 5, 0.5);
}

.mobile-sticky-cta a {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  color: white;
  transition: all var(--transition-base);
}

.btn-call {
  background: linear-gradient(135deg, var(--primary-green), #155A1A) !important;
}

.btn-call:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-green)) !important;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1aa84e) !important;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2de874, #25D366) !important;
}

/* ============================================
   8. ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
  display: none;
}

/* ============================================
   9. HERO SECTION
   ============================================ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 102px;
  height: calc(100vh - 102px);
  min-height: 560px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #061208 0%, #0C1B0E 100%);
  z-index: 1;
}

.hero-background img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 800px;
  padding: var(--spacing-lg);
  animation: heroSlideUp 1s ease-out;
}

.hero-content h1 {
  color: white;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.92);
}

.leaf-particle {
  position: absolute;
  opacity: 0.25;
  animation: floatLeaf 7s ease-in-out infinite;
  z-index: 5;
  filter: drop-shadow(0 2px 8px rgba(58,160,64,0.3));
}

/* ============================================
   10. SLIDER / CAROUSEL — LUXURY
   ============================================ */

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-item.active {
  opacity: 1;
  z-index: 5;
}

.slide-content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

/* GLASS CARD on hero slides */
.slide-text-content {
  max-width: 680px;
  color: white;
  text-align: center;
  animation: slideInUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--glass-dark);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--glass-border-bright);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
}

.slide-text-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), rgba(200,146,42,0.4), rgba(255,255,255,0.35), transparent);
}

.slide-text-content::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,146,42,0.2), transparent);
}

.slide-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(200, 146, 42, 0.85) 0%, rgba(160, 114, 30, 0.85) 100%);
  backdrop-filter: blur(12px);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(228, 184, 77, 0.4);
  box-shadow: 0 4px 16px rgba(200, 146, 42, 0.3);
}

.slide-title {
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-sm);
  line-height: 1.15;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.slide-subtitle {
  font-size: 0.95rem;
  color: rgba(228, 184, 77, 0.95);
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
}

.slide-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.slide-cta-group {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
}

.slider-nav-container {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-sm);
  z-index: 20;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-dark);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-bright);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold-light);
  transform: scale(1.1);
  box-shadow: 0 8px 28px var(--shadow-gold);
}

.slider-arrow:active {
  transform: scale(0.95);
}

.slider-dots-container {
  position: absolute;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  display: flex;
  gap: 10px;
  z-index: 20;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.65);
}

.slider-dot.active {
  background-color: var(--accent-gold);
  transform: scale(1.5);
  border-color: var(--accent-gold-light);
  box-shadow: 0 0 10px var(--shadow-gold);
}

.slider-counter {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass-dark);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-bright);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 20;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.current-slide {
  color: var(--accent-gold-light);
  font-weight: 700;
}

/* ============================================
   11. FEATURE / ICON STRIP — DARK GLASS
   ============================================ */

/* Override section background for feature strip */
.section:has(.feature-strip-enhanced) {
  background: linear-gradient(155deg, var(--luxury-void) 0%, var(--luxury-forest) 50%, var(--luxury-deep) 100%);
  position: relative;
  overflow: hidden;
}

.section:has(.feature-strip-enhanced)::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 10% 50%, rgba(58, 160, 64, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 70% at 90% 50%, rgba(200, 146, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section:has(.feature-strip-enhanced) .section-title h2 {
  color: white;
  border-color: var(--accent-gold);
}

.feature-strip-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-md);
  margin: 8px 0;
  position: relative;
  z-index: 1;
}

.feature-item-enhanced {
  position: relative;
  text-align: center;
  padding: 40px var(--spacing-md) 32px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(4, 10, 5, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: all var(--transition-base);
  overflow: hidden;
}

.feature-item-enhanced::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), var(--primary-light), var(--accent-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-item-enhanced:hover::before {
  transform: scaleX(1);
}

.feature-item-enhanced:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 146, 42, 0.25);
  box-shadow: 0 20px 60px rgba(4, 10, 5, 0.6), 0 0 40px rgba(58, 160, 64, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.feature-icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--spacing-md);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(58, 160, 64, 0.15) 0%, rgba(30, 107, 36, 0.2) 100%);
  border: 1px solid rgba(58, 160, 64, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(4, 10, 5, 0.3);
}

.feature-icon-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 65%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-item-enhanced:hover .feature-icon-box {
  transform: scale(1.12) rotate(5deg);
  background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
  border-color: rgba(58, 160, 64, 0.6);
  box-shadow: 0 8px 32px rgba(30, 107, 36, 0.4), 0 0 20px rgba(58, 160, 64, 0.2);
}

.feature-item-enhanced:hover .feature-icon-box::before {
  opacity: 1;
}

.feature-icon-box.danger {
  background: linear-gradient(135deg, rgba(255, 100, 100, 0.15) 0%, rgba(200, 50, 50, 0.2) 100%);
  border-color: rgba(255, 100, 100, 0.25);
}

.feature-item-enhanced:hover .feature-icon-box.danger {
  background: linear-gradient(135deg, #FF6B6B, #e03030);
  border-color: rgba(255, 107, 107, 0.6);
  box-shadow: 0 8px 32px rgba(200, 50, 50, 0.4);
}

.feature-icon-box.eco {
  background: linear-gradient(135deg, rgba(23, 162, 184, 0.15) 0%, rgba(14, 118, 136, 0.2) 100%);
  border-color: rgba(23, 162, 184, 0.25);
}

.feature-item-enhanced:hover .feature-icon-box.eco {
  background: linear-gradient(135deg, #17A2B8, #0e7688);
  border-color: rgba(23, 162, 184, 0.6);
  box-shadow: 0 8px 32px rgba(14, 118, 136, 0.4);
}

.feature-icon-box.organic {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(200, 110, 0, 0.2) 100%);
  border-color: rgba(255, 152, 0, 0.25);
}

.feature-item-enhanced:hover .feature-icon-box.organic {
  background: linear-gradient(135deg, #FF9800, #c86e00);
  border-color: rgba(255, 152, 0, 0.6);
  box-shadow: 0 8px 32px rgba(200, 110, 0, 0.4);
}

.feature-icon-inner {
  font-size: 2.2rem;
  color: rgba(100, 220, 110, 0.9);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.feature-item-enhanced:hover .feature-icon-inner {
  color: white;
  transform: scale(1.15);
}

.feature-icon-box.danger .feature-icon-inner { color: rgba(255, 130, 130, 0.9); }
.feature-icon-box.eco .feature-icon-inner { color: rgba(60, 200, 220, 0.9); }
.feature-icon-box.organic .feature-icon-inner { color: rgba(255, 180, 50, 0.9); }

.feature-item-enhanced:hover .feature-icon-box.danger .feature-icon-inner,
.feature-item-enhanced:hover .feature-icon-box.eco .feature-icon-inner,
.feature-item-enhanced:hover .feature-icon-box.organic .feature-icon-inner {
  color: white;
}

.feature-item-enhanced h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  margin: var(--spacing-md) 0 var(--spacing-sm);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.feature-item-enhanced p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin: 0;
  letter-spacing: 0.2px;
}

.feature-accent-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: var(--spacing-md) auto 0;
  border-radius: 2px;
  opacity: 0.5;
  transition: all var(--transition-base);
}

.feature-item-enhanced:hover .feature-accent-line {
  width: 64px;
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--accent-gold-light), var(--primary-light), transparent);
}

.feature-strip { display: none; }

/* ============================================
   12. SERVICE CARDS — LUXURY GLASS
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin: 30px 0;
}

.service-card {
  background: var(--glass-light);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-glass-light);
}

.service-card:hover {
  transform: translateY(-10px);
  background: white;
  border-color: rgba(200, 146, 42, 0.25);
  box-shadow: 0 24px 80px rgba(8, 24, 10, 0.2), 0 8px 32px rgba(8, 24, 10, 0.12), 0 0 0 1px rgba(200, 146, 42, 0.1);
}

.service-image {
  width: 100%;
  height: 220px;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface-cream), #d8ead8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
  display: block;
}

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

.service-image-organic {
  background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
}

.service-image-wet {
  background: linear-gradient(135deg, #B3E5FC, #81D4FA);
}

.service-icon-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary-green);
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

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

.service-card h3 {
  color: var(--primary-green);
  margin-bottom: var(--spacing-sm);
  font-size: 1.15rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
  line-height: 1.65;
}

.service-card .btn {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
}

/* ============================================
   12B. CERTIFICATIONS SECTION — GLASS
   ============================================ */

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: 30px;
}

.cert-item {
  text-align: center;
}

.cert-badge-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto var(--spacing-md);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-green), 0 0 0 1px rgba(58, 160, 64, 0.15);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232, 245, 232, 0.9), rgba(200, 230, 200, 0.8));
  flex-shrink: 0;
}

.cert-badge-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 2;
}

.cert-item:hover .cert-badge-container {
  transform: translateY(-14px) scale(1.1);
  box-shadow: 0 20px 60px var(--shadow-green), 0 0 0 2px rgba(200, 146, 42, 0.3);
}

.cert-item:hover .cert-badge-container::before {
  opacity: 1;
}

.cert-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}

.cert-item:hover .cert-image {
  transform: scale(1.1);
}

.cert-item h4 {
  font-size: 1rem;
  color: var(--primary-green);
  font-family: var(--font-accent);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.3px;
}

.cert-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   13. STATS COUNTER SECTION — GLASS PANELS
   ============================================ */

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  transition: all var(--transition-base);
  box-shadow: 0 8px 40px rgba(4, 10, 5, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 146, 42, 0.2);
  box-shadow: 0 20px 60px rgba(4, 10, 5, 0.5), 0 0 40px rgba(200, 146, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--accent-gold-light);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 0 24px rgba(200, 146, 42, 0.3);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ============================================
   14. REVIEWS — GLASS CARDS
   ============================================ */

.reviews-section {
  margin: 30px 0;
}

.reviews-section h3 {
  color: var(--primary-green);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: 1.3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.review-card {
  background: var(--glass-light);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--glass-border-light);
  border-left: 3px solid var(--accent-gold);
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-glass-light);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(200, 146, 42, 0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.review-card:hover {
  transform: translateY(-8px);
  background: white;
  border-left-color: var(--accent-gold);
  box-shadow: 0 20px 60px rgba(8, 24, 10, 0.18), 0 0 0 1px rgba(200, 146, 42, 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 4px 12px var(--shadow-gold);
}

.review-author {
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.review-rating {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-top: 2px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ============================================
   15. ABOUT / SNAPSHOT SECTION
   ============================================ */

.about-snapshot {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-image-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(8, 24, 10, 0.2), 0 0 0 1px rgba(200, 146, 42, 0.1);
}

.about-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.about-image-container:hover img {
  transform: scale(1.04);
}

.about-snapshot img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(8, 24, 10, 0.2);
}

.about-snapshot h2 {
  color: var(--primary-green);
}

.certification-badges {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

.cert-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow-green);
  transition: transform var(--transition-base);
}

.cert-badge:hover {
  transform: scale(1.1) rotate(5deg);
}

.cert-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   16. FORM STYLES — GLASS
   ============================================ */

.quote-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-xl);
  align-items: start;
  margin-top: 30px;
}

.quote-info-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.quote-form-column {
  width: 100%;
}

.info-card {
  background: var(--glass-light);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid var(--glass-border-light);
  border-left: 3px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-glass-light);
}

.info-card:hover {
  transform: translateY(-4px);
  background: white;
  box-shadow: 0 16px 48px rgba(8, 24, 10, 0.15);
}

.info-icon {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.info-card h4 {
  color: var(--primary-green);
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.info-card p {
  color: var(--text-mid);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
  font-size: 0.93rem;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.form-container {
  background: var(--glass-light-heavy);
  backdrop-filter: var(--blur-heavy);
  -webkit-backdrop-filter: var(--blur-heavy);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border-light);
  box-shadow: 0 12px 60px rgba(8, 24, 10, 0.14), inset 0 1px 0 rgba(255,255,255,0.9);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: var(--spacing-md);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(200, 220, 200, 0.6);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.97rem;
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  color: var(--text-dark);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(30, 107, 36, 0.1);
  background: white;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #9D6E15 100%);
  color: white;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  font-size: 0.88rem;
  transition: all var(--transition-base);
  margin-top: var(--spacing-md);
  box-shadow: 0 4px 20px var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--shadow-gold);
}

/* ============================================
   17. GALLERY SECTION — PREMIUM
   ============================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(8, 24, 10, 0.12);
  transition: all var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(8, 24, 10, 0.22);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 24, 10, 0.7), rgba(30, 107, 36, 0.7));
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-label {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.88rem;
}

/* ============================================
   17A. ABOUT PAGE STYLING
   ============================================ */

.story-image-wrapper {
  width: 100%;
  height: 450px;
  margin-bottom: var(--spacing-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8, 24, 10, 0.25);
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.story-image-wrapper:hover .story-image {
  transform: scale(1.04);
}

.story-timeline {
  display: grid;
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--spacing-lg);
  align-items: start;
  position: relative;
  padding: var(--spacing-lg);
  background: var(--glass-light);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass-light);
  border-left: 4px solid var(--accent-gold);
  transition: all var(--transition-base);
}

.timeline-item:hover {
  transform: translateY(-4px);
  background: white;
  box-shadow: 0 16px 48px rgba(8, 24, 10, 0.16);
}

.timeline-marker {
  background: linear-gradient(135deg, var(--primary-green), #0E4E14);
  color: white;
  padding: var(--spacing-md) var(--spacing-sm);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-accent);
  min-width: 140px;
  height: fit-content;
  box-shadow: 0 4px 16px var(--shadow-green);
}

.timeline-content h3 {
  color: var(--primary-green);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 var(--spacing-sm) 0;
  font-family: var(--font-accent);
}

.timeline-content p {
  color: var(--text-mid);
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.mission-content {
  max-width: 1000px;
  margin: 0 auto;
}

.mission-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.mission-point {
  background: var(--glass-light);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--glass-border-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-glass-light);
  transition: all var(--transition-base);
}

.mission-point:hover {
  transform: translateY(-4px);
  background: white;
  box-shadow: 0 16px 48px rgba(8, 24, 10, 0.15);
}

.mission-point i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: var(--spacing-md);
  display: block;
}

.mission-point h4 {
  color: var(--primary-green);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-accent);
}

.mission-point p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-visit-section {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.visit-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: var(--spacing-lg);
}

.visit-contact-card {
  background: var(--glass-light);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--glass-border-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass-light);
  border-left: 4px solid var(--accent-gold);
}

.contact-item-vertical {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  align-items: flex-start;
}

.contact-item-vertical:last-of-type {
  margin-bottom: var(--spacing-lg);
}

.contact-item-vertical i {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item-vertical h4 {
  color: var(--primary-green);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  font-family: var(--font-accent);
}

.contact-item-vertical p {
  margin: 0;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-item-vertical a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-item-vertical a:hover {
  color: var(--accent-gold);
}

/* ============================================
   18. FOOTER — DEEP LUXURY
   ============================================ */

.footer-dark {
  background: linear-gradient(160deg, var(--luxury-void) 0%, var(--luxury-forest) 40%, var(--luxury-deep) 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 80px var(--spacing-md) 60px;
  position: relative;
  overflow: hidden;
}

.footer-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 50%, rgba(30, 107, 36, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 50%, rgba(200, 146, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-dark::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 146, 42, 0.3), transparent);
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: var(--spacing-xl);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: var(--spacing-md);
  width: fit-content;
}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-item a:hover {
  color: var(--accent-gold-light);
}

.btn-book-online {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #8A6012 100%) !important;
  color: white !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  transition: all var(--transition-base) !important;
  display: inline-block !important;
  text-decoration: none !important;
  margin-top: var(--spacing-sm);
  border: none !important;
  box-shadow: 0 4px 20px var(--shadow-gold) !important;
}

.btn-book-online:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--shadow-gold) !important;
  color: white !important;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: var(--spacing-md);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  transition: all var(--transition-base);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold-light);
  color: white;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px var(--shadow-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: var(--spacing-lg);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  letter-spacing: 0.3px;
}

/* ============================================
   19. MAP SECTION
   ============================================ */

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 12px 40px rgba(8, 24, 10, 0.15), 0 0 0 1px rgba(200, 146, 42, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   20. BREADCRUMB
   ============================================ */

.breadcrumb {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-green);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-light);
}

/* ============================================
   21. PULL QUOTE
   ============================================ */

.pull-quote {
  border-left: 3px solid var(--accent-gold);
  padding-left: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  font-style: italic;
  color: var(--text-mid);
  font-size: 1.1rem;
}

.quote-author {
  margin-top: var(--spacing-sm);
  font-style: normal;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================
   22. CTA BANNER — LUXURY DARK
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--luxury-void) 0%, var(--luxury-mid) 50%, var(--luxury-void) 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  padding: 80px var(--spacing-md);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(200, 146, 42, 0.15);
  box-shadow: 0 32px 100px rgba(4, 10, 5, 0.5);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(30, 107, 36, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 50%, rgba(200, 146, 42, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 146, 42, 0.5), rgba(58, 160, 64, 0.3), rgba(200, 146, 42, 0.5), transparent);
}

.cta-banner h2 {
  color: white;
  position: relative;
  z-index: 2;
  margin-bottom: var(--spacing-lg);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.cta-banner-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ============================================
   23. ANIMATIONS — LUXURY
   ============================================ */

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLeaf {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.4; }
  50% {
    transform: translateY(-120px) rotate(20deg);
  }
  90% { opacity: 0; }
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 4px 20px var(--shadow-gold), 0 0 0 0 rgba(200, 146, 42, 0.5);
  }
  50% {
    box-shadow: 0 4px 20px var(--shadow-gold), 0 0 0 14px rgba(200, 146, 42, 0);
  }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes shimmerSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.97); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   24. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1023px) {
  .about-snapshot {
    grid-template-columns: 1fr;
  }

  nav ul {
    gap: var(--spacing-md);
  }

  nav a {
    font-size: 0.72rem;
  }

  .slide-text-content {
    padding: 40px 36px;
  }
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .hero {
    margin-top: 100px;
  }

  .hero-content {
    padding: var(--spacing-md);
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .services-grid,
  .gallery,
  .stats-section,
  .reviews-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .slider-wrapper {
    height: 100%;
  }

  .slide-text-content {
    padding: 32px 24px;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }

  .cta-banner-buttons {
    flex-direction: column;
  }

  .cta-banner-buttons .btn {
    width: 100%;
  }

  .section {
    padding: 56px var(--spacing-md);
  }

  footer {
    padding-bottom: 100px;
  }

  .map-container {
    height: 300px;
  }

  .quote-section-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

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

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

  .contact-item {
    gap: var(--spacing-sm);
  }

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

  .about-visit-section {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .visit-contact-card {
    padding: var(--spacing-md);
  }

  .story-image-wrapper {
    height: 300px;
    margin-bottom: var(--spacing-lg);
  }

  .timeline-item {
    grid-template-columns: 100px 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
  }

  .timeline-marker {
    min-width: 100px;
    font-size: 1.1rem;
    padding: var(--spacing-sm) 4px;
  }

  .timeline-content h3 {
    font-size: 1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .stat-item {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero {
    min-height: 70vh;
    margin-top: 60px;
  }

  .slide-text-content {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }

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

  .cert-badge-container {
    width: 100px;
    height: 100px;
    margin-bottom: var(--spacing-sm);
  }

  .cert-item h4 { font-size: 0.85rem; }
  .cert-item p { font-size: 0.75rem; }

  .stat-number { font-size: 2.2rem; }

  .feature-strip {
    gap: var(--spacing-md);
  }

  .feature-item {
    padding: var(--spacing-sm);
  }

  .feature-icon {
    font-size: 2rem;
  }
}
