/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary-color: #1E88E5;
  --primary-light: #42A5F5;
  --primary-dark: #1565C0;
  --secondary-color: #37474F;
  --accent-color: #FF6B35;
  --text-color: #37474F;
  --text-light: #78909C;
  --white-color: #FFFFFF;
  --light-gray: #F5F7FA;
  --border-color: #E1E8ED;
  --shadow-light: rgba(30, 136, 229, 0.1);
  --shadow-medium: rgba(30, 136, 229, 0.15);
  --shadow-dark: rgba(55, 71, 79, 0.1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #455A64 100%);
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  --h1-font-size: clamp(2rem, 5vw, 3.5rem);
  --h2-font-size: clamp(1.75rem, 4vw, 2.5rem);
  --h3-font-size: clamp(1.25rem, 3vw, 1.75rem);
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --header-height: 4.5rem;
  --section-padding: 5rem 0;
  --container-margin: 1.5rem;
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  
  /* Border Radius */
  --border-radius-sm: 0.5rem;
  --border-radius-md: 1rem;
  --border-radius-lg: 1.5rem;
  --border-radius-xl: 2rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--font-weight-regular);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white-color);
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
  outline: none;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-margin);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.section__header {
  text-align: center;
  margin-bottom: var(--mb-3);
}

.section__subtitle {
  display: inline-block;
  font-size: var(--small-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--mb-0-5);
  position: relative;
}

.section__subtitle::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
}

.section__description {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  font-weight: var(--font-weight-medium);
  text-align: center;
  transition: all var(--transition-medium);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::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 var(--transition-slow);
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white-color);
  box-shadow: 0 4px 15px var(--shadow-light);
}

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

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-medium);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo .logo-img {
  height: 2.5rem;
  width: auto;
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-medium);
}

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

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.25rem;
  color: var(--text-color);
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: calc(var(--header-height) + 2rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23E1E8ED" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.hero__container {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1);
  line-height: 1.1;
}

.hero__title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  color: var(--text-light);
  margin-bottom: var(--mb-2-5);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
}

.hero__img-wrapper {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-dark);
}

.hero__img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.hero__img-wrapper:hover .hero__img {
  transform: scale(1.05);
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--white-color);
}

.about__container {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.about__img-wrapper {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 30px var(--shadow-dark);
}

.about__img {
  width: 100%;
  height: auto;
  filter: grayscale(20%);
  transition: all var(--transition-slow);
}

.about__img-wrapper:hover .about__img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.about__experience {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: var(--white-color);
  padding: 1rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.about__experience-number {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.about__experience-text {
  font-size: var(--small-font-size);
  font-weight: var(--font-weight-medium);
}

.about__content .section__header {
  text-align: left;
  margin-bottom: var(--mb-2);
}

.about__description {
  color: var(--text-light);
  margin-bottom: var(--mb-2);
  line-height: 1.7;
}

.about__founder-title {
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
}

.about__credentials {
  margin-bottom: var(--mb-2-5);
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--mb-0-5);
  color: var(--text-light);
}

.credential i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-dark);
}

.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: var(--mb-0-25);
}

.stat__text {
  font-size: var(--small-font-size);
  color: var(--text-light);
  font-weight: var(--font-weight-medium);
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--light-gray);
}

.services__grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-3);
}

.service__card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 15px var(--shadow-dark);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

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

.service__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px var(--shadow-medium);
}

.service__card--featured {
  background: var(--gradient-primary);
  color: var(--white-color);
  transform: scale(1.05);
}

.service__card--featured .service__icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white-color);
}

.service__card--featured .service__description {
  color: rgba(255, 255, 255, 0.9);
}

.service__icon {
  width: 4rem;
  height: 4rem;
  background: var(--light-gray);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--mb-1-5);
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: all var(--transition-medium);
}

.service__card:hover .service__icon {
  background: var(--primary-color);
  color: var(--white-color);
  transform: rotateY(180deg);
}

.service__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
}

.service__description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--mb-1-5);
}

.service__link {
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-medium);
}

.service__link:hover {
  gap: 1rem;
}

/* ===== ERP SECTION ===== */
.erp {
  background: var(--white-color);
}

.erp__container {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 4rem;
}

.erp__content .section__header {
  text-align: left;
  margin-bottom: var(--mb-2);
}

.erp__description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--mb-3);
}

.erp__process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process__step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
}

.process__step:hover {
  background: var(--white-color);
  box-shadow: 0 8px 20px var(--shadow-dark);
  transform: translateX(10px);
}

.process__number {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.process__title {
  color: var(--text-color);
  margin-bottom: var(--mb-0-25);
}

.process__description {
  color: var(--text-light);
  font-size: var(--small-font-size);
}

.erp__segments-title {
  text-align: center;
  margin-bottom: var(--mb-2);
  color: var(--primary-color);
}

.segments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.segment__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
}

.segment__item:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.05);
}

.segment__item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color var(--transition-medium);
}

.segment__item:hover i {
  color: var(--white-color);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--light-gray);
}

.contact__container {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 3rem;
}

.contact__content .section__header {
  text-align: left;
  margin-bottom: var(--mb-2);
}

.contact__description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--mb-3);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white-color);
  border-radius: var(--border-radius-md);
  box-shadow: 0 5px 15px var(--shadow-dark);
  transition: all var(--transition-medium);
}

.contact__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-medium);
}

.contact__icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  color: var(--white-color);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact__title {
  color: var(--text-color);
  margin-bottom: var(--mb-0-25);
  font-size: var(--small-font-size);
  font-weight: var(--font-weight-semibold);
}

.contact__data {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
}

.contact__form-wrapper {
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__group {
  position: relative;
}

.form__input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: var(--normal-font-size);
  transition: all var(--transition-medium);
  background: var(--white-color);
}

.form__input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--shadow-light);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: var(--small-font-size);
  color: var(--primary-color);
  background: var(--white-color);
  padding: 0 0.5rem;
}

.form__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-light);
  font-size: var(--normal-font-size);
  transition: all var(--transition-medium);
  pointer-events: none;
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-secondary);
  color: var(--white-color);
  padding: 3rem 0 1rem;
}

.footer__content {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: var(--mb-2);
}

.footer__logo {
  height: 2.5rem;
  margin-bottom: var(--mb-1);
  filter: brightness(0) invert(1);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer__title {
  margin-bottom: var(--mb-1);
  font-size: var(--h3-font-size);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

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

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--mb-0-5);
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact-item i {
  color: var(--primary-light);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--small-font-size);
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background: #25D366;
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: var(--z-tooltip);
  transition: all var(--transition-medium);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
}

.scroll-up {
  position: fixed;
  bottom: 7rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px var(--shadow-light);
  z-index: var(--z-tooltip);
  transition: all var(--transition-medium);
  opacity: 0;
  visibility: hidden;
}

.scroll-up.show-scroll {
  opacity: 1;
  visibility: visible;
}

.scroll-up:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .hero__container,
  .about__container,
  .erp__container,
  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero__image,
  .about__image {
    order: -1;
  }
  
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .segments__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: right var(--transition-medium);
    padding: 2rem;
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav__link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
  
  .nav__toggle,
  .nav__close {
    display: block;
  }
  
  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .nav__actions .btn {
    display: none;
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero__buttons .btn {
    justify-content: center;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service__card--featured {
    transform: none;
  }
  
  .about__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .erp__process {
    gap: 1rem;
  }
  
  .process__step {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }
  
  .scroll-up {
    bottom: 5.5rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding-top: calc(var(--header-height) + 1rem);
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .section__title {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .service__card,
  .contact__form-wrapper {
    padding: 1.5rem;
  }
  
  .contact__item,
  .process__step {
    padding: 1rem;
  }
}

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

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

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

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-on-scroll.animate-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.animate-on-scroll.animate-right {
  animation: fadeInRight 0.8s ease forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: var(--mb-1); }
.mb-2 { margin-bottom: var(--mb-2); }
.mb-3 { margin-bottom: var(--mb-3); }

.hidden { display: none; }
.visible { display: block; }

.no-scroll { overflow: hidden; }
