:root {
  --background: #F9F9F9;
  --primary: #7DAA92;
  --secondary: #444444;
  --highlight: #C9B79C;
  --button: #5A8A6F;
  
  --font-primary: 'Jost', sans-serif;
  --font-secondary: 'Cormorant Garamond', serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--background);
  color: var(--secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

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

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



a.animated-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--button);
  transition: width var(--transition-normal);
}

a.animated-link:hover:after {
  width: 100%;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background-color: var(--button);
  transform: translateY(-2px);
}

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

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300%;
  height: 300%;
}

/* Header Animation & Styles */
.header {
  padding: var(--space-md) 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--transition-normal);
  background-color: transparent;
}

.header .menu-icon,
.header .menu-icon::before,
.header .menu-icon::after {
  background-color: var(--secondary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.header.scroll-down {
  transform: translateY(-100%);
  opacity: 0;
}

.header.scroll-up {
  background-color: var(--background);
  box-shadow: var(--shadow-sm);
  position: fixed;
  transform: translateY(0);
  opacity: 1;
}

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

.logo {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  color: var(--secondary);
  position: relative;
}

.logo-hover-effect {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.logo-hover-effect::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.1rem;
  bottom: 0;
  left: 0;
  background-color: var(--highlight);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.5s ease;
}

.logo-hover-effect:hover::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}

/* Unique Menu Animation */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  position: relative;
  z-index: 200;
  padding: 0;
  outline: none;
}

.menu-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 3px;
  background-color: var(--secondary);
  transition: all var(--transition-normal);
  display: block;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: var(--secondary);
  transition: all var(--transition-normal);
  left: 0;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

.menu-active .menu-icon {
  background-color: transparent;
}

.menu-active .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
  background-color: var(--secondary);
}

.menu-active .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: var(--secondary);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: var(--space-md);
}

.nav-links a {
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Hero Section with Animation */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: var(--space-xl);
  overflow: hidden;
  background-color: var(--background);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom right, var(--primary), transparent);
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
}

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

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  background-color: var(--highlight);
  opacity: 0.05;
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

.hero-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -100px;
  animation-delay: -5s;
}

.hero-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Section Animations */
.section {
  padding: var(--space-lg) 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  transition: width var(--transition-normal);
}

.section-title:hover::after {
  width: 100%;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease, transform 1s ease;
}

.slide-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Service Cards with Hover Animation */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--primary);
  opacity: 0.05;
  transition: height var(--transition-normal);
  z-index: -1;
}

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

.service-card:hover::before {
  height: 100%;
}

.service-card h3 {
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

/* About Section with Parallax */
.about {
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-image {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.about-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--highlight);
  transform: translate(10px, 10px);
  z-index: -1;
  transition: transform var(--transition-normal);
}

.about-content:hover .about-image-bg {
  transform: translate(15px, 15px);
}

.about-text h2 {
  margin-bottom: var(--space-md);
}

/* Testimonial Section */
.testimonials {
  position: relative;
  background-color: rgba(125, 170, 146, 0.05);
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-container::-webkit-scrollbar {
  display: none;
}

.testimonial {
  scroll-snap-align: start;
  min-width: 300px;
  width: 300px;
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.testimonial-author {
  font-weight: 500;
  color: var(--secondary);
  display: flex;
  align-items: center;
}

.testimonial-author::before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--primary);
  margin-right: var(--space-xs);
}

/* Contact Section with Unique Animation */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info {
  position: relative;
}

.contact-info h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

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

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.contact-method i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-right: var(--space-sm);
  transition: transform var(--transition-normal);
}

.contact-method:hover i {
  transform: scale(1.2);
}

.contact-form-container {
  position: relative;
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(125, 170, 146, 0.2);
}

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

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

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

.form-button {
  width: 100%;
}

/* Map Section */
.map-container {
  position: relative;
  height: 400px;
  margin-top: var(--space-lg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

/* Footer */
.footer {
  background-color: var(--secondary);
  color: var(--background);
  padding: var(--space-md) 0;
  margin-top: var(--space-lg);
}

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

.footer-logo {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  color: var(--background);
}

.footer-links {
  display: flex;
  list-style: none;
}

.footer-links li {
  margin-left: var(--space-md);
}

.footer-links a {
  color: var(--background);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  padding-top: var(--space-sm);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Privacy Policy Popup */
.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary);
  color: var(--background);
  padding: var(--space-md);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.privacy-popup.active {
  transform: translateY(0);
}

.privacy-popup-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-popup-text {
  flex: 1;
  margin-right: var(--space-md);
}

.privacy-popup-close {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.privacy-popup-close:hover {
  background-color: var(--button);
}

/* 404 Page */
.error-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content {
  max-width: 600px;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.error-code::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 5px;
  background-color: var(--highlight);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.error-message {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.error-text {
  margin-bottom: var(--space-md);
}

/* Thank You Page */
.thank-you {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
}

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

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

.thank-you-text {
  margin-bottom: var(--space-md);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Product Cards with Animation */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

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

.product-image {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  background-color: var(--highlight);
  opacity: 0.8;
}

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

.product-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.product-price {
  font-weight: 500;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.product-description {
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

/* FAQ Section with Animation */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: var(--space-md);
}

.faq-question {
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  :root {
    --space-xl: 6rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .menu-btn {
    display: block;
  }
  
  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    background-color: var(--secondary);
  }
  
  .header.scroll-up .menu-icon,
  .header.scroll-up .menu-icon::before,
  .header.scroll-up .menu-icon::after {
    background-color: var(--secondary);
  }
  
  .menu-active .menu-icon::before,
  .menu-active .menu-icon::after {
    background-color: var(--secondary);
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background-color: var(--background);
    box-shadow: var(--shadow-lg);
    padding: var(--space-lg) var(--space-md);
    z-index: 100;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    display: none;
  }
  
  .nav.active {
    transform: translateX(0);
    display: flex;
  }
  
  .nav-links {
    flex-direction: column;
  }
  
  .nav-links li {
    margin-left: 0;
    margin-bottom: var(--space-md);
  }
  
  .privacy-popup-container {
    flex-direction: column;
  }
  
  .privacy-popup-text {
    margin-right: 0;
    margin-bottom: var(--space-sm);
  }
}

@media (max-width: 576px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo {
    margin-bottom: var(--space-sm);
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .error-code {
    font-size: 6rem;
  }
}


@media (max-width: 380px) {
  .logo{
    font-size: 20px;
  }
}