


:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;

  --champagne-50: #fffbeb;
  --champagne-100: #fef3c7;
  --champagne-400: #f59e0b;
  --champagne-500: #d97706;
  --champagne-600: #b45309;
  --champagne-700: #92400e;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: #0f172a;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  margin: 0;
}


.nav-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
  color: #64748b;
  transition: var(--transition-all);
  position: relative;
}

.nav-link:hover {
  color: #059669;
  transform: translateY(-1px);
}

.nav-link.active {
  color: #f59e0b;
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-all);
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #d97706, #b45309);
}

.btn-gold:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-gold:hover:before {
  left: 100%;
}


.section-emerald {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.section-dark {
  background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
}

.section-gradient {
  background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #f59e0b 100%);
}


.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-all);
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: #d1fae5;
}


.btn-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-all);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #059669, #047857);
}

.btn-outline {
  border: 2px solid #10b981;
  background: transparent;
  color: #10b981;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: var(--transition-all);
}

.btn-outline:hover {
  background: #10b981;
  color: white;
  transform: translateY(-2px);
}


.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition-all);
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #334155;
}


.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.glass-dark {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.aspect-ratio-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}


.footer-dark {
  background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
}

.footer-link {
  color: #94a3b8;
  transition: var(--transition-all);
  display: block;
}

.footer-link:hover {
  color: #f59e0b;
  transform: translateX(4px);
}


.animate-slide-left {
  animation: slideLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideRight 0.8s ease-out;
}

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

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


.mobile-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
}

.mobile-menu-link {
  color: #64748b;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  transition: var(--transition-all);
}

.mobile-menu-link:hover {
  background: #f8fafc;
  color: #059669;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition-all);
  border: 1px solid transparent;
}

.cookie-accept {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.cookie-accept:hover {
  background: #059669;
  border-color: #059669;
}

.cookie-decline {
  background: transparent;
  color: #94a3b8;
  border-color: #94a3b8;
}

.cookie-decline:hover {
  color: white;
  border-color: white;
}


.faq-item {
  margin-bottom: 1rem;
  transition: var(--transition-all);
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: #f8fafc;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-all);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-button:hover {
  background: #f1f5f9;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.faq-content.open {
  max-height: 500px;
  opacity: 1;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
}

.faq-icon {
  transition: transform 0.3s ease-in-out;
}

.faq-button.active .faq-icon {
  transform: rotate(180deg);
}


.price-tag {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
}


.hero-bg {
  background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #f59e0b 100%);
}


.gradient-text {
  background: linear-gradient(135deg, #ffffff, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.bg-emerald-100 { background-color: #d1fae5; }
.bg-emerald-500 { background-color: #10b981; }
.bg-champagne-100 { background-color: #fef3c7; }
.bg-champagne-400 { background-color: #f59e0b; }
.text-emerald-600 { color: #059669; }
.text-champagne-400 { color: #f59e0b; }
.text-gray-600 { color: #475569; }


@media (max-width: 768px) {
  .nav-glass {
    background: rgba(255, 255, 255, 0.98);
  }
  
  .section-emerald {
    background: #ecfdf5;
  }
  
  .hero-bg {
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
  }
}


:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}