:root {
  --color-teal: #4AB0A0;
  --color-coral: #E36D84;
  --color-lilac: #BCA0C9;
  --color-mustard: #D1A055;
  --color-slate: #7AC5B8;
  --color-white: #FFFFFF;
  --color-dark: #2C2C2C;
  --color-light: #F5F1ED;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
  --transition: 0.3s ease;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.6;
  font-size: 0.9rem;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

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

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
}

header.scrolled {
  position: fixed;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
  transform: translateY(-100%);
  animation: slideDown 0.3s forwards;
}

@keyframes slideDown {
  to { transform: translateY(0); }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: -0.02em;
}

nav ul {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

nav a:hover {
  background: var(--color-light);
  color: var(--color-teal);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: var(--space-xs);
}

.burger span {
  width: 1.5rem;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(135deg, rgba(245, 241, 237, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%),
    url('../gallery/bg-image-1.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  padding: var(--space-xl) 0 var(--space-lg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40%;
  height: 60%;
  background: var(--color-teal);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 35%;
  height: 50%;
  background: var(--color-coral);
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.hero p {
  font-size: 1rem;
  color: var(--color-slate);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #5a9794;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-teal);
  border: 2px solid var(--color-teal);
}

.btn-secondary:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

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

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

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.section-header p {
  font-size: 0.95rem;
  color: var(--color-slate);
  max-width: 600px;
  margin: 0 auto;
}

.features {
  background: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  background: var(--color-light);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-coral));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

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

.feature-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--color-teal);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--color-slate);
  line-height: 1.6;
}

.products {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.product-image {
  width: 100%;
  height: 250px;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.product-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.product-info p {
  font-size: 0.85rem;
  color: var(--color-slate);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.steps {
  background: var(--color-white);
}

.steps-container {
  display: grid;
  gap: var(--space-lg);
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
}

.step:nth-child(even) {
  direction: rtl;
}

.step:nth-child(even) > * {
  direction: ltr;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-teal), var(--color-coral));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--color-slate);
  line-height: 1.6;
}

.gallery {
  background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials {
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--color-light);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  font-size: 4rem;
  color: var(--color-teal);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-teal);
  font-size: 0.85rem;
}

.cta {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-coral) 100%);
  color: var(--color-white);
  text-align: center;
}

.cta h2 {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.cta .btn {
  background: var(--color-white);
  color: var(--color-teal);
}

.cta .btn:hover {
  background: var(--color-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-section {
  background: var(--color-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: start;
}

.contact-item i {
  color: var(--color-teal);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.contact-item div h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--color-dark);
}

.contact-item div p {
  font-size: 0.85rem;
  color: var(--color-slate);
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  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;
  font-size: 0.85rem;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 2px solid var(--color-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

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

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

.checkbox-group input {
  margin-top: 0.3rem;
}

.checkbox-group label {
  font-size: 0.75rem;
  color: var(--color-slate);
  line-height: 1.4;
}

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

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

footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-md) 0;
  font-size: 0.8rem;
}

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

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

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

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 1.5rem;
  color: var(--color-slate);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: var(--color-light);
  color: var(--color-dark);
}

.modal-content h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.modal-content p {
  font-size: 0.85rem;
  color: var(--color-slate);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
}

.error-content h1 {
  font-size: 6rem;
  font-weight: 800;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.error-content h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.error-content p {
  color: var(--color-slate);
  margin-bottom: var(--space-md);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

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

.thankyou-icon {
  font-size: 4rem;
  color: var(--color-teal);
  margin-bottom: var(--space-md);
}

.thankyou-content h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.thankyou-content p {
  font-size: 1rem;
  color: var(--color-slate);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.policy-page {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.policy-content h1 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.policy-content h2 {
  font-size: 1.3rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.policy-content p {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.policy-content ul {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
}

.policy-content li {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: none;
  }

  nav ul.active {
    right: 0;
    overflow: hidden;
    display: flex;
    }

  .burger {
    display: flex;
  }

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

  .section-header h2 {
    font-size: 1.6rem;
  }

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

  .step {
    grid-template-columns: 1fr;
  }

  .step:nth-child(even) {
    direction: ltr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .error-content h1 {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .features-grid,
  .products-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
