/* style/index-registration-process.css */
:root {
  --primary-color: #007bff;
  --secondary-color: #0056b3;
  --accent-color: #ffc107;
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-dark: #121212;
  --background-medium-dark: #1a1a1a;
  --card-background-dark: rgba(255, 255, 255, 0.1);
  --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-index-registration-process {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-light); /* Body background is dark, so text should be light */
  background-color: var(--background-dark); /* Inherited from shared.css, confirm here for clarity */
  padding-top: 10px; /* Base padding for desktop, adjusted in video section for specific needs */
}

/* General section styling */
.page-index-registration-process__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* CTA Button Styles */
.page-index-registration-process__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-index-registration-process__cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Video Section */
.page-index-registration-process__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, #001f4d, #000000);
  border-bottom: 5px solid var(--accent-color);
}

.page-index-registration-process__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-registration-process__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-registration-process__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-index-registration-process__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background-color: #000;
}

.page-index-registration-process__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from interfering with click event */
}

.page-index-registration-process__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-index-registration-process__video-link:hover .page-index-registration-process__video-overlay {
  opacity: 1;
}

.page-index-registration-process__video-click-hint {
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  padding: 15px 30px;
  background: rgba(0, 123, 255, 0.85);
  border-radius: 10px;
  white-space: nowrap;
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.05); opacity: 1; }
}

.page-index-registration-process__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.page-index-registration-process__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--accent-color); /* Use accent color for high visibility */
  color: var(--text-color-dark); /* Dark text on bright accent color for contrast */
  text-decoration: none;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-index-registration-process__play-now-button:hover {
  background: #e6b000; /* Slightly darker accent on hover */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-registration-process__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* H1 Title Section */
.page-index-registration-process__title-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--border-color-dark);
}

.page-index-registration-process__title-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-registration-process__main-title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.page-index-registration-process__title-description {
  font-size: 20px;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-registration-process__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Registration Steps Section */
.page-index-registration-process__steps-section {
  padding: 80px 20px;
  background-color: var(--background-medium-dark);
  border-bottom: 1px solid var(--border-color-dark);
}

.page-index-registration-process__steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-registration-process__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  text-align: center;
  background: var(--card-background-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color-dark);
}

.page-index-registration-process__step-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-index-registration-process__step-title {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-registration-process__step-text {
  font-size: 17px;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 15px auto;
}

.page-index-registration-process__step-list {
  list-style-type: disc;
  text-align: left;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
  font-size: 17px;
}

.page-index-registration-process__step-list li {
  margin-bottom: 8px;
}

.page-index-registration-process__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

/* Benefits Section */
.page-index-registration-process__benefits-section {
  padding: 80px 20px;
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--border-color-dark);
}

.page-index-registration-process__benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-registration-process__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-registration-process__benefit-card {
  background: var(--card-background-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border-color-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-registration-process__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process__benefit-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

.page-index-registration-process__benefit-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-registration-process__benefit-text {
  font-size: 16px;
  color: #cccccc;
}

/* FAQ Section */
.page-index-registration-process__faq-section {
  padding: 80px 20px;
  background-color: var(--background-medium-dark);
  border-bottom: 1px solid var(--border-color-dark);
}

.page-index-registration-process__faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-registration-process__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-index-registration-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-background-dark);
  border: 1px solid var(--border-color-dark);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-registration-process__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.page-index-registration-process__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-color-light);
  pointer-events: none;
}

.page-index-registration-process__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--accent-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.page-index-registration-process__faq-item.active .page-index-registration-process__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-index-registration-process__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2); /* Darker background for answer */
  border-radius: 0 0 8px 8px;
  color: #e0e0e0;
  font-size: 16px;
}

.page-index-registration-process__faq-item.active .page-index-registration-process__faq-answer {
  max-height: 2000px !important; /* Sufficiently large max-height */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid var(--border-color-dark);
}

/* Brand Section */
.page-index-registration-process__brand-section {
  padding: 80px 20px;
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--border-color-dark);
}

.page-index-registration-process__brand-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-registration-process__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-registration-process__brand-item {
  background: var(--card-background-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border-color-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-registration-process__brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process__brand-item h3 {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.page-index-registration-process__brand-item p {
  font-size: 16px;
  color: #cccccc;
}

.page-index-registration-process__brand-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

/* Blog Section */
.page-index-registration-process__blog-section {
  padding: 80px 20px;
  background-color: var(--background-medium-dark);
}

.page-index-registration-process__blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-registration-process__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-registration-process__blog-item {
  background: var(--card-background-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-registration-process__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process__blog-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.page-index-registration-process__blog-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color-dark);
}

.page-index-registration-process__blog-item-title {
  font-size: 22px;
  color: var(--primary-color);
  padding: 15px 20px 0;
  margin-bottom: 10px;
}

.page-index-registration-process__blog-item-excerpt {
  font-size: 15px;
  color: #cccccc;
  padding: 0 20px;
  margin-bottom: 15px;
}

.page-index-registration-process__blog-item-date {
  font-size: 14px;
  color: #999999;
  display: block;
  padding: 0 20px 15px;
}

.page-index-registration-process__view-all-blogs {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-registration-process__main-title {
    font-size: 42px;
  }
  .page-index-registration-process__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-index-registration-process {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-index-registration-process__video-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-index-registration-process__video-container,
  .page-index-registration-process__video-link,
  .page-index-registration-process__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-index-registration-process__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
  }

  .page-index-registration-process__video-click-hint {
    font-size: 16px;
    padding: 10px 20px;
  }

  .page-index-registration-process__video-cta {
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index-registration-process__play-now-button {
    font-size: 18px;
    padding: 15px 30px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-index-registration-process__title-section,
  .page-index-registration-process__steps-section,
  .page-index-registration-process__benefits-section,
  .page-index-registration-process__faq-section,
  .page-index-registration-process__brand-section,
  .page-index-registration-process__blog-section {
    padding: 40px 15px;
  }

  .page-index-registration-process__main-title {
    font-size: 32px;
  }

  .page-index-registration-process__title-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-index-registration-process__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-index-registration-process__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    margin: 0 !important;
  }

  .page-index-registration-process__section-title {
    font-size: 28px;
  }

  .page-index-registration-process__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-index-registration-process__step-item {
    padding: 20px;
    margin-bottom: 40px;
  }

  .page-index-registration-process__step-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 20px;
  }

  .page-index-registration-process__step-title {
    font-size: 22px;
  }

  .page-index-registration-process__step-text,
  .page-index-registration-process__step-list li {
    font-size: 15px;
  }

  .page-index-registration-process__benefits-grid,
  .page-index-registration-process__brand-content,
  .page-index-registration-process__blog-list {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .page-index-registration-process__benefit-icon {
    width: 100px;
    height: 100px;
  }

  .page-index-registration-process__benefit-title,
  .page-index-registration-process__brand-item h3 {
    font-size: 20px;
  }

  .page-index-registration-process__faq-question {
    padding: 15px 20px;
  }

  .page-index-registration-process__faq-question h3 {
    font-size: 16px;
  }

  .page-index-registration-process__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-index-registration-process__faq-answer {
    padding: 0 20px;
  }

  .page-index-registration-process__faq-item.active .page-index-registration-process__faq-answer {
    padding: 15px 20px !important;
  }

  .page-index-registration-process__blog-thumbnail {
    height: 180px;
  }

  .page-index-registration-process__blog-item-title {
    font-size: 18px;
    padding: 10px 15px 0;
  }

  .page-index-registration-process__blog-item-excerpt,
  .page-index-registration-process__blog-item-date {
    font-size: 14px;
    padding: 0 15px 10px;
  }
}

@media (max-width: 480px) {
  .page-index-registration-process__main-title {
    font-size: 28px;
  }
  .page-index-registration-process__section-title {
    font-size: 24px;
  }
  .page-index-registration-process__video-click-hint {
    font-size: 14px;
    padding: 8px 15px;
  }
  .page-index-registration-process__play-now-button {
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-index-registration-process__faq-question h3 {
    font-size: 15px;
  }
}