:root {
  --color-primary: #82A284;
  --color-secondary: #D9C3A5;
  --color-bg: #FAFAFA;
  --color-text: #4A4A4A;
  --color-text-light: #6A6A6A;
  --color-border: #E5E5E5;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Lora', serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --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.1);
  --transition-fast: 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-secondary);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 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-text);
}

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

.header-container {
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-lg);
  position: relative;
}

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

.logo-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text);
}

.navigation-menu {
  display: flex;
  list-style: none;
  align-items: center;
    gap: 15px;
  flex-wrap: wrap;
}

.navigation-menu li a {
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  padding: var(--space-sm) 0;
  position: relative;
}

.navigation-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-fast);
}

.navigation-menu li a:hover::after {
  width: 100%;
}

.burger-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  flex-direction: column;
  gap: 4px;
  order: 999;
}

.burger-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all var(--transition-fast);
  display: block;
}

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

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

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

.main-content {
  flex: 1;
  width: 100%;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

.page-section {
  margin-bottom: var(--space-xxl);
}

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

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

.hero-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  margin-bottom: var(--space-xxl);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  padding: var(--space-lg);
  z-index: 1;
}

.hero-content h1 {
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
    margin-top: 10px;
}

.btn:hover {
  background-color: transparent;
  color: var(--color-primary);
}

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

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

.btn-outline {
  background-color: white;
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn-outline:hover {
  background-color: var(--color-text);
  color: white;
}

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

.gallery-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.before-after-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  cursor: col-resize;
}

.before-after-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.before-image {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.1s;
}

.after-image {
  clip-path: inset(0 0 0 50%);
  z-index: 1;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: white;
  cursor: col-resize;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--color-primary);
}

.slider-handle::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-primary);
  font-size: 18px;
}

.gallery-item-content {
  padding: var(--space-lg);
}

.gallery-item-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.gallery-item-description {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.content-card {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
  max-width: 100%;
  box-sizing: border-box;
}


.content-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

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

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

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

.checkbox-input {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  cursor: pointer;
}

.checkbox-label a {
  text-decoration: underline;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-md);
}

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

.footer-container {
  background-color: var(--color-text);
  color: white;
  padding: var(--space-xl) var(--space-lg);
  margin-top: auto;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-section h4 {
  font-family: var(--font-primary);
  color: white;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: var(--space-sm);
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-menu a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.privacy-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.privacy-popup.active {
  display: flex;
}

.privacy-popup-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.privacy-popup-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

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

.privacy-popup h2 {
  margin-bottom: var(--space-md);
}

.privacy-popup p {
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

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

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

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

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

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

.product-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.product-description {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.product-price {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.thank-you-container {
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

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

.thank-you-message {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.error-container {
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

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

.error-message {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.text-center {
  text-align: center;
}

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

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

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

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

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.date {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-style: italic;
}

.max-width-content {
  max-width: 800px;
  margin: 0 auto;
}

.max-width-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.max-width-form {
  max-width: 600px;
  margin: 0 auto;
}

.btn-full-width {
  width: 100%;
}

.btn-spacing-left {
  margin-left: var(--space-md);
}

.icon-primary {
  color: var(--color-primary);
  margin-right: var(--space-sm);
}

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

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

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

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: var(--space-md);
}

.step-content-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.step-content-left,
.step-content-right {
  flex: 1;
  min-width: 200px;
}

.step-content-image {
  flex: 1;
  min-width: 300px;
}

.step-content-reverse {
  flex-wrap: wrap-reverse;
}

.list-unstyled {
  list-style: none;
  padding: 0;
}

.list-item-border {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.list-item-no-border {
  padding: var(--space-sm) 0;
}

.list-item-spaced {
  margin-left: var(--space-lg);
  margin-top: var(--space-sm);
}

.margin-top-xl {
  margin-top: var(--space-xl);
}

.margin-top-lg {
  margin-top: var(--space-lg);
}

.step-card {
  grid-column: span 12;
  margin-top: var(--space-lg);
}

.step-card:first-child {
  margin-top: 0;
}

.grid-col-4 {
  flex: 0 1 300px;
  max-width: 300px;
  min-width: 280px;
  box-sizing: border-box;
}

.grid-col-6 {
  flex: 0 1 450px;
  max-width: 450px;
  min-width: 280px;
  box-sizing: border-box;
}

.grid-col-12 {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.grid-container > * {
  min-width: 0;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.centered-content {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .burger-toggle {
    display: flex;
  }

  .navigation-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    padding-top: var(--space-md);
    order: 1000;
  }

  .navigation-menu.active {
    display: flex;
  }

  .header-wrapper {
    flex-direction: column;
  }

  .hero-banner {
    height: 50vh;
    min-height: 300px;
  }

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

  .grid-col-4,
  .grid-col-6 {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .step-content-wrapper {
    flex-direction: column;
  }

  .step-content-reverse {
    flex-direction: column-reverse;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .before-after-container {
    height: 300px;
  }
}

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

  .hero-banner {
    height: 60vh;
    min-height: 250px;
  }

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

  .form-container {
    padding: var(--space-lg);
  }

  .error-code {
    font-size: 5rem;
  }
}

