:root {
  --primary-teal: #2D7A7A;
  --accent-coral: #FF6B6B;
  --deep-emerald: #1B5E5E;
  --soft-mint: #A8E6CF;
  --warm-sage: #C4D5B2;
  --cream-bg: #FFF8F0;
  --light-peach: #FFE5D9;
  --charcoal: #2C2C2C;
  --soft-gray: #8B8B8B;
  --white: #ffffff;
  --black: #1a1a1a;
  
  --font-primary: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(45, 122, 122, 0.1);
  --shadow-md: 0 4px 16px rgba(45, 122, 122, 0.15);
  --shadow-lg: 0 8px 24px rgba(45, 122, 122, 0.2);
  
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream-bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  color: var(--deep-emerald);
}

h1 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

h4 {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

p {
  margin-bottom: var(--space-md);
  color: var(--black);
  max-width: 65ch;
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-coral);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1000;
  padding: var(--space-md) 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  padding: var(--space-xxl) var(--space-lg);
  overflow-y: auto;
}

.nav-menu.active {
  right: 0;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-xl);
}

.nav-menu li {
  border-bottom: 1px solid var(--warm-sage);
}

.nav-menu a {
  font-size: 1rem;
  font-weight: 500;
  padding: var(--space-md) 0;
  display: block;
  color: var(--charcoal);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary-teal);
  padding-left: var(--space-sm);
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-teal);
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.menu-toggle:hover {
  color: var(--accent-coral);
}

body.menu-open .menu-toggle,
.nav-menu.active ~ .menu-toggle {
  display: none;
}

.menu-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close:hover {
  color: var(--primary-teal);
}

@media (min-width: 768px) {
  .nav-menu {
    position: static;
    right: auto;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }
  
  .nav-menu ul {
    flex-direction: row;
    gap: var(--space-lg);
    margin-top: 0;
  }
  
  .nav-menu li {
    border-bottom: none;
  }
  
  .nav-menu a {
    padding: var(--space-sm) var(--space-md);
    color: var(--charcoal);
    font-size: 0.95rem;
    position: relative;
  }
  
  .nav-menu a:hover {
    color: var(--primary-teal);
    padding-left: var(--space-md);
  }
  
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--space-md);
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: width 0.3s ease;
  }
  
  .nav-menu a:hover::after {
    width: calc(100% - var(--space-md) * 2);
  }
  
  .menu-toggle {
    display: none;
  }
  
  .menu-close {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-xl) var(--space-md);
  margin-bottom: var(--space-lg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 122, 122, 0.75), rgba(27, 94, 94, 0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  width: 100%;
  padding: 0 var(--space-sm);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: var(--white);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: var(--space-xl);
  max-width: none;
}

.hero-animation {
  width: clamp(80px, 20vw, 150px);
  height: clamp(80px, 20vw, 150px);
  margin: 0 auto var(--space-lg);
  position: relative;
  animation: float 4s ease-in-out infinite, rotate 20s linear infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-animation svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-figure {
  position: absolute;
  width: clamp(120px, 15vw, 200px);
  height: clamp(120px, 15vw, 200px);
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  animation: plantGrow 6s ease-in-out infinite;
  z-index: 1;
  display: none;
}

@keyframes plantGrow {
  0%, 100% {
    transform: translateY(-50%) scale(1) rotate(0deg);
  }
  50% {
    transform: translateY(-60%) scale(1.1) rotate(5deg);
  }
}

.hero-figure svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@media (min-width: 768px) {
  .hero-figure {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero-figure {
    right: 10%;
    opacity: 0.9;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
  padding: 0 var(--space-sm);
}

.hero-buttons .btn {
  flex: 1 1 auto;
  min-width: 140px;
  max-width: 200px;
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xxl);
  padding: var(--space-xl) 0;
}

.hero-icon {
  text-align: center;
  padding: var(--space-lg);
  background: var(--warm-sage);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.hero-icon:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-coral);
  background: var(--soft-mint);
}

.hero-icon i {
  font-size: 1.75rem;
  color: var(--primary-teal);
  margin-bottom: var(--space-sm);
}

.hero-icon h4 {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  color: var(--deep-emerald);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--primary-teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: var(--space-md);
  text-align: center;
}

.btn:hover {
  background: var(--accent-coral);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-teal);
}

.decline-privacy {
  background: var(--charcoal) !important;
  border-color: var(--charcoal) !important;
  color: var(--white) !important;
}

.decline-privacy:hover {
  background: var(--deep-emerald) !important;
  border-color: var(--deep-emerald) !important;
  color: var(--white) !important;
}

.section {
  padding: var(--space-xxl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-md);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--accent-coral);
  border-radius: var(--radius-sm);
}

.grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(45, 122, 122, 0.1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-coral);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-icon-wrapper {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--soft-mint), var(--warm-sage));
  color: var(--primary-teal);
  font-size: 4rem;
  transition: var(--transition);
}

.card:hover .card-icon-wrapper {
  background: linear-gradient(135deg, var(--warm-sage), var(--soft-mint));
  transform: scale(1.05);
  color: var(--deep-emerald);
}

@media (max-width: 768px) {
  .card-icon-wrapper {
    height: 150px;
    font-size: 3rem;
  }
}

.card-content {
  padding: var(--space-lg);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card-price {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--primary-teal);
  margin-top: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: var(--primary-teal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--primary-teal);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(45, 122, 122, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.contact-section {
  display: grid;
  gap: var(--space-xxl);
  margin-top: var(--space-xxl);
}

@media (min-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: linear-gradient(135deg, var(--deep-emerald), var(--primary-teal));
  color: var(--white);
  padding: var(--space-xxl) 0 var(--space-lg);
  margin-top: var(--space-xxl);
}

.footer-content {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.footer h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: var(--space-sm);
}

.footer-menu a {
  color: var(--soft-mint);
  transition: var(--transition);
}

.footer-menu a:hover {
  color: var(--white);
  padding-left: var(--space-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.centered-content {
  text-align: center;
  padding: var(--space-xxl) 0;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.centered-content p {
  max-width: none;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xxl) 0;
}

.legal-content h2 {
  margin-top: var(--space-xl);
}

.legal-content h3 {
  margin-top: var(--space-lg);
}

.legal-content ul,
.legal-content ol {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
}

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

.table-wrapper table {
  min-width: 600px;
}

.legal-content th,
.legal-content td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--light-stone);
}

.legal-content th {
  background: var(--warm-sage);
  font-weight: 600;
  color: var(--deep-emerald);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.legal-content h1 {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
}

.legal-content h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

.legal-content h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.home-button {
  display: inline-block;
  margin-top: var(--space-xl);
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-md);
  right: var(--space-md);
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: none;
  max-width: 500px;
  margin: 0 auto;
}

.privacy-popup.active {
  display: block;
}

.privacy-popup p {
  margin-bottom: var(--space-md);
  max-width: none;
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .privacy-popup {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}

.product-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Unique section styles */
.unique-section {
  position: relative;
  padding: var(--space-xxl) 0;
  overflow: hidden;
}

.unique-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--soft-mint) 0%, transparent 70%);
  top: -50%;
  left: -50%;
  opacity: 0.3;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

.asymmetric-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .asymmetric-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

@media (min-width: 1024px) {
  .asymmetric-grid {
    grid-template-columns: 1fr 1.2fr 0.8fr;
  }
}

.feature-card {
  background: linear-gradient(135deg, var(--white), var(--light-peach));
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border-left: 4px solid var(--accent-coral);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 767px) {
  .hero {
    min-height: 50vh;
    padding: var(--space-lg) var(--space-sm);
  }
  
  .hero-content {
    padding: 0 var(--space-xs);
  }
  
  .hero h1 {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    margin-bottom: var(--space-md);
  }
  
  .hero p {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: var(--space-md);
    padding: 0 var(--space-xs);
  }
  
  .hero-animation {
    width: clamp(70px, 18vw, 120px);
    height: clamp(70px, 18vw, 120px);
    margin-bottom: var(--space-md);
  }
  
  .hero-buttons {
    gap: var(--space-xs);
    margin-top: var(--space-md);
  }
  
  .hero-buttons .btn {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    padding: var(--space-sm) var(--space-md);
    min-width: 120px;
  }
  
  .hero-icons {
    margin-top: var(--space-lg);
    padding: var(--space-md) 0;
  }
  
  .hero-icon {
    padding: var(--space-md);
  }
  
  .hero-icon i {
    font-size: 1.5rem;
  }
  
  .hero-icon h4 {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero {
    min-height: 45vh;
    padding: var(--space-md) var(--space-xs);
  }
  
  .btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
  }
  
  h1 {
    font-size: 1rem;
  }
  
  h2 {
    font-size: 0.95rem;
  }
  
  h3 {
    font-size: 0.9rem;
  }
  
  .hero-animation {
    width: 60px;
    height: 60px;
  }
}
