:root {
  /* Color Palette - Garden inspired */
  --color-primary: #5d8c5d;
  /* Deep Leaf Green */
  --color-secondary: #f8b195;
  /* Soft Terracotta */
  --color-accent: #e05c5c;
  /* Flower Red */
  --color-light: #f9f7f2;
  /* Parchment */
  --color-dark: #2d422d;
  /* Dark Forest */
  --color-neutral: #c9d6c9;
  /* Sage */

  /* Complementary Colors */
  --color-lavender: #b8a9db;
  /* Lavender */
  --color-sunshine: #f8d568;
  /* Sunshine Yellow */

  /* Text Colors */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #f9f7f2;

  /* UI Elements */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  font-weight: 500;
  text-align: center;
}

.btn:hover {
  background-color: var(--color-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background-color: #f0a483;
  color: var(--text-primary);
}

.btn-accent {
  background-color: var(--color-accent);
}

.btn-accent:hover {
  background-color: #cc5151;
}

/* Header Styles - Unique non-sticky design */
.header {
  background-color: var(--color-light);
  padding: var(--space-md) 0;
  position: relative;
  transition: all var(--transition-medium);
  border-bottom: 3px solid var(--color-neutral);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
}

.logo span {
  color: var(--color-accent);
}

/* Unique Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  position: absolute;
  right: 12px;
}

.menu-toggle span {
  width: 2rem;
  height: 3px;
  background-color: var(--color-dark);
  transition: all var(--transition-medium);
  border-radius: var(--border-radius-sm);
}

/* Navigation */
.nav-menu {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-item a {
  position: relative;
  color: var(--text-primary);
  font-weight: 500;
}

.nav-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  bottom: -5px;
  left: 0;
  transition: width var(--transition-medium);
}

.nav-item a:hover::after,
.nav-item a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--color-neutral);
  color: var(--text-primary);
  padding: var(--space-xxl) 0;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(93, 140, 93, 0.1) 0%, rgba(248, 177, 149, 0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Styles */
.section {
  padding: var(--space-xxl) 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: var(--space-sm);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-accent);
}

/* Services / Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-details {
  padding: var(--space-lg);
}

.product-details h3 {
  margin-bottom: var(--space-sm);
}

.product-price {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: var(--space-md);
  display: block;
}

/* About/Requirements Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-content {
  position: relative;
}

.about-image {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accent-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.accent-circle.top-right {
  top: -30px;
  right: -30px;
}

.accent-circle.bottom-left {
  bottom: -30px;
  left: -30px;
  background-color: var(--color-lavender);
}

/* Testimonials */
.testimonials {
  background-color: var(--color-neutral);
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: var(--space-md);
}

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

.author-info {
  margin-left: var(--space-md);
}

.author-name {
  font-weight: 700;
  color: var(--color-dark);
}

.author-title {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Contact Section - Unique Design */
.contact {
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.info-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-right: var(--space-md);
}

.info-content h4 {
  margin-bottom: var(--space-xs);
}

.contact-form {
  background-color: #fff;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--color-sunshine);
  border-radius: 50%;
  opacity: 0.2;
}

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

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-neutral);
  border-radius: var(--border-radius-sm);
  background-color: #f9f9f9;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.form-checkbox input {
  margin-top: 0.3rem;
  margin-right: var(--space-sm);
}

.map-container {
  height: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  display: inline-block;
  font-family: 'Playfair Display', serif;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: var(--color-neutral);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-bottom {
  margin-top: var(--space-lg);
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--text-light);
  padding: var(--space-lg);
  z-index: 1000;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
  display: flex;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

/* 404 Page */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: var(--space-lg);
}

.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.error-message {
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

/* Thank You Page */
.thank-you-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: var(--space-lg);
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.thank-you-message {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-info {
    margin-bottom: var(--space-xl);
  }
}

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

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-xl);
    z-index: 99;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-medium);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    margin: var(--space-md) 0;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 98;
  }

  .overlay.active {
    display: block;
  }
}

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

  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .btn {
    width: 100%;
  }
}