/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== VARIABLES CSS ===== */
:root {
  --header-height: 3.5rem;

  /* ===== Light Mode Colors ===== */
  --primary-color: #FFD700;
  --primary-color-dark: #E6C200;
  --secondary-color: #2C2C2C;
  --background-dark: #FFFFFF;
  --background-card: #F8F9FA;
  --background-section: #F5F5F5;
  --text-color: #2C2C2C;
  --text-color-light: #555555;
  --text-color-muted: #777777;
  --border-color: #E0E0E0;
  --shadow-color: rgba(0, 0, 0, 0.1);

  /* ===== Font and typography ===== */
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  /* ===== Font weight ===== */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;

  /* ===== Margenes Bottom ===== */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /* ===== z index ===== */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;

  /* ===== Transition ===== */
  --transition: all 0.3s ease;
}

/* Responsive typography */
@media screen and (max-width: 968px) {
  :root {
    --biggest-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

/* ===== BASE ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--background-dark);
  color: var(--text-color);
  line-height: 1.6;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--background-dark);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  min-height: 100vh;
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.section {
  padding: 4rem 0 2rem;
}

.section:nth-child(even) {
  background-color: var(--background-section);
}

.section__header {
  text-align: center;
  margin-bottom: var(--mb-3);
}

.section__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-0-75);
  position: relative;
  color: var(--text-color);
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
  border-radius: 2px;
}

.section__description {
  color: var(--text-color-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: var(--font-medium);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: var(--background-dark);
  font-weight: var(--font-semi-bold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn--secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
  background: var(--primary-color);
  color: var(--background-dark);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: var(--normal-font-size);
}

/* ===== HEADER & NAV ===== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1400px;
  z-index: var(--z-fixed);
  background-color: transparent;
  transition: var(--transition);
}

.header.scroll-header {
  background-color: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  padding: 5px 0;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: #000000;
}

.logo-text-header {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: #ffffff;
}

.logo-highlight {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__list {
  display: flex;
  flex-direction: row;
  column-gap: 2rem;
}

.nav__link {
  color: #FFFFFF;
  font-weight: var(--font-medium);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle,
.nav__close {
  display: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ... keep existing code (hero styles remain the same) */

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__data {
  max-width: 600px;
}

.hero__logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: var(--mb-1);
}

.hero__logo-text {
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: #FFFFFF;
}

.hero__logo-highlight {
  font-size: 2rem;
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-extra-bold);
  color: #FFFFFF;
  margin-bottom: var(--mb-1);
  line-height: 1.2;
}

.hero__title-highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: var(--h3-font-size);
  color: #FFFFFF;
  margin-bottom: var(--mb-2-5);
  line-height: 1.5;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: var(--transition);
  animation: bounce 2s infinite;
}

.hero__scroll-link:hover {
  background: var(--primary-color);
  color: var(--background-dark);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ... keep existing code (all other styles remain the same) */

/* ===== SERVICES ===== */
.services {
  background-color: var(--background-section);
}

.services__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-2);
}

.service__card {
  background-color: var(--background-card);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
}

.service__card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service__card--featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.service__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: var(--background-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.service__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
}

.service__icon i {
  font-size: 2rem;
  color: var(--background-dark);
}

.service__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
  color: var(--text-color);
}

.service__description {
  color: var(--text-color-light);
  margin-bottom: var(--mb-1);
  line-height: 1.5;
}

.service__price {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
}

.service__price-old {
  font-size: var(--normal-font-size);
  color: var(--text-color-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* ===== FEATURES ===== */
.features {
  background-color: var(--background-dark);
}

.features__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-2);
}

.feature__card {
  background-color: var(--background-card);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature__card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
}

.feature__icon i {
  font-size: 1.5rem;
  color: var(--background-dark);
}

.feature__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-75);
  color: var(--text-color);
}

.feature__description {
  color: var(--text-color-light);
  line-height: 1.5;
}

/* ===== ABOUT ===== */
.about {
  background-color: var(--background-section);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: var(--mb-2);
}

.about__img-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.about__img:hover {
  transform: scale(1.05);
}

.about__content {
  padding: 1rem;
}

.about__title {
  font-size: var(--h2-font-size);
  color: var(--text-color);
  margin-bottom: var(--mb-1-5);
  position: relative;
}

.about__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.about__description {
  color: var(--text-color-light);
  line-height: 1.7;
  margin-bottom: var(--mb-1);
  text-align: justify;
}

.about__description:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 968px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about__img-container {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {
  .about__container {
    gap: 1.5rem;
  }
  
  .about__content {
    padding: 0;
  }
  
  .about__description {
    text-align: left;
  }
}

/* ===== GALLERY ===== */
.gallery {
  background-color: var(--background-section);
}

.gallery__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--mb-2-5);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery__item:hover {
  transform: translateY(-5px);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 2;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

.gallery__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

.gallery__item:hover::after {
  opacity: 1;
}

/* Gallery Modal */


/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: var(--background-section);
}

/* Google Rating */
.google-rating {
  margin-top: var(--mb-1-5);
  display: flex;
  justify-content: center;
}

.google-rating__content {
  background: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.google-logo {
  flex-shrink: 0;
}

.google-rating__text {
  color: #5f6368;
  font-size: var(--small-font-size);
  font-weight: 500;
  margin: 0;
}

.google-rating__stars {
  display: flex;
  gap: 0.125rem;
}

.google-rating__stars i {
  color: #fbbc04;
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  .google-rating__content {
    padding: 0.75rem 1.5rem;
    gap: 0.5rem;
  }
  
  .google-rating__text {
    font-size: var(--smaller-font-size);
  }
  
  .google-logo {
    width: 20px;
    height: 20px;
  }
}

.testimonials__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-2);
}

.testimonial__card {
  background-color: var(--background-card);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.testimonial__card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--mb-1);
}

.testimonial__stars i {
  color: var(--primary-color);
  font-size: var(--normal-font-size);
}

.testimonial__text {
  color: var(--text-color-light);
  margin-bottom: var(--mb-1-5);
  line-height: 1.6;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background-dark);
  font-weight: var(--font-bold);
}

.testimonial__name {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.testimonial__role {
  font-size: var(--small-font-size);
  color: var(--text-color-muted);
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--background-dark), var(--background-section));
  color: var(--text-color);
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.cta__description {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-2);
  color: var(--text-color-light);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--background-section);
  color: var(--text-color);
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: var(--mb-2);
}

.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: var(--mb-1);
}

.footer__description {
  color: #000000;
  margin-bottom: var(--mb-1-5);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-color);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--primary-color);
  color: var(--background-dark);
  border-color: var(--primary-color);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--text-color);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--mb-0-75);
  color: var(--text-color-light);
}

.footer__contact-item i {
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.footer__hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--mb-0-5);
  color: var(--text-color-light);
}

.footer__day {
  font-weight: var(--font-medium);
}

.footer__time {
  color: var(--primary-color);
}

.footer__hours .btn {
  margin-top: var(--mb-1);
  width: 100%;
  justify-content: center;
}

.footer__map {
  margin: var(--mb-2) 0;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--border-color);
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

.footer__bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--mb-1);
  text-align: center;
  color: #000000;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1200px) {
  .container {
    margin-left: var(--mb-2);
    margin-right: var(--mb-2);
  }
}

@media screen and (max-width: 968px) {
  .container {
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--background-section);
    padding: 6rem 2rem 2rem;
    transition: var(--transition);
    border-left: 1px solid var(--border-color);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    row-gap: 2rem;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
  }

  .nav__toggle {
    display: block;
    font-size: 1.25rem;
    color: var(--text-color);
    cursor: pointer;
  }

  .nav__actions .btn {
    display: none;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .services__container {
    grid-template-columns: 1fr;
  }

  .service__card--featured {
    transform: none;
  }

  .features__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .testimonials__container {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .hero__buttons {
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .features__container {
    grid-template-columns: 1fr;
  }

  .gallery__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .footer__hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

@media screen and (max-width: 480px) {
  .gallery__container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery__item {
    aspect-ratio: 4/5;
  }
}

/* ===== SCROLL UP ===== */
html {
  scroll-behavior: smooth;
}

.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-tooltip);
  transition: var(--transition);
  text-decoration: none;
}

.scrollup:hover {
  transform: translateY(-0.25rem);
}

.scrollup__icon {
  font-size: 1.25rem;
  color: var(--background-dark);
}

.show-scroll {
  bottom: 5rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOADING ===== */
.loading {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay animations */
.loading:nth-child(1) { animation-delay: 0.1s; }
.loading:nth-child(2) { animation-delay: 0.2s; }
.loading:nth-child(3) { animation-delay: 0.3s; }
.loading:nth-child(4) { animation-delay: 0.4s; }
