.workshop-intro-neo {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    rgba(46, 82, 164, 0.08),
    rgba(213, 224, 65, 0.12)
  );
}

/* CARD */
.neo-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* BASE CARD */
.neo-info {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border-radius: 26px;
  padding: 42px 36px;
  box-shadow: 0 20px 50px rgba(46, 82, 164, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: all 0.35s ease;
}

/* HOVER */
.neo-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(46, 82, 164, 0.35);
}

/* CENTER CARD EMPHASIS */
.neo-info.highlight {
  transform: translateY(-14px);
  box-shadow: 0 34px 80px rgba(46, 82, 164, 0.45);
}

/* ICON */
.neo-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary-blue);
  margin-bottom: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* CENTER ICON VARIANT */
.neo-icon.primary {
  background: rgba(46, 82, 164, 0.2);
  color: var(--primary-blue);
}

/* TITLE */
.neo-info h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--secondary-blue);
  margin-bottom: 14px;
  font-size: 1.4rem;
}

/* TEXT */
.neo-info p {
  font-family: var(--font-body);
  opacity: 0.9;
  line-height: 1.7;
  margin-top: auto; /* keeps spacing consistent */
}

/* -------------------------------------
    paragraph  
-------------------------------------- */

/* ================= SURVEY INTRO ================= */

.survey-intro {
  padding: 10px 0;
  background: linear-gradient(
    135deg,
    rgba(46,82,164,0.05),
    rgba(213,224,65,0.08)
  );
}

.survey-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--secondary-blue);
  text-align: center;
}

.survey-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 12px auto 40px;
  font-size: 1.1rem;
  opacity: 0.85;
}

.survey-content {
  max-width: 880px;
  margin: 0 auto;
  font-family: var(--font-body);
  line-height: 1.75;
  font-size: 1rem;
}

.survey-content p {
  margin-bottom: 18px;
  opacity: 0.95;
}

.survey-highlight {
  margin-top: 28px;
  padding: 18px 24px;
  border-left: 4px solid var(--primary-green);
  background: rgba(213,224,65,0.15);
  font-weight: 600;
  border-radius: 12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .survey-title {
    font-size: 2.1rem;
  }

  .survey-content {
    padding: 0 10px;
  }
}



/* ------ form --------- */

/* ================= SURVEY ================= */

.survey-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(46,82,164,0.05),
    rgba(213,224,65,0.10)
  );
}

.survey-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 50px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* FORM */
.survey-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* LABEL */
.survey-label {
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}

.survey-label span {
  color: red;
}

/* INPUTS */
.survey-form input[type="text"],
.survey-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #dbe3f0;
  font-size: 0.95rem;
}

.survey-form input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(46,82,164,0.15);
}

/* GRID */
.survey-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* OPTIONS */
.survey-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.survey-options input {
  display: none;
}

.survey-options span {
  padding: 10px 18px;
  border-radius: 30px;
  border: 2px solid var(--primary-blue);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.survey-options input:checked + span {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 0 22px rgba(46,82,164,0.4);
}

/* SUBMIT */
.survey-submit {
  margin-top: 30px;
  text-align: center;
}

.survey-submit button {
  padding: 16px 20px;
  border-radius: 40px;
  background: var(--primary-green);
  color: var(--secondary-blue);
  font-weight: 800;
  border: 1px solid var(--secondary-blue)
  /* box-shadow: 0 18px 40px rgba(213,224,65,0.45); */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .survey-card {
    padding: 36px 24px;
  }

  .survey-grid-2 {
    grid-template-columns: 1fr;
  }

  .survey-submit button {
    width: 100%;
  }
}

.survey-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 30px;
  align-items: center;
}

/* Illustration */
.survey-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.survey-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* Optional soft background for illustration */
.survey-illustration::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    var(--primary-blue),
    transparent 55%
  );
  z-index: -1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .survey-layout {
    grid-template-columns: 1fr;
  }

  .survey-illustration {
    order: -1; /* illustration comes first on mobile */
    margin-bottom: 30px;
  }
}

.accordion-body ul li {
  font-size: 0.9rem;
  color: #444;
}

.accordion-body .badge {
  margin-left: 12px;
  padding: 6px 10px;
}


/* -- added later -- */
#surveyQuestions > div {
  padding-bottom: 16px;
  border-bottom: 1px solid #eef2f8;
}

#surveyQuestions > div:last-child {
  border-bottom: none;
}

.survey-submit {
  margin-top: 30px;
  text-align: center;
}

/* Default radio */
.survey-section .form-check-input[type="radio"] {
  width: 18px;
  height: 18px;
  border: 1px solid var(--primary-blue);
  cursor: pointer;
}

/* Checked state */
.survey-section .form-check-input[type="radio"]:checked {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

/* Inner dot */
.survey-section .form-check-input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 3px auto;
  border-radius: 50%;
  background: #fff;
}

/* Focus (keyboard / accessibility) */
.survey-section .form-check-input[type="radio"]:focus {
  box-shadow: 0 0 0 4px rgba(46,82,164,0.25);
  border-color: var(--primary-blue);
}

/* Label spacing improvement */
.survey-section .form-check-label {
  cursor: pointer;
  font-weight: 600;
  margin-left: 6px;
}

/* =================================
            VOTE  
====================================*/

/* ================= VOTE QUIZ ================= */

.vote-quiz-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    rgba(46,82,164,0.06),
    rgba(213,224,65,0.12)
  );
}

.vote-quiz-card {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  overflow: hidden;
}

/* LEFT */
.vote-quiz-visual {
  background: linear-gradient(
    180deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.vote-quiz-visual img {
  max-width: 80%;
  height: auto;
}

/* RIGHT */
.vote-quiz-content {
  padding: 50px;
}

.vote-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: var(--primary-blue);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.vote-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--secondary-blue);
  margin-bottom: 10px;
}

.vote-desc {
  opacity: 0.85;
  margin-bottom: 30px;
}

/* FORM */
.vote-quiz-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quiz-label {
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

/* OPTIONS */
.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quiz-option {
  position: relative;
}

.quiz-option input {
  display: none;
}

.quiz-option span {
  display: block;
  padding: 14px;
  border-radius: 14px;
  border: 2px solid var(--primary-blue);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.quiz-option input:checked + span {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(46,82,164,0.45);
}

/* EMAIL */
.quiz-input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #dbe3f0;
}

.quiz-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(46,82,164,0.15);
}

/* SUBMIT */
.quiz-submit {
  margin-top: 10px;
  padding: 14px;
  border-radius: 40px;
  border: 1px solid var(--primary-blue);
  background: var(--primary-green);
  color: var(--secondary-blue);
  font-weight: 800;
  /* box-shadow: 0 18px 40px rgba(213,224,65,0.45); */
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .vote-quiz-card {
    grid-template-columns: 1fr;
  }

  .vote-quiz-visual {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .vote-quiz-content {
    padding: 36px 26px;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }
}


/* ==========================
    SHARE 
==============================*/

/* ================= SHARE PAGE ================= */

.share-page {
  padding: 90px 0;
  background: #f6f8fc;
}

/* HERO */
.share-hero {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.share-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary-blue);
}

.share-hero p {
  margin-top: 12px;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* CONTAINER */
.share-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

/* ILLUSTRATION */
.share-illustration {
  text-align: center;
}

.share-illustration img {
  max-width: 100%;
  height: auto;
}

/* FORM CARD */
.share-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.share-form-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-blue);
}

.share-subtext {
  margin-bottom: 24px;
  font-size: 0.95rem;
  opacity: 0.75;
}

/* FORM */
.share-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.share-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* UPLOAD - FULL WIDTH */
.share-upload {
  width: 100%;
}

.share-upload label {
  width: 100%;
  display: block;
}


.share-field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.share-field input,
.share-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dbe3f0;
  font-size: 0.95rem;
}

.share-field input:focus,
.share-field select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(213,224,65,0.25);
}

.share-field small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 6px;
}

/* UPLOAD */
.share-upload input {
  display: none;
}

.share-upload label {
  border: 2px dashed #cfd7ea;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.share-upload label:hover {
  background: #f2f6ff;
}

.share-upload span {
  font-weight: 600;
}

.share-upload small {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* BUTTON */
.share-submit {
  margin-top: 20px;
  padding: 14px;
  border-radius: 40px;
  border: 1px solid var(--primary-blue);
  background: var(--primary-green);
  color: var(--secondary-blue);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s;
}

.share-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(213,224,65,0.45);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .share-container {
    grid-template-columns: 1fr;
  }

  .share-illustration {
    order: -1;
  }
}

@media (max-width: 576px) {
  .share-form-card {
    padding: 28px 22px;
  }

  .share-grid-2 {
    grid-template-columns: 1fr;
  }
}


/* =========================== */
/* --- previous questions --- */
/* ================= VOTE HISTORY ================= */

.vote-history-section {
  padding: 100px 0;
  background: #f6f8fc;
}

/* TITLE */
.vote-history-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary-blue);
}

.vote-history-subtext {
  text-align: center;
  max-width: 720px;
  margin: 12px auto 50px;
  opacity: 0.85;
}

/* LIST */
.vote-history-list {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ITEM */
.vote-history-item {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  overflow: hidden;
}

/* HEADER */
.vote-history-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.vote-history-header h4 {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.vote-history-header i {
  transition: transform 0.3s ease;
}

/* WEEK BADGE */
.week-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(46,82,164,0.12);
  color: var(--secondary-blue);
}

/* BODY */
.vote-history-body {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.answer-label {
  margin-top: 18px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-green);
  text-transform: uppercase;
}

.answer-text {
  margin-top: 6px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ACTIVE STATE */
.vote-history-item.active .vote-history-body {
  display: block;
}

.vote-history-item.active .vote-history-header i {
  transform: rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .vote-history-header {
    padding: 18px;
  }

  .vote-history-body {
    padding: 0 18px 18px;
  }
}

/* LOAD MORE */
.vote-load-more {
  margin-top: 40px;
  text-align: center;
}

.vote-load-btn {
  padding: 14px 42px;
  border-radius: 40px;
  border: 2px solid var(--primary-blue);
  background: transparent;
  color: var(--secondary-blue);
  font-weight: 800;
  transition: 0.3s ease;
}

.vote-load-btn:hover {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(46,82,164,0.35);
}

/* HIDE ITEMS */
.vote-history-item.hidden {
  display: none;
}

/* ================================ */
/* ------ CONTEST CSS ------ */

/* ================= CONTEST PAGE ================= */

.contest-section {
  padding: 70px 0;
  background: #f7f9fc;
}

.contest-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px 45px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  position: relative;
}

/* Title */
.contest-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #24336a;
  margin-bottom: 20px;
}

/* Sub cards */
.contest-card .card {
  border-radius: 16px;
  border: 1px solid #e6ebf5;
  background: #fafcff;
}

/* Inputs */
.contest-card input.form-control {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
}

/* Buttons */
.contest-card .btn-primary {
  background: linear-gradient(135deg,#24336a,#1a2544);
  border: none;
  border-radius: 40px;
  padding: 12px 26px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(36,51,106,0.35);
}

.contest-card .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(36,51,106,0.45);
}

/* ===== Creative contest extras ===== */

.contest-card ul {
  padding-left: 18px;
}

.contest-card ul li {
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

/* Sponsors */
.contest-card img {
  transition: 0.3s ease;
}

.contest-card img:hover {
  transform: scale(1.05);
}

/* Jury cards */
.contest-card .jury-card {
  background: #f6f8ff;
  padding: 14px;
  border-radius: 14px;
}

/* ================= PREVIOUS CONTESTS ================= */

.previous-contests {
  padding: 80px 0;
  background: #ffffff;
}

.previous-contests h4 {
  font-weight: 800;
  color: #24336a;
}

/* Filter buttons */
.previous-contests .btn-group .btn {
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 700;
}

/* Contest cards */
.previous-contests .card {
  border-radius: 18px;
  border: 1px solid #eef1f7;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.previous-contests .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* Badge */
.previous-contests .badge {
  border-radius: 20px;
  padding: 6px 14px;
  font-weight: 700;
}


/* ================= CONTEST RADIO (MATCH SURVEY STYLE) ================= */

.contest-section .form-check-input[type="radio"],
.contest-section input[type="radio"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary-blue);
  cursor: pointer;
}

.contest-section input[type="radio"]:checked {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.contest-section input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 3px auto;
  border-radius: 50%;
  background: #fff;
}

.contest-section input[type="radio"]:focus {
  box-shadow: 0 0 0 4px rgba(46,82,164,0.25);
}


/* ================= PREVIOUS CONTESTS ================= */

.quiz-preview p {
  font-size: 0.9rem;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.poster-grid img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= PREVIOUS CONTEST ACCORDION ================= */

.accordion-button {
  font-weight: 700;
}

.quiz-preview {
  font-size: 0.9rem;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.poster-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contest-section .survey-options input[type="radio"] {
  display: inline-block !important;
  appearance: auto;
  -webkit-appearance: radio;
}

.contest-section .survey-options input[type="radio"] {
  display: inline-block;
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
}

.contest-section .survey-options input[type="radio"]:checked {
  background-color: var(--primary-blue);
}

.contest-section .survey-options input[type="radio"]:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}


/* Winner highlight */
.winner-card {
  border: 3px solid #28a745;
  border-radius: 12px;
  padding: 6px;
  max-width: 300px;
}

.winner-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Poster grid */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
}

.poster-grid img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.poster-grid img:hover {
  transform: scale(1.05);
}
