:root {
  --color-dark: #0a0e1a; 
  --color-primary: #1e2a3a;
  --color-accent: #f04b4c;
  --color-light: #ffffff;
  --color-dark-alt: linear-gradient(135deg, #0e1626, #1e2a3a);

  --card1: linear-gradient(to bottom left, #2a2a72, #009ffd);
  --card2: linear-gradient(to bottom left, #4b134f, #c94b4b);
  --card3: linear-gradient(to bottom left, #1e3c72, #2a5298);
  --card4: linear-gradient(to bottom left, #134e5e, #71b280);
  --card5: linear-gradient(to bottom left, #42275a, #734b6d);
  --card6: linear-gradient(to bottom left, #141e30, #243b55);
  
  --font-main: 'Poppins', sans-serif;

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2rem;
  --gap-xl: 3rem;

  /* Width */
  --max-width: 1200px;
}

  .header-1 { background: var(--card1); }
  .header-2 { background: var(--card2); }
  .header-3 { background: var(--card3); }
  .header-4 { background: var(--card4); }
  .header-5 { background: var(--card5); }
  .header-6 { background: var(--card6); }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}


body {
  font-family: var(--font-main);
  background-color: var(--color-dark);
  color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

section {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gap-md);
}

/* SCROLL PROGRESS BAR */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #ff6b6b);
  width: 0%;
  z-index: 1001;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(240, 75, 76, 0.5);
}

/* HEADER - GLASSMORPHISM PRO */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(240, 75, 76, 0.3) 50%,
    transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.main-header.scrolled {
  background: rgba(10, 14, 26, 0.8) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.main-header.scrolled::before {
  opacity: 1;
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 16px;
}

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

.logo-img {
  height: 80px;
  max-width: 280px;
  object-fit: contain;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 0 transparent);
}

.main-header.scrolled .logo-img {
  height: 55px;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(240, 75, 76, 0.4));
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--color-light);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.menu-toggle:hover {
  color: var(--color-accent);
}

/* DESKTOP NAVIGATION - GLASSMORPHISM PILLS */
.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: var(--gap-lg);
}

.main-nav ul {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav li {
  position: relative;
}

/* Pills Design */
.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border-radius: 50px;
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.4) 0%,
    rgba(25, 30, 45, 0.3) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

/* Glow effect la hover */
.main-nav a::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 0.4),
    rgba(240, 75, 76, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-nav a:hover {
  color: rgba(255, 255, 255, 1);
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.6) 0%,
    rgba(25, 30, 45, 0.5) 100%);
  border-color: rgba(240, 75, 76, 0.3);
  transform: translateY(-2px);
  box-shadow: 
    0 4px 16px rgba(240, 75, 76, 0.2),
    0 0 0 1px rgba(240, 75, 76, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.main-nav a:hover::before {
  opacity: 1;
}

/* ACTIVE STATE - Gradient Roșu */
.main-nav a.active {
  color: white;
  font-weight: 600;
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.85) 100%);
  border-color: rgba(240, 75, 76, 0.5);
  box-shadow: 
    0 4px 16px rgba(240, 75, 76, 0.4),
    0 0 20px rgba(240, 75, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.main-nav a.active::before {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1));
  opacity: 1;
}

/* Icon animations */
.main-nav a i {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 0 transparent);
}

.main-nav a:hover i {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 4px rgba(240, 75, 76, 0.5));
}

.main-nav a.active i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}


/* OVERLAY pentru mobil (nu afectează desktop) */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.6);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* === MENIU MOBILE - 2026 DESIGN === */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 1.4rem;
    color: var(--color-light);
    cursor: pointer;
    z-index: 1002;
    padding: 12px;
    width: 52px;
    height: 52px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .menu-toggle:active {
    transform: scale(0.95);
  }

  .menu-toggle i {
    transition: transform 0.3s ease;
  }

  .menu-toggle.active i {
    transform: rotate(90deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(135deg, 
      rgba(10, 14, 26, 0.95) 0%,
      rgba(15, 20, 35, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 100px 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border-left: 1px solid rgba(240, 75, 76, 0.2);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  .main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, 
      transparent,
      var(--color-accent) 50%,
      transparent);
    opacity: 0.6;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .main-nav li {
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInMenu 0.4s ease forwards;
  }

  .main-nav.open li:nth-child(1) { animation-delay: 0.1s; }
  .main-nav.open li:nth-child(2) { animation-delay: 0.15s; }
  .main-nav.open li:nth-child(3) { animation-delay: 0.2s; }
  .main-nav.open li:nth-child(4) { animation-delay: 0.25s; }
  .main-nav.open li:nth-child(5) { animation-delay: 0.3s; }
  .main-nav.open li:nth-child(6) { animation-delay: 0.35s; }
  .main-nav.open li:nth-child(7) { animation-delay: 0.4s; }

  @keyframes slideInMenu {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .main-nav a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, 
      rgba(20, 25, 40, 0.5) 0%,
      rgba(25, 30, 45, 0.4) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border-left: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      transparent,
      rgba(240, 75, 76, 0.15),
      transparent);
    transition: left 0.5s ease;
  }

  .main-nav a:active::before {
    left: 100%;
  }

  .main-nav a:active {
    background: linear-gradient(135deg, 
      rgba(20, 25, 40, 0.7) 0%,
      rgba(25, 30, 45, 0.6) 100%);
    border-left-color: var(--color-accent);
    border-color: rgba(240, 75, 76, 0.3);
    transform: translateX(8px) scale(0.98);
    box-shadow: 
      0 4px 12px rgba(240, 75, 76, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  /* Active state pe mobil */
  .main-nav a.active {
    background: linear-gradient(135deg, 
      var(--color-accent) 0%,
      rgba(240, 75, 76, 0.85) 100%);
    border-left-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(240, 75, 76, 0.5);
    color: white;
    font-weight: 600;
    box-shadow: 
      0 4px 16px rgba(240, 75, 76, 0.4),
      0 0 20px rgba(240, 75, 76, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .main-nav a i {
    font-size: 1.3rem;
    width: 28px;
    text-align: center;
    color: var(--color-accent);
    transition: transform 0.3s ease;
  }

  .main-nav a.active i {
    color: white;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
  }

  .main-nav a:active i {
    transform: scale(1.2) rotate(10deg);
  }
}


/* HERO SECTION - 3D TILT CARD DESIGN */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(240, 75, 76, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(30, 42, 58, 0.4) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(240, 75, 76, 0.1);
  border: 1px solid rgba(240, 75, 76, 0.3);
  border-radius: 50px;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

.hero-content h1 i {
  color: var(--color-accent);
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(240, 75, 76, 0.3);
}

.btn-primary:hover {
  background: #e03d3e;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(240, 75, 76, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}


/* 3D TILT CARD */
.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-card-3d {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: 24px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  cursor: pointer;
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: radial-gradient(circle at 50% 50%, 
    var(--color-accent), 
    rgba(240, 75, 76, 0.4),
    transparent);
  border-radius: 24px;
  opacity: 0.6;
  filter: blur(25px);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.card-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 0.6), 
    rgba(240, 75, 76, 0.2),
    rgba(240, 75, 76, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.floating-badge {
  position: absolute;
  padding: 10px 16px;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: floatBadge 3s ease-in-out infinite;
  z-index: 10;
}

.floating-badge i {
  color: var(--color-accent);
}

.badge-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 15%;
  left: -10%;
  animation-delay: 1.5s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-content-left .btn:hover {
  background-color: #1ebc59;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* efectele importante */
.glow-word {
  color: var(--color-accent);
  text-shadow:
    0 0 6px rgba(248, 58, 37, 0.4),
    0 0 12px rgba(248, 58, 37, 0.2);
  font-weight: 600;
  transition: text-shadow 0.3s ease;
}

.glow-word:hover {
  text-shadow:
    0 0 10px rgba(248, 58, 37, 0.6),
    0 0 20px rgba(248, 58, 37, 0.3);
}

.highlight {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: var(--color-accent);
  z-index: 1;
}

.highlight::before {
  content: "";
  position: absolute;
  left: -0.2em;
  bottom: 0.2em;
  width: 110%;
  height: 0.5em;
  background: radial-gradient(ellipse at center, rgba(248, 58, 37, 0.45) 0%, rgba(248, 58, 37, 0.3) 70%, transparent 100%);
  z-index: -1;
  transform: rotate(-2deg) scaleX(1.05);
  border-radius: 12px;
  animation: drawHighlight 0.5s ease-out forwards;
  box-shadow:
    -2px 0 4px rgba(248, 58, 37, 0.2),
    2px 0 6px rgba(248, 58, 37, 0.1);
}

@keyframes drawHighlight {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 110%;
    opacity: 1;
  }
}

/* opțional: efectul "trasează" la apariție */
@keyframes drawHighlight {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* TRAINING SECTION - 2026 DESIGN */
.training-section {
  padding: 100px 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, 
    rgba(10, 14, 26, 0) 0%,
    rgba(15, 20, 35, 0.3) 50%,
    rgba(10, 14, 26, 0) 100%);
}

.training-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(240, 75, 76, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 75, 76, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.training-section .container,
.about-training .container,
.school-section .container {
  text-align: center;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  color: var(--color-light);
  text-align: center;
  padding-bottom: 16px;
  margin-bottom: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent,
    var(--color-accent),
    transparent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section-title:hover::after {
  width: 120px;
}

.section-title i {
  color: var(--color-accent);
  margin-right: 10px;
  font-size: 1.4rem;
  display: inline-block;
  vertical-align: middle;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: linear-gradient(135deg, 
    rgba(15, 20, 35, 0.6) 0%,
    rgba(20, 25, 40, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  color: var(--color-light);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--color-accent),
    rgba(240, 75, 76, 0.3),
    var(--color-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(240, 75, 76, 0.1) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(240, 75, 76, 0.3);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(240, 75, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, 
    var(--color-accent),
    rgba(240, 75, 76, 0.8));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
  box-shadow: 
    0 8px 24px rgba(240, 75, 76, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 32px rgba(240, 75, 76, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--color-light);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.card p {
  line-height: 1.7;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ABOUT SECTION */

.about-training {
  padding: 100px 20px;
  color: var(--color-light);
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, 
    rgba(10, 14, 26, 0) 0%,
    rgba(15, 20, 35, 0.3) 50%,
    rgba(10, 14, 26, 0) 100%);
}

.about-training::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(240, 75, 76, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(240, 75, 76, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.about-training .container {
  position: relative;
  z-index: 1;
}


.about-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #fff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* BENTO GRID LAYOUT */
.bento-container {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 32px;
  max-width: 1400px;
  margin: 60px auto 0;
  align-items: start;
}

.bento-image {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.bento-image::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, 
    var(--color-accent),
    rgba(240, 75, 76, 0.3),
    var(--color-accent));
  border-radius: 20px;
  opacity: 0.6;
  filter: blur(20px);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.bento-image:hover::before {
  opacity: 0.8;
}

.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-image img:hover {
  transform: scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
}

/* BENTO CARDS - REFINED GLASSMORPHISM */
.bento-card {
  background: linear-gradient(135deg, 
    rgba(15, 20, 35, 0.6) 0%,
    rgba(20, 25, 40, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  color: var(--color-light);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent,
    var(--color-accent),
    transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, 
    rgba(240, 75, 76, 0.1) 0%, 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-card:hover::before,
.bento-card:hover::after {
  opacity: 1;
}

.bento-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(240, 75, 76, 0.4);
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.7) 0%,
    rgba(25, 30, 45, 0.5) 100%);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(240, 75, 76, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.bento-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.85) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 6px 20px rgba(240, 75, 76, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.bento-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, 
    var(--color-accent),
    transparent);
  border-radius: 16px;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.4s ease;
}

.bento-card:hover .bento-icon::before {
  opacity: 0.6;
}

.bento-icon i {
  font-size: 1.6rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .bento-icon {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 
    0 8px 24px rgba(240, 75, 76, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.bento-card:hover .bento-icon i {
  transform: scale(1.05);
}

.bento-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-light);
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.bento-card:hover h3 {
  color: #fff;
}

.bento-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.bento-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}
@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}


/* ICON ABOVE TITLE */
.training-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  background-color: rgba(248, 58, 37, 0.1);
  color: var(--color-accent);
  border-radius: 6px;
  margin-right: 10px;
  box-shadow: 0 0 4px rgba(248, 58, 37, 0.2);
  animation: pulseIcon 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
.training-card:hover .training-icon {
  text-shadow: 0 0 6px rgba(248, 58, 37, 0.2);
}
.training-card h3 {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center; /* centrăm orizontal */
  gap: 10px;
  text-align: center;
}

.training-card p {
  color: var(--color-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* NUMEROTARE */
.training-number {
  position: absolute;
  top: -25px;
  right: 25px;
  font-size: 5.5rem;
  color: rgba(248, 58, 37, 0.05);
  font-weight: bold;
  pointer-events: none;
}
@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@media (max-width: 768px) {
  .training-number {
    font-size: 4rem;
    top: -15px;
    right: 15px;
  }

  .training-card {
    padding: 20px;
  }
}

/* SCHOOL SECTION */

.school-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, 
    rgba(10, 14, 26, 0) 0%,
    rgba(15, 20, 35, 0.3) 50%,
    rgba(10, 14, 26, 0) 100%);
}

.school-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(240, 75, 76, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 75, 76, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.school-section .container {
  position: relative;
  z-index: 1;
}

.school-category {
  background: linear-gradient(135deg, 
    rgba(15, 20, 35, 0.7) 0%,
    rgba(20, 25, 40, 0.5) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--color-accent);
  border-radius: 16px;
  padding: 32px;
  margin: 0 auto 32px;
  max-width: 900px;
  text-align: left;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.school-category.mai::before,
.school-category.anp::before,
.school-category.mapn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  filter: blur(3px) grayscale(20%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: 0 16px 16px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 30%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 100%);
}

.school-category.mai::before {
  background-image: url('images/mai.jpg');
}

.school-category.anp::before {
  background-image: url('images/anp.jpeg');
}

.school-category.mapn::before {
  background-image: url('images/mapn.jpg');
}

.school-category::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--color-accent),
    rgba(240, 75, 76, 0.3),
    transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.school-category > * {
  position: relative;
  z-index: 1;
}

.school-category.active {
  opacity: 1;
  transform: translateY(0);
}

.school-category:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(240, 75, 76, 0.4);
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.75) 0%,
    rgba(25, 30, 45, 0.55) 100%);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(240, 75, 76, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 40px rgba(240, 75, 76, 0.1);
}

.school-category:hover::before {
  opacity: 0.28;
  filter: blur(2px) grayscale(10%);
  transform: scale(1.03);
}

.school-category:hover::after {
  opacity: 1;
}

.school-category h3 {
  font-size: 1.35rem;
  color: var(--color-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.school-category h3 i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, 
    var(--color-accent),
    rgba(240, 75, 76, 0.85));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 
    0 4px 12px rgba(240, 75, 76, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.school-category:hover h3 i {
  transform: translateY(-2px) scale(1.1) rotate(5deg);
  box-shadow: 
    0 6px 20px rgba(240, 75, 76, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.school-category ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.school-category li,
.school-category p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  padding-left: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.school-category li:hover,
.school-category p:hover {
  transform: translateX(8px);
  color: #fff;
  padding-left: 12px;
}

.school-category li i,
.school-category p i {
  color: var(--color-accent);
  font-size: 0.5rem;
  margin-top: 8px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(240, 75, 76, 0.5));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.school-category li:hover i,
.school-category p:hover i {
  transform: scale(1.4);
  filter: drop-shadow(0 0 8px rgba(240, 75, 76, 0.8));
}

/* ANIMAȚIE BULINĂ */
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.6; }
}


/* REVIEWS SECTION */

.reviews-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, 
    rgba(10, 14, 26, 0) 0%,
    rgba(15, 20, 35, 0.3) 50%,
    rgba(10, 14, 26, 0) 100%);
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(240, 75, 76, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 75, 76, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.reviews-section .container {
  position: relative;
  z-index: 1;
}
#reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, 
    rgba(10, 14, 26, 0.95) 0%,
    rgba(5, 8, 15, 1) 100%);
  color: var(--color-light);
  padding: 60px 20px 30px;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, 
    transparent,
    var(--color-accent),
    transparent) 1;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 50% 20%, rgba(240, 75, 76, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* FOOTER CTA */
.footer-cta {
  text-align: center;
  max-width: 600px;
}

.footer-cta-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-cta-title i {
  color: var(--color-accent);
  font-size: 1.6rem;
}

.footer-cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* WHATSAPP CTA BUTTON */
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 
    0 8px 24px rgba(37, 211, 102, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent);
  transition: left 0.5s ease;
}

.footer-whatsapp-btn:hover::before {
  left: 100%;
}

.footer-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 12px 32px rgba(37, 211, 102, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.footer-whatsapp-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.footer-whatsapp-btn i {
  font-size: 1.4rem;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.6) 0%,
    rgba(25, 30, 45, 0.4) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.85) 100%);
  border-color: var(--color-accent);
  transform: translateY(-4px) rotate(5deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(240, 75, 76, 0.4);
}

/* COPYRIGHT */
.footer-copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.footer-copyright p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-copyright strong {
  color: rgba(255, 255, 255, 0.8);
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.85) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 75, 76, 0.3);
  color: white;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 
    0 4px 16px rgba(240, 75, 76, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  text-decoration: none;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 
    0 8px 24px rgba(240, 75, 76, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: var(--color-accent);
}

/* BUTON MAI MULTE RECENZII */
.recenzii-footer {
  text-align: center;
  margin-top: 48px;
}

.recenzii-footer .btn {
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 0.9) 0%,
    rgba(220, 60, 65, 0.85) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 75, 76, 0.3);
  color: var(--color-light);
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 24px rgba(240, 75, 76, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.recenzii-footer .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent);
  transition: left 0.5s ease;
}

.recenzii-footer .btn:hover::before {
  left: 100%;
}

.recenzii-footer .btn:hover {
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 1) 0%,
    rgba(220, 60, 65, 0.95) 100%);
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(240, 75, 76, 0.5);
  box-shadow: 
    0 12px 32px rgba(240, 75, 76, 0.6),
    0 0 0 1px rgba(240, 75, 76, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.recenzii-footer .btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 
    0 6px 16px rgba(240, 75, 76, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.recenzii-footer .btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.recenzii-footer .btn:hover i {
  transform: translateX(4px);
}

/* despre.php */
/* === SECTION DESPRE TIMELINE === */
.about-page-section {
  padding: 80px 20px;
  color: var(--color-light);
  text-align: center;
}


.timeline {
  position: relative;
  margin: 0 auto;
  padding: 40px 0;
  max-width: 900px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 21px;
  width: 3px;
  background: linear-gradient(180deg, 
    transparent 0%,
    rgba(240, 75, 76, 0.6) 10%,
    rgba(240, 75, 76, 0.4) 50%,
    rgba(240, 75, 76, 0.6) 90%,
    transparent 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(240, 75, 76, 0.3);
}

.timeline-block {
  display: flex;
  position: relative;
  margin-bottom: 60px;
  gap: 20px;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.85) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 
    0 4px 16px rgba(240, 75, 76, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
  margin-left: 2px;
  z-index: 2;
  transform: translateY(5px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(240, 75, 76, 0.3);
}

.timeline-block:hover .timeline-icon {
  transform: translateY(5px) scale(1.1) rotate(5deg);
  box-shadow: 
    0 6px 24px rgba(240, 75, 76, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.timeline-icon.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(248, 58, 37, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(248, 58, 37, 0); }
  100% { box-shadow: 0 0 0 0 rgba(248, 58, 37, 0); }
}

.timeline-content {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.7) 0%,
    rgba(25, 30, 45, 0.5) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid rgba(240, 75, 76, 0.3);
  padding: 24px 28px;
  border-radius: 16px;
  width: 100%;
  color: var(--color-light);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover {
  transform: translateY(-4px) scale(1.01);
  border-left-width: 4px;
  border-left-color: var(--color-accent);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(240, 75, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
  font-size: 1.35rem;
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(255, 120, 100, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.timeline-content p,
.timeline-content ul {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.2px;
}

.timeline-content ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
  text-align: left;
}

.timeline-content ul li {
  list-style: none;
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 0.6rem;
}

.timeline-content ul li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-accent);
  position: absolute;
  left: 0.3em;
  top: 0;
}

/* Final block cu imagine + quote */
.timeline-final .timeline-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.7) 0%,
    rgba(25, 30, 45, 0.5) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Imagine cu glow effect */
.timeline-final .timeline-img-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

.timeline-final .timeline-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, 
    var(--color-accent),
    rgba(240, 75, 76, 0.3),
    var(--color-accent));
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(20px);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.timeline-final .timeline-img-wrapper:hover::before {
  opacity: 0.8;
}

.timeline-final img.timeline-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.timeline-final img.timeline-img:hover {
  transform: scale(1.05);
}

/* Quote styling */
.final-quote {
  flex: 1;
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.quote-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--color-light);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.quote-author {
  display: block;
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 600;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {

  .timeline::before {
    display: none; /* ascundem linia verticală pe mobil */
  }

  .timeline-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    gap: 20px;
    margin-bottom: 40px;
  }

  .timeline-icon {
    margin-left: 0;
    margin-bottom: 12px;
    transform: none;
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
    box-shadow: 
      0 6px 20px rgba(240, 75, 76, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }

  .timeline-block:hover .timeline-icon {
    transform: scale(1.05);
  }

  .timeline-content {
    width: 100%;
    padding: 20px;
    border-left: none;
    border-top: 3px solid var(--color-accent);
    border-radius: 12px;
  }

  .timeline-content:hover {
    transform: translateY(-2px) scale(1.005);
  }

  .timeline-content h3 {
    justify-content: center;
    font-size: 1.2rem;
  }

  .timeline-content p,
  .timeline-content ul {
    font-size: 1rem;
    line-height: 1.7;
  }

  .timeline-content ul {
    padding-left: 0;
  }

  .timeline-content ul li {
    padding-left: 1.4em;
    text-align: left;
  }

  .timeline-final .timeline-content {
    flex-direction: column;
    gap: 28px;
    text-align: center;
    padding: 28px 20px;
    border-top: 3px solid rgba(240, 75, 76, 0.6);
  }

  .timeline-final .timeline-img-wrapper {
    width: 200px;
    height: 200px;
  }

  .quote-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .quote-icon {
    font-size: 2rem;
  }

  .quote-author {
    font-size: 1rem;
    text-align: center;
  }
}

/* recenzii.php */
.recenzii-section {
  padding: 100px 20px;
  background-color: var(--color-dark);
  color: var(--color-light);
  text-align: center;
}

.recenzii-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.recenzii-section .section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* SPLIT LAYOUT MODERN */
.recenzii-split-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  margin-bottom: 80px;
  align-items: start;
}

/* PANEL STATISTICI */
.recenzii-stats-panel {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 0.15) 0%,
    rgba(240, 75, 76, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(240, 75, 76, 0.2);
  margin-bottom: 8px;
}

.stats-header i {
  font-size: 1.5rem;
  color: var(--color-accent);
  filter: drop-shadow(0 0 8px rgba(240, 75, 76, 0.5));
}

.stats-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* STAT CARDS */
.stat-card {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.8) 0%,
    rgba(25, 30, 45, 0.6) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent,
    var(--color-accent),
    transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 75, 76, 0.3);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(240, 75, 76, 0.2);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.85) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 
    0 6px 20px rgba(240, 75, 76, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
  font-size: 1.6rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 4px;
}

.stat-subtext {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.stat-stars {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.stat-stars i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
}

.stat-stars i.active {
  color: var(--color-accent);
  filter: drop-shadow(0 0 4px rgba(240, 75, 76, 0.6));
}

/* CATEGORII POPULARE */
.stat-card.stat-categories {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.stat-header-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-header-mini i {
  color: var(--color-accent);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px rgba(240, 75, 76, 0.5));
}

.stat-header-mini span {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.categories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.category-item:hover {
  background: rgba(240, 75, 76, 0.1);
  border-color: rgba(240, 75, 76, 0.3);
  transform: translateX(4px);
}

.category-item i {
  color: var(--color-accent);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.cat-name {
  flex: 1;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.cat-count {
  background: var(--color-accent);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 32px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(240, 75, 76, 0.3);
}

/* PANEL FORMULAR */
.recenzii-form-panel {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.75) 0%,
    rgba(25, 30, 45, 0.6) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recenzii-form-panel:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-header-modern {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header-modern i {
  font-size: 2.5rem;
  color: var(--color-accent);
  filter: drop-shadow(0 0 12px rgba(240, 75, 76, 0.6));
  margin-bottom: 12px;
  display: block;
}

.form-header-modern h3 {
  font-size: 1.6rem;
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-header-modern p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin: 0;
}



.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.form-group label i {
  color: var(--color-accent);
  font-size: 1.5rem;
  filter: drop-shadow(0 0 4px rgba(240, 75, 76, 0.4));
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(135deg, 
    rgba(15, 20, 35, 0.5) 0%,
    rgba(20, 25, 40, 0.4) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(240, 75, 76, 0.5);
  background: linear-gradient(135deg, 
    rgba(15, 20, 35, 0.6) 0%,
    rgba(20, 25, 40, 0.5) 100%);
  outline: none;
  box-shadow: 
    0 0 0 3px rgba(240, 75, 76, 0.15),
    inset 0 1px 3px rgba(0, 0, 0, 0.2);
}


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

.file-upload-wrapper {
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
  background: linear-gradient(135deg, 
    rgba(15, 20, 35, 0.5) 0%,
    rgba(20, 25, 40, 0.4) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.file-upload-label:hover {
  border-color: rgba(240, 75, 76, 0.5);
  background: linear-gradient(135deg, 
    rgba(15, 20, 35, 0.6) 0%,
    rgba(20, 25, 40, 0.5) 100%);
  transform: translateY(-2px);
}

.file-upload-label i {
  font-size: 2rem;
  color: var(--color-accent);
  filter: drop-shadow(0 0 8px rgba(240, 75, 76, 0.5));
}

.file-upload-label span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.success-message-inline {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.7) 0%,
    rgba(25, 30, 45, 0.5) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #28a745;
  padding: 18px 24px;
  border-radius: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.success-message-inline i {
  color: #28a745;
  font-size: 1.3rem;
  filter: drop-shadow(0 0 6px rgba(40, 167, 69, 0.5));
}

.success-message-inline span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

/* Buton Modern */
.btn-submit-modern {
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.9) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 
    0 8px 24px rgba(240, 75, 76, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-submit-modern:hover {
  background: linear-gradient(135deg, 
    rgba(230, 55, 32, 1) 0%,
    rgba(240, 75, 76, 1) 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(240, 75, 76, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-submit-modern:active {
  transform: scale(0.98);
}

.btn-submit-modern i {
  font-size: 1.2rem;
}

/* Buton vechi pentru compatibilitate */
.recenzie-form .btn.btn-whatsapp {
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.9) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 
    0 8px 24px rgba(240, 75, 76, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.recenzie-form .btn.btn-whatsapp:hover {
  background: linear-gradient(135deg, 
    rgba(230, 55, 32, 1) 0%,
    rgba(240, 75, 76, 1) 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(240, 75, 76, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.recenzie-form .btn.btn-whatsapp:active {
  transform: scale(0.98);
  box-shadow: 0 6px 16px rgba(240, 75, 76, 0.3);
}

.recenzie-form .btn.btn-whatsapp i {
  font-size: 1.2rem;
}


/* Stele */
.stars-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 8px;
}

.stars-input input {
  display: none;
}

.stars-input label {
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stars-input label i {
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 0 transparent);
}

/* Hover effect */
.stars-input label:hover i,
.stars-input label:hover ~ label i {
  color: var(--color-accent);
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(240, 75, 76, 0.6));
}

/* Checked state - colorează steaua selectată și toate cele după ea */
.stars-input input:checked ~ label i {
  color: var(--color-accent);
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(240, 75, 76, 0.5));
  animation: star-glow 0.4s ease-out;
}

@keyframes star-glow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    transform: scale(1.25);
    filter: drop-shadow(0 0 12px rgba(240, 75, 76, 0.8));
  }
  100% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px rgba(240, 75, 76, 0.5));
  }
}

@keyframes star-pulse {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Recenzii carduri */
.recenzii-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.recenzie-card {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.75) 0%,
    rgba(25, 30, 45, 0.6) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  color: var(--color-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recenzie-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(240, 75, 76, 0.4);
  box-shadow: 
    0 16px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(240, 75, 76, 0.3),
    0 0 40px rgba(240, 75, 76, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Ghilimele */
.recenzie-favicon {
  font-size: 60px;
  color: rgba(240, 75, 76, 0.08);
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.before-icon {
  top: 16px;
  left: 16px;
}

.after-icon {
  bottom: 16px;
  right: 16px;
}

.recenzie-header strong {
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, 
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  z-index: 2;
  position: relative;
}

.recenzie-role {
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 0.2) 0%,
    rgba(240, 75, 76, 0.1) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 75, 76, 0.3);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 
    0 4px 12px rgba(240, 75, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  position: relative;
}

.recenzie-role i {
  font-size: 0.9rem;
  filter: drop-shadow(0 0 4px rgba(240, 75, 76, 0.5));
}


.recenzie-stars {
  font-size: 1.3rem;
  display: flex;
  gap: 6px;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.recenzie-stars i {
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.recenzie-stars .active {
  color: var(--color-accent);
  filter: drop-shadow(0 0 6px rgba(240, 75, 76, 0.6));
  transform: scale(1.1);
}

.recenzie-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.recenzie-text.expanded {
  max-height: none;
}

.recenzie-text.has-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(20, 25, 40, 0.95));
  pointer-events: none;
}

.recenzie-text.expanded::after {
  display: none;
}

.recenzie-img {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  position: relative;
}

.recenzie-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.recenzie-card:hover .recenzie-img img {
  transform: scale(1.1);
}

.read-more-btn {
  background: linear-gradient(135deg, var(--color-accent), rgba(240, 75, 76, 0.85));
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(240, 75, 76, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 75, 76, 0.5);
}

.read-more-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.read-more-btn.expanded i {
  transform: rotate(180deg);
}

/* CAROUSEL NAVIGATION BUTTONS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.9) 0%,
    rgba(25, 30, 45, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-light);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 0.9) 0%,
    rgba(220, 60, 65, 0.85) 100%);
  border-color: rgba(240, 75, 76, 0.4);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 
    0 6px 24px rgba(240, 75, 76, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

/* CAROUSEL DOTS */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 12px rgba(240, 75, 76, 0.6);
  width: 28px;
  border-radius: 5px;
}

.recenzie-img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-accent);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.recenzie-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RECENZII STATIC GRID PENTRU INDEX.PHP */
.recenzii-static-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Carduri recenzii statice */
.recenzie-card-static {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.8) 0%,
    rgba(25, 30, 45, 0.6) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 80px 28px 32px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: var(--color-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recenzie-card-static:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 75, 76, 0.3);
  box-shadow: 
    0 16px 56px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(240, 75, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Imaginea din card */
.recenzie-card-static .recenzie-img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-accent);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.recenzie-card-static .recenzie-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Vezi toate recenziile button */
.vezi-toate-btn {
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.9) 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 
    0 8px 24px rgba(240, 75, 76, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.vezi-toate-btn:hover {
  background: linear-gradient(135deg, 
    rgba(230, 55, 32, 1) 0%,
    rgba(240, 75, 76, 1) 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(240, 75, 76, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.vezi-toate-btn i {
  transition: transform 0.3s ease;
}

.vezi-toate-btn:hover i {
  transform: translateX(4px);
}

/* ========================================
   CONTACT.PHP - MODERN DESIGN 2026
   ======================================== */

/* HERO SECTION */
.contact-hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 140px 20px 80px;
  overflow: hidden;
  background: linear-gradient(180deg, 
    rgba(10, 14, 26, 0) 0%,
    rgba(15, 20, 35, 0.3) 100%);
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
}

.contact-hero-content h1 i {
  color: var(--color-accent);
  margin-right: 12px;
}

.contact-hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Quick Contact Pills */
.quick-contact-pills {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.6) 0%,
    rgba(25, 30, 45, 0.5) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 75, 76, 0.4);
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.8) 0%,
    rgba(25, 30, 45, 0.7) 100%);
  box-shadow: 
    0 8px 24px rgba(240, 75, 76, 0.3),
    0 0 0 1px rgba(240, 75, 76, 0.2);
}

.contact-pill.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: rgba(37, 211, 102, 0.3);
}

.contact-pill.whatsapp:hover {
  background: linear-gradient(135deg, #1ebc59 0%, #0f7a6d 100%);
  box-shadow: 
    0 8px 24px rgba(37, 211, 102, 0.4),
    0 0 20px rgba(37, 211, 102, 0.2);
}

.contact-pill i {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

/* CONTACT CARDS SECTION */
.contact-cards-section {
  padding: 60px 20px 100px;
  position: relative;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Card */
.contact-card {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.75) 0%,
    rgba(25, 30, 45, 0.6) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent,
    var(--color-accent),
    transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 75, 76, 0.3);
  box-shadow: 
    0 16px 56px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(240, 75, 76, 0.2);
}

.contact-card:hover::before {
  opacity: 1;
}

/* Card Header */
.card-icon-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.85) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 
    0 6px 20px rgba(240, 75, 76, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}

.card-icon.social {
  background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
  box-shadow: 
    0 6px 20px rgba(225, 48, 108, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.25);
}

.card-icon.location {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
  box-shadow: 
    0 6px 20px rgba(66, 133, 244, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.25);
}

.contact-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-icon i {
  font-size: 1.6rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card-icon-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

/* Card Content */
.card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

/* Info Items */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(240, 75, 76, 0.05);
  border-color: rgba(240, 75, 76, 0.2);
  transform: translateX(4px);
}

.info-item > i {
  color: var(--color-accent);
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 4px rgba(240, 75, 76, 0.5));
}

.info-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.5;
}

.info-value a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-value a:hover {
  color: rgba(240, 75, 76, 1);
  text-shadow: 0 0 8px rgba(240, 75, 76, 0.5);
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent);
  transition: left 0.5s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link > i:first-child {
  font-size: 1.4rem;
  width: 32px;
  text-align: center;
}

.social-link span {
  flex: 1;
}

.social-link > i:last-child {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.social-link:hover > i:last-child {
  opacity: 1;
  transform: translateX(0);
}

.social-link.facebook {
  border-left: 3px solid #1877F2;
}

.social-link.facebook:hover {
  background: rgba(24, 119, 242, 0.1);
  border-color: #1877F2;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.2);
}

.social-link.facebook > i:first-child {
  color: #1877F2;
}

.social-link.instagram {
  border-left: 3px solid #E1306C;
}

.social-link.instagram:hover {
  background: rgba(225, 48, 108, 0.1);
  border-color: #E1306C;
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.2);
}

.social-link.instagram > i:first-child {
  color: #E1306C;
}

.social-link.tiktok {
  border-left: 3px solid #00F2EA;
}

.social-link.tiktok:hover {
  background: rgba(0, 242, 234, 0.1);
  border-color: #00F2EA;
  box-shadow: 0 4px 16px rgba(0, 242, 234, 0.2);
}

.social-link.tiktok > i:first-child {
  color: #00F2EA;
}

/* Location Card */
.location-address {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
}

.location-address i {
  color: var(--color-accent);
  font-size: 1.3rem;
  filter: drop-shadow(0 0 4px rgba(240, 75, 76, 0.5));
}

.location-address span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

.location-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 16px rgba(66, 133, 244, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.location-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(66, 133, 244, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.location-btn i {
  font-size: 1.2rem;
}

/* Map Container */
.map-container {
  max-width: 1400px;
  margin: 0 auto 60px;
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.75) 0%,
    rgba(25, 30, 45, 0.6) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-header i {
  color: var(--color-accent);
  font-size: 1.5rem;
  filter: drop-shadow(0 0 6px rgba(240, 75, 76, 0.5));
}

.map-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.map-embed iframe {
  display: block;
  filter: grayscale(0.2) contrast(1.1);
}

/* WhatsApp CTA */
.contact-cta {
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 
    0 12px 40px rgba(37, 211, 102, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.cta-content > i {
  font-size: 3.5rem;
  color: white;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.cta-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.whatsapp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: white;
  color: #25D366;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.whatsapp-cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.whatsapp-cta-btn i {
  font-size: 1.4rem;
}

/* ========================================
   PARTENERI.PHP - MODERN SPLIT LAYOUT
   ======================================== */

/* Partners Section */
.partners-modern-section {
  padding: 140px 20px 100px;
  position: relative;
}

/* Section Header */
.partners-header {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.partners-header h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.header-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 16px;
}

/* Partner Split Card */
.partner-split-card {
  max-width: 1400px;
  margin: 0 auto 60px;
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.75) 0%,
    rgba(25, 30, 45, 0.6) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.partner-split-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent,
    var(--color-accent),
    transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-split-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 75, 76, 0.3);
  box-shadow: 
    0 16px 56px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(240, 75, 76, 0.2);
}

.partner-split-card:hover::before {
  opacity: 1;
}

/* Partner Badges */
.partner-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 0.2) 0%,
    rgba(240, 75, 76, 0.1) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 75, 76, 0.3);
  border-radius: 50px;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 
    0 2px 8px rgba(240, 75, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.partner-badge.official {
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 0.25) 0%,
    rgba(240, 75, 76, 0.15) 100%);
}

.partner-badge.category {
  background: linear-gradient(135deg, 
    rgba(66, 133, 244, 0.2) 0%,
    rgba(66, 133, 244, 0.1) 100%);
  border-color: rgba(66, 133, 244, 0.3);
  color: #4285F4;
}

.partner-badge.nutrition {
  background: linear-gradient(135deg, 
    rgba(52, 168, 83, 0.2) 0%,
    rgba(52, 168, 83, 0.1) 100%);
  border-color: rgba(52, 168, 83, 0.3);
  color: #34A853;
}

.partner-badge i {
  font-size: 0.9rem;
  filter: drop-shadow(0 0 4px currentColor);
}

/* Split Content */
.partner-split-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

/* Logo Section */
.partner-logo-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.logo-container {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.partner-split-card:hover .logo-container {
  border-color: rgba(240, 75, 76, 0.2);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(240, 75, 76, 0.1);
}

.partner-logo-modern {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.partner-meta {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, 
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-website {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.partner-website:hover {
  color: rgba(240, 75, 76, 1);
  text-shadow: 0 0 8px rgba(240, 75, 76, 0.5);
}

.partner-website i {
  font-size: 0.85rem;
}

/* Info Section */
.partner-info-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.partner-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partner-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Features */
.partner-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(240, 75, 76, 0.05);
  border-color: rgba(240, 75, 76, 0.2);
  transform: translateY(-4px);
}

.feature-item i {
  font-size: 1.8rem;
  color: var(--color-accent);
  filter: drop-shadow(0 0 6px rgba(240, 75, 76, 0.5));
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.partner-cta-section {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.discount-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 0.15) 0%,
    rgba(240, 75, 76, 0.08) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 75, 76, 0.3);
  border-radius: 50px;
  box-shadow: 
    0 4px 16px rgba(240, 75, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  flex: 1;
}

.discount-pill i {
  color: var(--color-accent);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 4px rgba(240, 75, 76, 0.5));
}

.discount-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.discount-code-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(240, 75, 76, 0.3);
}

.partner-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.85) 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 16px rgba(240, 75, 76, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.partner-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 8px 24px rgba(240, 75, 76, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.partner-cta-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.partner-cta-btn:hover i {
  transform: translateX(4px);
}


/* Responsive for mobile - CONTACT.PHP */
@media (max-width: 768px) {
  /* Hero Section */
  .contact-hero-section {
    min-height: 60vh;
    padding: 120px 16px 60px;
  }

  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }

  .quick-contact-pills {
    flex-direction: column;
    gap: 12px;
  }

  .contact-pill {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  /* Cards Grid */
  .contact-cards-section {
    padding: 40px 16px 80px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-card {
    padding: 24px;
  }

  .card-icon-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
  }

  .card-icon i {
    font-size: 1.4rem;
  }

  .card-icon-header h3 {
    font-size: 1.2rem;
  }

  .info-item {
    padding: 14px;
    gap: 12px;
  }

  .info-item > i {
    font-size: 1.2rem;
  }

  .social-link {
    padding: 12px 16px;
  }

  .social-link > i:first-child {
    font-size: 1.2rem;
  }

  /* Map Container */
  .map-container {
    padding: 24px 20px;
    margin-bottom: 40px;
  }

  .map-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .map-header h3 {
    font-size: 1.2rem;
  }

  .map-embed iframe {
    height: 300px !important;
  }

  /* WhatsApp CTA */
  .contact-cta {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }

  .cta-content {
    flex-direction: column;
    gap: 16px;
  }

  .cta-content > i {
    font-size: 2.5rem;
  }

  .cta-text h3 {
    font-size: 1.3rem;
  }

  .cta-text p {
    font-size: 0.95rem;
  }

  .whatsapp-cta-btn {
    width: 100%;
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Responsive Split Layout */
@media (max-width: 1024px) {
  .recenzii-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .recenzii-stats-panel {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stats-header {
    grid-column: 1 / -1;
  }

  .stat-card.stat-categories {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .recenzii-section {
    padding: 130px 16px 60px;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 16px;
  }

  .recenzii-split-layout {
    gap: 32px;
    margin-bottom: 60px;
  }

  .recenzii-stats-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-header {
    padding: 16px 20px;
  }

  .stats-header h3 {
    font-size: 1.1rem;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
  }

  .stat-icon i {
    font-size: 1.4rem;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .category-item {
    padding: 10px 14px;
  }

  .recenzii-form-panel {
    padding: 24px 20px;
  }

  .form-header-modern i {
    font-size: 2rem;
  }

  .form-header-modern h3 {
    font-size: 1.4rem;
  }

  .form-header-modern p {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .file-upload-label {
    padding: 24px 16px;
  }

  .file-upload-label i {
    font-size: 1.5rem;
  }

  .stars-input label {
    font-size: 2rem;
  }

  .btn-submit-modern {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .recenzii-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .recenzie-card {
    padding: 24px;
  }

  .recenzie-img {
    max-width: 100%;
  }
  
  .recenzie-img img {
    height: auto;
  }

  /* RECENZII STATIC GRID MOBILE */
  .recenzii-static-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 16px;
  }

  .recenzie-card-static {
    padding: 70px 24px 28px;
  }

  .carousel-dot.active {
    width: 24px;
  }

  .recenzie-header {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .recenzie-text {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
    max-height: 100px;
    margin: 0 auto;
  }

  .recenzie-role {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .recenzie-img img {
    width: 80px;
    height: 80px;
  }

  .btn.btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }

  .recenzie-card::after {
    font-size: 1.8rem;
    top: 16px;
    right: 18px;
  }
}

/* program.php */
.select-program .container {
  padding-top: 100px;
  padding-bottom: 80px;
  text-align: center;
}

.program-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.program-btn {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.7) 0%,
    rgba(25, 30, 45, 0.5) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-light);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.program-btn i {
  color: var(--color-accent);
  font-size: 1.2rem;
}

.program-btn:hover {
  background: linear-gradient(135deg, 
    rgba(25, 30, 45, 0.8) 0%,
    rgba(30, 35, 50, 0.6) 100%);
  border-color: rgba(240, 75, 76, 0.5);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(240, 75, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.program-btn.active {
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.85) 100%);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 
    0 12px 36px rgba(240, 75, 76, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.02);
}

.program-btn.active i {
  color: #fff;
}


.program-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-top: 40px;
}

.program-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.content-title {
  font-size: 1.3rem;
  margin-bottom: 32px;
  padding: 12px 24px;
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.7) 0%,
    rgba(25, 30, 45, 0.5) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--color-accent);
  border-radius: 16px;
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: all 0.3s ease;
}

.content-title:hover {
  transform: translateX(4px);
  border-left-width: 4px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(240, 75, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.content-title i {
  color: var(--color-accent);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px rgba(240, 75, 76, 0.5));
}

/* Grid layout pentru antrenamente */
.trainings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  text-align: left;
}

.training-card2 {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.75) 0%,
    rgba(25, 30, 45, 0.6) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.training-card2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 0.05) 0%,
    transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.training-card2:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(240, 75, 76, 0.4);
  box-shadow: 
    0 16px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(240, 75, 76, 0.3),
    0 0 40px rgba(240, 75, 76, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.training-card2:hover::before {
  opacity: 1;
}

.training-card2-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 12px;
}

.card-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot.status-programat {
  background: #28a745;
  box-shadow: 0 0 12px rgba(40, 167, 69, 0.6);
}

.status-dot.status-desfasurare {
  background: #ffc107;
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.6);
}

.status-dot.status-incheiat {
  background: #dc3545;
  box-shadow: 0 0 12px rgba(220, 53, 69, 0.6);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.training-card2-header h3 {
  font-size: 1.4rem;
  background: linear-gradient(135deg, 
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.3;
  margin: 0;
}

.training-badge {
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.badge-programat { background: #28a745; }
.badge-desfasurare { background: #ffc107; color: #000; }
.badge-incheiat { background: #dc3545; }

.training-badge.badge-inchisa {
  background-color: #f44336;
  color: #fff;
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 16px;
  white-space: nowrap;
  display: inline-block;
}

.cta-disabled {
  background: linear-gradient(135deg, 
    rgba(244, 67, 54, 0.3) 0%,
    rgba(220, 53, 69, 0.3) 100%);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(10px);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .training-badge.badge-inchisa {
    font-size: 0.7rem;
    padding: 3px 6px;
  }

  .cta-disabled {
    font-size: 0.85rem;
    padding: 10px 16px;
  }
}

.training-info-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, 
    rgba(240, 75, 76, 0.15) 0%,
    rgba(240, 75, 76, 0.08) 100%);
  border: 1px solid rgba(240, 75, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 
    0 4px 12px rgba(240, 75, 76, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.info-icon i {
  color: var(--color-accent);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px rgba(240, 75, 76, 0.5));
}

.training-card2:hover .info-icon {
  transform: scale(1.05);
  box-shadow: 
    0 6px 16px rgba(240, 75, 76, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.info-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.2px;
}

.info-sublabel {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.training-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.training-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.3s ease;
}

.training-description.fade {
  max-height: 100px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.show-more-btn {
  background: transparent;
  border: none;
  color: var(--color-accent);
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.show-more-btn:hover {
  color: var(--color-primary);
}

.training-cta {
  margin-top: 24px;
}

.cta-blue {
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.9) 100%);
  color: #fff;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  width: 100%;
  box-shadow: 
    0 8px 24px rgba(240, 75, 76, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-blue:hover {
  background: linear-gradient(135deg, 
    rgba(230, 55, 32, 1) 0%,
    rgba(240, 75, 76, 1) 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(240, 75, 76, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta-blue:active {
  transform: scale(0.97);
  box-shadow: 0 4px 10px rgba(248, 58, 37, 0.25);
}

.cta-blue i {
  color: #fff;
  font-size: 1.2rem;
}

.training-category {
  background: linear-gradient(135deg, 
    rgba(15, 20, 35, 0.4) 0%,
    rgba(20, 25, 40, 0.3) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  margin-bottom: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.training-category h4 {
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(255, 120, 100, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .program-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .program-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================
   programare.php styling
========================== */
.programare-page .container {
  padding-top: 140px;
  padding-bottom: 80px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.programare-section .container {
  padding-top: 130px;
  max-width: 700px;
  margin: 0 auto;
}

.antrenament-info {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.75) 0%,
    rgba(25, 30, 45, 0.6) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  color: #fff;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.antrenament-info:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 75, 76, 0.4);
  box-shadow: 
    0 16px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(240, 75, 76, 0.3),
    0 0 40px rgba(240, 75, 76, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.antrenament-header {
  margin-bottom: 24px;
}

.antrenament-info h3 {
  font-size: 1.4rem;
  background: linear-gradient(135deg, 
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.3;
  margin: 0;
}

.antrenament-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.success-message,
.error-message {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.7) 0%,
    rgba(25, 30, 45, 0.5) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.success-message {
  border-left: 3px solid #28a745;
}

.success-message i {
  color: #28a745;
  font-size: 1.3rem;
  filter: drop-shadow(0 0 6px rgba(40, 167, 69, 0.5));
}

.error-message {
  border-left: 3px solid #dc3545;
}

.error-message i {
  color: #dc3545;
  font-size: 1.3rem;
  filter: drop-shadow(0 0 6px rgba(220, 53, 69, 0.5));
}

.success-message-card {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.75) 0%,
    rgba(25, 30, 45, 0.6) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid #28a745;
  border-radius: 20px;
  padding: 40px 32px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(40, 167, 69, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(40, 167, 69, 0.2) 0%,
    rgba(40, 167, 69, 0.1) 100%);
  border: 2px solid rgba(40, 167, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: success-pulse 2s ease-in-out infinite;
}

.success-icon-wrapper i {
  color: #28a745;
  font-size: 2.5rem;
  filter: drop-shadow(0 0 12px rgba(40, 167, 69, 0.6));
}

@keyframes success-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
}

.success-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  background: linear-gradient(135deg, 
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.programare-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.75) 0%,
    rgba(25, 30, 45, 0.6) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.programare-form:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.programare-form .form-group {
  display: flex;
  flex-direction: column;
}

.programare-form label {
  margin-bottom: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.programare-form input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(135deg, 
    rgba(15, 20, 35, 0.5) 0%,
    rgba(20, 25, 40, 0.4) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.programare-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.programare-form input:focus {
  outline: none;
  border-color: rgba(240, 75, 76, 0.5);
  background: linear-gradient(135deg, 
    rgba(15, 20, 35, 0.6) 0%,
    rgba(20, 25, 40, 0.5) 100%);
  box-shadow: 
    0 0 0 3px rgba(240, 75, 76, 0.15),
    inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-button {
  background: linear-gradient(135deg, 
    var(--color-accent) 0%,
    rgba(240, 75, 76, 0.9) 100%);
  color: #fff;
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  width: 100%;
  box-shadow: 
    0 8px 24px rgba(240, 75, 76, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cta-button:hover {
  background: linear-gradient(135deg, 
    rgba(230, 55, 32, 1) 0%,
    rgba(240, 75, 76, 1) 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(240, 75, 76, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cta-button:active {
  transform: scale(0.98);
  box-shadow: 0 6px 16px rgba(240, 75, 76, 0.3);
}

.cta-button i {
  color: #fff;
  font-size: 1.2rem;
}

/* TERMS & CONDITIONS CHECKBOX */
.terms-checkbox-container {
  margin: 16px 0;
}

.terms-checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  user-select: none;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.terms-checkbox-label:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.terms-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.terms-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.terms-link {
  background: none;
  border: none;
  color: var(--color-accent);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  transition: all 0.2s ease;
}

.terms-link:hover {
  color: rgba(240, 75, 76, 1);
  text-decoration: none;
}

.required-mark {
  color: var(--color-accent);
  font-weight: bold;
  margin-left: 2px;
}

/* TERMS MODAL */
.terms-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.terms-modal.active {
  opacity: 1;
  visibility: visible;
}

.terms-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.terms-modal-container {
  position: relative;
  z-index: 10000;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.terms-modal.active .terms-modal-container {
  transform: scale(1);
}

.terms-modal-content {
  background: linear-gradient(135deg, 
    rgba(20, 25, 40, 0.95) 0%,
    rgba(25, 30, 45, 0.9) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
}

.terms-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-modal-header h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.terms-close-btn:hover {
  background: rgba(240, 75, 76, 0.2);
  border-color: rgba(240, 75, 76, 0.3);
  color: var(--color-accent);
  transform: rotate(90deg);
}

.terms-modal-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 0.95rem;
}

.terms-modal-body::-webkit-scrollbar {
  width: 8px;
}

.terms-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.terms-modal-body::-webkit-scrollbar-thumb {
  background: rgba(240, 75, 76, 0.5);
  border-radius: 10px;
}

.terms-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(240, 75, 76, 0.7);
}

.terms-modal-body h1,
.terms-modal-body h2,
.terms-modal-body h3,
.terms-modal-body h4 {
  color: rgba(255, 255, 255, 0.95);
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.terms-modal-body h1 {
  font-size: 1.8rem;
}

.terms-modal-body h2 {
  font-size: 1.5rem;
}

.terms-modal-body h3 {
  font-size: 1.3rem;
}

.terms-modal-body p {
  margin-bottom: 16px;
}

.terms-modal-body ul,
.terms-modal-body ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.terms-modal-body li {
  margin-bottom: 8px;
}

.terms-modal-body strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.terms-modal-body a {
  color: var(--color-accent);
  text-decoration: underline;
}

.terms-modal-body a:hover {
  color: rgba(240, 75, 76, 1);
}

.terms-unavailable {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
}

.terms-unavailable i {
  font-size: 3rem;
  margin-bottom: 16px;
  color: rgba(240, 75, 76, 0.5);
}

.terms-modal-footer {
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
}

.terms-modal-footer .cta-button {
  width: auto;
  min-width: 200px;
}

@media (max-width: 600px) {
  .programare-page .container {
    padding-top: 130px;
  }

  .programare-form {
    padding: 24px;
  }
  
  .terms-modal-container {
    width: 95%;
    max-height: 90vh;
  }
  
  .terms-modal-header {
    padding: 20px;
  }
  
  .terms-modal-header h3 {
    font-size: 1.2rem;
  }
  
  .terms-modal-body {
    padding: 20px;
    font-size: 0.9rem;
  }
  
  .terms-modal-footer {
    padding: 20px;
  }
  
  .terms-checkbox-label {
    gap: 10px;
  }
  
  .terms-text {
    font-size: 0.85rem;
  }

  .antrenament-info {
    padding: 24px;
  }

  .antrenament-info h3 {
    font-size: 1.2rem;
  }

  .info-icon {
    width: 44px;
    height: 44px;
  }

  .info-icon i {
    font-size: 1.1rem;
  }

  .info-label {
    font-size: 0.95rem;
  }

  .info-sublabel {
    font-size: 0.8rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .success-message-card {
    padding: 32px 24px;
  }

  .success-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .success-icon-wrapper i {
    font-size: 2rem;
  }

  .success-title {
    font-size: 1.3rem;
  }

  .success-text {
    font-size: 0.95rem;
  }
}


/* responsive program.php */

@media (max-width: 768px) {
  .select-program .container {
    padding-top: 130px; /* sau 130px dacă e nevoie de mai mult */
  }

  .content-title {
    font-size: 1.1rem;
    padding: 10px 18px;
    margin-bottom: 24px;
    gap: 10px;
  }

  .content-title i {
    font-size: 1rem;
  }

  .training-card2 {
    padding: 20px;
    margin-bottom: 25px;
  }

  .training-card2-header h3 {
    font-size: 1.1rem;
  }

  .training-info {
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
  }

  .show-more-btn {
    font-size: 0.85rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .training-category {
    padding: 20px 16px;
    margin-bottom: 30px;
  }

  .training-category h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-align: center;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {

  /* === HEADER (mobile fix) === */
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.96);
    z-index: 1003;
    padding: 8px 16px;
  }

  /* === HERO SECTION (mobile) === */
  .hero-section {
    min-height: auto;
    padding: 6rem 1.5rem 3rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-card-3d {
    max-width: 320px;
  }

  .floating-badge {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .badge-1 {
    top: 5%;
    right: -5%;
  }

  .badge-2 {
    bottom: 10%;
    left: -5%;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-left .btn {
    width: 100%;
    max-width: 240px;
    padding: 12px 24px;
    font-size: 1rem;
    justify-content: center;
  }

  .hero-right {
    margin-top: 2rem;
  }

  .hero-right img {
    max-width: 240px;
    margin: 0 auto;
  }

  @keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* === TRAINING SECTION (mobile) */
  .training-section {
    padding: 60px 20px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 24px 20px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.1rem;
    padding-bottom: 12px;
    margin-bottom: 36px;
    letter-spacing: 0.2px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    word-spacing: 0.1em;
  }

  .section-title::after {
    width: 60px;
    height: 2px;
  }

  .section-title:hover::after {
    width: 90px;
  }

  .section-title i {
    font-size: 1.1rem;
    margin-right: 8px;
  }

  /* === ABOUT TRAINING (mobile) === */
  .about-training {
    padding: 60px 16px;
    text-align: center;
  }


  .about-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .bento-container {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .bento-image {
    min-height: 300px;
    max-height: 400px;
  }

  .bento-image img {
    border-radius: 14px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bento-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .bento-icon {
    width: 52px;
    height: 52px;
  }

  .bento-icon i {
    font-size: 1.4rem;
  }

  .bento-card h3 {
    font-size: 0.95rem;
  }

  .bento-card p {
    font-size: 0.8rem;
  }

  .training-header {
    height: 120px;
    border-radius: 100% 0% 100% 0% / 0% 60% 40% 100%;
  }

  .training-header i {
    font-size: 38px;
  }

  .training-content {
    padding: 1.5rem 1rem;
  }

  .training-content h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .training-content p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* === SCHOOL CATEGORIES (mobile) === */
  .school-section {
    padding: 60px 16px;
  }

  .school-category {
    padding: 24px 20px;
    border-left-width: 2px;
    border-radius: 14px;
    margin-bottom: 24px;
  }

  .school-category.mai::before,
  .school-category.anp::before,
  .school-category.mapn::before {
    width: 55%;
    opacity: 0.12;
    filter: blur(4px) grayscale(25%);
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
  }

  .school-category:hover::before {
    opacity: 0.22;
    filter: blur(3px) grayscale(15%);
  }

  .school-category h3 {
    font-size: 1.1rem;
    gap: 10px;
    margin-bottom: 16px;
  }

  .school-category h3 i {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .school-category li,
  .school-category p {
    font-size: 0.9rem;
    gap: 8px;
  }

  .school-category li i,
  .school-category p i {
    font-size: 0.45rem;
    margin-top: 6px;
  }

  /* === CARDS (mobile) === */
  .cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  /* === FOOTER (mobile) === */
  .footer {
    padding: 40px 16px 24px;
  }

  .footer-container {
    gap: 32px;
  }

  .footer-cta-title {
    font-size: 1.4rem;
    flex-direction: column;
    gap: 8px;
  }

  .footer-cta-subtitle {
    font-size: 0.95rem;
  }

  .footer-whatsapp-btn {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .footer-copyright p {
    font-size: 0.85rem;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }

  /* === PARTENERI.PHP (mobile) === */
  .partners-modern-section {
    padding: 120px 16px 80px;
  }

  .partners-header h1 {
    font-size: 2rem;
  }

  .header-subtitle {
    font-size: 1rem;
  }

  .partner-split-card {
    padding: 24px;
    margin-bottom: 40px;
  }

  .partner-badges {
    gap: 8px;
  }

  .partner-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .partner-split-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .partner-logo-section {
    position: static;
  }

  .logo-container {
    min-height: 150px;
    padding: 24px;
  }

  .partner-name {
    font-size: 1.3rem;
  }

  .partner-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 16px;
  }

  .feature-item i {
    font-size: 1.5rem;
  }

  .partner-cta-section {
    flex-direction: column;
    gap: 16px;
  }

  .discount-pill {
    width: 100%;
    justify-content: center;
  }

  .partner-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }
}

