/* ===== VARIABLES ===== */
:root {
  /* Colors - Bomibra Brand */
  --primary-color: #4a6741;
  --primary-dark: #3a5331;
  --primary-light: #6b9059;
  --secondary-color: #d4af37;
  --accent-color: #8b7e3a;

  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-white: #ffffff;

  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #2a3a2a;
  --bg-gradient: linear-gradient(135deg, #4a6741 0%, #d4af37 100%);

  --border-color: #e5e5e5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-base: 16px;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index */
  --z-fixed: 100;
  --z-modal: 1000;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

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

.section {
  padding: var(--spacing-xl) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section__header--light {
  color: var(--text-white);
}

.section__subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.section__header--light .section__subtitle {
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.section__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.section__header--light .section__title {
  color: var(--text-white);
}

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

.section__header--light .section__description {
  color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 103, 65, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.hero .btn-outline:hover {
  background: var(--text-white);
  border-color: var(--text-white);
  color: var(--primary-color);
}

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

/* Highlight */
.highlight {
  color: var(--primary-color);
  position: relative;
}

/* ===== HEADER/NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: var(--z-fixed);
  transition: var(--transition-base);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.nav__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo-image {
  height: 45px;
  width: auto;
  display: block;
}

.logo-text {
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition-base);
}

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

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

.nav__toggle {
  display: none;
  cursor: pointer;
  color: var(--text-dark);
  align-items: center;
  justify-content: center;
}

.nav__close {
  display: none;
  cursor: pointer;
  color: var(--text-dark);
  align-items: center;
  justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
  padding-top: 80px;
  z-index: 1;
}

.hero__banner {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 450px;
  overflow: hidden;
  z-index: -1;
}

.banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 103, 65, 0.85) 0%,
    rgba(212, 175, 55, 0.75) 100%
  );
  z-index: 1;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 900px;
  margin-top: -100px;
}

.hero__title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__description {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

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

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  width: 100%;
  max-width: 900px;
  margin-top: var(--spacing-md);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-md);
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition-base);
  border: 2px solid var(--primary-light);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(74, 103, 65, 0.25);
  border-color: var(--primary-color);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.938rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.875rem;
  animation: bounce 2s infinite;
}

.scroll-down svg {
  color: var(--primary-color);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Fade in animations */
.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.fade-in-delay {
  animation: fadeIn 1s ease 0.3s forwards;
  opacity: 0;
}

.fade-in-delay-2 {
  animation: fadeIn 1s ease 0.6s forwards;
  opacity: 0;
}

.fade-in-delay-3 {
  animation: fadeIn 1s ease 0.9s forwards;
  opacity: 0;
}

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

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--bg-white);
  position: relative;
  z-index: 10;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__experience {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: var(--bg-white);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 3px solid var(--primary-color);
}

.experience-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.experience-text {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.about__content {
  padding: 0;
}

.about__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.about__description {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--text-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.938rem;
  color: var(--text-light);
}

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

.services__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.service-card {
  background: var(--bg-white);
  padding: var(--spacing-md);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

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

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  transition: var(--transition-base);
}

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

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.service-description {
  font-size: 0.938rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.938rem;
}

.service-link:hover {
  gap: 0.75rem;
}

.service-link svg {
  transition: var(--transition-fast);
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements {
  padding: var(--spacing-xl) 0;
}

.achievements .container {
  padding-bottom: 4rem;
}

.achievements__bg {
  background: var(--bg-gradient);
  position: relative;
  overflow: hidden;
}

.achievements__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%),
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 1;
}

.achievements__bg::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.achievements__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.achievement-item {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.achievement-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.8s ease;
  pointer-events: none;
}

.achievement-item:hover::before {
  left: 100%;
}

.achievement-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.achievement-icon {
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: center;
  opacity: 0.95;
  transition: var(--transition-base);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.achievement-item:hover .achievement-icon {
  opacity: 1;
  transform: scale(1.15);
  animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1.15);
  }
  50% {
    transform: scale(1.2);
  }
}

.achievement-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.achievement-number::after {
  content: '+';
  font-size: 2.5rem;
  margin-left: 0.25rem;
  opacity: 0.9;
}

.achievement-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.875rem;
}

/* ===== PARTNERS SECTION ===== */
.partners__container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-md);
  align-items: center;
}

.partner-logo {
  padding: var(--spacing-sm);
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  overflow: hidden;
}

.partner-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-base);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

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

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-lg);
  align-items: start;
}

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

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: var(--text-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.938rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact__form {
  background: var(--bg-white);
  padding: var(--spacing-md);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-base);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--spacing-md);
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}

.footer__description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.footer__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-white);
}

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

.footer__list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.938rem;
  transition: var(--transition-base);
}

.footer__list a:hover {
  color: var(--primary-light);
  padding-left: 0.5rem;
}

.footer__bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 50;
}

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

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  .section__title {
    font-size: 2rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__banner {
    height: 500px;
  }

  .services__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .section__title {
    font-size: 1.75rem;
  }

  /* Mobile Navigation */
  .nav {
    position: relative;
  }

  .nav__toggle {
    position: relative;
    z-index: 101;
    order: -1;
  }

  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }

  .logo-image {
    height: 40px;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-white);
    padding: var(--spacing-lg) var(--spacing-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
  }

  .nav__menu.show-menu {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .nav__link {
    font-size: 1.125rem;
  }

  .nav__toggle,
  .nav__close {
    display: flex;
    font-size: 1.5rem;
  }

  .nav__close {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    padding: 4rem 0 3rem;
  }

  .hero__banner {
    top: 70px;
    height: calc(100vh - 70px);
    min-height: 600px;
  }

  .hero__content {
    margin-top: 0;
    padding-top: 3rem;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__description {
    font-size: 1.1rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

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

  /* About */
  .about__container {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about__image {
    order: -1;
    height: 350px;
  }

  .about__experience {
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 1.5rem 2rem;
  }

  .about__title {
    font-size: 1.75rem;
  }

  /* Services */
  .services__container {
    grid-template-columns: 1fr;
  }

  /* Achievements */
  .achievements__container {
    grid-template-columns: 1fr;
  }

  /* Partners */
  .partners__container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact__container {
    grid-template-columns: 1fr;
  }

  .contact__form {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__links {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .hero__title {
    font-size: 1.875rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .stat-number,
  .achievement-number {
    font-size: 2.5rem;
  }

  .partners__container {
    grid-template-columns: 1fr;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}