/* ════════════════════════════════════════
   WEB COMPUTER TECHNICAL RESEARCH INSTITUTE
   Style Sheet — Black | Red | Yellow Theme
   ════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────── */
:root {
  --red:        #e01e27;
  --red-dark:   #b01319;
  --red-light:  #ff3a42;
  --yellow:     #f5c518;
  --yellow-dark:#d4a800;
  --black:      #0a0a0a;
  --dark-bg:    #111114;
  --dark-card:  #1a1a1f;
  --dark-card2: #222229;
  --border:     rgba(255,255,255,0.07);
  --text-main:  #f0f0f0;
  --text-muted: #a0a0b0;
  --text-dim:   #6b6b80;
  --white:      #ffffff;
  --shadow-red: 0 0 30px rgba(224,30,39,0.3);
  --shadow-yellow: 0 0 30px rgba(245,197,24,0.25);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Outfit', sans-serif;
  background-color: var(--black);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── Utilities ───────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 90px 0; }
.dark-section { background: var(--dark-bg); }

.text-red { color: var(--red); }
.text-yellow { color: var(--yellow); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(245,197,24,0.12);
  color: var(--yellow);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.red-badge {
  background: rgba(224,30,39,0.12);
  color: var(--red-light);
  border-color: rgba(224,30,39,0.3);
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(224,30,39,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224,30,39,0.5);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1abe5a 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.btn-call {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(245,197,24,0.4);
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.5);
}

.btn-outline-red {
  background: transparent;
  color: var(--red-light);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.full-btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366, #1abe5a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,0.7);
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark-card);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid var(--border);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 50px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-red);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-main {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.06em;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 0.45rem 1.2rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.3rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224,30,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,30,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(224,30,39,0.12) 0%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 4rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.35);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.title-top {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white) 0%, var(--red-light) 40%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-main);
}
.trust-badge i { color: var(--yellow); }
.trust-badge strong { color: var(--yellow); }
.trust-sep { color: var(--text-dim); margin: 0 0.25rem; }

.hero-courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hc-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
  cursor: default;
}
.hc-pill:hover {
  background: rgba(224,30,39,0.15);
  border-color: rgba(224,30,39,0.4);
  color: var(--white);
  transform: translateY(-2px);
}
.hc-pill i { color: var(--red-light); font-size: 0.75rem; }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeInUp 0.7s ease 0.5s both;
}

/* Hero Visual (Code Screen) */
.hero-visual {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}
.hero-screen {
  width: 360px;
  background: rgba(26,26,31,0.8);
  border: 1px solid rgba(224,30,39,0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 40px rgba(224,30,39,0.1);
  overflow: hidden;
  animation: screenFloat 4s ease-in-out infinite;
}
@keyframes screenFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-15px) rotate(-1deg); }
}
.screen-bar {
  display: flex;
  gap: 6px;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}
.screen-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.screen-bar span:nth-child(1) { background: #ff5f57; }
.screen-bar span:nth-child(2) { background: #febc2e; }
.screen-bar span:nth-child(3) { background: #28c840; }

.screen-inner { padding: 1.25rem 1.5rem; }
.screen-code { font-family: 'Courier New', monospace; font-size: 0.82rem; line-height: 1.9; }
.code-line { white-space: nowrap; }
.indent { padding-left: 1.5rem; }
.c-red    { color: #ff6b7a; }
.c-yellow { color: var(--yellow); }
.c-green  { color: #7be89b; }
.code-cursor {
  color: var(--red-light);
  animation: blink 1s step-end infinite;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-8px); }
}

/* Fade-in utilities */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   TICKER STRIP
══════════════════════════════════════ */
.ticker-wrap {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  overflow: hidden;
  padding: 0.8rem 0;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
}
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, rgba(224,30,39,0.08), rgba(26,26,31,0.9));
  border: 1px solid rgba(224,30,39,0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.about-img-icon {
  display: flex;
  gap: 1.5rem;
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
}
.about-img-icon i:nth-child(2) { color: rgba(224,30,39,0.3); transform: translateY(-1rem); }
.about-img-icon i:nth-child(3) { color: rgba(245,197,24,0.2); }

.about-stat-card {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: var(--transition);
}
.about-stat-card:hover { transform: translateY(-4px); }
.about-stat-card:nth-child(1) { top: -1rem; left: -1.5rem; border-top: 3px solid var(--red); }
.about-stat-card.card2 { bottom: 3rem; right: -1.5rem; border-top: 3px solid var(--yellow); }
.about-stat-card.card3 { bottom: -1rem; left: 1.5rem; border-top: 3px solid var(--red); }

.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red-light), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.15rem;
}

.about-content .section-badge { margin-bottom: 0.75rem; }

.about-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}
.about-desc strong { color: var(--yellow); }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.feature-list i {
  color: var(--red-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   COURSES SECTION
══════════════════════════════════════ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.course-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224,30,39,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.course-card:hover {
  border-color: rgba(224,30,39,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(224,30,39,0.08);
}
.course-card:hover::before { opacity: 1; }

.course-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.red-icon {
  background: rgba(224,30,39,0.15);
  color: var(--red-light);
  border: 1px solid rgba(224,30,39,0.25);
}
.yellow-icon {
  background: rgba(245,197,24,0.12);
  color: var(--yellow);
  border: 1px solid rgba(245,197,24,0.25);
}
.course-card:hover .red-icon {
  background: rgba(224,30,39,0.25);
  box-shadow: var(--shadow-red);
}
.course-card:hover .yellow-icon {
  background: rgba(245,197,24,0.2);
  box-shadow: var(--shadow-yellow);
}

.course-ribbon {
  position: absolute;
  top: 1rem;
  right: -1.8rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.22rem 2rem;
  transform: rotate(40deg);
  transform-origin: top right;
}

.course-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.course-full {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.course-topics {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.course-topics li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.course-topics li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--red-light);
}

.course-btn {
  display: inline-block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--red-light);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.course-btn:hover {
  border-bottom-color: var(--red-light);
  color: var(--red);
}

/* ══════════════════════════════════════
   PROGRAMS SECTION
══════════════════════════════════════ */
.programs { background: var(--black); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.prog-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.prog-card:hover {
  border-color: rgba(224,30,39,0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}
.prog-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.prog-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}
.prog-card:hover .prog-icon {
  transform: scale(1.08) rotate(-3deg);
}
.prog-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.prog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stats Bar */
.stats-bar {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}
.stat-big {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red-light), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item span:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ══════════════════════════════════════
   ADMISSION FORM SECTION
══════════════════════════════════════ */
.admission-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.admission-info .section-title { margin-top: 0.5rem; }
.admission-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.quick-item:hover {
  border-color: rgba(224,30,39,0.35);
  background: rgba(224,30,39,0.06);
}
.qi-icon {
  width: 36px;
  height: 36px;
  background: rgba(224,30,39,0.15);
  color: var(--red-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.quick-item div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.quick-item span {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.quick-item strong {
  font-size: 0.88rem;
  color: var(--text-main);
}

/* Form Card */
.form-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border-top: 3px solid var(--red);
}

.admission-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.02em;
}
.form-group label span { color: var(--red-light); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-group select option {
  background: var(--dark-card2);
  color: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(224,30,39,0.06);
  box-shadow: 0 0 0 3px rgba(224,30,39,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.success-icon {
  font-size: 3rem;
  color: #25D366;
  margin-bottom: 1rem;
}
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--text-muted); }

/* ══════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════ */
.reviews { background: var(--black); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
}

.rating-block { text-align: center; }
.rating-logo {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.google-logo { color: #4285F4; }
.google-logo i { color: #DB4437; }
.jd-logo { color: #fd7300; }

.rating-score {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.rating-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 0.4rem; }
.rating-count { font-size: 0.82rem; color: var(--text-muted); }

.rating-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

.badge-48 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, rgba(224,30,39,0.12), rgba(245,197,24,0.08));
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: var(--radius-lg);
}
.badge-48 i {
  font-size: 2rem;
  color: var(--yellow);
}
.badge-48 span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(224,30,39,0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.featured-card {
  border-color: rgba(245,197,24,0.25);
  background: linear-gradient(135deg, var(--dark-card) 0%, rgba(245,197,24,0.03) 100%);
}
.featured-card:hover { border-color: rgba(245,197,24,0.5); }

.tc-stars { color: var(--yellow); font-size: 0.85rem; margin-bottom: 0.9rem; }
.tc-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.tc-text::before { content: '"'; color: var(--red-light); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-right: 0.2rem; }
.tc-text::after  { content: '"'; color: var(--red-light); font-size: 1.5rem; line-height: 0; vertical-align: -0.4rem; margin-left: 0.2rem; }

.tc-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
}
.yellow-av { background: linear-gradient(135deg, var(--yellow), var(--yellow-dark)); color: var(--black); }
.tc-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
}
.tc-author span {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.tc-google {
  font-size: 0.72rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
}
.tc-google i { color: #4285F4; margin-right: 0.3rem; }

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(224,30,39,0.3);
  transform: translateX(4px);
}
.cc-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}
.cc-info h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.cc-info p, .cc-info a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.cc-info a {
  display: block;
  transition: var(--transition);
}
.cc-info a:hover { color: var(--red-light); }
.hours-open {
  color: #25D366;
  font-weight: 600;
}

.contact-action-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.map-container iframe {
  display: block;
  filter: brightness(0.8) saturate(0.7) contrast(1.1);
  border-radius: var(--radius-xl);
}
.map-overlay-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #070709;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 320px;
}
.footer-rating {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fr-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.fr-item i { color: var(--yellow); }

.footer-links h4,
.footer-courses h4,
.footer-contact h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.footer-links ul,
.footer-courses ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a,
.footer-courses a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-block;
}
.footer-links a:hover,
.footer-courses a:hover {
  color: var(--red-light);
  transform: translateX(3px);
}

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.fc-item i {
  color: var(--red-light);
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.fc-item a {
  color: var(--text-muted);
  transition: var(--transition);
}
.fc-item a:hover { color: var(--red-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-seo { font-size: 0.72rem !important; color: var(--text-dim) !important; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame { min-height: 280px; order: -1; }
  .about-stat-card.card2 { right: 0; }
  
  .admission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.2rem;
    padding: 0.7rem 2rem;
    width: 100%;
    text-align: center;
  }
  .nav-links .nav-cta { margin: 0.5rem 1rem 0; }
  .hamburger { display: flex; z-index: 1001; }
  
  .hero-content { padding: 3rem 1.5rem 5rem; }
  .title-top { font-size: clamp(2.5rem, 12vw, 4rem); }
  
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  
  .courses-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  
  .rating-summary {
    flex-direction: column;
    gap: 1.5rem;
  }
  .rating-divider { width: 80px; height: 1px; }
  
  .stats-bar { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 80px; height: 1px; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-badge { font-size: 0.7rem; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }
  .trust-badge { justify-content: center; }
  .form-card { padding: 1.5rem; }
  .logo-sub { display: none; }
}
