@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;700&display=swap');

/* ════════════════════════ CSS VARIABLES ════════════════════════ */
:root {
  --primary-green: #1a7946;
  --primary-green-light: #2d9f5e;
  --primary-green-pale: #e8f5f0;
  --secondary-green: #52b788;
  --white: #ffffff;
  --light-bg: #f8fdf9;
  --light-gray: #f0f3f2;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --border-color: #d4e8de;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
}

/* ════════════════════════ GLOBAL STYLES ════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
}

/* ════════════════════════ TYPOGRAPHY ════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: var(--spacing-lg);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 500;
}

h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin: 0;
  padding: 0;
}

/* ════════════════════════ NAVBAR ════════════════════════ */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 2px 8px rgba(26, 121, 70, 0.08);
}

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

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 600;
  color: var(--text-dark) !important;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar-brand span {
  color: var(--primary-green);
}

.nav-menu {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    display: none;
    padding: 1rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-color);
    max-height: calc(100vh - 65px);
    overflow-y: auto;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }
}

.nav-link {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-link {
    padding: 1rem 1.5rem !important;
    border-left: 3px solid transparent;
  }

  .nav-link:hover {
    background: var(--primary-green-pale);
    border-left-color: var(--primary-green);
    color: var(--primary-green) !important;
  }

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

@media (min-width: 769px) {
  .nav-link:hover {
    color: var(--primary-green) !important;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: calc(100% - 2rem);
  }
}

.nav-cta {
  background: var(--primary-green) !important;
  color: white !important;
  border-radius: 50px;
  padding: 0.6rem 1.6rem !important;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  min-height: 44px;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--primary-green-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 121, 70, 0.25);
}

@media (max-width: 768px) {
  .nav-cta {
    width: calc(100% - 3rem);
    justify-content: center;
    margin: 0.5rem 1.5rem;
  }
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 0.5rem;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }
}

/* ════════════════════════ HERO SECTION ════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fdf9 0%, #eef5f1 35%, #e8f5f0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  padding: var(--spacing-xl) var(--spacing-md);
}

@media (max-width: 768px) {
  #hero {
    padding: var(--spacing-lg) var(--spacing-sm);
    min-height: auto;
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
  }
}

@media (max-width: 576px) {
  #hero {
    padding: var(--spacing-lg) 1rem;
  }
}

#hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 992px) {
  #hero .container {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  #hero .container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

#hero::before {
  content: '';
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 121, 70, 0.1) 0%, transparent 70%);
  top: -15%;
  right: -10%;
  pointer-events: none;
  animation: float-slow 8s ease-in-out infinite;
}

#hero::after {
  content: '';
  position: absolute;
  width: clamp(200px, 35vw, 400px);
  height: clamp(200px, 35vw, 400px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.08) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
  pointer-events: none;
  animation: float-slow-alt 8s ease-in-out infinite;
}

@media (max-width: 768px) {
  #hero::before,
  #hero::after {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.hero-tagline {
  font-size: clamp(0.65rem, 2vw, 0.85rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary-green);
  opacity: 0.4;
}

@media (max-width: 576px) {
  .hero-tagline::before,
  .hero-tagline::after {
    width: 20px;
  }
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-title em {
  font-style: italic;
  color: var(--primary-green);
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 450px;
  margin-bottom: var(--spacing-lg);
  font-weight: 300;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 576px) {
  .hero-stats {
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }
}

.stat-item {
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--border-color);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--primary-green);
  line-height: 1;
}

.stat-label {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: var(--text-muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-buttons .btn-primary-green,
  .hero-buttons .btn-outline-green {
    width: 100%;
  }
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-image-wrap {
    max-width: 100%;
  }
}

.hero-image-bg {
  width: clamp(250px, 70vw, 400px);
  height: clamp(250px, 70vw, 400px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green-pale), var(--light-gray));
  position: absolute;
  animation: pulse-ring 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}

.hero-product-card {
  background: white;
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 20px 40px rgba(26, 121, 70, 0.12);
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 300px;
  animation: float 6s ease-in-out infinite;
  border: 1px solid var(--border-color);
}

@media (max-width: 576px) {
  .hero-product-card {
    max-width: 100%;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-product-icon {
  width: clamp(50px, 12vw, 60px);
  height: clamp(50px, 12vw, 60px);
  background: var(--primary-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.6rem, 4vw, 1.8rem);
  margin: 0 auto 1rem;
  color: var(--primary-green);
}

.hero-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.hero-product-sub {
  font-size: clamp(0.65rem, 2vw, 0.85rem);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--primary-green);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  box-shadow: 0 4px 12px rgba(26, 121, 70, 0.3);
}

/* ════════════════════════ BUTTONS ════════════════════════ */
.btn-primary-green {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: clamp(0.7rem, 2vw, 0.9rem) clamp(1.6rem, 4vw, 2.2rem);
  border-radius: 50px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary-green:hover {
  background: var(--primary-green-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(26, 121, 70, 0.3);
}

.btn-primary-green:active {
  transform: translateY(0);
}

.btn-outline-green {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: clamp(0.7rem, 2vw, 0.85rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: 50px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
}

.btn-outline-green:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

.btn-product {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: clamp(0.6rem, 2vw, 0.8rem) clamp(1.2rem, 3vw, 1.6rem);
  border-radius: 50px;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
  min-height: 44px;
}

.btn-product:hover {
  background: var(--primary-green-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 121, 70, 0.3);
}

/* ════════════════════════ SECTION COMMON ════════════════════════ */
section {
  padding: var(--spacing-2xl) var(--spacing-md);
}

@media (max-width: 768px) {
  section {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
}

@media (max-width: 576px) {
  section {
    padding: var(--spacing-lg) 1rem;
  }
}

.section-badge {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-badge::before,
.section-badge::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--primary-green);
  opacity: 0.3;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.section-title em {
  color: var(--primary-green);
  font-style: italic;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--primary-green);
  margin: 2rem auto 0;
}

/* ════════════════════════ ABOUT SECTION ════════════════════════ */
#about {
  background: white;
}

#about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

@media (max-width: 992px) {
  #about .container {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  #about .container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

.about-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-main {
  width: clamp(200px, 60vw, 350px);
  height: clamp(200px, 60vw, 350px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green-pale), var(--light-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--primary-green);
  position: relative;
  z-index: 1;
}

.about-image-accent {
  position: absolute;
  bottom: clamp(-10px, 2vw, 20px);
  right: clamp(-10px, 2vw, 20px);
  background: var(--primary-green);
  color: white;
  width: clamp(80px, 20vw, 140px);
  height: clamp(80px, 20vw, 140px);
  border-radius: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(26, 121, 70, 0.25);
  z-index: 2;
}

.about-image-accent .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
}

.about-image-accent .lbl {
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  text-align: center;
  margin-top: 0.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
  font-weight: 400;
}

.about-body {
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

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

.about-feature {
  background: var(--primary-green-pale);
  padding: var(--spacing-md);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(26, 121, 70, 0.15);
}

.about-feature-icon {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.about-feature-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.about-feature-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ════════════════════════ PRODUCTS SECTION ════════════════════════ */
#products {
  background: var(--light-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 80vw, 300px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--spacing-lg);
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(26, 121, 70, 0.15);
}

.product-img {
  background: linear-gradient(135deg, var(--primary-green-pale), var(--light-gray));
  height: clamp(180px, 50vw, 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  position: relative;
  color: var(--primary-green);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-green);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.product-body {
  padding: clamp(1rem, 3vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat {
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  color: var(--primary-green);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-desc {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1rem;
  flex: 1;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.product-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

/* ════════════════════════ PRICING SECTION ════════════════════════ */
#pricing {
  background: linear-gradient(135deg, var(--primary-green-pale), var(--light-bg));
}

.pricing-table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 121, 70, 0.1);
  border: 1px solid var(--border-color);
  overflow-x: auto;
}

.pricing-header {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 768px) {
  .pricing-header {
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.2rem;
  }
}

.pricing-header span {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-header span:first-child {
  color: white;
}

.pricing-row {
  padding: clamp(1rem, 2vw, 1.6rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s;
}

@media (max-width: 768px) {
  .pricing-row {
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1rem;
  }
}

.pricing-row:hover {
  background: var(--primary-green-pale);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-dark);
  font-weight: 500;
}

.pricing-product-sub {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 0.2rem;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--primary-green);
}

.pricing-size {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: var(--text-muted);
}

.avail-badge {
  background: var(--primary-green-pale);
  color: var(--primary-green);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
}

/* ════════════════════════ GALLERY SECTION ════════════════════════ */
#gallery {
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 80vw, 300px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.gallery-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26, 121, 70, 0.15);
}

.gallery-slider {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 250px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: white;
  user-select: none;
  --slider-pos: 50%;
  animation: slideShowBefore 6s ease-in-out infinite;
}

.gallery-slider:hover {
  animation-play-state: paused;
}

.gallery-slider.dragging {
  animation-play-state: paused;
}

@keyframes slideShowBefore {
  0% {
    --slider-pos: 0%;
  }
  50% {
    --slider-pos: 100%;
  }
  100% {
    --slider-pos: 0%;
  }
}

.gallery-before-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--before-img);
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.gallery-after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--after-img);
  background-size: cover;
  background-position: center;
  z-index: 3;
  clip-path: inset(0 0 0 var(--slider-pos, 50%));
  transition: clip-path 0.05s linear;
}

.gallery-handle {
  position: absolute;
  top: 0;
  left: calc(var(--slider-pos, 50%) - 30px);
  width: 60px;
  height: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  transition: left 0.05s linear;
}

.gallery-divider-slider {
  background: white;
  width: 3px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  flex-direction: column;
  gap: 0;
}

.gallery-divider-slider i {
  margin: 0;
  font-size: 0.8rem;
}

.gallery-divider-slider span {
  color: var(--primary-green);
  font-weight: bold;
}

.gallery-label-before,
.gallery-label-after {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-label-before {
  position: absolute;
  top: 8px;
  left: -55px;
}

.gallery-label-after {
  position: absolute;
  top: 8px;
  right: -50px;
}

.gallery-title {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.gallery-title h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.gallery-title p {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--text-muted);
}

/* ════════════════════════ TESTIMONIALS SECTION ════════════════════════ */
#testimonials {
  background: linear-gradient(135deg, var(--primary-green-pale), var(--light-bg));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 80vw, 300px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.testimonial-card {
  background: white;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26, 121, 70, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 121, 70, 0.15);
}

.testimonial-stars {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  border-radius: 50%;
  background: var(--primary-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--primary-green);
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-dark);
  margin: 0;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.2rem 0 0 0;
}

/* ════════════════════════ REVIEW FORM SECTION ════════════════════════ */
#review {
  background: white;
}

.review-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: clamp(0.8rem, 2vw, 1rem);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(26, 121, 70, 0.1);
}

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

.star-rating {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.star {
  font-size: 1.8rem;
  cursor: pointer;
  color: #ddd;
  transition: all 0.2s ease;
}

.star:hover,
.star.active {
  color: var(--primary-green);
}

.btn-submit {
  width: 100%;
  background: var(--primary-green);
  color: white;
  border: none;
  padding: clamp(0.8rem, 2vw, 1.1rem);
  border-radius: 50px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.btn-submit:hover {
  background: var(--primary-green-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(26, 121, 70, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-success {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--primary-green-pale);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: none;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ════════════════════════ CONTACT SECTION ════════════════════════ */
#contact {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: white;
}

#contact .section-title,
#contact .section-badge {
  color: white;
}

#contact .section-badge::before,
#contact .section-badge::after {
  background: white;
  opacity: 0.3;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 80vw, 280px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.contact-icon {
  width: clamp(60px, 12vw, 80px);
  height: clamp(60px, 12vw, 80px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: clamp(1.8rem, 5vw, 2.2rem);
}

.contact-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.contact-card a {
  color: white;
  text-decoration: none;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.contact-card a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-card p {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* ════════════════════════ FOOTER ════════════════════════ */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-xl) var(--spacing-md);
}

@media (max-width: 768px) {
  footer {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 80vw, 280px), 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-lg);
}

@media (max-width: 576px) {
  footer .container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.footer-brand span {
  color: var(--primary-green-light);
}

.footer-tagline {
  font-size: clamp(0.85rem, 2vw, 1rem);
  margin-bottom: var(--spacing-md);
  color: white;
  font-weight: 500;
}

footer p {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: var(--spacing-md);
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary-green-light);
  transform: translateY(-3px);
}

footer h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.footer-links a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: rgba(255, 255, 255, 0.6);
}

/* ════════════════════════ WHATSAPP BUTTON ════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 999;
}

@media (max-width: 576px) {
  .wa-float {
    bottom: 1rem;
    right: 1rem;
  }
}

.wa-bubble {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: clamp(0.8rem, 2vw, 1rem);
  border-radius: 12px;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 150px;
}

.wa-float:hover .wa-bubble {
  opacity: 1;
  transform: translateY(0);
}

.wa-btn {
  width: clamp(50px, 10vw, 60px);
  height: clamp(50px, 10vw, 60px);
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  animation: wa-bounce 3s infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

@keyframes wa-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.wa-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #FF4500;
  border-radius: 50%;
  top: -2px;
  right: -2px;
  animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

/* ════════════════════════ ANIMATIONS ════════════════════════ */
@keyframes float-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes float-slow-alt {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }
.fade-up-delay-4 { animation-delay: 0.4s; }

/* ════════════════════════ SCROLLBAR ════════════════════════ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green-light);
}

/* ════════════════════════ ACCESSIBILITY ════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

/* ════════════════════════ REVIEW ITEMS ════════════════════════ */
.review-item {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: clamp(1.2rem, 3vw, 1.5rem);
  transition: all 0.3s ease;
}

.review-item:hover {
  box-shadow: 0 8px 24px rgba(26, 121, 70, 0.1);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.review-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.25rem;
}

.review-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 300;
}

.review-rating {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--primary-green);
  white-space: nowrap;
  font-weight: 600;
}

.review-rating .empty-stars {
  color: var(--border-color);
}

.review-text {
  color: var(--text-dark);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 576px) {
  .review-header {
    flex-direction: column;
  }
  
  .review-rating {
    display: inline-block;
    margin-top: 0.5rem;
  }
}
