/* ══════════════════════════════════════════════════════
   Agenda PAGE – (sp- prefix only)
   ══════════════════════════════════════════════════════ */

.sp-nav-active {
  color: #ff8f1c !important;
}
.sp-nav-active::after {
  width: 100% !important;
  background: #ff8f1c !important;
}

.sp-hero-section {
  background: url("../award-banner.png") bottom / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.sp-hero-inner {
  width: 100%;
  max-width: 1440px;
  min-height: 429px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sp-hero-content {
  position: relative;
  z-index: 10;
  padding: 110px 0 110px 56px;
  max-width: 790px;
}

.sp-hero-title {
  color: #ffffff;
  font-family: "Rethink Sans", sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.26px;
  margin: 0 0 12px 0;
}

.sp-hero-subtitle {
  color: rgba(255, 255, 255, 1);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.sp-hero-building {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  max-height: 320px;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.85) 40%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.85) 40%,
    transparent 100%
  );
  pointer-events: none;
}

.sp-intro-section {
  background: #f5f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-intro-wrap {
  width: 100%;
  max-width: 1440px;
  padding: 60px 56px;
  box-sizing: border-box;
}

.sp-intro-intr-wrap {
  display: flex;
  gap: 60px;
}

.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.sp-breadcrumb-link {
  color: #504b4b;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
.sp-breadcrumb-link:hover {
  color: #292322;
}

.sp-breadcrumb-sep {
  display: flex;
  align-items: center;
  color: #504b4b;
}

.sp-breadcrumb-current {
  color: #292322;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.sp-intro-title {
  color: #292322;
  font-family: "Rethink Sans", sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.sp-intro-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.sp-intro-body p {
  color: rgba(80, 75, 75, 1);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.sp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 40px;
  padding: 0 21px;
  background-color: #ff8f1c;
  border-radius: 90px;
  border: none;
  color: #231b1b;
  font-family: "Rethink Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
  white-space: nowrap;
}

.sp-btn-primary:hover {
  opacity: 0.88;
}

.sp-accordion-section {
  background-color: #f5f4f2;
  padding: 0px 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.sp-accordion-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  box-sizing: border-box;
}

.sp-accordion-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.sp-accordion-header {
  width: 100%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: linear-gradient(90deg, #1a0a14 0%, #3b1a2a 100%);
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  box-sizing: border-box;
}

.sp-accordion-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sp-accordion-date {
  color: #ffffff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.sp-accordion-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
  flex-shrink: 0;
}

.sp-accordion-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff901d 0%, #b80c22 50%, #37214e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
}

.sp-accordion-header:hover .sp-accordion-icon {
  opacity: 0.85;
}

.sp-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background-color: #ffffff;
  border-radius: 0 0 16px 16px;
}

.sp-accordion-item.sp-open .sp-accordion-body {
  max-height: 2000px;
}

.sp-session-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 40px;
  border-bottom: 1px solid #dfdfdf;
  box-sizing: border-box;
}

.sp-session-row:last-child {
  border-bottom: none;
}

.sp-session-time {
  flex-shrink: 0;
  min-width: 220px;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #292322;
}

.sp-session-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sp-session-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #d97c31;
}

.sp-session-desc {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #292322;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .sp-hero-content {
    padding: 48px 24px 40px;
  }

  .sp-intro-wrap {
    padding: 40px 24px;
  }

  .sp-intro-title {
    font-size: 40px;
  }

  .sp-accordion-container {
    padding: 0 16px;
  }

  .sp-accordion-header {
    padding: 0 16px;
    height: auto;
    min-height: 66px;
  }

  .sp-accordion-date {
    font-size: 14px;
  }

  .sp-accordion-theme {
    font-size: 14px;
  }

  .sp-session-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px;
    min-height: unset;
  }

  .sp-session-time {
    min-width: unset;
    font-size: 13px;
  }

  .sp-session-title {
    font-size: 13px;
  }

  .sp-session-desc {
    font-size: 13px;
  }
}

.sp-justify-section {
  background-color: #f5f4f2;
  padding: 48px 0 64px;
  width: 100%;
  box-sizing: border-box;
}

.sp-justify-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.sp-justify-heading {
  font-family: "Rethink Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #d97c31;
  line-height: normal;
  letter-spacing: 0.26px;
  margin: 0;
}

.sp-justify-body {
  font-family: "Rethink Sans", sans-serif;
  font-size: 23px;
  font-weight: 600;
  color: #292322;
  line-height: normal;
  letter-spacing: 0.26px;
  margin: 0;
}

.sp-justify-btn {
  margin-top: 10px;
}

/* ══════════════════════════════════════════════════════
   SPONSOR FORM  (sp- prefix)
   ══════════════════════════════════════════════════════ */

.sp-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.sp-form-fields {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.sp-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 200px;
  min-width: 180px;
}

.sp-form-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #292322;
  letter-spacing: 0;
}

.sp-form-input {
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #292322;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.sp-form-input::placeholder {
  color: #b0abab;
}

.sp-form-input:focus {
  border-color: #ff8f1c;
}

.sp-required {
  color: #c1121f;
}

.sp-form-status {
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

.sp-submit-btn {
  align-self: flex-start;
}

/* ══════════════════════════════════════════════════════
   PDF MODAL  (sp-pdf-modal-*)
   ══════════════════════════════════════════════════════ */

.sp-pdf-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.sp-pdf-modal--open {
  display: flex;
}

.sp-pdf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

/* Main white rounded container */
.sp-pdf-modal-container {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 1100px;
  height: 90vh;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

/* Top-left Secure Sponsorship button */
.sp-pdf-modal-topleft {
  position: absolute;
  top: 14px;
  left: 20px;
  z-index: 10;
}

/* Separate top bar with download + close buttons */
.sp-pdf-modal-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
}

/* Shared circle button style */
.sp-pdf-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #d0cece;
  background: #ffffff;
  color: #333;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
  box-sizing: border-box;
}

.sp-pdf-modal-btn:hover {
  background: #f5f5f5;
  border-color: #aaa;
}

/* Scrollable area that holds all canvas pages */
.sp-pdf-modal-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 24px 0 24px;
  background: #f0eeee;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Wrapper that holds all canvas pages */
.sp-pdf-canvas-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 960px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Each rendered PDF page */
.sp-pdf-page-canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  background: #fff;
}

/* Loading spinner */
.sp-pdf-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 24px;
  color: #666;
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

.sp-pdf-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e0e0e0;
  border-top-color: #ff8f1c;
  border-radius: 50%;
  animation: sp-spin 0.7s linear infinite;
}

@keyframes sp-spin {
  to {
    transform: rotate(360deg);
  }
}

.sp-title {
    color: #d97c31;
    font-size: 28px;
    margin: 40px 0 0px;
}

@media (max-width: 768px) {
  .sp-pdf-modal-container {
    width: 96vw;
    height: 94vh;
    border-radius: 10px;
  }

  .sp-pdf-modal-actions {
    top: 12px;
    right: 12px;
  }

  .sp-pdf-modal-btn {
    width: 34px;
    height: 34px;
  }
}

.sp-process-section {
  background: url(../image212.png) center / cover no-repeat padding-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .sp-form-fields {
    flex-direction: column;
  }

  .sp-form-group {
    flex: 1 1 100%;
    min-width: unset;
  }
}
