*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Custom Fonts */
@font-face {
  font-family: 'Gotham Book';
  src: url('assets/fonts/Gotham-Book.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Rosean';
  src: url('assets/fonts/Rosean.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'Sylvian';
    src: url('assets/fonts/sylvian-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'VIENTO';
  src: url('assets/fonts/VIENTO.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Premium Dark Theme Overhaul */
body {
  font-family: 'Gotham Book', Arial, sans-serif;
  background: #121212;
  color: #ffffff;
  min-height: 100vh;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-divider {
  font-family: 'Rosean', 'Playfair Display', serif;
}

.form-wrap {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: hidden;
}

.banner {
  background-image: url('assets/banner.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 3rem 0.5rem 3rem;
}

.banner p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.banner p.banner-desc {
  width: 85%;
}

.banner h1,
.banner h2 {
  font-size: 3rem;
  font-weight: 500;
  margin: 1.2rem 0 2.5rem 0;
}

.banner h1 span,
.banner h2 span {
  font-family: 'VIENTO', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #121212;
  background-color: #fbb817;
  padding: 0.4rem 1.2rem 0 1.2rem;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  transform: rotate(4deg);
  letter-spacing: 0.03em;
  animation: ropeFloat 4s linear infinite;
}

.banner h2 span {
  font-size: 2rem;
}

@keyframes ropeFloat {
  0% {
    transform: rotate(4deg);
  }

  25% {
    transform: rotate(7deg);
  }

  50% {
    transform: rotate(10deg);
  }

  75% {
    transform: rotate(7deg);
  }

  100% {
    transform: rotate(4deg);
  }
}

.banner h1 span::after {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -17px;
  height: 13px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20'><path d='M5 10 Q 50 2, 100 10 T 195 10' stroke='%23ffffff' stroke-width='4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: rotate(-3deg);
}

.banner .fish-image {
  display: flex;
  justify-content: flex-end;
}

.banner .fish-image img {
  width: 55%;
  margin-top: 4rem;

  animation: fishFloat 3.5s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

@keyframes fishFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  25% {
    transform: translateY(-8px) rotate(1deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }

  75% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.banner .features {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner .features .feature-box {
  width: 22%;
  text-align: center;
  border: 4px solid #F0A500;
  padding: 1.7rem 0.5rem;
  border-radius: 30px;
  background-color: #0000007a;
}

.banner .features .feature-box span {
  font-family: 'Rosean', 'Playfair Display', serif;
  font-size: 1.7rem;
}

.banner .features .feature-box p {
  margin-top: 0.3rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* Persona Banner Styling */
.persona-banner {
  display: none;
  align-items: center;
  gap: 14px;
  background-color: rgba(0, 0, 0, 0.323);
  border: 1px solid #F0A500;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.persona-banner.show {
  display: flex;
}

.persona-icon {
  width: 36px;
  height: 36px;
  background: rgba(240, 165, 0, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.persona-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F0A500;
  margin-bottom: 2px;
}

.persona-name {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

.persona-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
  line-height: 1.4;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2rem 0 1.25rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  font-family: 'Sylvian', 'Playfair Display', serif;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #fff;
}


/* Section Background */
.b-section {
  padding: 0.5rem 3rem 0.5rem 3rem;
  background-image: url('assets/bg-1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


/* Container Structure for Question Blocks */
.q-block {
  border: 2px solid #F0A500;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s, opacity 0.25s;
  padding: 1.35rem 1.6rem;
  background-color: rgba(0, 0, 0, 0.323);
}

.q-block.hidden {
  display: none;
}

.q-block.branch-in {
  animation: slideIn 0.25s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.q-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F0A500;
  margin-bottom: 0.7rem;
}

.q-text {
  font-family: 'Sylvian', 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.4rem;
  word-spacing: 3px;
  line-height: 1.3;
}

.q-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.899);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.q-eval {
  font-size: 11px;
  color: #fff;
  margin-top: 1.25rem;
  padding: 0.75rem;
  border-top: 1px solid #ffffff;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.radio-grid,
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 580px) {

  .radio-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }
}

/* Choice & Form Inputs Configuration */
.opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 2px solid #F0A500;
  border-radius: 14px;
  cursor: pointer;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.949);
  background: #000000;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  line-height: 1.4;
}

.opt input {
  accent-color: #F0A500;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.opt:hover {
  border-color: rgba(240, 164, 0, 0.768);
  color: #ffffff;
}

.opt:has(input:checked) {
  border-color: #F0A500;
  background: rgba(0, 0, 0, 0.853);
  color: #ffffff;
}

.opt-full {
  grid-column: 1 / -1;
}

.num-input,
.text-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border: 2px solid #F0A500;
  border-radius: 14px;
  background: #000;
  color: #ffffff;
  outline: none;
  transition: border-color 0.15s;
  font-family: 'Gotham Book', Arial, sans-serif;
}

.text-input {
  resize: none;
  line-height: 1.6;
}

.num-input:focus,
.text-input:focus {
  border-color: #F0A500;
  background: #161616;
}

/* Slider Custom Components */
.slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0.5rem;
}

.slider-row input[type="range"] {
  flex: 1;
  accent-color: #F0A500;
  background: #171717;
  height: 4px;
  border-radius: 2px;
}

.range-bound {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.slider-val {
  font-size: 18px;
  font-weight: 600;
  color: #F0A500;
  min-width: 28px;
  text-align: right;
}

.slider-ends {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  background: rgba(240, 165, 0, 0.15);
  color: #F0A500;
}

/* Soft Exit Terminal Screen */
.soft-exit {
  display: none;
  background-color: rgba(0, 0, 0, 0.323);
  border: 2px solid #F0A500;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.soft-exit.show {
  display: block;
}

.soft-exit-icon {
  font-size: 32px;
  margin-bottom: 0.75rem;
}

.soft-exit-title {
  font-family: 'Sylvian', 'Playfair Display', serif;
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.soft-exit-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.899);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.soft-exit-email {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 13px;
  color: #F0A500;
  font-weight: 500;
  text-decoration: none;
}

.soft-exit-email:hover {
  text-decoration: underline;
}

/* User Details */
.user-details{
  margin-top: 2.2rem;
}
.user-details .inp-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.user-details input {
  width: 49%;
  padding: 14px 16px;
  outline: none;
  border: 2px solid #F0A500;
  border-radius: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.949);
  background: #000000;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-family: 'Gotham Book', Arial, sans-serif;
}

.user-details input:focus {
  background: #161616;
}

/* Call to Action Submissions Panel */
.submit-block {
  border-radius: 25px;
  border: 2px solid #F0A500;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
  background-image: url('assets/footer-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.submit-title {
  font-family: 'Sylvian', 'Playfair Display', serif;
  font-size: 30px;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.submit-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.899);
  margin-bottom: 1.5rem;
}

.submit-btn {
  background: #fbb817;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 42px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s, transform 0.1s;
  margin-bottom: 0.5rem;
  font-family: 'Gotham Book', Arial, sans-serif;
}

.submit-btn:hover {
  background: #d99500;
}

.submit-btn:active {
  transform: scale(0.98);
}

.submit-contact {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.899);
  margin-top: 1rem;
}


/* Small Screens */
@media (max-width: 767px) {
  .banner {
    padding: 2rem 1rem 0.5rem 1rem;
  }

  .banner p {
    font-size: 0.75rem;
  }

  .banner p.banner-desc {
    width: 100%;
  }

  .banner h1,
  .banner h2 {
    font-size: 2rem;
    margin: 1rem 0 2.2rem 0;
  }

  .banner h1 span,
  .banner h2 span {
    font-size: 0.9rem;
    padding: 0.2rem 0.9rem 0 0.9rem;
  }

  .banner h2 {
    margin-top: 2rem;
  }

  .banner h2 span {
    font-size: 0.9rem;
  }

  .banner h1 span::after {
    bottom: -12px;
    height: 7px;
  }

  .banner .fish-image img {
    width: 70%;
    margin-top: 2.5rem;
  }

  .banner .features {
    margin-top: 1.5rem;
  }

  .banner .features .feature-box {
    width: 48%;
    border: 3px solid #F0A500;
    padding: 1.3rem 0.5rem;
    margin-bottom: 0.8rem;
  }

  .banner .features .feature-box p {
    font-size: 0.7rem;
  }

  .persona-banner {
    gap: 14px;
    border: 3px solid #F0A500;
    border-radius: 25px;
    padding: 1.2rem 0.9rem;
    margin-bottom: 1.5rem;
  }

  .persona-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* Section Background */
  .b-section {
    padding: 0.2rem 1rem 0.5rem 1rem;
  }

  /* Container Structure for Question Blocks */
  .q-block {
    border: 3px solid #F0A500;
    border-radius: 25px;
    margin-bottom: 1rem;
    padding: 1.35rem 0.9rem;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .q-eval {
    font-size: 11px;
    margin-top: 1.3rem;
    padding: 0;
    padding-top: 0.7rem;
    border-top: 1.5px solid #ffffff;
  }


  /* Soft Exit Terminal Screen */
  .soft-exit {
    background-color: rgba(0, 0, 0, 0.412);
    border: 3px solid #F0A500;
    border-radius: 25px;
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
  }

  .soft-exit-icon {
    font-size: 35px;
    margin-bottom: 1rem;
  }

  .soft-exit-title {
    font-size: 25px;
    margin-bottom: 1.2rem;
  }

  .soft-exit-text {
    font-size: 13px;
    max-width: 100%;
  }


  /* User Details */
  .user-details {
    margin-top: 2rem;
  }
  .user-details input {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    font-size: 14px;
    margin-bottom: 1rem;
  }
  .user-details input:last-child {
    margin-bottom: 0;
  }

  /* Call to Action Submissions Panel */
  .submit-block {
    border: 3px solid #F0A500;
    padding: 2rem 1rem;
    margin-top: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .submit-title {
    font-size: 25px;
    margin-bottom: 0.7rem;
  }

  .submit-desc {
    font-size: 13px;
  }

  .submit-btn {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 14px 20px;
  }

  .submit-contact {
    padding: 0 1rem;
  }
}