@charset "UTF-8";

:root {
  --farm-rust: #C85A17;
  --farm-rust-dark: #A34812;
  --forest-green: #2D5A27;
  --forest-green-dark: #1E3D1A;
  --cream-base: #FDF6E3;
  --cream-light: #FFFEF9;
  --warm-gray: #8B7355;
  --amber-glow: #F5A623;
  --terracotta: #D4643A;
  --earth-brown: #5C4033;
  --success-green: #4A7C23;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-soft: 0 8px 32px rgba(45, 90, 39, 0.1);
  --shadow-hover: 0 12px 48px rgba(200, 90, 23, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--cream-base);
  color: var(--black);
  line-height: 1.7;
  font-size: 16px;
}

strong, p, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.text-rust {
  color: var(--farm-rust);
}

.text-green {
  color: var(--forest-green);
}

.text-cream {
  color: var(--cream-base);
}

.bg-rust {
  background-color: var(--farm-rust);
}

.bg-green {
  background-color: var(--forest-green);
}

.bg-cream {
  background-color: var(--cream-base);
}

.bg-cream-light {
  background-color: var(--cream-light);
}

.bg-dark-gradient {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--earth-brown) 100%);
}

.bg-rust-gradient {
  background: linear-gradient(135deg, var(--farm-rust) 0%, var(--terracotta) 100%);
}

.bg-amber-gradient {
  background: linear-gradient(135deg, var(--amber-glow) 0%, var(--farm-rust) 100%);
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 1.75rem;
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.75rem;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--farm-rust);
  color: var(--white);
  border: 2px solid var(--farm-rust);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(200, 90, 23, 0.3);
}

.btn-primary:hover {
  background: var(--farm-rust-dark);
  border-color: var(--farm-rust-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 90, 23, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--forest-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--cream-light);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 1px solid rgba(200, 90, 23, 0.1);
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--farm-rust), var(--forest-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--farm-rust) 0%, var(--terracotta) 100%);
  border-radius: 16px;
  margin-bottom: 24px;
  font-size: 32px;
  color: var(--white);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--success-green) 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 16px;
}

.team-member {
  text-align: center;
  background: var(--cream-light);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 4px solid var(--farm-rust);
  transition: transform 0.3s ease;
}

.team-member:hover .team-photo {
  transform: scale(1.05);
}

.testimonial-card {
  background: var(--cream-light);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.4s ease;
}

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 80px;
  color: var(--farm-rust);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.client-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--forest-green);
  margin-bottom: 16px;
}

.faq-item {
  background: var(--cream-light);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(45, 90, 39, 0.08);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--farm-rust);
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--farm-rust);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--forest-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--warm-gray);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #E5DDD5;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--black);
}

.form-control:focus {
  outline: none;
  border-color: var(--farm-rust);
  box-shadow: 0 0 0 4px rgba(200, 90, 23, 0.1);
}

.form-control::placeholder {
  color: #999;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--earth-brown);
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--earth-brown) 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./media/hero-overlay-pattern.webp') center/cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--cream-light);
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-header {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--earth-brown) 100%);
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./media/page-header-pattern.webp') center/cover;
  opacity: 0.08;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-title {
  color: var(--white);
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

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

.breadcrumb span {
  color: var(--amber-glow);
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--forest-green);
}

.section-subtitle {
  text-align: center;
  color: var(--warm-gray);
  max-width: 700px;
  margin: 0 auto 60px;
}

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

@media (min-width: 992px) {
  .feature-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .feature-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  text-align: center;
  padding: 32px;
  background: var(--cream-light);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--success-green) 100%);
  border-radius: 50%;
  margin: 0 auto 24px;
  font-size: 36px;
  color: var(--white);
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.process-step {
  position: relative;
  text-align: center;
  padding: 32px;
}

.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--farm-rust);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 48px;
  right: -50%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--farm-rust), var(--forest-green));
  z-index: 1;
}

.process-step:last-child::after {
  display: none;
}

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

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.9));
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.stats-bar {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--earth-brown) 100%);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber-glow);
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--cream-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--farm-rust);
  color: var(--white);
  border-radius: 12px;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 8px;
  color: var(--forest-green);
}

.contact-details p {
  color: var(--warm-gray);
}

.contact-details a {
  color: var(--farm-rust);
}

.contact-details a:hover {
  color: var(--farm-rust-dark);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.blog-card {
  background: var(--cream-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

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

.blog-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--warm-gray);
}

.blog-category {
  background: var(--farm-rust);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
}

.blog-title {
  margin-bottom: 12px;
  color: var(--forest-green);
}

.blog-excerpt {
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.blog-link {
  color: var(--farm-rust);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-link:hover {
  gap: 12px;
}

.career-card {
  background: var(--cream-light);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--farm-rust);
  transition: all 0.3s ease;
}

.career-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-hover);
}

.career-title {
  margin-bottom: 12px;
  color: var(--forest-green);
}

.career-details {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  color: var(--warm-gray);
}

.career-details span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: var(--cream-light);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 48px rgba(45, 90, 39, 0.2);
  z-index: 10000;
  display: block;
}

.cookie-consent-banner h4 {
  margin-bottom: 12px;
  color: var(--forest-green);
}

.cookie-consent-banner p {
  color: var(--warm-gray);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .cookie-consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

footer {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--earth-brown) 100%);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--amber-glow);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--amber-glow);
  padding-left: 8px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
  color: var(--amber-glow);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--amber-glow);
}

@media (max-width: 768px) {
  footer {
    padding: 60px 0 0;
  }
  
  .footer-content {
    gap: 32px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(45, 90, 39, 0.1);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.header.scrolled .logo {
  color: var(--forest-green);
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--farm-rust);
  border-radius: 8px;
  font-size: 20px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.header.scrolled .nav-link {
  color: var(--earth-brown);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--farm-rust);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--white);
}

.header.scrolled .nav-link:hover {
  color: var(--forest-green);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span,
.header.scrolled .mobile-toggle span {
  background: var(--forest-green);
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--cream-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--black);
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .nav-link:hover {
    color: var(--farm-rust);
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.hidden {
  display: none !important;
}

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

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

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

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

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

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

.zoom-in {
  animation: zoomIn 0.8s ease forwards;
}

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