@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

:root {
  --primary-wood: #8B4513;
  --secondary-oak: #D2691E;
  --accent-mahogany: #C04000;
  --light-beige: #F5F5DC;
  --warm-cream: #FFF8DC;
  --dark-walnut: #3E2723;
  --soft-taupe: #D4C5B9;
  --golden-honey: #DAA520;
  --charcoal: #36454F;
  --off-white: #FAF9F6;
  --shadow-soft: rgba(139, 69, 19, 0.15);
  --shadow-medium: rgba(139, 69, 19, 0.25);
  --shadow-hard: rgba(139, 69, 19, 0.35);
  --gradient-wood: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  --gradient-warm: linear-gradient(180deg, #FFF8DC 0%, #F5F5DC 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(192, 64, 0, 0.85) 100%);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-walnut);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 249, 246, 0.95) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid var(--soft-taupe);
}

.header-main.scrolled {
  box-shadow: 0 6px 30px var(--shadow-medium);
  border-bottom-color: var(--secondary-oak);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-wood);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-wood);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-text:hover::after {
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  color: var(--dark-walnut);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-wood);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
  color: var(--primary-wood);
  transform: translateY(-2px);
}

.nav-menu a:hover::before {
  width: 100%;
}

.mobile-toggle {
  background: var(--gradient-wood);
  border: none;
  padding: 0.75rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.mobile-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-medium);
}

.mobile-toggle i {
  color: white;
  font-size: 1.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--warm-cream) 100%);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px var(--shadow-hard);
  overflow-y: auto;
  z-index: 2000;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  background: var(--gradient-wood);
  border: none;
  padding: 0.75rem;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 6px 16px var(--shadow-medium);
}

.mobile-menu-close i {
  color: white;
  font-size: 1.5rem;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: var(--dark-walnut);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu a::before {
  content: '→';
  font-size: 1.2rem;
  color: var(--primary-wood);
  transition: transform 0.3s ease;
}

.mobile-menu a:hover {
  background: var(--light-beige);
  border-color: var(--secondary-oak);
  transform: translateX(8px);
}

.mobile-menu a:hover::before {
  transform: translateX(4px);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(62, 39, 35, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1999;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-walnut) 0%, var(--charcoal) 100%);
  color: var(--off-white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -8px 40px var(--shadow-hard);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--golden-honey);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  min-width: 250px;
  line-height: 1.6;
  color: var(--light-beige);
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

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

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

.btn-primary {
  background: var(--gradient-wood);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--off-white);
  border: 2px solid var(--soft-taupe);
}

.btn-secondary:hover {
  background: var(--light-beige);
  color: var(--dark-walnut);
  border-color: var(--golden-honey);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--primary-wood);
  border: 2px solid var(--primary-wood);
}

.btn-outline:hover {
  background: var(--gradient-wood);
  color: white;
  border-color: transparent;
  transform: translateY(-3px) scale(1.02);
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  border-radius: 16px;
}

.btn-small {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-walnut);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--soft-taupe);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--dark-walnut);
  background: var(--off-white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-oak);
  box-shadow: 0 0 0 4px rgba(210, 105, 30, 0.15);
  background: white;
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: var(--charcoal);
  opacity: 0.6;
}

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

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%238B4513' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-control.error {
  border-color: #dc2626;
  background: #fef2f2;
}

.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-error::before {
  content: '⚠';
  font-size: 1rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-wood);
  margin-top: 2px;
}

.checkbox-wrapper label {
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-wood);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px var(--shadow-medium);
  border-color: var(--soft-taupe);
}

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

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

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

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-walnut);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-text {
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-price {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-wood);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.accordion-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 2px solid var(--soft-taupe);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--secondary-oak);
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.accordion-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-walnut);
  background: var(--warm-cream);
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background: var(--light-beige);
}

.accordion-header i {
  font-size: 1.5rem;
  color: var(--primary-wood);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-body {
  padding: 2rem;
  color: var(--charcoal);
  line-height: 1.8;
  border-top: 2px solid var(--soft-taupe);
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--soft-taupe);
  border-top-color: var(--primary-wood);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.loading-dots span {
  width: 12px;
  height: 12px;
  background: var(--gradient-wood);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light-beige);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-wood);
  border-radius: 10px;
  border: 2px solid var(--light-beige);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-mahogany) 0%, var(--primary-wood) 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-walnut);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-wood);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--charcoal);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-warm);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B4513' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-wood);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-wood);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px var(--shadow-soft);
}

.card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 12px 30px var(--shadow-medium);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-primary {
  background: var(--gradient-wood);
  color: white;
}

.badge-secondary {
  background: var(--light-beige);
  color: var(--primary-wood);
  border: 2px solid var(--primary-wood);
}

.badge-success {
  background: #10b981;
  color: white;
}

.badge-warning {
  background: var(--golden-honey);
  color: var(--dark-walnut);
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  background: var(--dark-walnut);
  color: white;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--dark-walnut) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px var(--shadow-medium);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-soft);
  position: relative;
  border-left: 5px solid var(--golden-honey);
  transition: all 0.4s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-medium);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  color: var(--soft-taupe);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--soft-taupe);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-wood);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

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

.testimonial-role {
  font-size: 0.9rem;
  color: var(--charcoal);
}

.stats-counter {
  text-align: center;
  padding: 2rem;
}

.stats-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-wood);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stats-label {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.divider {
  height: 2px;
  background: var(--gradient-wood);
  margin: 3rem 0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  to {
    left: 150%;
  }
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-wood);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 2rem;
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-left: 2rem;
  padding-right: 0;
  margin-left: 50%;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  border: 2px solid var(--soft-taupe);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-medium);
  border-color: var(--secondary-oak);
}

.timeline-marker {
  position: absolute;
  top: 0;
  right: -14px;
  width: 24px;
  height: 24px;
  background: var(--gradient-wood);
  border-radius: 50%;
  border: 4px solid var(--off-white);
  box-shadow: 0 0 0 4px var(--soft-taupe);
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -14px;
  right: auto;
}

.progress-bar {
  height: 12px;
  background: var(--light-beige);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  background: var(--gradient-wood);
  border-radius: 50px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progress-shimmer 1.5s infinite;
}

@keyframes progress-shimmer {
  to {
    transform: translateX(100%);
  }
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px var(--shadow-soft);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px var(--shadow-medium);
  border-color: var(--golden-honey);
}

.price-card.featured {
  border-color: var(--secondary-oak);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.price-header {
  margin-bottom: 2rem;
}

.price-tag {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-wood);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--soft-taupe);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
}

.price-features li::before {
  content: '✓';
  color: var(--primary-wood);
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--warm-cream);
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-info:hover {
  background: var(--light-beige);
  border-color: var(--secondary-oak);
  transform: translateX(8px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-wood);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-weight: 700;
  color: var(--dark-walnut);
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--charcoal);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--gradient-wood);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.social-link:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.footer {
  background: linear-gradient(135deg, var(--dark-walnut) 0%, var(--charcoal) 100%);
  color: var(--light-beige);
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 2rem;
}

.footer-section h3 {
  color: var(--golden-honey);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--light-beige);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: var(--golden-honey);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 2px solid rgba(212, 197, 185, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--soft-taupe);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-wood);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px var(--shadow-medium);
  z-index: 998;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-hard);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(62, 39, 35, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px var(--shadow-hard);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-wood);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.5rem;
}

.modal-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.modal h2 {
  color: var(--dark-walnut);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.alert {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  border: 2px solid;
}

.alert-success {
  background: #ecfdf5;
  border-color: #10b981;
  color: #065f46;
}

.alert-error {
  background: #fef2f2;
  border-color: #dc2626;
  color: #991b1b;
}

.alert-warning {
  background: #fffbeb;
  border-color: var(--golden-honey);
  color: #92400e;
}

.alert-info {
  background: var(--warm-cream);
  border-color: var(--secondary-oak);
  color: var(--dark-walnut);
}

.alert i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 0;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    padding-left: 3rem;
    padding-right: 0;
    margin-left: 0;
  }
  
  .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker {
    left: -14px;
    right: auto;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .modal {
    padding: 2rem;
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .price-tag {
    font-size: 2.5rem;
  }
  
  .stats-number {
    font-size: 2.5rem;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease;
}

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

.slide-in-left {
  animation: slideInLeft 0.6s ease;
}

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

.slide-in-right {
  animation: slideInRight 0.6s ease;
}

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

.scale-in {
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}