/* ─── SECTION WRAPPER ─── */
.promo-section {
  padding: 140px 0 80px;
}
.promo-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ─── HERO ROW (text + icon) ─── */
.promo-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.promo-hero-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #f9a61a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── COMBINED OFFERS HEADER ─── */
.promo-combined-divider {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  margin: 0 0 40px 0;
  padding: 0;
}

/* ─── SHARED EYEBROW BADGE ─── */
.promo-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: #f9a61a;
  border-radius: 44px;
  box-shadow: 0 0 14.5px rgba(249, 166, 26, 0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: #fdfefe;
  width: fit-content;
}

/* ─── SECTION TITLE ─── */
.promo-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  background: linear-gradient(96.98deg, #fdfefe 20%, #f9a61a 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.promo-section-title span {
  color: #f9a61a;
}
.promo-section-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #a0a1a1;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── PROMO CARDS WRAPPER ─── */
.promo-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ─── NEW PROMO CARD DESIGN ─── */
.promo-card-outer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promo-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: #f9a61a;
  border-radius: 44px;
  box-shadow: 0 0 14.5px rgba(249, 166, 26, 0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  color: #fdfefe;
  width: fit-content;
}
.promo-card-new {
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(249, 166, 26, 0.2);
}

.promo-card-image {
  width: 100%;
  aspect-ratio: 2.8 / 1;
  overflow: hidden;
  position: relative;
}
.promo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-card-info {
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
}
.promo-info-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #fdfefe;
  margin: 0;
}
.promo-info-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #a0a1a1;
  margin: 0;
}
.promo-info-contact {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #d0d0d0;
  margin: 8px 0 0 0;
}
.promo-info-contact a,
.promo-phone-link {
  color: #f9a61a;
  text-decoration: none;
  transition: opacity 0.2s;
}
.promo-info-contact a:hover,
.promo-phone-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Mobile link styling overrides */
.promo-phone-link:visited,
.promo-info-contact a[href^="tel:"],
.promo-info-contact [x-apple-data-detectors] {
  color: #f9a61a !important;
  text-decoration: none !important;
  font: inherit !important;
}
.promo-features-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1120px;
  padding: 40px 0;
}
.promo-features-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promo-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.promo-feature-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(249, 166, 26, 0.12);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s, background 0.3s;
}
.promo-feature-card:hover {
  border-color: rgba(249, 166, 26, 0.35);
  background: rgba(249, 166, 26, 0.04);
}
.promo-feat-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(249, 166, 26, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-feat-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promo-feat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #fdfefe;
  margin: 0;
}
.promo-feat-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: #a0a1a1;
  margin: 0;
}

/* ─── GALLERY ─── */
.promo-gallery-section {
  padding: 0 0 60px;
}
.promo-gallery-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.promo-gallery-img {
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}
.promo-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.promo-gallery-img:hover img {
  transform: scale(1.04);
}

/* ─── PROMO SECTION TITLES ─── */
.promo-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  background: linear-gradient(96.98deg, #fdfefe 20%, #f9a61a 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-align: center;
}
.promo-section-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #a0a1a1;
  margin: 0;
  text-align: center;
}


/* ─── FIDELIZARE CARD VARIANT ─── */
.promo-card-group:nth-child(2) .promo-card {
  background: linear-gradient(135deg, rgba(30, 20, 10, 0.95) 0%, rgba(50, 40, 20, 0.9) 100%);
  position: relative;
  overflow: hidden;
}
.promo-card-group:nth-child(2) .promo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 166, 26, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.promo-card-group:nth-child(2) .promo-card-content {
  position: relative;
  z-index: 2;
}

/* ─── CORPORATE CARD VARIANT ─── */
.promo-card--corporate {
  background: linear-gradient(135deg, rgba(255, 200, 100, 0.95) 0%, rgba(255, 230, 180, 0.9) 100%) !important;
  position: relative;
  overflow: hidden;
}
.promo-card--corporate::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 166, 26, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.promo-card--corporate .promo-card-content {
  position: relative;
  z-index: 2;
}

/* ─── STUDENTS CARD VARIANT ─── */
.promo-card--students {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(40, 35, 25, 0.9) 100%) !important;
  position: relative;
  overflow: hidden;
}
.promo-card--students::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(249, 166, 26, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.promo-card--students::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.promo-card--students .promo-card-content {
  position: relative;
  z-index: 2;
}

/* ─── PROMO CARD GROUP ─── */
.promo-card-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.promo-cat-tag {
  display: flex;
  align-items: center;
  gap: 8px;
}
.promo-cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: #f9a61a;
  border-radius: 44px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-cat-icon {
  width: 32px;
  height: 32px;
  background: rgba(249, 166, 26, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── PROMO CARD ─── */
.promo-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(249, 166, 26, 0.12);
  border-radius: 16px;
  padding: 48px;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
  min-height: 400px;
}
.promo-card--image-bg {
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.promo-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.promo-card:hover {
  border-color: rgba(249, 166, 26, 0.35);
  box-shadow: 0 8px 32px rgba(249, 166, 26, 0.15);
}
.promo-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(249, 166, 26, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.promo-card-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.promo-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  color: #fdfefe;
  margin: 0;
}
.promo-card-title--xl {
  font-size: 52px;
  line-height: 64px;
  letter-spacing: 3px;
  font-weight: 700;
}
.promo-card--corporate .promo-card-title,
.promo-card--corporate .promo-card-subtitle,
.promo-card--corporate .promo-card-text {
  color: #111111;
}
.promo-card--corporate .promo-card-text strong {
  color: #111111;
  font-weight: 700;
}
.promo-card--corporate .promo-card-text [x-apple-data-detectors],
.promo-card--corporate .promo-card-text a[href^="tel:"],
.promo-card--corporate .promo-card-text a[href^="tel:"]:visited {
  color: #111111 !important;
  text-decoration: none !important;
  font: inherit !important;
}
.promo-card-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fdfefe;
  margin: 0;
}
.promo-card--corporate .promo-card-subtitle {
  color: #111111;
}
.promo-card-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fdfefe;
  margin: 0;
}
.promo-card--corporate .promo-card-text {
  color: #111111;
}
.promo-card-note {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.promo-duration-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.promo-duration-large {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #f9a61a;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.promo-duration-sep {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.promo-badge-fidelity {
  display: inline-block;
  background: #f9a61a;
  color: #111111;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 8px 0;
  box-shadow: 0 4px 20px rgba(249, 166, 26, 0.4);
}
.promo-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: #f9a61a;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(249, 166, 26, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.promo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 166, 26, 0.5);
}
.promo-cta-btn--dark {
  background: #222222;
  color: #f9a61a;
  border: 2px solid #111111;
}
.promo-cta-btn--dark:hover {
  background: #333333;
  color: #fdfefe;
}

/* ─── PHONE LINK ─── */
.promo-phone-link {
  color: #f9a61a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.promo-phone-link:visited,
.promo-card-note--alt a[href^="tel:"],
.promo-card-note--alt [x-apple-data-detectors] {
  color: #f9a61a !important;
  text-decoration: none !important;
  font: inherit !important;
}
.promo-phone-link:hover {
  color: #fdfefe;
  text-decoration: none;
}

/* ─── STUDENTS CARD VARIANT ─── */
.promo-card--students {
  background-image: url('../images/students_bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.promo-discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f9a61a 0%, #ff8c00 100%);
  color: #fdfefe;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(249, 166, 26, 0.5);
}
.promo-card-title--lg {
  font-size: 42px;
  line-height: 52px;
  font-weight: 700;
}
.promo-card-text--lg {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
}
.promo-card-note--alt {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 24px;
}
.promo-card-note--alt strong {
  color: #f9a61a;
  font-weight: 700;
}

/* ─── CONTACT FORM CARD ─── */
.promo-contact-section {
  padding: 80px 0;
  background: linear-gradient(179.32deg, #111111 0%, #1a1a1a 100%);
}
.promo-contact-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin-bottom: 56px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.promo-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.promo-contact-left {
  position: relative;
}
.promo-contact-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(249, 166, 26, 0.25);
}
.promo-contact-image img {
  width: 100%;
  height: auto;
  display: block;
}
.promo-contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.promo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.promo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.promo-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promo-form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #a0a1a1;
}
.promo-form-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(249, 166, 26, 0.2);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fdfefe;
  transition: all 0.3s ease;
}
.promo-form-group input:focus {
  outline: none;
  border-color: #f9a61a;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(249, 166, 26, 0.1);
}
.promo-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0;
}
.promo-form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #a0a1a1;
  line-height: 1.6;
}
.promo-form-checkbox input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}
.promo-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: #f9a61a;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(249, 166, 26, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px;
}
.promo-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 166, 26, 0.5);
}

/* ─── RESPONSIVE ─── */


@media (max-width: 992px) {
  .promo-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .promo-hero-btn {
    align-self: center;
  }
  .promo-features-grid {
    grid-template-columns: 1fr;
  }
  .promo-contact-wrapper {
    grid-template-columns: 1fr;
  }
  .promo-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .promo-section {
    padding: 100px 0 40px;
  }
  .promo-hero-combined {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 0;
  }
  .promo-hero-combined-left {
    gap: 20px;
  }
  .promo-title {
    font-size: 24px;
    line-height: 36px;
  }
  .promo-subtitle {
    font-size: 13px;
  }
}
  
/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .promo-hero-icon { display: none; }
  .promo-section {
    padding: 120px 0 60px;
  }
  .promo-combined-divider {
    margin: 0 0 32px 0;
  }
  .promo-section-title {
    font-size: 28px;
    line-height: 42px;
  }
  .promo-section-sub {
    font-size: 13px;
    line-height: 20px;
  }
  .promo-cards-wrapper {
    gap: 48px;
  }
  .promo-card-image {
    height: auto;
    aspect-ratio: unset;
  }
  .promo-card-image img {
    height: auto;
    object-fit: contain;
  }
  .promo-card-info {
    padding: 24px 28px 32px;
  }
  .promo-info-title {
    font-size: 20px;
    line-height: 30px;
  }
  .promo-info-text,
  .promo-info-contact {
    font-size: 13px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .promo-section {
    padding: 100px 0 40px;
  }
  .promo-section-title {
    font-size: 24px;
    line-height: 36px;
  }
  .promo-cards-wrapper {
    gap: 40px;
  }
  .promo-card-image {
    height: auto;
    aspect-ratio: unset;
  }
  .promo-card-image img {
    height: auto;
    object-fit: contain;
  }
  .promo-card-info {
    padding: 20px 24px 28px;
  }
  .promo-info-title {
    font-size: 18px;
    line-height: 27px;
  }
}
