/* Registration Page Styles */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1b1919 0%, #282828 100%);
  font-family: "Poppins", sans-serif;
  color: #f0ece2;
  min-height: 100vh;
}

.registration-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styles */
.registration-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.back-button {
  position: absolute;
  left: 0;
  top: 20px;
  display: flex;
  align-items: center;
  color: #f0ece2;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.back-button:hover {
  background: rgba(255, 155, 23, 0.2);
  transform: translateX(-5px);
}

.back-button i {
  margin-right: 8px;
}

.header-content {
  padding-top: 20px;
}

.header-content .logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.header-content h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin: 0 0 10px 0;
  color: #ff9b17;
}

.header-content p {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 16px;
  margin: 0;
  color: rgba(240, 236, 226, 0.8);
}

/* Form Container */
.form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 155, 23, 0.2);
}

/* jQuery Steps Customization - Force Horizontal Layout */
.wizard {
  position: relative;
}

/* Override jQuery Steps default styles completely */
.wizard > .steps,
.wizard .steps {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  background: none;
  border: none;
  list-style: none;
  padding: 20px 0;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.wizard > .steps ul,
.wizard .steps ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.wizard > .steps li,
.wizard .steps li {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  position: relative;
  flex-direction: column;
  margin: 0;
  padding: 0 10px;
  flex: 1;
  justify-content: flex-start;
  text-align: center;
}

.wizard > .steps li a,
.wizard .steps li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: rgba(240, 236, 226, 0.7);
  pointer-events: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  flex-direction: column;
}

.wizard > .steps .current a,
.wizard .steps .current a {
  color: #ff9b17;
}

.wizard > .steps .done a,
.wizard .steps .done a {
  color: #28a745;
}

.wizard > .steps .number,
.wizard .steps .number {
  background: rgb(49, 49, 49);
  color: rgba(240, 236, 226, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  line-height: 46px;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 0;
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.wizard > .steps .current .number,
.wizard .steps .current .number {
  background: linear-gradient(145deg, #ff9b17, #fcb454);
  color: #1b1919;
  border-color: #ff9b17;
  box-shadow: 0 0 0 4px rgba(255, 155, 23, 0.2);
  transform: scale(1.1);
}

.wizard > .steps .done .number,
.wizard .steps .done .number {
  background: #28a745;
  border-color: #28a745;
  color: white;
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.2);
}

.wizard > .steps .title,
.wizard .steps .title {
  font-weight: 600;
  font-size: 13px;
  margin-left: 0;
  margin-top: 0;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.3;
  max-width: 120px;
  text-align: center;
}

/* Connecting lines between steps */
.wizard > .steps li::after,
.wizard .steps li::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -50%;
  transform: translateY(-50%);
  width: calc(100% - 20px);
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
  transition: all 0.3s ease;
}

.wizard > .steps li:last-child::after,
.wizard .steps li:last-child::after {
  display: none;
}

.wizard > .steps .current::after,
.wizard .steps .current::after {
  background: linear-gradient(90deg, #ff9b17, rgba(255, 155, 23, 0.3));
}

.wizard > .steps .done::after,
.wizard .steps .done::after {
  background: linear-gradient(90deg, #28a745, rgba(40, 167, 69, 0.3));
}

.wizard > .steps .done {
  color: #28a745;
}

/* Step hover effects */
.wizard > .steps li:hover .number {
  transform: scale(1.05);
  box-shadow: 0 0 0 2px rgba(255, 155, 23, 0.1);
}

.wizard > .steps .current:hover .number {
  transform: scale(1.15);
}

.wizard > .steps .done:hover .number {
  transform: scale(1.05);
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
}

/* Hide any jQuery Steps labels */
.wizard .steps .current-info,
.wizard .current-info {
  display: none;
}

/* Override jQuery Steps default CSS completely */
.wizard ul.steps {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
}

.wizard ul.steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* Force horizontal layout regardless of jQuery Steps CSS */
.wizard .steps li {
  float: none;
  width: auto;
}

.wizard > .content {
  min-height: 400px;
  padding: 20px 0;
}

.wizard > .content > .body {
  padding: 0;
}

.wizard > .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard > .actions ul {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wizard > .actions a {
  background: rgba(255, 255, 255, 0.1);
  color: #f0ece2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wizard > .actions a:hover {
  background: rgba(255, 155, 23, 0.2);
  border-color: #ff9b17;
}

.wizard > .actions a[href="#next"] {
  background: linear-gradient(145deg, #ff9b17, #fcb454);
  color: #1b1919;
  border-color: #ff9b17;
}

.wizard > .actions a[href="#next"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(252, 180, 84, 0.3);
}

.wizard > .actions a[href="#finish"] {
  background: linear-gradient(145deg, #28a745, #34ce57);
  color: white;
  border-color: #28a745;
}

.wizard > .actions a[href="#finish"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: #f0ece2;
}

.required {
  color: #ff6b6b;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #f0ece2;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Special styling for select elements */
select {
  background: rgba(40, 40, 40, 0.9);
  color: #f0ece2;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f0ece2'><path d='M7 10l5 5 5-5H7z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  font-weight: 500;
}

/* Hover state for select */
select:hover {
  background: rgba(50, 50, 50, 0.95);
  border-color: rgba(255, 155, 23, 0.5);
}

/* Select options styling */
select option {
  background: #2a2a2a;
  color: #f0ece2;
  padding: 10px 15px;
  border: none;
  font-weight: 500;
}

select option:first-child {
  color: rgba(240, 236, 226, 0.7);
  font-style: italic;
}

select option:not(:first-child):hover,
select option:not(:first-child):focus,
select option:not(:first-child):checked {
  background: #ff9b17;
  color: #1b1919;
  font-weight: 600;
}

/* Placeholder styling for select */
select:invalid {
  color: rgba(240, 236, 226, 0.7);
  font-style: italic;
}

select:valid {
  color: #f0ece2;
  font-style: normal;
  font-weight: 500;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #ff9b17;
  background: rgba(255, 155, 23, 0.1);
  color: #f0ece2;
  box-shadow: 0 0 0 3px rgba(255, 155, 23, 0.2);
}

/* Enhanced focus state for select */
select:focus {
  background: rgba(40, 40, 40, 1);
  border-color: #ff9b17;
  box-shadow: 0 0 0 3px rgba(255, 155, 23, 0.2);
}

/* Browser-specific select styling */
/* Firefox */
@-moz-document url-prefix() {
  select {
    background: rgba(40, 40, 40, 0.95);
    color: #f0ece2;
  }

  select option {
    background: #2a2a2a;
    color: #f0ece2;
  }
}

/* Webkit browsers (Chrome, Safari, Edge) */
select::-webkit-scrollbar {
  width: 8px;
}

select::-webkit-scrollbar-track {
  background: rgba(40, 40, 40, 0.5);
}

select::-webkit-scrollbar-thumb {
  background: #ff9b17;
  border-radius: 4px;
}

select::-webkit-scrollbar-thumb:hover {
  background: #fcb454;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.field-help {
  display: block;
  font-size: 12px;
  color: rgba(240, 236, 226, 0.6);
  margin-top: 5px;
  font-style: italic;
}

/* Radio Button Styles */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.radio-label:hover {
  background: rgba(255, 155, 23, 0.1);
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: #ff9b17;
  background: rgba(255, 155, 23, 0.2);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #ff9b17;
  border-radius: 50%;
}

/* Divisi Selection */
.divisi-selection {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
}

.divisi-selection h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ff9b17;
  margin-bottom: 20px;
  text-align: center;
}

/* Confirmation Section */
.confirmation-section {
  text-align: center;
  padding: 40px 20px;
  display: none; /* Hidden by default, shown only on step 3 */
}

.success-icon {
  font-size: 80px;
  color: #28a745;
  margin-bottom: 20px;
}

.confirmation-section h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #ff9b17;
  margin-bottom: 15px;
}

.confirmation-section > p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(240, 236, 226, 0.9);
}

.whatsapp-section {
  background: rgba(37, 211, 102, 0.1);
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-section h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #25d366;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.whatsapp-button i {
  margin-right: 8px;
}

.next-steps {
  background: rgba(255, 155, 23, 0.1);
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
  text-align: left;
}

.next-steps h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #ff9b17;
  margin-bottom: 15px;
  text-align: center;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.next-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(145deg, #ff9b17, #fcb454);
  color: #1b1919;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(252, 180, 84, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #f0ece2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 155, 23, 0.2);
}

/* Success Notification */
.success-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(145deg, #28a745, #34ce57);
  color: white;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
  z-index: 10001;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.5s ease;
  max-width: 350px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.success-notification .notification-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.success-notification .notification-icon {
  font-size: 24px;
  margin-right: 12px;
  color: white;
}

.success-notification .notification-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.success-notification .notification-message {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.95;
}

.success-notification .notification-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.success-notification .notification-close:hover {
  opacity: 1;
}

/* Error Notification */
.error-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(145deg, #dc3545, #e74c3c);
  color: white;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
  z-index: 10001;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.5s ease;
  max-width: 350px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.error-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.error-notification .notification-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.error-notification .notification-icon {
  font-size: 24px;
  margin-right: 12px;
  color: white;
}

.error-notification .notification-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.error-notification .notification-message {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.95;
}

.error-notification .notification-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.error-notification .notification-close:hover {
  opacity: 1;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 25, 25, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-content {
  text-align: center;
  color: #f0ece2;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 155, 23, 0.2);
  border-left: 4px solid #ff9b17;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .registration-container {
    padding: 10px;
  }

  .form-container {
    padding: 20px;
  }

  .back-button {
    position: static;
    margin-bottom: 20px;
    align-self: flex-start;
  }

  .registration-header {
    position: relative;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .wizard > .steps {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px 5px;
    overflow-x: auto;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .wizard > .steps li {
    margin: 0;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
    flex-shrink: 0;
    min-width: 90px;
  }

  .wizard > .steps li::after {
    top: 20px;
    right: -50%;
    width: calc(100% - 10px);
    height: 2px;
  }

  .wizard > .steps li:last-child::after {
    display: none;
  }

  .wizard > .steps .title {
    font-size: 10px;
    margin-left: 0;
    margin-top: 0;
    line-height: 1.2;
    max-width: 80px;
  }

  .wizard > .steps .number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .header-content h1 {
    font-size: 28px;
  }

  .wizard > .actions {
    flex-direction: column;
    gap: 10px;
  }

  .wizard > .actions ul {
    width: 100%;
    justify-content: center;
  }

  .wizard > .actions a {
    flex: 1;
    text-align: center;
    min-width: 120px;
  }
}

/* Error States */
input.error,
select.error,
textarea.error {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.form-group.error .radio-group {
  border: 1px solid #ff6b6b;
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 107, 107, 0.05);
}

.error-message {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

/* Success States */
input.success,
select.success,
textarea.success {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.1);
}

/* ULTIMATE OVERRIDE FOR HORIZONTAL LAYOUT */
/* Force horizontal with maximum CSS specificity */
html body .wizard .steps,
html body form.wizard ul.steps,
html body .wizard > .steps,
html body #regform .wizard .steps {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 20px 0;
  list-style: none;
  position: relative;
  flex-wrap: nowrap;
}

html body .wizard .steps li,
html body form.wizard ul.steps li,
html body .wizard > .steps li,
html body #regform .wizard .steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  text-align: center;
  margin: 0;
  padding: 0;
  min-width: 0;
  width: auto;
  height: auto;
  float: none;
}

/* Force inline-block as backup */
.wizard .steps li[style] {
  display: flex;
  flex-direction: column;
}

/* Remove any float or absolute positioning */
.wizard .steps li {
  float: none;
  position: relative;
}

/* Team Section Styles */
.team-section {
  background: rgba(255, 155, 23, 0.05);
  border: 1px solid rgba(255, 155, 23, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
}

.team-section h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ff9b17;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-section h4 i {
  font-size: 20px;
}

/* Requirements Info Box */
.requirements-info {
  margin-bottom: 30px;
}

.info-box {
  background: rgba(255, 155, 23, 0.1);
  border: 1px solid rgba(255, 155, 23, 0.3);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-box i {
  color: #ff9b17;
  font-size: 20px;
  flex-shrink: 0;
}

.info-box p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(240, 236, 226, 0.9);
  line-height: 1.4;
}

/* Contact Section */
.contact-section {
  background: rgba(255, 155, 23, 0.05);
  border: 1px solid rgba(255, 155, 23, 0.2);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
}

.contact-section h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ff9b17;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-section .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.contact-section .contact-item i {
  color: #ff9b17;
  font-size: 16px;
  width: 20px;
}

.contact-section .contact-item a {
  color: #f0ece2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-section .contact-item a:hover {
  color: #ff9b17;
}

/* Submission Info */
.submission-info,
.poster-info,
.kti-info {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
}

.submission-info h4,
.poster-info h4,
.kti-info h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #28a745;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.submission-info ul,
.poster-info ul,
.kti-info ul {
  margin: 10px 0;
  padding-left: 20px;
}

.submission-info li,
.poster-info li,
.kti-info li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(240, 236, 226, 0.9);
  margin: 5px 0;
}

/* URL Input Styling */
input[type="url"] {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #f0ece2;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

input[type="url"]:focus {
  outline: none;
  border-color: #ff9b17;
  background: rgba(255, 155, 23, 0.1);
  color: #f0ece2;
  box-shadow: 0 0 0 3px rgba(255, 155, 23, 0.2);
}

input[type="url"].error {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

input[type="url"].success {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.1);
}
