/* BNKP AI Assistant Guide Page Styling */

* {
  box-sizing: border-box;
}

.bnkp-guide-wrapper {
  min-height: 100vh;
  background-color: #f5f7fa;
}

/* Header Banner */
.bnkp-header-banner {
  background: linear-gradient(135deg, #0ca8b0 0%, #1fa8c1 100%);
  color: #ffffff;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bnkp-header-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.bnkp-header-banner::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  margin: 0 0 15px 0;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-subtitle {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.95;
  letter-spacing: 0.3px;
}

/* Content Wrapper */
.bnkp-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Info Section */
.bnkp-info-section {
  margin-bottom: 50px;
}

.info-box {
  display: flex;
  gap: 16px;
  background: linear-gradient(135deg, #fef9f3 0%, #fffbf8 100%);
  border: 1px solid #f0d9c7;
  border-radius: 12px;
  padding: 24px;
  align-items: flex-start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.info-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-content {
  color: #5c4033;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.info-content strong {
  color: #3e2723;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* Chat Section */
.bnkp-chat-section {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8ecf1;
}

.section-title {
  margin: 0 0 28px 0;
  font-size: 26px;
  font-weight: 600;
  color: #1a202c;
  padding-bottom: 16px;
  border-bottom: 2px solid #0ca8b0;
  display: inline-block;
}

.chat-interface {
  margin-top: 20px;
}

.chat-loading {
  background: #f8fafb;
  border: 2px dashed #cbd5e0;
  border-radius: 10px;
  padding: 60px 40px;
  text-align: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #718096;
}

.chat-loading p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bnkp-header-banner {
    padding: 60px 24px;
  }

  .page-title {
    font-size: 32px;
    letter-spacing: -0.3px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .bnkp-content-wrapper {
    padding: 40px 24px;
  }

  .bnkp-chat-section {
    padding: 24px;
  }

  .section-title {
    font-size: 22px;
  }

  .info-box {
    gap: 12px;
    padding: 16px;
  }

  .info-icon {
    font-size: 20px;
  }

  .info-content {
    font-size: 13px;
  }

  .chat-loading {
    padding: 40px 20px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .bnkp-header-banner {
    padding: 40px 16px;
  }

  .page-title {
    font-size: 24px;
  }

  .page-subtitle {
    font-size: 14px;
  }

  .bnkp-content-wrapper {
    padding: 30px 16px;
  }

  .bnkp-chat-section {
    padding: 16px;
  }

  .section-title {
    font-size: 18px;
  }

  .info-box {
    flex-direction: column;
    gap: 10px;
  }

  .chat-loading {
    padding: 30px 16px;
    min-height: 180px;
  }
}
