/* style/register.css */

/* Base styles for the page content */
.page-register {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is #000000 from shared.css */
}

.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-register__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0; /* Brand color for titles */
}

.page-register__section-text {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-register__section-text--wide {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

.page-register__hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-register__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: -1;
}

.page-register__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-register__hero-title {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-register__hero-description {
  font-size: 1.5rem;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-register__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-register__btn-primary,
.page-register__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-register__btn-primary:hover {
  background-color: #1a7fb8;
  border-color: #1a7fb8;
}

.page-register__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-register__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* Section Backgrounds */
.page-register__dark-bg {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0;
}

.page-register__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: #f0f0f0;
  padding: 60px 0;
}

/* Intro Section */
.page-register__intro-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-register__intro-section .page-register__section-title {
  color: #26A9E0;
}

.page-register__intro-section .page-register__section-text {
  color: #f0f0f0;
}

.page-register__image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register__image-responsive--center {
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Us Section */
.page-register__why-choose-us {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-register__why-choose-us .page-register__section-title {
  color: #26A9E0;
}

.page-register__why-choose-us .page-register__section-text {
  color: #f0f0f0;
}

.page-register__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-register__feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-register__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-register__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-register__card-title {
  font-size: 1.6rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-register__card-text {
  font-size: 1rem;
  color: #e0e0e0;
}

/* Registration Steps Section */
.page-register__steps-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-register__steps-section .page-register__section-title {
  color: #26A9E0;
}

.page-register__steps-section .page-register__section-text {
  color: #f0f0f0;
}

.page-register__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-register__step-icon {
  width: 60px;
  height: 60px;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-register__step-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-register__step-text {
  font-size: 1rem;
  color: #e0e0e0;
}

/* Security Section */
.page-register__security-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-register__security-section .page-register__section-title {
  color: #26A9E0;
}

.page-register__security-section .page-register__section-text {
  color: #f0f0f0;
}

.page-register__security-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  color: #e0e0e0;
}

.page-register__security-list-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-register__security-list-item::before {
  content: '✔';
  color: #26A9E0;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.3rem;
}

.page-register__security-section .page-register__btn-primary {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

/* Promotions Section */
.page-register__promotions-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-register__promotions-section .page-register__section-title {
  color: #26A9E0;
}

.page-register__promotions-section .page-register__section-text {
  color: #f0f0f0;
}

.page-register__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-register__promotion-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

/* FAQ Section */
.page-register__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-register__faq-section .page-register__section-title {
  color: #26A9E0;
}

.page-register__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-register__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}