/* LICENCIA PRO */

/* ================================
   1. ESTILOS BASE STYLES
   ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-neutral-800);
  background-color: var(--color-surface-primary);
}

body.secondary-bg {
  background-color: var(--color-surface-secondary);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

:root {
  color-scheme: light;
  --header-offset: calc(var(--topbar-height) + var(--navbar-height));
  --edge-fade-height: clamp(48px, 12vh, 140px);
  --edge-fade-color: rgba(0,0,0,0.08); /* tweak intensity */
}

.by_pixeles {
  color: white;
  margin-right: 0;
  text-decoration: none;
  font-size: 10px;
  margin-top: 10px;
}


/* ================================
   2. TOP NAVIGATION BAR
   ================================ */
.top-nav {
  background-color: var(--brand-primary);
  padding: var(--space-2) 0;
  font-size: var(--font-size-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1051;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.top-nav-logo {
  display: flex;
  align-items: center;
  color: white;
}
.top-nav-logo img {
  opacity: 0.8;
}
.top-nav-text {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.top-nav-logo i {
  color: white;
  font-size: var(--font-size-base);
}

.top-nav-auth {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.top-nav-link {
  color: white;
  text-decoration: none;
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-sm);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-base);
  transition: all var(--transition-base);
}

.top-nav-link:hover {
  color: var(--brand-hover);
  text-decoration: none;
}


.top-nav-separator {
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--font-weight-light);
}

/* Main Navigation - Updated */
.main-navbar {
  background: transparent;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  padding: var(--navbar-padding-y) 0;
  box-shadow: none;
  height: var(--navbar-height);
  top: 40px; /* Offset for top nav */
}

#navbarNav {
  flex-grow: 0;
}
/* Add background when scrolled */
.main-navbar.scrolled {
  background: var(--brand-primary);
  box-shadow: var(--shadow-md);
  top: 0;
}

/* Logo Styling */
.navbar-brand {
  padding: 0;
  margin-right: var(--space-8);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: var(--space-1); /*--space-5*/
  color: white;
}


.logo-main {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-secondary);
}

.logo-sub {
  display: flex;
  flex-direction: column;
  font-size: var(--font-size-xs);
  line-height: 1.1;
  font-weight: var(--font-weight-medium);
}

/* Main Navigation Items */
.navbar-nav {
  gap: var(--space-5);
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-sm);
  padding: var(--space-2) var(--space-6) !important;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-transform: capitalize;
  position: relative;
}

/* Navigation hover effect with background */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background-color: var(--brand-hover) !important;
  color: var(--brand-primary) !important;
}


/* ================================
   3. MAIN NAVIGATION - Social Section
   ================================ */
.navbar-social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: var(--space-4);
  color: white;
}

.social-separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-light);
}

.social-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  color: white;
}

.social-icons {
  display: flex;
  gap: var(--space-2);
}

.social-link {
  color: white;
  font-size: var(--font-size-lg);
  transition: all var(--transition-base);
  padding: var(--space-1);
  border-radius: var(--radius-base);
}

.social-link:hover {
  color: var(--brand-primary);
  background-color: var(--brand-hover);
  transform: translateY(-1px);
}

/* ================================
   4. HERO SECTION
   ================================ */
.hero-section {
  background-image: url('../images/backgrounds/background_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: var(--color-brand-primary);
  position: relative;
  overflow: hidden;
  /* height = viewport minus headers (mobile-safe units first) */
  min-height: calc(100dvh - var(--header-offset));
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: center;

  /*  padding-top: 120px; */ /* Account for both navbars */
}
.hero-section > *:first-child { margin-top: 0; }
.hero-section h1 { margin-top: 0; }


.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Hero Header */
.hero-header {
  color: white;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  opacity: 0.9;
}

.hero-header i {
  font-size: var(--font-size-base);
}
.hero-header img {
  max-width: 100%;
}


/* Hero Title */
.hero-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-bold);
  color: white;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
  color: white !important;
  font-weight: var(--font-weight-normal);
}

.pro-licence-hero {
  background-color: rgba(0,0,0,0.5);
  border-radius: var(--radius-md);
}
.hero-dd-icon-container {
  background-color: var(--color-brand-primary);
  border-radius: 50%;
  padding: 20px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* QR Code Styling */
.qr-code-container {
  display: inline-block;
  margin: 0 auto;
}

.qr-code-placeholder {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  box-shadow: var(--shadow-xl);
  position: relative;
  margin: 0 auto;
}

.qr-pattern {
  width: 100%;
  height: 100%;
  position: relative;
  background: 
    repeating-linear-gradient(
      0deg,
      #000 0px,
      #000 2px,
      transparent 2px,
      transparent 4px
    ),
    repeating-linear-gradient(
      90deg,
      #000 0px,
      #000 2px,
      transparent 2px,
      transparent 4px
    );
  opacity: 0.8;
}

.qr-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid #000;
}

.qr-corner.top-left {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.qr-corner.top-right {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.qr-corner.bottom-left {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

/* Programa CTA */
.programa-cta-section {
  width: min(1100px, 92%);   /* keeps it nicely contained */
}


/* Hero CTA Section */
.hero-cta-section {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(24px, 4vh, 64px);
  width: min(1100px, 92%);   /* keeps it nicely contained */
}

.hero-description {
  color: white;
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  opacity: 0.95;
  display: flex;
  align-items: flex-start;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.hero-description i {
  color: var(--brand-hover);
  margin-top: 2px;
  flex-shrink: 0;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(150, 216, 255, 0.9);
  color: var(--brand-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.hero-cta-btn:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--brand-primary);
  text-decoration: none;
}

.hero-cta-btn i {
  transition: transform var(--transition-base);
}

.hero-cta-btn:hover i {
  transform: translateX(3px);
}

/* ================================
   5. PLAYERS SECTION
   ================================ */
.players-section {
  background-color: var(--color-surface-primary);
  padding: var(--space-20) 0;
}

.players-header {
  margin-bottom: var(--space-12);
}

.section-subtitle {
  color: var(--color-neutral-600);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
}

.section-subtitle i {
  color: var(--brand-primary);
}

.section-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-light);
  color: var(--brand-primary);
  margin: 0;
}

.title-accent {
  color: var(--brand-primary);
  font-weight: var(--font-weight-bold);
}

/* Players Swiper */
.players-swiper {
  overflow: hidden;
  padding: var(--space-4) 0;
}

.players-swiper .swiper-slide {
  height: auto;
}

.player-card {
  position: relative;
  transition: transform var(--transition-base);
  cursor: pointer;
}

.player-card:hover {
/*  transform: translateY(-8px); */
}

.player-image {
  display: block;          /* ← this is the key line for Firefox */
  position: relative;      /* you already have this, keep it */
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}
/*
.player-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}
*/

.player-image:hover {
  box-shadow: var(--shadow-xl);
}

.player-image img {
/*
  display: block;
  width: 100%;
  height: auto;

 */
  border-radius: 8px 8px 8px 8px;
  min-height: 400px;
/*  min-height: 34vw; */
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 9 / 16 !important;
}
/*
.player-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

 */

.player-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    transparent 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.8) 100%
  );
  padding: var(--space-6) var(--space-4) var(--space-4);
  color: white;
}

.player-name {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  background: var(--brand-hover);
  color: var(--brand-primary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-lg);
  margin: 0 auto;
  display: inline-block;
  width: 100%;
  text-align: center;
}

/* Players CTA Button */
.players-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--brand-hover);
  color: var(--brand-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
/*  box-shadow: var(--shadow-md); */
}

.players-cta-btn:hover {
  background: var(--color-brand-hover);
/*  transform: translateY(-2px); */
  box-shadow: var(--shadow-lg);
  color: var(--brand-primary);
  text-decoration: none;
}

/* ================================
   6. HOW TO GET SECTION
   ================================ */
.how-to-section {
  background-image: url('../images/backgrounds/ng_como.png');
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  position: relative;
  padding: var(--space-20) 0;
  overflow: hidden;
}


.how-to-section .container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: left;
}

.section-header .section-subtitle {
  color: var(--color-neutral-600);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
}


/* Steps Container */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.step-item {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  width: 2px;
  height: calc(100% + var(--space-8));
  background: var(--color-neutral-200);
  z-index: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: white;
  color: var(--brand-primary);;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  padding-top: var(--space-2);
}

.step-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  color: var(--brand-primary);
  margin-bottom: var(--space-3);
}

.step-description {
  color: var(--color-neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* License Card */
.license-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: var(--space-8);
}

.license-card {
  position: relative;
  max-width: 500px;
  width: 100%;
  transition: transform var(--transition-base);
}

.license-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.license-card-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  transition: all var(--transition-base);
}

.license-card:hover .license-card-image {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* ================================
   7. BENEFITS SECTION
   ================================ */
.benefits-section {
  background-color: white;
  padding: var(--space-20) 0;
}

.benefits-header {
  margin-bottom: var(--space-16);
}


/* Benefits Grid */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}


.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);

}
/*
.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-hover);
}
*/
.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.benefit-svg {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1); /* Makes SVG white */
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: var(--brand-primary);
  margin-bottom: var(--space-3);
}

.benefit-description {
  color: var(--color-neutral-600);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Benefits CTA Button */
.benefits-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--brand-hover);
  color: var(--brand-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.benefits-cta-btn:hover {
  background: var(--color-brand-hover);
  box-shadow: var(--shadow-lg);
  color: var(--brand-primary);
  text-decoration: none;
}

.benefits-cta-btn i {
  transition: transform var(--transition-base);
}

.benefits-cta-btn:hover i {
  transform: translateX(3px);
}

/* ================================
   8. FAQ SECTION
   ================================ */
.faq-section {
  padding: var(--space-20) 0;
  background-image:
          linear-gradient(to bottom, var(--edge-fade-color), transparent),
          linear-gradient(to top,    var(--edge-fade-color), transparent);
  background-repeat: no-repeat;
  background-size: 100% var(--edge-fade-height), 100% var(--edge-fade-height);
  background-position: top, bottom;
}

/* FAQ Info (Left Column) */
.faq-info {
  padding-right: var(--space-8);
}

.faq-logo {
  display: flex;
  align-items: center;
}

.faq-header .section-subtitle {
  color: var(--color-neutral-600);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
}

.faq-header .section-subtitle i {
  color: var(--brand-primary);
}

.faq-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-normal);
  color: var(--brand-primary);
  line-height: var(--line-height-tight);
  margin: 0;
}
.faq-title-2 {
  font-size: var(--font-size-5xl);

}

.faq-description {
  color: var(--brand-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.faq-contact-btn {
  display: inline-block;
  background: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
}

.faq-contact-btn:hover {
  background: var(--brand-primary);
  color: white;
  text-decoration: none;
}

/* FAQ Accordion (Right Column) */
.faq-accordion {
  padding-left: var(--space-4);
}

.faq-accordion .accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
}

.faq-accordion .accordion-item {
  border: none;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
  background: var(--brand-secondary);
  color: white;
  border: none;
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-sm);
  padding: var(--space-4) var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--brand-secondary);
  color: white;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-accordion .accordion-button::after {
  display: none;
}

.faq-accordion .accordion-button i {
  position: absolute;
  right: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-base);
}

.faq-accordion .accordion-button:not(.collapsed) i {
  transform: translateY(-50%) rotate(180deg);
}

.faq-accordion .accordion-body {
  background: white;
  color: var(--color-neutral-700);
  padding: var(--space-6);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

/* ================================
   9. NEWS SECTION
   ================================ */
.news-section {
  padding: var(--space-20) 0;
}

.news-section .container {
  overflow: hidden;
}

/* News Header */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-12);
}

.news-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-normal);
  color: var(--brand-primary);
  margin: 0;
}

.news-view-all-btn {
  background: transparent;
  color: var(--brand-secondary);
  border: 1px solid var(--brand-secondary);
  padding: var(--space-2) var(--space-4);
  border-radius: 40px;
  text-decoration: none;
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
}

.news-view-all-btn:hover {
  background: var(--brand-primary);
  color: white;
  text-decoration: none;
}

/* News Cards */
.news-card {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  height: 100%;
}
.news-card a {
  text-decoration: none;
}
.news-card:hover {
/*  transform: translateY(-8px); */
  box-shadow: var(--shadow-2xl);
}

.news-image {
  position: relative;
  overflow: hidden;
}

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

.news-card:hover .news-image img {
/*  transform: scale(1.05); */
}

.news-content {
  padding: var(--space-6);
}

.news-date {
  color: var(--color-neutral-500);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
}

.news-card-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-normal);
  color: var(--brand-primary);
  margin-bottom: var(--space-3);
}

.news-description {
  color: var(--color-neutral-600);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}

.news-read-more {
  background: var(--brand-primary);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
  display: inline-block;
}

.news-read-more:hover {
  background: var(--brand-secondary);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Mobile News Swiper */
.news-swiper {
  overflow: visible;
  padding-bottom: var(--space-12);
}

.news-swiper .swiper-slide {
  height: auto;
}
/*
Boostrap pagination
*/

.pagination .page-link{
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.pagination .page-link:hover {
  background: var(--brand-primary);
  color: white;
}

.pagination .page-item.active .page-link{
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}
.pagination .page-item.disabled .page-link{ opacity: .5; pointer-events: none; }
.page-item:first-child .page-link {
  border-radius: 100%;
}
.page-item:last-child .page-link {
  border-radius: 100%;
}


/* Custom Swiper Pagination */
.swiper-pagination {
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: var(--space-2);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-neutral-300);
  border-radius: var(--radius-full);
  opacity: 1;
  transition: all var(--transition-base);
}

.swiper-pagination-bullet-active {
  background: var(--brand-primary);
  width: 30px;
  border-radius: 15px;
}

/* ================================
   10. GALLERY SECTION
   ================================ */
.gallery-section {
  background-color: var(--color-surface-primary);
  padding: var(--space-20) 0;
  overflow: hidden;
}

.gallery-section .container {
  overflow: hidden;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-12);
}

.gallery-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-normal);
  color: var(--brand-primary);
  margin: 0;
}

.gallery-view-all-btn {
  background: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: 40px;
  text-decoration: none;
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
}

.gallery-view-all-btn:hover {
  background: var(--brand-primary);
  color: white;
}

.gallery-card {
  background: transparent;
  border-radius: var(--radius-xl);
  overflow: hidden;
/*  box-shadow: var(--shadow-md); */
  transition: all var(--transition-base);
    box-shadow: var(--shadow-md);

}

.gallery-image {
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.gallery-content {
  padding: var(--space-4);
}

.gallery-card-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-primary);
  margin: 0;
}

/* Mobile Gallery Swiper */
.gallery-swiper {
  overflow: visible;
  padding-bottom: var(--space-12);
}

.gallery-swiper .swiper-slide {
  height: auto;
}



/* ================================
   11. VIDEOS SECTION
   ================================ */
.videos-section {
/*  background-color: var(--color-surface-secondary);*/
  padding: var(--space-20) 0;
  overflow: hidden;
}

.videos-section .container {
  overflow: hidden;
}

.videos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-12);
}


.videos-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-normal);
  color: var(--brand-primary);
  margin: 0;
}

.videos-view-all-btn {
  background: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: 40px;
  text-decoration: none;
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
}

.videos-view-all-btn:hover {
  background: var(--brand-primary);
  color: white;
}

.video-card {
  background: transparent;
  border-radius: var(--radius-xl);
  overflow: hidden;
/*  box-shadow: var(--shadow-md); */
  transition: all var(--transition-base);
    box-shadow: var(--shadow-md);

}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
 background: rgba(0, 0, 0, 0.2);
/*  background: transparent; */
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  color: white;
  transition: all var(--transition-base);
}

.play-button:hover {
  background: white;
/*  transform: translate(-50%, -50%) scale(1.1); */
  color: var(--brand-primary);
}

.video-content {
  padding: var(--space-4);
}

.video-card-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-primary);
  margin: 0;
}

/* Mobile Videos Swiper */
.videos-swiper {
  overflow: visible;
  padding-bottom: var(--space-12);
}

.videos-swiper .swiper-slide {
  height: auto;
}



/* ================================
   12. FOOTER
   ================================ */
.footer {
  background: var(--brand-primary) url('../images/backgrounds/bg_footer.png') no-repeat center center;
  background-size: cover;
  padding: var(--space-20) 0 var(--space-12);
  color: white;
  position: relative;
}


.footer .container {
  position: relative;
  z-index: 2;
}

/* Footer Logos Section */
.footer-logos-section {
  text-align: center;
  margin-bottom: var(--space-16);
}

.footer-dd-logo {
  margin-bottom: var(--space-6);
}

.footer-licencia-logo {
  margin-bottom: var(--space-12);
}

.footer-logo-img {
  max-height: 40px;
  width: auto;
}

.footer-partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.partner-logo {
  max-height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.partner-logo:hover {
  opacity: 1;
}

/* Footer Navigation */
.footer-navigation {
  text-align: center;
  margin-bottom: var(--space-8);
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.footer-nav-link {
  color: white;
  text-decoration: none;
  font-family: var(--font-family-secondary);
  font-weight: var(--font-weight-light);
  font-size: var(--font-size-base);
  padding: var(--space-2) 0;
  position: relative;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.footer-nav-link:hover,
.footer-nav-link.active {
  color: var(--brand-hover);
}

.footer-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-hover);
  transition: transform .22s ease;

}
.footer-nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-hover);
  transition: transform .22s ease;

}
/* Footer Bottom */
.footer-bottom {
  background: var(--brand-primary);
  padding: var(--space-4) 0;
  color: white;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: white;
  text-decoration: none;
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
  transform: translateY(-2px);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color var(--transition-base);
}

.footer-legal-link:hover {
  color: var(--brand-accent);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font-size-sm);
}

/* ================================
   13. UTILITY CLASSES
   ================================ */
.bg-primary-gradient {
  background: var(--brand-gradient) !important;
}

.text-warning {
  color: var(--brand-accent) !important;
}
.text-white {
  color: white;
}
/* Section spacing */
section {
  padding: var(--space-20) 0;
}

/* ================================
   14. RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
  .top-nav {
    padding: var(--space-1) 0;
  }
  
  .top-nav-logo {
    font-size: var(--font-size-xs);
  }
  
  .top-nav-text {
    font-size: var(--font-size-xs);
  }
  
  .top-nav-link {
    font-size: var(--font-size-xs);
    padding: var(--space-1) var(--space-2);
  }
  .navbar-collapse {
    background-color: rgb(6 12 45);
    padding: 20px;
    margin-top: var(--space-5);
  }

  .main-navbar {
    top: 32px; /* Smaller offset for mobile */
    height: calc(var(--navbar-height) + 32px);
  }
  
  .hero-section {
/*
    padding-top: 100px;
    */
  }
  
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .qr-code-placeholder {
    width: 150px;
    height: 150px;
  }
  
  .hero-description {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }
  
  .hero-description i {
    align-self: center;
  }
  
  .section-header .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .step-item {
    gap: var(--space-4);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-lg);
  }
  
  .step-item:not(:last-child)::after {
    left: 25px;
  }
  
  .step-title {
    font-size: var(--font-size-lg);
  }
  
  .license-card-container {
    margin-top: var(--space-8);
    padding: var(--space-4);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }


  .benefit-item {
    padding: var(--space-4);
    gap: var(--space-3);
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
  }
  
  .benefit-svg {
    width: 25px;
    height: 25px;
  }
  
  .benefit-title {
    font-size: var(--font-size-base);
  }
  
  .faq-info {
    padding-right: 0;
    margin-bottom: var(--space-8);
    text-align: center;
  }
  
  .faq-title {
    font-size: var(--font-size-3xl);
  }
  
  .faq-accordion {
    padding-left: 0;
  }
  
  .gallery-image img,
  .video-thumbnail img {
    height: 200px;
  }
  
  .gallery-title,
  .videos-title {
    font-size: var(--font-size-2xl);
  }
  
  .gallery-header,
  .videos-header {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  
  section {
    padding: var(--space-16) 0;
  }
  
  .navbar-nav .nav-link {
    font-size: var(--font-size-base);
    padding: var(--space-2) var(--space-3) !important;
  }
  
  .logo-container {
    gap: var(--space-2);
  }
  
  .logo-main {
    font-size: var(--font-size-xl);
  }
  
  .logo-sub {
    font-size: 10px;
  }
  
  .navbar-social {
    margin-top: var(--space-4);
    justify-content: center;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 576px) {
  .top-nav-logo .top-nav-text:last-child {
    display: none; /* Hide "Deportiva" on very small screens */
  }
  
  .logo-sub {
    display: none; /* Hide subtitle on very small screens */
  }
  
  .logo-main {
    font-size: var(--font-size-lg);
  }
  
  .social-label {
    display: none; /* Hide "Social" text on small screens */
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .qr-code-placeholder {
    width: 120px;
    height: 120px;
  }
  
  .hero-cta-section {
    padding: 0 var(--space-4);
  }
  
  .how-to-section {
    padding: var(--space-16) 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: var(--space-8);
  }
  
  .section-header .section-title {
    font-size: var(--font-size-xl);
  }
  
  .steps-container {
    gap: var(--space-6);
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
  
  .step-item:not(:last-child)::after {
    display: none;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: var(--font-size-base);
    margin: 0 auto;
  }
  
  .license-card-container {
    padding: var(--space-2);
  }
  
  .benefits-section {
    padding: var(--space-16) 0;
  }
  
  .benefits-header .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .benefits-grid {
    gap: var(--space-4);
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: var(--space-4);
  }
  
  .benefit-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto;
  }
  
  .benefit-svg {
    width: 22px;
    height: 22px;
  }
  
  .faq-section {
    padding: var(--space-16) 0;
  }
  
  .faq-title {
    font-size: var(--font-size-2xl);
    text-align: center;
  }
  
  .faq-info {
    text-align: center;
  }
  
  .faq-accordion .accordion-button {
    font-size: var(--font-size-xs);
    padding: var(--space-3) var(--space-4);
  }
  
  .faq-accordion .accordion-body {
    padding: var(--space-4);
    font-size: var(--font-size-sm);
  }
  
  .news-section {
    padding: var(--space-16) 0;
    overflow: hidden;
  }
  
  .news-title {
    font-size: var(--font-size-2xl);
  }
  
  .news-header {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  
  .news-card-title {
    font-size: var(--font-size-lg);
  }
  
  .news-content {
    padding: var(--space-4);
  }
  
  .news-image img {
    height: 180px;
  }
  
  .gallery-image img,
  .video-thumbnail img {
    height: 180px;
  }
  
  section {
    padding: var(--space-12) 0;
  }
  
  .news-section h2,
  .benefits-section h2,
  .how-to-section h2,
  .gallery-title,
  .videos-title {
    font-size: var(--font-size-2xl);
  }
  
  /* Footer Responsive */
  .footer {
    padding: var(--space-16) 0 var(--space-8);
  }
  
  .footer-partner-logos {
    gap: var(--space-4);
  }
  
  .partner-logo {
    max-height: 40px;
  }
  
  .footer-nav {
    gap: var(--space-4);
  }
  
  .footer-nav-link {
    font-size: var(--font-size-sm);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Additional Footer Mobile Styles */
  .footer-logo-img {
    max-height: 45px;
  }
  
  .partner-logo {
    max-height: 35px;
  }
  
  .footer-partner-logos {
    gap: var(--space-3);
  }
  
  .footer-nav {
    gap: var(--space-3);
  }
  
  .footer-nav-link {
    font-size: var(--font-size-xs);
  }
}
@media (max-width: 991.98px){
  .hero-section{ background-attachment: scroll; }
}

/* ================================
   NEWS PAGE STYLES
   ================================ */

/* News Hero Section */
.page-header {
    background: var(--brand-primary);
    padding: calc(var(--header-offset) + var(--space-16)) 0 var(--space-16);
    padding-top: calc(5rem + var(--topbar-height) + var(--navbar-height));
    background-image: url(../images/backgrounds/page-header-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.programa-header {
    background-image: url(../images/backgrounds/programa-header-bg.png);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.new-header {
    background-image: url(../images/backgrounds/page-header-bg.png);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.new-header img {
  max-width: 100%;
}
.news-breadcrumb {
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumb-link:hover {
  color: var(--brand-hover);
}

.breadcrumb-separator {
  margin: 0 var(--space-2);
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
  color: white;
  font-weight: var(--font-weight-medium);
}

.page-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
  color: white;
}

.mh-200 {
  min-height: 200px;
}
.news-hero-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* News Listing Section */
.news-listing-section {
  padding: var(--space-20) 0;
  background-color: transparent;
  transform: translateY(-200px);
}

/* News Filter Bar */
.news-filter-bar {
  margin-bottom: var(--space-16);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-neutral-200);
}

.news-filter-categories {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--color-neutral-300);
  color: var(--color-neutral-600);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-base);
  cursor: pointer;
}

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

.news-search-bar {
  display: flex;
  justify-content: flex-end;
}

.search-input-container {
  position: relative;
  max-width: 300px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: var(--space-3) var(--space-12) var(--space-3) var(--space-4);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
}

.search-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-icon {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-neutral-500);
  pointer-events: none;
}

/* Section Subtitles */
.section-subtitle-small {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-primary);
  margin-bottom: var(--space-8);
  position: relative;
  padding-bottom: var(--space-3);
}

.section-subtitle-small::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--brand-hover);
  border-radius: var(--radius-full);
}

/* Featured News Section */
.featured-news-section {
  margin-bottom: var(--space-20);
}

.featured-news-section a {
  text-decoration: none;
  color: black;
}

.featured-news-card {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
}

.featured-news-card:hover {
  box-shadow: var(--shadow-2xl);

  /*  transform: translateY(-5px);

 */
}

.featured-news-image {
  position: relative;
  overflow: hidden;
}

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

.featured-news-card:hover .featured-news-image img {
/*  transform: scale(1.05);*/
}

.featured-news-category {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--brand-primary);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
}

.featured-news-content {
  padding: var(--space-8);
}

.featured-news-meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-1);
  font-size: var(--font-size-sm);
  color: var(--color-neutral-600);
}

.news-author {
  position: relative;
}

.news-author::before {
  content: '•';
  margin-right: var(--space-2);
}

.featured-news-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--brand-primary);
  margin-bottom: var(--space-4);
  line-height: var(--line-height-tight);
}

.featured-news-excerpt {
  color: var(--color-neutral-700);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
}

.featured-news-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-primary);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
}

.featured-news-link:hover {
  color: var(--brand-secondary);
  transform: translateX(3px);
}

.featured-news-link i {
  margin-left: var(--space-2);
  transition: transform var(--transition-base);
}

.featured-news-link:hover i {
  transform: translateX(3px);
}

/* Featured Sidebar */
.featured-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.sidebar-news-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  cursor: pointer;
}

.sidebar-news-card:hover {
  box-shadow: var(--shadow-lg);

  /*
  transform: translateY(-3px);

   */
}

.sidebar-news-image {
  position: relative;
  overflow: hidden;
}

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

.sidebar-news-card:hover .sidebar-news-image img {
/*  transform: scale(1.05); */
}

.sidebar-news-content {
  padding: var(--space-4);
}

.sidebar-news-category {
  background: var(--brand-hover);
  color: var(--brand-primary);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--space-3);
}

.sidebar-news-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-primary);
  margin-top: var(--space-2);
  line-height: var(--line-height-snug);
}

.sidebar-news-date {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
}


.news-grid {
  margin-bottom: var(--space-12);
}

.news-category-tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--brand-primary);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
}


.try-200px {
  transform: translateY(-200px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .news-hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .news-filter-bar .row {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .news-search-bar {
    justify-content: flex-start;
  }
  
  .search-input-container {
    max-width: 100%;
  }
  
  .featured-news-title {
    font-size: var(--font-size-2xl);
  }
  
  .featured-sidebar {
    margin-top: var(--space-8);
  }
  
  .newsletter-card {
    padding: var(--space-8);
  }
  
  .newsletter-title {
    font-size: var(--font-size-2xl);
  }
  
  .newsletter-form .input-group {
    flex-direction: column;
  }
  
  .newsletter-input {
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
  }
  
  .newsletter-btn {
    border-radius: var(--radius-lg);
    width: 100%;
  }
}

@media (max-width: 576px) {
  .news-filter-categories {
    justify-content: center;
  }
  
  .filter-btn {
    font-size: var(--font-size-xs);
    padding: var(--space-2) var(--space-3);
  }
}/* ====
============================
   NEWS ARTICLE PAGE STYLES
   ================================ */

/* Article Hero Section */
.article-hero-section {
  background: var(--brand-primary);
  padding: calc(var(--header-offset) + var(--space-16)) 0 var(--space-32);
  color: white;
  padding-top: calc(5rem + var(--topbar-height) + var(--navbar-height));
    background-image: url('../images/backgrounds/background_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: var(--color-brand-primary);

}

.article-hero-content {
  padding-right: var(--space-8);
}

.article-breadcrumb {
  margin-bottom: var(--space-6);
  font-size: var(--font-size-sm);
}

.article-category-tag {
  display: inline-block;
  background: var(--brand-hover);
  color: var(--brand-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.article-hero-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-6);
  color: white;
  line-height: var(--line-height-tight);
}

.article-hero-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  font-size: var(--font-size-sm);
}

.article-meta > div {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.8);
}

.article-meta i {
  color: var(--brand-hover);
}

.article-share {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.share-label {
  font-size: var(--font-size-sm);
  color: black;
  font-weight: var(--font-weight-medium);
}

.share-buttons {
  display: flex;
  gap: var(--space-2);
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: black;
  text-decoration: none;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.share-btn:hover {
  background: var(--brand-hover);
  color: var(--brand-primary);
}

.article-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.article-hero-image img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  max-width: 100%;
  height: auto;
}

/* Article Content Section */
.article-content-section {
  padding: var(--space-20) 0;
  padding-top: 0;
  transform: translateY(-80px);
}

.article-content {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
}

.article-body {
  color: var(--color-neutral-700);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

.article-lead {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 2px solid var(--color-neutral-200);
}

.article-body h3 {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-primary);
  margin: var(--space-10) 0 var(--space-6);
}

.article-body p {
  margin-bottom: var(--space-6);
}

.article-quote {
  background: var(--color-neutral-50);
  border-left: 4px solid var(--brand-primary);
  padding: var(--space-6) var(--space-8);
  margin: var(--space-8) 0;
  font-size: var(--font-size-lg);
  font-style: italic;
  color: var(--brand-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.article-list {
  margin: var(--space-6) 0;
  padding-left: var(--space-6);
}

.article-list li {
  margin-bottom: var(--space-3);
  color: var(--color-neutral-700);
}

.article-list li::marker {
  color: var(--brand-primary);
}

.article-tags {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-neutral-200);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.tags-label {
  font-weight: var(--font-weight-semibold);
  color: var(--color-neutral-600);
  font-size: var(--font-size-sm);
}

.tags-list {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.tag {
  background: var(--color-neutral-100);
  color: var(--color-neutral-700);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-base);
}

.tag:hover {
  background: var(--brand-primary);
  color: white;
  cursor: pointer;
}

/* Article Sidebar */
.article-sidebar {
  padding-left: var(--space-8);
}

.sidebar-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
  box-shadow: var(--shadow-md);
}

.sidebar-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-primary);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-neutral-200);
}

.related-articles {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.related-article {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
}

.related-article:hover {
  background: var(--color-neutral-50);
  transform: translateX(5px);
}

.related-article-image {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.related-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-article-content {
  flex: 1;
}

.related-article-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-primary);
  margin-bottom: var(--space-2);
  line-height: var(--line-height-snug);
}

.related-article-date {
  font-size: var(--font-size-xs);
  color: var(--color-neutral-500);
}

/* Sidebar Newsletter */
.sidebar-newsletter {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
}

.newsletter-sidebar-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
  color: white;
}

.newsletter-sidebar-text {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
}

.newsletter-sidebar-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.newsletter-sidebar-input {
  padding: var(--space-3);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-neutral-800);
}

.newsletter-sidebar-input:focus {
  outline: none;
  background: white;
}

.newsletter-sidebar-input::placeholder {
  color: var(--color-neutral-500);
}

.newsletter-sidebar-btn {
  background: var(--brand-hover);
  color: var(--brand-primary);
  border: none;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

.newsletter-sidebar-btn:hover {
  background: white;
  transform: translateY(-2px);
}

/* Related News Section */
.related-news-section {
  background: var(--color-neutral-100);
  padding: var(--space-20) 0;
}

.related-news-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-normal);
  color: var(--brand-primary);
  text-align: center;
  margin-bottom: var(--space-12);
}

/* Responsive Design for Article Page */
@media (max-width: 992px) {
  .article-hero-content {
    padding-right: 0;
    margin-bottom: var(--space-8);
  }
  
  .article-hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .article-sidebar {
    padding-left: 0;
    margin-top: var(--space-8);
  }
  
  .article-content {
    padding: var(--space-8);
  }
}

@media (max-width: 768px) {
  .article-hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .article-hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .article-meta {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .article-share {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
  
  .article-content {
    padding: var(--space-6);
  }
  
  .article-body h3 {
    font-size: var(--font-size-xl);
  }
  
  .article-tags {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .sidebar-section {
    padding: var(--space-6);
  }
  
  .related-news-title {
    font-size: var(--font-size-3xl);
  }
}

@media (max-width: 576px) {
  .article-hero-section {
    padding: calc(var(--header-offset) + var(--space-12)) 0 var(--space-32);
    padding-top: 160px;
  }

  .article-date {
    font-size: var(--font-size-sm);
  }
  .article-share {
    font-size: var(--font-size-sm);
  }
  .article-hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .share-buttons {
    justify-content: flex-start;
  }
  
  .article-content {
    padding: var(--space-4);
  }
  
  .article-quote {
    padding: var(--space-4);
    margin: var(--space-6) 0;
  }
}/* ==
==============================
   PROGRAM PAGE STYLES
   ================================ */

/* Program Hero Section */
.program-hero-section {
  background: var(--brand-primary);
  padding: calc(var(--header-offset) + var(--space-16)) 0 var(--space-16);
  color: white;
  text-align: center;
}

.program-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.program-breadcrumb {
  margin-bottom: var(--space-6);
  font-size: var(--font-size-sm);
}

.program-header {
  margin-bottom: var(--space-12);
}

.program-subtitle {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2);
}

.program-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-6);
  color: white;
  line-height: var(--line-height-tight);
}

.program-description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
}

.program-partner {
  margin-bottom: var(--space-12);
}

.program-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
}

.feature-item i {
  font-size: var(--font-size-xl);
  color: var(--brand-hover);
  margin-bottom: var(--space-2);
}

.program-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--brand-hover);
  color: var(--brand-primary);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.program-cta-btn:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: var(--brand-primary);
  text-decoration: none;
}

/* Program Tabs Section */
.program-tabs-section {
  background: white;
  padding: 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-offset));
  z-index: 100;
}

.program-tabs-nav {
  display: flex;
  justify-content: start;
  gap: 0;
  border-bottom: 1px solid var(--color-neutral-200);
}

.tab-btn {
  background: transparent;
  border: none;
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-neutral-600);
  cursor: pointer;
  transition: all var(--transition-base);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
/*  background: var(--color-neutral-50); */
}

/* Program Content Section */
.program-content-section {
  padding: var(--space-20) 0;
  background-color: var(--color-surface-primary);
}

.program-content-section #detalle ul li {
  color: var(--brand-primary);
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: var(--font-weight-light);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.program-section-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-primary);
  margin-bottom: var(--space-12);
  text-align: left;
}

/* Curriculum Modules */
.curriculum-modules {
  max-width: 900px;
  margin: 0 auto;
}

.curriculum-module {
  background: white;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.curriculum-module:hover {
  box-shadow: var(--shadow-lg);
}

.module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) var(--space-8);
  background: var(--brand-primary);
  color: white;
  cursor: pointer;
  transition: all var(--transition-base);
}

.module-header:hover {
  background: var(--brand-secondary);
}

.module-info {
  flex: 1;
}

.module-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.module-subtitle {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.module-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.module-duration {
  background: var(--brand-hover);
  color: var(--brand-primary);
  padding: var(--space-2) var(--space-3);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.module-content {
  padding: var(--space-8);
  background: white;
}

.module-topics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-topics li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-neutral-100);
  color: var(--color-neutral-700);
  position: relative;
  padding-left: var(--space-6);
  list-style: none;
}

.module-topics li:last-child {
  border-bottom: none;
}

/*
.module-topics li::before {
  content: '•';
  color: var(--brand-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

 */

/* Methodology Content */
.methodology-content {
  max-width: 1000px;
  margin: 0 auto;
}

.methodology-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-6);
  transition: all var(--transition-base);
}

.methodology-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.methodology-icon {
  width: 80px;
  height: 80px;
  background: var(--brand-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.methodology-icon i {
  font-size: var(--font-size-2xl);
  color: white;
}

.methodology-info h4 {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-primary);
  margin-bottom: var(--space-3);
}

.methodology-info p {
  color: var(--color-neutral-600);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

/* Requirements Content */
.requirements-content {
  max-width: 1000px;
  margin: 0 auto;
}

.requirements-list {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-neutral-100);
}

.requirement-item:last-child {
  border-bottom: none;
}

.requirement-item i {
  color: var(--color-success);
  font-size: var(--font-size-lg);
}

.requirement-item span {
  color: var(--color-neutral-700);
  font-size: var(--font-size-base);
}

.requirements-note {
  background: var(--color-neutral-50);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border-left: 4px solid var(--brand-primary);
}

.requirements-note h4 {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-primary);
  margin-bottom: var(--space-4);
}

.requirements-note p {
  color: var(--color-neutral-600);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

/* Program FAQ Section */
.program-faq-section {
  background: var(--color-neutral-100);
  padding: var(--space-20) 0;
}

.faq-info {
  padding-right: var(--space-8);
}

.faq-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-normal);
  color: var(--brand-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-6);
}

.faq-title-accent {
  font-weight: var(--font-weight-bold);
}

.faq-description {
  color: var(--color-neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
}

.faq-contact-btn {
  display: inline-block;
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-base);
}

.faq-contact-btn:hover {
  background: var(--brand-primary);
  color: white;
  text-decoration: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: var(--space-6) var(--space-8);
  text-align: left;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-question:hover {
  background: var(--brand-secondary);
}

.faq-question i {
  transition: transform var(--transition-base);
}

.faq-answer {
  padding: var(--space-6) var(--space-8);
  background: white;
  color: var(--color-neutral-700);
  line-height: var(--line-height-relaxed);
}

/* Graduates Section */
.graduates-section {
  background: white;
  padding: var(--space-20) 0;
}

.graduates-header {
  margin-bottom: var(--space-16);
}

.graduates-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-normal);
  color: var(--brand-primary);
}

.graduates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.graduate-card {
  position: relative;
  transition: transform var(--transition-base);
  cursor: pointer;
}

.graduate-card:hover {
  transform: translateY(-8px);
}

.graduate-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.graduate-image:hover {
  box-shadow: var(--shadow-xl);
}

.graduate-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.graduate-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    transparent 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.8) 100%
  );
  padding: var(--space-6) var(--space-4) var(--space-4);
  color: white;
}

.graduate-name {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  background: var(--brand-hover);
  color: var(--brand-primary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-lg);
  margin: 0 auto;
  display: inline-block;
  width: 100%;
}

.graduates-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--brand-hover);
  color: var(--brand-primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
}

.graduates-cta-btn:hover {
  background: var(--brand-primary);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Responsive Design for Program Page */
@media (max-width: 992px) {
  .program-title {
    font-size: var(--font-size-4xl);
  }
  
  .program-features {
    gap: var(--space-6);
  }
  
  .feature-item {
    font-size: var(--font-size-xs);
  }
  
  .faq-info {
    padding-right: 0;
    margin-bottom: var(--space-8);
  }
  
  .methodology-item {
    flex-direction: column;
    text-align: center;
  }
  
  .methodology-icon {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .program-tabs-nav {
    flex-direction: column;
  }
  
  .tab-btn {
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-sm);
  }
  
  .program-title {
    font-size: var(--font-size-3xl);
  }
  
  .program-features {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  
  .module-header {
    padding: var(--space-4) var(--space-6);
  }
  
  .module-title {
    font-size: var(--font-size-base);
  }
  
  .module-subtitle {
    font-size: var(--font-size-xs);
  }
  
  .graduates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  
  .graduate-image img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .program-hero-section {
    padding: calc(var(--header-offset) + var(--space-12)) 0 var(--space-12);
  }
  
  .program-title {
    font-size: var(--font-size-2xl);
  }
  
  .program-features {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  
  .curriculum-module {
    margin-bottom: var(--space-3);
  }
  
  .module-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
  
  .module-meta {
    align-self: flex-end;
  }
  
  .graduates-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   CONTACT PAGE STYLES
   ================================ */

/* Contact Hero Section */
.contact-hero-section {
  background: var(--brand-primary);
  padding: calc(var(--header-offset) + var(--space-16)) 0 var(--space-20);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-hero-content {
  text-align: center;
}

.contact-breadcrumb {
  margin-bottom: var(--space-6);
  font-size: var(--font-size-sm);
}

.contact-hero-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-12);
  color: white;
}

/* Contact Form */
.contact-form-container {
/*
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);

 */
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-6);
  text-align: left;
}

.form-label {
  display: block;
  color: white;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-2);
  opacity: 0.9;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.contact-input:focus,
.contact-textarea:focus {
/*  outline: none; */
  border-color: var(--brand-hover);
  background: rgba(0, 0, 0, 0.3);
  color: white;

  /*
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(150, 216, 255, 0.3);

   */
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: white;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check-container {
  margin-bottom: var(--space-8);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.form-check-input {
  margin: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-check-input:checked {
  background-color: var(--brand-hover);
  border-color: var(--brand-hover);
}

.form-check-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.terms-link {
  color: var(--brand-hover);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.terms-link:hover {
  color: white;
}

.contact-submit-btn {
  width: 100%;
  background: var(--brand-hover);
  color: var(--brand-primary);
  border: none;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-2xl);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.contact-submit-btn:hover:not(:disabled) {
  background: var(--brand-secondary);
  color: white;
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-success-message {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: white;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
}

/* How to Get Banner Section */
.how-to-banner-section {
  background: var(--color-surface-primary);
  padding: var(--space-20) 0;
}

.how-to-banner-content {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-16);
  box-shadow: var(--shadow-xl);
}

.banner-text-content {
  padding-right: var(--space-8);
}

.banner-logos {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.banner-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-normal);
  color: var(--brand-primary);
  margin-bottom: var(--space-12);
  line-height: var(--line-height-tight);
}

.banner-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.banner-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  position: relative;
}

.banner-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  width: 2px;
  height: calc(100% + var(--space-8));
  background: var(--color-neutral-200);
  z-index: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--brand-primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  padding-top: var(--space-2);
}

.step-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-primary);
  margin-bottom: var(--space-3);
}

.step-description {
  color: var(--color-neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* License Banner Card */
.banner-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-8);
}

.license-banner-card {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  color: white;
  box-shadow: var(--shadow-2xl);
  max-width: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.license-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.card-header {
  text-align: center;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 2;
}

.card-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.card-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 2;
}

.card-info {
  flex: 1;
}

.info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
}

.info-label {
  font-weight: var(--font-weight-semibold);
  opacity: 0.8;
}

.info-value {
  font-weight: var(--font-weight-normal);
}

.card-qr {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code {
  width: 100%;
  height: 100%;
  position: relative;
}

.qr-pattern {
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      #000 0px,
      #000 2px,
      transparent 2px,
      transparent 4px
    ),
    repeating-linear-gradient(
      90deg,
      #000 0px,
      #000 2px,
      transparent 2px,
      transparent 4px
    );
  opacity: 0.8;
  border-radius: var(--radius-sm);
}

.card-footer {
  text-align: center;
  position: relative;
  z-index: 2;
}

.validity {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
  .banner-text-content {
    padding-right: 0;
    margin-bottom: var(--space-8);
  }
  
  .banner-logos {
    justify-content: center;
  }
  
  .banner-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .contact-form-container {
    padding: var(--space-8);
  }
  
  .banner-title {
    font-size: var(--font-size-3xl);
  }
  
  .banner-logos {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .banner-step {
    flex-direction: column;
    text-align: center;
  }
  
  .banner-step::after {
    display: none;
  }
  
  .how-to-banner-content {
    padding: var(--space-8);
  }
}

@media (max-width: 576px) {
  .contact-hero-section {
    padding: calc(var(--header-offset) + var(--space-12)) 0 var(--space-16);
  }
  
  .contact-hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .contact-form-container {
    padding: var(--space-6);
  }
  
  .banner-title {
    font-size: var(--font-size-2xl);
  }
  
  .license-banner-card {
    padding: var(--space-6);
  }
  
  .card-content {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  
  .info-item {
    justify-content: center;
    gap: var(--space-2);
  }
}
/* ================================
   EXPERIENCE PAGE STYLES
   ================================ */

/* Experience Hero Section */
.experience-hero-section {
  background: var(--brand-primary);
  padding: calc(var(--header-offset) + var(--space-16)) 0 var(--space-16);
  color: white;
  text-align: center;
}

.experience-hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.experience-breadcrumb {
  margin-bottom: var(--space-6);
  font-size: var(--font-size-sm);
}

.experience-hero-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-16);
  color: white;
}

/* Experience Stats */
.experience-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-16);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.experience-number {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
}
.experience-bl {
  border-left: 1px solid white;
}
.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-2xl);
}

.stat-icon {
  margin-bottom: var(--space-4);
}

.stat-icon i {
  font-size: var(--font-size-3xl);
  color: var(--brand-hover);
}

.stat-number {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--space-2);
  display: block;
}

.stat-label {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.experience-cta {
  margin-top: var(--space-12);
}

.experience-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--brand-hover);
  color: var(--brand-primary);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.experience-cta-btn:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: var(--brand-primary);
  text-decoration: none;
}

/* Responsive Design for Experience Page */
@media (max-width: 768px) {
  .experience-hero-title {
    font-size: var(--font-size-4xl);
  }
  .experience-bl {
    border-left: none;
  }

  
  .experience-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  .experience-number {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
  }

  .stat-item {
    padding: var(--space-6);
  }
  
  .stat-number {
    font-size: var(--font-size-3xl);
  }
  
  .stat-icon i {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 576px) {
  .experience-hero-section {
    padding: calc(var(--header-offset) + var(--space-12)) 0 var(--space-12);
  }
  
  .experience-hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .experience-stats {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .stat-item {
    padding: var(--space-4);
  }
  
  .stat-number {
    font-size: var(--font-size-2xl);
  }
  
  .stat-label {
    font-size: var(--font-size-sm);
  }
}/* ======
==========================
   LOGIN PAGE STYLES
   ================================ */

/* Login Hero Section */
.login-hero-section {
  background-image: url('../images/backgrounds/background_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: var(--color-brand-primary);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-offset);
}

.login-hero-section .container {
  position: relative;
  z-index: 2;
}

/* Login Header */
.login-header {
  color: white;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  opacity: 0.9;
  margin-bottom: var(--space-8);
}

.login-header img {
  max-width: 100%;
}

.login-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}

/* Login Title */
.login-title {
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: white;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-12);
}

/* Login Form Container */
.login-form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  margin: 0 auto;
}

.login-form {
  margin-bottom: var(--space-8);
}

.login-form .form-group {
  margin-bottom: var(--space-6);
}

.login-input {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.login-input:focus {
  outline: none;
  border-color: var(--brand-hover);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(150, 216, 255, 0.3);
}

.login-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.login-input.has-value {
  background: rgba(255, 255, 255, 0.15);
}

.form-check-container {
  margin-bottom: var(--space-8);
}

.form-check {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
}

.form-check-input {
  margin: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.form-check-input:checked {
  background-color: var(--brand-hover);
  border-color: var(--brand-hover);
}

.form-check-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
  margin: 0;
  cursor: pointer;
}

.login-submit-btn {
  width: 100%;
  background: var(--brand-hover);
  color: var(--brand-primary);
  border: none;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.login-submit-btn:hover:not(:disabled) {
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.login-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Login Links */
.login-links {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.forgot-password-link {
  color: var(--brand-hover);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color var(--transition-base);
  display: block;
  margin-bottom: var(--space-4);
}

.forgot-password-link:hover {
  color: white;
  text-decoration: underline;
}

.signup-link {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

.signup-link-text {
  color: var(--brand-hover);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-base);
}

.signup-link-text:hover {
  color: white;
  text-decoration: underline;
}

/* Login Messages */
.login-message {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: white;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
  text-align: center;
}

.login-message.alert-danger {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
}

.login-message i {
  margin-right: var(--space-2);
}

/* Responsive Design for Login Page */
@media (max-width: 768px) {
  .login-title {
    font-size: var(--font-size-4xl);
  }
  
  .login-form-container {
    padding: var(--space-8);
    margin: 0 var(--space-4);
  }
  
  .login-header {
    margin-bottom: var(--space-6);
  }
}

@media (max-width: 576px) {
  .login-hero-section {
    padding: calc(var(--header-offset) + var(--space-8)) var(--space-4) var(--space-8);
  }
  
  .login-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-8);
  }
  
  .login-form-container {
    padding: var(--space-6);
  }
  
  .login-input {
    padding: var(--space-3);
    font-size: var(--font-size-sm);
  }
  
  .login-submit-btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
  }
}

.errorlist {
  color: #e39090;
}


/* ================================
   CUSTOM DROPDOWN STYLES FOR MEDIA MENU
   ================================ */

/* Remove dropdown arrow/caret */
.navbar-nav .dropdown-toggle::after {
  display: none !important;
}

/* Style the dropdown menu to match navbar */
.navbar-nav .dropdown-menu {
  background-color: var(--brand-primary) !important;
  border: none !important;
  border-radius: var(--radius-lg) !important;
  padding: var(--space-2) 0 !important;
  margin-top: var(--space-2) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Style dropdown items */
.navbar-nav .dropdown-item {
  color: white !important;
  font-weight: var(--font-weight-light) !important;
  font-size: var(--font-size-sm) !important;
  padding: var(--space-2) var(--space-6) !important;
  transition: all var(--transition-base) !important;
}

/* Dropdown item hover effect */
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  background-color: var(--brand-hover) !important;
  color: var(--brand-primary) !important;
}
