/* ============================================
   BAGUIO COLLEGE OF TECHNOLOGY - DESIGN SYSTEM
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --red-primary: #C8102E;
  --red-dark: #9B0A20;
  --red-light: #E8364F;
  --red-glow: rgba(200, 16, 46, 0.25);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #ECEEF1;
  --medium-gray: #B0B5BD;
  --dark-gray: #3A3F47;
  --charcoal: #23272D;
  --black: #111318;

  /* Metallic Accents */
  --metallic-light: #D4D7DC;
  --metallic-mid: #9EA3AB;
  --metallic-dark: #6B7280;

  /* Functional */
  --success: #16A34A;
  --info: #2563EB;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --gap: 2rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --shadow-red: 0 4px 20px rgba(200, 16, 46, 0.3);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Utility Classes ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--red-primary);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--metallic-dark);
  max-width: 600px;
  margin: 1.25rem auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--red-primary);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 16, 46, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

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

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

/* ---------- Geometric Background Pattern ---------- */
.geo-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.04;
}

.geo-pattern::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 49px, var(--metallic-dark) 49px, var(--metallic-dark) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, var(--metallic-dark) 49px, var(--metallic-dark) 50px);
}

/* Preloader hidden */
#preloader {
  display: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 100%;
  padding: 0 1.25rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.logo-wrapper img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .institution-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-text .institution-abbr {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--red-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.main-nav a {
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--dark-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--red-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.main-nav a:hover {
  color: var(--red-primary);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  background: var(--red-primary);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-left: 0.5rem;
  font-weight: 600;
}

.main-nav .nav-cta::after { display: none; }

.main-nav .nav-cta:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 19, 24, 0.82) 0%,
    rgba(200, 16, 46, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1.75rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;

}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;

}

.hero h1 span {
  display: block;
  color: var(--red-light);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;

}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;

}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;

}

.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
}



/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--charcoal);
  position: relative;
  z-index: 3;
}

.stats-bar .geo-pattern { opacity: 0.03; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition-normal);
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
  background: rgba(200, 16, 46, 0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--metallic-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: var(--section-padding);
  position: relative;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 120px;
  height: 120px;
  border: 4px solid var(--red-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: var(--red-primary);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.15;
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.about-content h2 span {
  color: var(--red-primary);
}

.about-content .about-tagline {
  font-family: var(--font-heading);
  color: var(--red-primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--metallic-dark);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.about-feature:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--red-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.about-feature h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.about-feature span {
  font-size: 0.8rem;
  color: var(--metallic-dark);
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs-section {
  padding: var(--section-padding);
  background: var(--off-white);
  position: relative;
}

.programs-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.7rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  border: 2px solid var(--light-gray);
  background: var(--white);
  color: var(--dark-gray);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  border-color: var(--red-primary);
  background: var(--red-primary);
  color: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
}

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

.program-card-icon {
  padding: 2rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.program-icon-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.program-icon-circle svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.program-card-content {
  padding: 0 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-card-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.program-card-content p {
  font-size: 0.88rem;
  color: var(--metallic-dark);
  flex: 1;
}

.program-card-content .program-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--red-primary);
  background: rgba(200, 16, 46, 0.08);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
}

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

.news-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--light-gray);
  background: var(--white);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.news-card-image {
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-card-image img {
  transform: scale(1.08);
}

.news-card-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red-primary);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.news-card-body p {
  font-size: 0.88rem;
  color: var(--metallic-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.news-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  transition: gap var(--transition-fast);
}

.news-card-body .read-more:hover {
  gap: 0.75rem;
}

.news-card-body .read-more svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   WHY BCT SECTION
   ============================================ */
.why-section {
  padding: var(--section-padding);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.why-section .geo-pattern { opacity: 0.03; }

.why-section .section-header h2 {
  color: var(--white);
}

.why-section .section-header p {
  color: var(--metallic-mid);
}

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

.why-card {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-primary), var(--red-light));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.why-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--metallic-mid);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section .geo-pattern { opacity: 0.06; }

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  margin: 0 auto 2rem;
}

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

.cta-buttons .btn-white {
  background: var(--white);
  color: var(--red-primary);
  font-weight: 700;
}

.cta-buttons .btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  color: var(--metallic-mid);
  padding: 4rem 0 0;
}

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

.footer-brand .logo-wrapper {
  margin-bottom: 1.25rem;
}

.footer-brand .logo-wrapper img {
  height: 48px;
}

.footer-brand .logo-text .institution-name {
  color: var(--white);
}

.footer-brand .logo-text .institution-abbr {
  color: var(--red-light);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--metallic-dark);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  color: var(--metallic-mid);
}

.footer-social a:hover svg {
  color: var(--white);
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links ul li {
  margin-bottom: 0.65rem;
}

.footer-links ul li a {
  font-size: 0.88rem;
  color: var(--metallic-dark);
  transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--red-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--red-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: var(--metallic-dark);
  line-height: 1.5;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--metallic-dark);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--metallic-dark);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--red-light);
}

/* Developer Credit */
.developer-credit {
  font-size: 0.8rem;
  color: var(--metallic-dark);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.developer-credit::before {
  content: '⟨/⟩';
  font-size: 0.7rem;
  color: var(--red-primary);
  font-weight: 700;
}

.developer-name {
  color: var(--metallic-mid);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.developer-name:hover {
  color: var(--red-light);
}

/* Scroll animations disabled — all elements visible immediately */
.reveal,
.reveal-left,
.reveal-right,
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--red-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .about-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

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

  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform var(--transition-normal);
    border-top: 1px solid var(--light-gray);
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .main-nav .nav-cta {
    text-align: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .hero h1 { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.05rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper img { height: 320px; }
  .about-image-wrapper::before,
  .about-image-wrapper::after { display: none; }

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

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

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

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

  .section-header h2 { font-size: 2rem; }
  .cta-content h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

 / *   C a r r d   W a t e r m a r k   * / 
 . c a r r d - w a t e r m a r k   { 
     p a d d i n g :   2 r e m   0 ; 
     t e x t - a l i g n :   c e n t e r ; 
     b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
 } 
 
 . c a r r d - w a t e r m a r k   a   { 
     f o n t - s i z e :   0 . 8 5 r e m ; 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     f o n t - f a m i l y :   v a r ( - - f o n t - b o d y ) ; 
     t r a n s i t i o n :   c o l o r   v a r ( - - t r a n s i t i o n - f a s t ) ; 
 } 
 
 . c a r r d - w a t e r m a r k   a : h o v e r   { 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ; 
 }  
 