.hero {
  min-height: 85vh;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .hero {
	min-height: 85vh;
  }
}
@media (max-width: 768px) {
  .hero {
	min-height: 60vh;
  }
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d6efd, #0a58ca, #084298);
  z-index: 1;
  opacity: 0;
  animation: fadeInWave 1.5s ease-out forwards, subtleShift 8s infinite alternate ease-in-out 1.5s;
}
@keyframes fadeInWave {
  to {
	opacity: 1;
  }
}
@keyframes subtleShift {
  0% {
	background: linear-gradient(135deg, #0d6efd, #0a58ca, #084298);
  }
  100% {
	background: linear-gradient(135deg, #084298, #0a58ca, #0d6efd);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out 0.5s forwards;
}
@keyframes fadeUp {
  to {
	opacity: 1;
	transform: translateY(0);
  }
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px var(--hero-shadow);
  color: var(--text-primary) !important;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--text-primary) !important;
}
.hero-cta {
  padding: 15px 40px;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
  box-shadow: 0 4px 12px var(--hero-shadow);
  transition: transform 0.3s ease, background 0.3s ease;
  border-radius: 8px;
  margin-bottom: 40px;
}
.hero-cta:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--hero-gradient-end), var(--hero-gradient-start));
}
@media (max-width: 768px) {
  .hero h1 {
	font-size: 2rem;
  }
  .hero p {
	font-size: 1.2rem;
  }
  .hero-cta {
	width: 80%;
	font-size: 1rem;
  }
}
.about-section {
  padding: 100px 0 140px;
  background: linear-gradient(to bottom, var(--white), var(--bg-primary));
}
.section-alternate {
  background: linear-gradient(to bottom, var(--bg-primary), #f0f4f8);
}
.dark .section-alternate {
  background: linear-gradient(to bottom, var(--light-dark), #333333);
}
.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--accent);
  position: relative;
}
.about-section h2::after {
  content: '';
  width: 50px;
  height: 4px;
  background-color: var(--accent);
  display: block;
  margin: 10px 0;
}
.about-section p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text-primary) !important;
}
.about-section ul {
  list-style: none;
  padding-left: 0;
}
.about-section ul li {
  font-size: 1.2rem;
  margin-bottom: 16px;
  position: relative;
  padding-left: 30px;
  color: var(--text-primary) !important;
}
.about-section ul li::before {
  content: "✔";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 1.3rem;
}
.about-text {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-text.visible {
  opacity: 1;
  transform: translateX(0);
}
.about-images img {
  opacity: 0;
  transform: translateX(30px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  max-width: 100% !important;
  height: auto;
}
.about-images img.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.about-images img:nth-child(2) {
  transition-delay: 0.2s;
}
.rounded-shadow {
  border-radius: 16px;
  box-shadow: 0 6px 16px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rounded-shadow:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px var(--shadow-color);
}
.services-section {
  padding: 100px 0 140px;
  background: var(--white);
}
.dark .services-section {
  background: #1e1e1e;
}
.services-section h2 {
  font-size: 2.5rem;
  color: var(--accent);
}
.service-card {
  background-color: var(--card-bg);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 6px 16px var(--shadow-color);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: center;
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-8px);
}
.service-card h3 {
  font-size: 1.6rem;
  color: var(--accent);
  margin-top: 16px;
}
.service-card p {
  color: var(--text-primary) !important;
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--accent);
}
.service-icon svg,
.why-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
}
.audio-cleanup-icon {
}
.cutting-cropping-icon {
}
.transcription-icon {
}
.subtitling-icon {
}
.file-organization-icon {
}
.custom-editing-icon {
}
.row .service-card:nth-child(1) { transition-delay: 0.1s; }
.row .service-card:nth-child(2) { transition-delay: 0.2s; }
.row .service-card:nth-child(3) { transition-delay: 0.3s; }
.row .service-card:nth-child(4) { transition-delay: 0.4s; }
.row .service-card:nth-child(5) { transition-delay: 0.5s; }
.row .service-card:nth-child(6) { transition-delay: 0.6s; }
.bg-image-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  z-index: 1;
}
.dark .overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}
.why-choose-section .container, .gallery-section .container {
  z-index: 2;
}
.why-choose-section {
  padding: 100px 0 140px;
  color: var(--hero-text);
}
.why-card {
  background-color: var(--card-bg);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 6px 16px var(--shadow-color);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: center;
}
.why-card.visible {
  opacity: 1;
  transform: scale(1);
}
.why-card h3 {
  font-size: 1.6rem;
  color: var(--accent);
  margin-top: 16px;
}
.why-card p {
  color: var(--text-primary) !important;
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--accent);
}
.affordable-icon {
}
.fast-icon {
}
.community-icon {
}
.quality-icon {
}
.gallery-section {
  padding: 100px 0 140px;
  color: var(--hero-text);
}
.gallery-img {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
  max-width: 100% !important;
  height: auto;
}
.gallery-img.visible {
  opacity: 1;
  transform: scale(1);
}
.gallery-img:nth-child(1) { transition-delay: 0.1s; }
.gallery-img:nth-child(2) { transition-delay: 0.3s; }
.gallery-img:nth-child(3) { transition-delay: 0.5s; }
.process-section {
  padding: 100px 0 140px;
  background: linear-gradient(135deg, var(--white), #e7f1ff, var(--bg-primary));
}
.dark .process-section {
  background: linear-gradient(135deg, #333333, #001f3f, #222222);
}
.process-section h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 40px;
}
.process-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.process-indicator .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gray-small);
  margin: 0 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.process-indicator .dot.active {
  background: var(--accent);
  transform: scale(1.4);
}
.process-container {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 16px var(--shadow-color);
}
.process-slides {
  display: flex;
  width: 300%;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.process-slide {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-slide img {
  max-width: 100% !important;
  height: auto;
  margin-bottom: 32px;
  border-radius: 12px;
}
.process-slide p {
  font-size: 1.3rem;
  color: var(--text-primary);
}
.process-slide.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonials-section {
  padding: 100px 0 140px;
  background: var(--white);
}
.dark .testimonials-section {
  background: var(--light-dark);
}
.testimonial-card {
  background-color: var(--card-bg);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 16px var(--shadow-color);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: center;
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 16px;
  color: var(--text-primary) !important;
}
.testimonial-card h4 {
  font-size: 1.2rem;
  color: var(--accent);
}
@media (max-width: 768px) {
  .about-section, .services-section, .why-choose-section, .process-section, .testimonials-section, .gallery-section {
	padding: 60px 0 100px;
  }
  .hero h1 {
	font-size: 2rem;
  }
  .hero p {
	font-size: 1.2rem;
  }
  h2 {
	font-size: 2rem;
  }
  .service-card, .why-card, .testimonial-card {
	transform: translateY(20px);
	transition-duration: 0.5s;
	padding: 24px;
  }
  .service-card h3, .why-card h3 {
	font-size: 1.4rem;
  }
  .service-card p, .why-card p {
	font-size: 1rem;
  }
  .process-slides {
	flex-direction: column;
	width: 100%;
	transform: translateY(0) !important;
	transition: none;
  }
  .process-slide {
	width: 100%;
	transform: translateY(20px);
	transition-duration: 0.5s;
  }
  .service-icon,
  .why-icon {
	width: 48px;
	height: 48px;
  }
}
body, section, .container {
  overflow-x: hidden !important;
}
.navbar {
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
:root .navbar {
  background-color: rgba(33,37,41, 0.9) !important;
}
.dark .navbar {
  background-color: rgba(30,30,30, 0.7) !important;
}
.dropdown-menu {
  z-index: 1050 !important;
}
