/* ================================================================
   LOGICA TRAINING SCHOOL — COMPLETE STYLES (CLEANED)
   Colors: Navy #061D42 | Gold #D29D46 | White #F7F7F7
   ================================================================ */

/* ================================================================
   1. CSS VARIABLES
   ================================================================ */
:root {
  /* Primary Colors */
  --color-navy: #061D42;
  --color-navy-dark: #041430;
  --color-navy-light: #0A2D5E;
  
  --color-gold: #D29D46;
  --color-gold-light: #E0B060;
  --color-gold-dark: #B8883A;
  
  --color-white: #F7F7F7;
  --color-white-off: #F0F0F0;
  
  /* Text Colors */
  --color-text: #061D42;
  --color-text-light: #F7F7F7;
  --color-text-muted: #64748B;
  --color-text-footer: rgba(247, 247, 247, 0.7);
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #061D42 0%, #0A2D5E 50%, #0D3A7A 100%);
  --gradient-gold: linear-gradient(135deg, #D29D46 0%, #E0B060 100%);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Geist', sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px 0;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(6, 29, 66, 0.06);
  --shadow-md: 0 4px 20px rgba(6, 29, 66, 0.08);
  --shadow-lg: 0 12px 40px rgba(6, 29, 66, 0.12);
  --shadow-gold: 0 6px 24px rgba(210, 157, 70, 0.35);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50px;
  
  /* Transitions */
  --transition: 0.3s ease;
}


/* ================================================================
   2. RESET & BASE
   ================================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* ================================================================
   3. TYPOGRAPHY
   ================================================================ */
.display-md {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.display-md em {
  color: var(--color-gold);
  font-style: italic;
}

.body-lg {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.text-gold {
  color: var(--color-gold);
}

.label-gold {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.section-header {
  text-align: left;
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
}

.section-header .display-md {
  margin-bottom: 8px;
}

.section-header .body-lg {
  max-width: 600px;
}

.section-header.center .body-lg {
  margin-left: auto;
  margin-right: auto;
}


/* ================================================================
   4. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(247, 247, 247, 0.3);
}

.btn-white-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-white:hover {
  background: var(--color-white-off);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}


/* ================================================================
   5. HEADER - TOP BAR
   ================================================================ */
.top-bar {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--color-gold);
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-bar-social a {
  color: rgba(247, 247, 247, 0.6);
  font-size: 1.1rem;
  padding: 4px 8px;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}

.top-bar-social a:hover {
  color: var(--color-gold);
  transform: translateY(-2px) scale(1.15);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.top-bar-contact a {
  color: rgba(247, 247, 247, 0.8);
  transition: color var(--transition);
  font-size: 0.85rem;
}

.top-bar-contact a:hover {
  color: var(--color-gold);
}

.top-bar-divider {
  color: rgba(247, 247, 247, 0.15);
}

.top-bar-phone-new {
  color: var(--color-gold) !important;
  font-weight: 600;
}

.top-bar-phone-new:hover {
  color: var(--color-gold-light) !important;
}


/* ================================================================
   6. HEADER - MAIN NAV
   ================================================================ */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(6, 29, 66, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 54px;
  width: auto;
}

/* ================================================================
   DESKTOP NAVIGATION
   ================================================================ */

.nav-primary {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--color-navy);
  padding: 8px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  display: inline-block;
}

/* Gold underline animation */
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 60%;
}

.nav-link:hover {
  color: var(--color-gold);
  background: rgba(210, 157, 70, 0.06);
}

.nav-link.active {
  color: var(--color-gold);
  font-weight: 600;
}


/* ================================================================
   DROPDOWN
   ================================================================ */

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-top: 3px solid var(--color-gold);
  list-style: none;
  margin: 0;
  z-index: 100;
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--color-navy);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-dropdown-link:hover {
  padding-left: 28px;
  background: rgba(210, 157, 70, 0.08);
  color: var(--color-gold);
}


/* ================================================================
   NAV ACTIONS (Right Side)
   ================================================================ */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-navy);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: rgba(6, 29, 66, 0.06);
}


/* ================================================================
   MOBILE NAVIGATION
   ================================================================ */

.mobile-nav {
  display: none;
  background: var(--color-white);
  padding: 20px 24px 32px;
  box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--color-gold);
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: block;
  animation: slideIn 0.3s ease forwards;
}

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  color: var(--color-navy);
  font-weight: 500;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(6, 29, 66, 0.05);
  transition: all 0.2s ease;
  text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-gold);
  padding-left: 12px;
}

/* Mobile Dropdown */
.mobile-dropdown-wrapper {
  border-bottom: 1px solid rgba(6, 29, 66, 0.05);
}

.mobile-dropdown-toggle {
  padding: 12px 0;
  color: var(--color-navy);
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.mobile-dropdown-toggle:hover {
  color: var(--color-gold);
}

.mobile-dropdown-toggle .ph-caret-down {
  transition: transform 0.3s ease;
  color: var(--color-gold);
}

.mobile-dropdown-toggle.is-open .ph-caret-down {
  transform: rotate(180deg);
}

.mobile-dropdown {
  display: none;
  padding-left: 16px;
  border-left: 2px solid var(--color-gold);
  margin-bottom: 4px;
}

.mobile-dropdown.is-open {
  display: block;
}

.mobile-dropdown-link {
  display: block;
  padding: 10px 0;
  color: rgba(6, 29, 66, 0.75);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.mobile-dropdown-link:hover {
  color: var(--color-gold);
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.mobile-nav-buttons .btn {
  width: 100%;
  justify-content: center;
}


/* ================================================================
   KEYFRAMES
   ================================================================ */

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

@media (max-width: 992px) {
  .nav-primary {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-actions .btn-outline {
    display: none;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 42px;
  }

  .header-inner {
    padding: 8px 0;
  }

  .nav-actions .btn-gold {
    display: none;
  }

  .mobile-nav {
    padding: 16px 16px 24px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 36px;
  }
}


/* ================================================================
   8. FOOTER
   ================================================================ */
.site-footer {
  background: var(--color-navy);
  color: var(--color-text-footer);
  padding: 60px 0 20px;
  border-top: 4px solid var(--color-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-col__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-footer);
  max-width: 340px;
  margin-bottom: 20px;
}

.footer-contact-list {
  margin: 0 0 20px 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--color-text-footer);
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--color-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: var(--color-text-footer);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--color-gold);
}

.footer-phone {
  font-weight: 600;
  color: var(--color-gold) !important;
}

.footer-phone:hover {
  color: var(--color-gold-light) !important;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(247, 247, 247, 0.06);
  color: rgba(247, 247, 247, 0.6);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-4px) scale(1.1);
}

.footer-col__heading {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
}

.footer-col__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text-footer);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 6px;
}

.footer-admissions-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-footer);
  margin-bottom: 16px;
}

.footer-est {
  margin-top: 16px;
}

.est-badge {
  display: inline-block;
  background: rgba(210, 157, 70, 0.15);
  color: var(--color-gold);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(210, 157, 70, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(247, 247, 247, 0.08);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(247, 247, 247, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(247, 247, 247, 0.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--color-gold);
}


/* ================================================================
   9. HERO SECTION
   ================================================================ */
.hero {
  background: var(--gradient-hero);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://i.postimg.cc/65LPVkHk/slider2.webp') center/cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--color-white);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(210, 157, 70, 0.15);
  border: 1px solid rgba(210, 157, 70, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  display: inline-block;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--color-white);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-headline em {
  color: var(--color-gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(247, 247, 247, 0.8);
  max-width: 520px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.hero-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  transition: transform 0.6s ease;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.slider-btn {
  background: rgba(247, 247, 247, 0.1);
  border: 1px solid rgba(247, 247, 247, 0.15);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.2rem;
}

.slider-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
}

.slider-counter {
  color: rgba(247, 247, 247, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 50px;
  text-align: center;
}

.hero-announce {
  margin-top: 16px;
  padding: 12px 20px;
  background: rgba(210, 157, 70, 0.1);
  border: 1px solid rgba(210, 157, 70, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-announce strong {
  color: var(--color-gold);
  font-weight: 700;
}

.hero-announce span {
  color: rgba(247, 247, 247, 0.7);
  font-size: 0.9rem;
}


/* ================================================================
   10. MARQUEE
   ================================================================ */
.marquee-section {
  background: var(--color-white);
  padding: 16px 0;
  border-top: 1px solid rgba(6, 29, 66, 0.06);
  border-bottom: 1px solid rgba(6, 29, 66, 0.06);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee-scroll 25s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-navy);
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  display: inline-block;
}


/* ================================================================
   11. TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--color-white);
  padding: 40px 0;
  border-bottom: 1px solid rgba(6, 29, 66, 0.05);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.trust-num.animate {
  opacity: 1;
}

.trust-num::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
  margin: 6px auto 10px;
}

.trust-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-align: center;
}


/* ================================================================
   12. ABOUT LOGICA
   ================================================================ */
.about-logica-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.about-logica-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-logica-content .display-md {
  margin-bottom: 16px;
}

.about-logica-content .body-lg {
  margin-bottom: 16px;
}

.about-logica-content .btn {
  margin-top: 8px;
}

.about-logica-card {
  background: var(--color-navy);
  padding: 40px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  border-top: 4px solid var(--color-gold);
}

.about-logica-card__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-logica-point {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247, 247, 247, 0.06);
}

.about-logica-point:last-child {
  border-bottom: none;
}

.about-logica-point i {
  font-size: 1.5rem;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-logica-point strong {
  display: block;
  font-weight: 600;
  color: var(--color-white);
}

.about-logica-point span {
  font-size: 0.9rem;
  color: rgba(247, 247, 247, 0.7);
}


/* ================================================================
   13. COURSES
   ================================================================ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.course-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(6, 29, 66, 0.06);
}

.course-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 60px rgba(6, 29, 66, 0.12);
}

.course-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.course-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.course-card:hover .course-card__img-wrap img {
  transform: scale(1.05);
}

.course-card__category-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-card__age-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
}

.course-card__body {
  padding: 24px;
}

.course-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.course-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.course-card__meta {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.course-card__meta-item .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
}

.course-card__meta-item span:last-child {
  font-weight: 600;
  color: var(--color-navy);
}

.course-card .btn {
  width: 100%;
  justify-content: center;
}


/* ================================================================
   14. CAREER OPPORTUNITIES
   ================================================================ */
.career-section {
  padding: var(--section-padding);
  background: var(--color-navy);
  color: var(--color-white);
}

.career-section .label-gold {
  color: var(--color-gold);
}

.career-section .display-md {
  color: var(--color-white);
}

.career-section .display-md em {
  color: var(--color-gold);
}

.career-section .body-lg {
  color: rgba(247, 247, 247, 0.7);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.career-card {
  background: rgba(247, 247, 247, 0.05);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(247, 247, 247, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.career-card:hover {
  background: rgba(247, 247, 247, 0.1);
  transform: translateY(-6px) scale(1.02);
  border-color: var(--color-gold);
}

.career-card-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.career-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.career-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.career-card-list li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(247, 247, 247, 0.75);
  padding-left: 20px;
  position: relative;
}

.career-card-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

.career-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gold);
  padding-top: 12px;
  border-top: 1px solid rgba(247, 247, 247, 0.06);
}

.career-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(247, 247, 247, 0.04);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: rgba(247, 247, 247, 0.6);
}

.career-note i {
  color: var(--color-gold);
  font-size: 1.2rem;
}


/* ================================================================
   15. STUDENT JOURNEY (PATHWAY)
   ================================================================ */
.pathway-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pathway-step {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid rgba(6, 29, 66, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.pathway-step:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.pathway-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.pathway-icon {
  font-size: 2.2rem;
  color: var(--color-gold);
  margin-bottom: 8px;
  transition: transform 0.4s ease;
}

.pathway-step:hover .pathway-icon {
  transform: scale(1.2) rotate(-5deg);
}

.pathway-step-num {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.pathway-step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.pathway-step-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}


/* ================================================================
   16. YOUTUBE SHORTS
   ================================================================ */
.shorts-section {
  padding: var(--section-padding);
  background: var(--color-navy);
  color: var(--color-white);
}

.shorts-section .label-gold {
  color: var(--color-gold);
}

.shorts-section .display-md {
  color: var(--color-white);
}

.shorts-section .display-md em {
  color: var(--color-gold);
}

.shorts-section .body-lg {
  color: rgba(247, 247, 247, 0.7);
}

.shorts-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 0 40px;
}

.shorts-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  align-items: stretch;
}

.shorts-card {
  flex: 0 0 calc(33.333% - 14px);
  background: rgba(247, 247, 247, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(247, 247, 247, 0.06);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
}

.shorts-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--color-gold);
}

.shorts-thumbnail {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.shorts-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shorts-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(6, 29, 66, 0.4);
  opacity: 0;
  transition: opacity var(--transition);
}

.shorts-card:hover .shorts-play-overlay {
  opacity: 1;
}

.shorts-play-overlay i {
  font-size: 3rem;
  color: var(--color-white);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.shorts-card:hover .shorts-play-overlay i {
  transform: scale(1.15);
}

.shorts-play-overlay span {
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 8px;
  color: var(--color-white);
}

.shorts-info {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 0.8rem;
  color: rgba(247, 247, 247, 0.6);
}

.shorts-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(247, 247, 247, 0.1);
  border: 1px solid rgba(247, 247, 247, 0.15);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 5;
}

.shorts-nav:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
}

.shorts-nav--prev {
  left: 0;
}

.shorts-nav--next {
  right: 0;
}

.shorts-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.shorts-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(247, 247, 247, 0.2);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.shorts-dots button.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

.shorts-channel-link {
  text-align: center;
  margin-top: 24px;
}

.shorts-channel-link .btn {
  color: var(--color-white);
  border-color: rgba(247, 247, 247, 0.2);
}

.shorts-channel-link .btn:hover {
  border-color: var(--color-gold);
  background: rgba(210, 157, 70, 0.1);
  color: var(--color-gold);
}


/* ================================================================
   17. WHY CHOOSE US
   ================================================================ */
.why-choose-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-choose-card {
  background: var(--color-white);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(6, 29, 66, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-choose-card:hover::before {
  transform: scaleX(1);
}

.why-choose-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(6, 29, 66, 0.08);
}

.why-choose-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.why-choose-number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.why-choose-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.why-choose-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}


/* ================================================================
   18. ALUMNI
   ================================================================ */
.alumni-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.alumni-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6, 29, 66, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
}

.alumni-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(6, 29, 66, 0.12);
}

.alumni-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.alumni-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.alumni-card:hover .alumni-card-image img {
  transform: scale(1.05);
}

.alumni-card-content {
  padding: 16px 20px 20px;
}

.alumni-card-badge {
  display: inline-block;
  background: rgba(210, 157, 70, 0.1);
  color: var(--color-gold);
  padding: 2px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.alumni-card-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
}

.alumni-card-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.alumni-card-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}


/* ================================================================
   19. PLACED LOGOS
   ================================================================ */
.placed-logos-section {
  padding: var(--section-padding);
  background: var(--color-navy);
  color: var(--color-white);
}

.placed-logos-section .label-gold {
  color: var(--color-gold);
}

.placed-logos-section .display-md {
  color: var(--color-white);
}

.placed-logos-section .display-md em {
  color: var(--color-gold);
}

.placed-logos-section .body-lg {
  color: rgba(247, 247, 247, 0.7);
}

.placed-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}

.placed-logo-item {
  background: rgba(247, 247, 247, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 247, 247, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  aspect-ratio: 16 / 9;
  min-height: 80px;
}

.placed-logo-item:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--color-gold);
}

.placed-logo-item img {
  max-width: 80%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%) brightness(200%) contrast(0.8);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.placed-logo-item:hover img {
  filter: grayscale(0%) brightness(100%) contrast(1);
  opacity: 1;
}

.placed-logos-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(247, 247, 247, 0.04);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: rgba(247, 247, 247, 0.6);
}

.placed-logos-note i {
  color: var(--color-gold);
  font-size: 1.2rem;
}


/* ================================================================
   20. PROCESS (ADMISSION)
   ================================================================ */
.process-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid rgba(6, 29, 66, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-step:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(6, 29, 66, 0.08);
  border-color: var(--color-gold);
}

.process-step__icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.process-step:hover .process-step__icon {
  transform: scale(1.15) rotate(-5deg);
}

.process-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ================================================================
   21. CTA BAND
   ================================================================ */
.cta-band {
  background: var(--gradient-hero);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://i.postimg.cc/65LPVkHk/slider2.webp') center/cover;
  opacity: 0.08;
  mix-blend-mode: overlay;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.cta-band__heading {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.cta-band__heading em {
  color: var(--color-gold);
  font-style: italic;
}


/* ================================================================
   22. WHATSAPP FLOAT
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: var(--color-white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
  z-index: 999;
  animation: float 3s ease-in-out infinite;
}

.wa-float:hover {
  animation-play-state: paused;
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}


/* ================================================================
   23. MODAL
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 29, 66, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-top: 4px solid var(--color-gold);
  animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 0;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-navy);
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.modal-close-btn:hover {
  color: var(--color-navy);
  background: rgba(6, 29, 66, 0.06);
}

.modal-body {
  padding: 16px 24px 24px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(6, 29, 66, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border var(--transition);
  background: var(--color-white);
  color: var(--color-navy);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(210, 157, 70, 0.1);
}

.form-field input::placeholder {
  color: var(--color-text-muted);
}

.modal-body .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}


/* ================================================================
   24. SCROLL REVEAL CLASSES
   ================================================================ */
.reveal {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  visibility: visible;
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.10s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.20s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.30s; opacity: 1; transform: translateY(0); }


/* ================================================================
   25. KEYFRAMES
   ================================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(60px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(210, 157, 70, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(210, 157, 70, 0); }
}


/* ================================================================
   26. RESPONSIVE
   ================================================================ */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
  .nav-primary {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .hero-headline {
    font-size: 3rem;
  }

  .hero-slider-wrap {
    max-width: 600px;
    margin: 0 auto;
  }

  .courses-grid {
    grid-template-columns: 1fr 1fr;
  }

  .career-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pathway-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pathway-step:not(:last-child)::after {
    display: none;
  }

  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }

  .alumni-grid {
    grid-template-columns: 1fr 1fr;
  }

  .placed-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .about-logica-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .shorts-card {
    flex: 0 0 calc(50% - 10px);
  }

  .display-md {
    font-size: 2.2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
    font-size: 0.75rem;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .top-bar-social {
    justify-content: center;
  }

  .top-bar-contact {
    justify-content: center;
    font-size: 0.7rem;
    flex-wrap: wrap;
  }

  .top-bar-contact a {
    font-size: 0.7rem;
  }

  .top-bar-divider {
    margin: 0 2px;
  }

  .logo img {
    height: 42px;
  }

  .header-inner {
    padding: 8px 0;
  }

  .nav-actions .btn-gold {
    display: none;
  }

  .mobile-nav {
    padding: 16px 16px 24px;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-num {
    font-size: 2rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .career-grid {
    grid-template-columns: 1fr;
  }

  .pathway-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .pathway-step {
    padding: 16px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .alumni-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .placed-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band__heading {
    font-size: 2rem;
  }

  .shorts-card {
    flex: 0 0 100%;
  }

  .shorts-carousel {
    padding: 0 0;
  }

  .shorts-nav {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col__heading {
    text-align: center;
  }

  .footer-col__heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links {
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-admissions-text {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .display-md {
    font-size: 1.8rem;
  }

  .section-header .body-lg {
    font-size: 1rem;
  }

  .modal-box {
    margin: 16px;
  }

  .container {
    padding: 0 16px;
  }

  .site-footer {
    padding: 40px 0 16px;
  }

  .about-logica-card {
    padding: 24px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .top-bar-contact a {
    font-size: 0.6rem;
  }

  .top-bar-social a {
    font-size: 0.9rem;
    padding: 2px 6px;
  }

  .logo img {
    height: 36px;
  }

  .hero-headline {
    font-size: 1.8rem;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-num {
    font-size: 1.6rem;
  }

  .alumni-grid {
    grid-template-columns: 1fr;
  }

  .placed-logos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .placed-logo-item {
    padding: 12px;
    min-height: 60px;
  }

  .placed-logo-item img {
    max-height: 35px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .footer-contact-item {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }

  .footer-contact-item i {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.7rem;
  }

  .modal-box {
    max-width: 100%;
    margin: 12px;
    border-radius: var(--radius-md);
  }

  .modal-header h2 {
    font-size: 1.2rem;
  }

  .form-field input,
  .form-field select {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .wa-float {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    bottom: 16px;
    right: 16px;
  }
}