/* ===== ESCUELA PÚBLICA - CSS PRINCIPAL ===== */

/* ===== RESET CSS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== VARIABLES CSS ===== */
:root {
  --verde-principal: #2e7d32;
  --verde-secundario: #4caf50;
  --verde-claro: #c8e6c9;
  --amarillo-principal: #ffc107;
  --amarillo-secundario: #ffd54f;
  --amarillo-claro: #fff9c4;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  --white: #ffffff;
  --bg-light: #f5f5f5;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --border-radius-small: 4px;
  --border-radius-large: 16px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xxl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--verde-principal);
  font-size: var(--font-size-3xl);
}

.section-subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

/* ===== BOTONES ===== */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-medium);
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: var(--font-size-base);
}

.btn-primary {
  background-color: var(--verde-principal);
  color: var(--white);
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
  background-color: var(--amarillo-principal);
  color: var(--text-primary);
  font-weight: 500;
}

.btn-secondary:hover {
  background-color: #ffa000;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--verde-principal);
  border-color: var(--verde-principal);
}

.btn-outline:hover {
  background-color: var(--verde-principal);
  color: var(--white);
}

.btn-large {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-lg);
  border-radius: var(--border-radius-large);
}

/* ===== HEADER MEJORADO ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
      var(--verde-principal) 0%,
      var(--amarillo-principal) 50%,
      var(--verde-secundario) 100%);
  box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.header-logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius);
}

.logo-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(255, 193, 7, 0.05));
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(46, 125, 50, 0.3));
  transition: all 0.3s ease;
}

.logo-link:hover .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.4));
}

.school-name {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  color: var(--verde-principal);
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--verde-principal), var(--verde-secundario), var(--amarillo-principal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.school-tagline {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin: 0;
  font-weight: var(--font-weight-medium);
  opacity: 0.85;
}

.header-contact {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(255, 193, 7, 0.08));
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(46, 125, 50, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.contact-item:hover::before {
  left: 100%;
}

.contact-item:hover {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.12), rgba(255, 193, 7, 0.12));
  border-color: var(--verde-claro);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.contact-icon {
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--verde-claro), var(--amarillo-claro));
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: var(--font-size-xs);
  color: var(--text-light);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: var(--verde-principal);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
  color: var(--verde-secundario);
}

.header-cta {
  flex-shrink: 0;
}

.header-cta .btn {
  position: relative;
  overflow: hidden;
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-cta .btn::before {
  content: '🎓';
  margin-right: 8px;
  font-size: 1.1em;
}

.header-cta .btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 193, 7, 0.4);
}

.header-cta .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.header-cta .btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Navigation */
.main-nav {
  width: 100%;
  margin-top: var(--spacing-sm);
  border-top: 1px solid rgba(46, 125, 50, 0.1);
  padding-top: var(--spacing-sm);
}

.nav-menu {
  display: flex;
  gap: var(--spacing-xs);
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde-principal), var(--amarillo-principal));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 3px;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link:hover {
  color: var(--verde-principal);
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(255, 193, 7, 0.05));
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--verde-principal);
  font-weight: var(--font-weight-bold);
}

.contact-label {
  font-size: var(--font-size-xs);
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
}

.contact-value:hover {
  color: var(--verde-principal);
}

.header-cta .btn-secondary {
  background: linear-gradient(135deg, var(--amarillo-principal), var(--amarillo-secundario));
  color: var(--text-primary);
  font-weight: var(--font-weight-bold);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.header-cta .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 193, 7, 0.5);
}

/* ===== NAVEGACIÓN MEJORADA ===== */
.main-nav {
  width: 100%;
  margin-top: var(--spacing-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde-principal), var(--amarillo-principal));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--verde-principal);
  background-color: rgba(46, 125, 50, 0.05);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link.active {
  color: var(--verde-principal);
  font-weight: var(--font-weight-bold);
  background-color: var(--verde-claro);
}

.nav-link.active::after {
  width: 80%;
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
  background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
}

.welcome-intro {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.highlight-green {
  color: var(--verde-principal);
}

.welcome-description {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  color: var(--text-secondary);
}

/* ===== ESTADÍSTICAS ===== */
.welcome-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--verde-principal);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.value-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  border-left: 4px solid var(--verde-principal);
  text-align: left;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--verde-claro);
  border-left-color: var(--verde-principal);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--verde-claro), var(--amarillo-claro));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
}

.value-icon .icon {
  font-size: 1.8rem;
}

.value-title {
  color: var(--verde-principal);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-xl);
}

.value-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
  background: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

.program-card {
  background: var(--white);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  text-align: left;
  padding: var(--spacing-xl);
  border-left: 4px solid var(--amarillo-principal);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--verde-claro);
  border-left-color: var(--amarillo-principal);
}

.program-header {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.program-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--verde-claro), var(--amarillo-claro));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-icon .icon {
  font-size: 1.5rem;
}

.program-title {
  color: var(--verde-principal);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-xl);
}

.program-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== TESTIMONIALS MEJORADOS ===== */
.testimonials-section {
  background: linear-gradient(180deg, #f8fdf8 0%, #e8f5e9 50%, #c8e6c9 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--verde-principal), var(--amarillo-principal), var(--verde-secundario));
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  padding: var(--spacing-lg);
}

.testimonial-content {
  background: var(--white);
  padding: var(--spacing-xxl);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(46, 125, 50, 0.15);
  text-align: center;
  position: relative;
  border: 3px solid var(--verde-claro);
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--amarillo-principal);
  opacity: 0.4;
  line-height: 1;
}

.quote-icon {
  display: none;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  font-style: italic;
  position: relative;
  padding: var(--spacing-lg) var(--spacing-lg) 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-lg);
  border-top: 2px solid var(--bg-light);
}

.testimonial-author::before {
  content: '👩‍👧';
  font-size: 3.5rem;
  margin-bottom: var(--spacing-xs);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.author-name {
  font-size: 1.25rem;
  color: var(--verde-principal);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0;
}

.author-role {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
}

.author-rating {
  color: var(--amarillo-principal);
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

/* ===== FOOTER MEJORADO ===== */
.footer {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #1b5e20 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--amarillo-principal), var(--verde-claro), var(--amarillo-principal));
}

.footer-top {
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  font-size: 3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin: 0;
  color: white;
}

.footer-logo p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.footer-description {
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--amarillo-principal);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--amarillo-principal);
  transform: translateX(5px);
}

.contact-info-footer p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.contact-icon-small {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-footer a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.contact-info-footer a:hover {
  color: var(--amarillo-principal);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-credits {
  margin-top: 0.5rem !important;
  opacity: 0.7 !important;
  font-size: 0.85rem !important;
}

/* ===== UTILIDADES RESPONSIVE ===== */
.d-lg-flex,
.d-lg-block {
  display: none;
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-block {
    display: block !important;
  }
}

/* ===== MEDIA QUERIES PARA PANTALLAS GRANDES ===== */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }

  .header-content {
    padding: var(--spacing-lg) 0;
  }

  .logo-img {
    width: 70px;
    height: 70px;
  }

  .school-name {
    font-size: 1.8rem;
  }

  .header-contact {
    gap: var(--spacing-lg);
  }

  .contact-item {
    padding: var(--spacing-md) var(--spacing-lg);
  }

  .header-cta .btn {
    padding: 14px 28px;
    font-size: 1.05rem;
  }

  .nav-menu {
    gap: var(--spacing-sm);
  }

  .nav-link {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.05rem;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }

  .header-content {
    gap: var(--spacing-xl);
  }

  .logo-img {
    width: 80px;
    height: 80px;
  }

  .school-name {
    font-size: 2rem;
  }

  .contact-item {
    padding: var(--spacing-md) var(--spacing-xl);
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }

  .header-cta .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

/* ===== MEDIA QUERIES RESPONSIVE ===== */
@media (max-width: 991px) {
  .welcome-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .header-contact {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
    padding-right: 0;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .welcome-stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-links a {
    justify-content: center;
  }

  .contact-info-footer p {
    justify-content: center;
  }
}