/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --yellow: #ffdd58;
  --yellow-dark: #e6c400;
  --dark: #111111;
  --dark-2: #1e1e1e;
  --gray: #f5f5f3;
  --gray-2: #e8e8e4;
  --text: #333333;
  --text-light: #777777;
  --white: #ffffff;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 700; }
p { line-height: 1.75; color: var(--text-light); }

.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-top: 8px; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid var(--yellow);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,221,88,0.4);
}

.btn-primary-sm {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 6px;
  margin-top: 16px;
  transition: var(--transition);
}
.btn-primary-sm:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 8px;
  border: 2px solid var(--dark);
  margin-top: 16px;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--dark); color: var(--yellow); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 12px 0;
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .logo-text { color: var(--dark); }
.logo-accent { color: var(--yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { color: var(--yellow); }
.navbar.scrolled .nav-links a:hover { color: var(--yellow-dark); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--dark) !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--yellow-dark) !important; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  color: var(--text) !important;
  padding: 10px 16px !important;
  border-radius: 8px;
  font-size: 0.88rem !important;
}
.dropdown-menu li a:hover { background: var(--gray); color: var(--dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ═══════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.2));
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
}

.slide-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
  width: fit-content;
}

.slide-content h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active { background: var(--yellow); transform: scale(1.4); }

/* ═══════════════════════════════════════════
   WELCOME + STATS
═══════════════════════════════════════════ */
.welcome {
  padding: 100px 0;
  background: var(--white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.welcome-text h2 { margin: 10px 0 20px; color: var(--dark); }
.welcome-text h2 strong { color: var(--dark); }
.welcome-text p { margin-bottom: 14px; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border-bottom: 4px solid var(--yellow);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.stat-number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.stat-plus, .stat-unit {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow-dark);
}
.stat-card p {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════
   EQUIPO DIRECTIVO
═══════════════════════════════════════════ */
.team {
  padding: 80px 0 100px;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--yellow);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-img-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--gray-2);
  margin: 0 auto 24px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  /* El usuario pondrá la imagen aquí con un img o inline style */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  background-size: cover;
  background-position: center;
}

.team-info h4 {
  color: var(--dark);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.team-role {
  display: block;
  font-family: sans-serif;
  font-size: 1 rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.team-info ul {
  text-align: left;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.team-info ul li {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
}
.team-info ul li:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   SERVICIOS / ACORDEÓN
═══════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--dark);
}
.services .section-header h2 { color: var(--white); }
.services .section-tag { background: var(--yellow); }

.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.accordion-item {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.accordion-item:last-child { border-bottom: none; }

.accordion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  cursor: pointer;
  transition: var(--transition);
}
.accordion-item.active .accordion-header,
.accordion-header:hover { background: rgba(255,221,88,0.06); }

.acc-number {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
  min-width: 28px;
}
.accordion-header h3 {
  flex: 1;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}
.acc-arrow {
  font-size: 1.3rem;
  color: var(--yellow);
  transition: transform var(--transition);
}
.accordion-item.active .acc-arrow { transform: rotate(90deg); }

.accordion-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.accordion-item.active .accordion-body { max-height: 380px; }

.acc-img {
  background-size: cover;
  background-position: center;
  min-height: 280px;
}
.acc-text {
  padding: 36px;
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.acc-text p { color: rgba(255,255,255,0.7); line-height: 1.8; }

/* ═══════════════════════════════════════════
   CLIENTES
═══════════════════════════════════════════ */
.clients {
  padding: 80px 0;
  background: var(--gray);
  overflow: hidden;
}

.clients-track-wrapper {
  overflow: hidden;
  margin-top: 40px;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-track {
  display: flex;
  gap: 24px;
  animation: scrollClients 22s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }

@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  background: var(--white);
  border-radius: var(--radius);
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  /* REEMPLAZAR: cuando tengas logos reales, usa <img> en lugar de <span> */
}
.client-logo:hover { border-color: var(--yellow); transform: translateY(-4px); }
.client-logo span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
}
.client-logo span small {
  display: block;
  font-size: 0.6rem;
  color: #bbb;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   ¿POR QUÉ ELEGIRNOS?
═══════════════════════════════════════════ */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reason-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-2);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.reason-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.reason-card:hover { border-color: var(--yellow); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.reason-card:hover::before { transform: scaleX(1); }

.reason-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.reason-card h4 { color: var(--dark); margin-bottom: 12px; }
.reason-card p { font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   PROYECTOS
═══════════════════════════════════════════ */
.projects {
  padding: 100px 0;
  background: var(--gray);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px;
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.project-card.large {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.project-img {
  background-size: cover;
  background-position: center;
  height: 300px;
  transition: transform 0.6s ease;
}
.project-card.large .project-img { height: 100%; min-height: 300px; }
.project-card:hover .project-img { transform: scale(1.05); }

.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: white;
}
.project-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 8px;
}
.project-info h4 { color: var(--white); margin-bottom: 4px; }
.project-info p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

/* ═══════════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
}
.testimonials .section-header h2 { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--yellow); transform: translateY(-4px); }

.stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p {
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.author-logo-placeholder {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(255,221,88,0.12);
  border: 1px solid rgba(255,221,88,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--yellow);
  font-family: var(--font-head);
  flex-shrink: 0;
  /* REEMPLAZAR: usar <img> con URL de Supabase */
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════ */
.contact { }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 700px;
}

.contact-img {
  position: relative;
  background-size: cover;
  background-position: center;
}
.contact-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.45));
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.contact-img-overlay h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.contact-img-overlay > p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}
.contact-info-block p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.contact-form-wrapper {
  padding: 60px 52px;
  background: var(--white);
}
.contact-form-wrapper h2 { margin: 10px 0 32px; color: var(--dark); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--gray);
  border: 2px solid var(--gray-2);
  border-radius: 8px;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,221,88,0.15);
}
.form-group textarea { resize: vertical; }

.full-width { width: 100%; justify-content: center; text-align: center; border: none; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { font-size: 1.6rem; margin-bottom: 14px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 260px; }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-links a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-links a:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }

.footer-links h5,
.footer-contact h5 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.large { grid-column: 1 / -1; }
  .project-card.large .project-img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a { color: var(--dark) !important; }

  .welcome { padding: 72px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .team-grid { grid-template-columns: 1fr; }
  .team { padding: 60px 0; }

  .accordion-body { grid-template-columns: 1fr; }
  .accordion-item.active .accordion-body { max-height: 600px; }
  .acc-img { min-height: 200px; }

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

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

  .contact-grid { grid-template-columns: 1fr; }
  .contact-img { min-height: 320px; }
  .contact-form-wrapper { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .projects-grid { grid-template-columns: 1fr; }
  .project-card.large { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding-top: 48px; }
}

@media (max-width: 480px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .slide-content h1 { font-size: 2rem; }
}