/* Base Styles */
:root {
  --primary: #5FD3BC;
  --primary-light: #7FDECB;
  --primary-dark: #4AB6A0;
  --secondary: #A0E8FF;
  --secondary-light: #BFF0FF;
  --secondary-dark: #7ACCE6;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --light-bg: #f9f9f9;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--primary-dark);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

button {
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  border: none;
  font-weight: 600;
}

/* Header Styles */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  flex: 0 0 150px;
}

.logo img {
  max-height: 40px;
}

.language-toggle {
  display: flex;
  gap: 5px;
}

.language-toggle button {
  background: none;
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 14px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.language-toggle button.active {
  background-color: var(--primary);
  color: var(--white);
}

nav {
  margin-left: 20px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.main-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.main-menu a {
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
}

.main-menu a:hover {
  color: var(--primary);
}

.cta-button {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-xl);
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(95, 211, 188, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(95, 211, 188, 0.4);
  color: var(--white);
}

/* Hero Section */
#hero {
  padding-top: 150px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #f5fefa, #e0f7ff);
  position: relative;
}

.hero-content {
  max-width: 600px;
}

#hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-button {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(95, 211, 188, 0.3);
  transition: all 0.3s ease;
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(95, 211, 188, 0.4);
  color: var(--white);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-bottom svg {
  width: 100%;
  height: auto;
}

/* Benefits Section */
#benefits {
  background-color: var(--light-bg);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.diagonal-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to right bottom, var(--light-bg) 49%, var(--white) 50%);
}

/* How It Works Section */
#how-it-works {
  background-color: var(--white);
  position: relative;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 800px;
  margin: 50px auto 0;
  padding: 0 20px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(var(--primary), var(--secondary));
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.process-step[data-step="1"] {
  grid-template-areas: "content icon";
}

.process-step[data-step="2"] {
  grid-template-areas: "icon content";
}

.process-step[data-step="3"] {
  grid-template-areas: "content icon";
}

.process-step .step-icon {
  grid-area: icon;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  padding: 10px;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(95, 211, 188, 0.3);
  z-index: 2;
}

.process-step h3,
.process-step p {
  grid-area: content;
  text-align: right;
}

.process-step[data-step="2"] h3,
.process-step[data-step="2"] p {
  text-align: left;
}

.process-step[data-step="1"]::after,
.process-step[data-step="2"]::after,
.process-step[data-step="3"]::after {
  content: attr(data-step);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 3;
}

/* Products Section */
#products {
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.product-image {
  margin-bottom: 20px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-button {
  display: inline-block;
  margin-top: 20px;
  background-color: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius-md);
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-button:hover {
  background-color: var(--primary);
  color: var(--white);
}

.featured {
  border: 2px solid var(--primary-light);
  transform: scale(1.05);
  z-index: 3;
}

.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.products-blob {
  position: absolute;
  top: -50px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(160, 232, 255, 0.15) 0%, rgba(95, 211, 188, 0.05) 70%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50%;
  z-index: 1;
}

/* Reviews Section */
#reviews {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-light) 100%);
  position: relative;
  color: var(--text-dark);
}

.reviews-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  min-width: 300px;
  flex: 1 0 300px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-light);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-meta h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.review-activity {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.review-stars {
  color: #FFD700;
  font-size: 16px;
}

.review-content {
  font-style: italic;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.review-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dots span.active {
  background-color: var(--white);
}

.reviews-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, var(--primary-light) 100%);
  pointer-events: none;
}

/* Subscription Section */
#subscription {
  background-color: var(--white);
  position: relative;
}

.subscription-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.subscription-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.subscription-form {
  background-color: var(--light-bg);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: relative;
}

.radio-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-label input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
}

.subscription-button {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.subscription-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(95, 211, 188, 0.3);
}

.subscription-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/subsc.jpg");
  z-index: -1;
}

/* About Us Section */
#about {
  background-color: var(--light-bg);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 30px;
}

.about-text {
  font-size: 18px;
}

.about-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  position: relative;
}

.about-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.about-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.leaf-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/leaf.jpg");
  z-index: -1;
}

/* Contact Section */
#contact {
  background-color: var(--white);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}

.contact-form {
  background-color: var(--light-bg);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  resize: vertical;
}

.contact-button {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(95, 211, 188, 0.3);
}

.info-block {
  margin-bottom: 30px;
}

.google-map {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.water-drop-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/drop.jpg");
  z-index: -1;
}

/* Footer */
#footer {
  background-color: #2A7D9B;
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo img {
  max-height: 40px;
  filter: brightness(0) invert(1);
}

.footer-newsletter h3 {
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  min-width: 250px;
}

.newsletter-form button {
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 12px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .container {
    width: 95%;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 30px;
    text-align: left;
  }
  
  .process-step[data-step="1"],
  .process-step[data-step="2"],
  .process-step[data-step="3"] {
    grid-template-areas: "icon content";
  }
  
  .process-step h3,
  .process-step p,
  .process-step[data-step="2"] h3,
  .process-step[data-step="2"] p {
    text-align: left;
  }
  
  .process-step .step-icon {
    width: 60px;
    height: 60px;
  }
  
  .process-step[data-step="1"]::after,
  .process-step[data-step="2"]::after,
  .process-step[data-step="3"]::after {
    left: 30px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  #hero .container,
  .subscription-content,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  #hero {
    padding-top: 120px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .main-menu.active {
    display: flex;
  }
  
  .cta-button {
    display: none;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .benefits-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .review-card {
    min-width: 250px;
  }
  
  .language-toggle {
    position: absolute;
    top: 15px;
    right: 70px;
  }
}