/*--------------------------------------------------------------
# Client Registration Page Styles
--------------------------------------------------------------*/

/* Import main variables */
@import url('main.css');

/* Body and general styles */
.registration-page {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.02) 0%, rgba(248, 249, 250, 0.8) 50%, rgba(13, 110, 253, 0.02) 100%);
  min-height: 100vh;
}

/*--------------------------------------------------------------
# Registration Hero Section
--------------------------------------------------------------*/
.registration-hero {
  padding: 150px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.registration-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(13, 110, 253, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.registration-hero .hero-content {
  position: relative;
  z-index: 2;
}

.registration-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.registration-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.registration-hero .accent-text {
  color: var(--accent-color);
}

.registration-hero .hero-description {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Step Indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.step.active {
  opacity: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(40, 167, 69, 0.1);
  border: 2px solid rgba(40, 167, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.step-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--default-color);
  text-align: center;
  max-width: 80px;
}

.step-line {
  width: 50px;
  height: 2px;
  background: rgba(40, 167, 69, 0.3);
  position: relative;
  top: -25px;
}

/*--------------------------------------------------------------
# Registration Form Section
--------------------------------------------------------------*/
.registration-form-section {
  padding: 0 0 80px 0;
  position: relative;
}

/* Form Steps */
.form-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Registration Card */
.registration-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.registration-card .card-header {
  background: linear-gradient(135deg, var(--accent-color), #20c997);
  color: white;
  padding: 2.5rem;
  text-align: center;
}

.registration-card .card-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.registration-card .card-header p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.registration-card .card-body {
  padding: 3rem;
}

/*--------------------------------------------------------------
# Form Styles
--------------------------------------------------------------*/
.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  border: 2px solid rgba(40, 167, 69, 0.1);
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
  background: white;
}

.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 1.1rem;
  pointer-events: none;
}

/* Textarea adjustments */
.form-control[rows] {
  padding: 1rem 1.25rem;
  resize: vertical;
  min-height: 120px;
}

.question-group .form-group .form-control {
  padding-left: 1.25rem;
}

.question-group .form-group .form-icon {
  display: none;
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-display {
  padding: 2rem;
  border: 2px dashed rgba(40, 167, 69, 0.3);
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(40, 167, 69, 0.02);
}

.file-upload-display:hover {
  border-color: var(--accent-color);
  background: rgba(40, 167, 69, 0.05);
}

.file-upload-display.has-file {
  border-color: var(--accent-color);
  background: rgba(40, 167, 69, 0.1);
}

.file-upload-display i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.file-upload-display span {
  display: block;
  font-weight: 500;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Question Styles
--------------------------------------------------------------*/
.questions-container {
  max-width: 800px;
  margin: 0 auto;
}

.question-group {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(40, 167, 69, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.question-group h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Radio Group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.radio-option:hover {
  background: rgba(40, 167, 69, 0.05);
  border-color: rgba(40, 167, 69, 0.3);
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(40, 167, 69, 0.3);
  border-radius: 50%;
  margin-right: 1rem;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: var(--accent-color);
  background: var(--accent-color);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radio-label {
  font-weight: 500;
  color: var(--default-color);
  line-height: 1.4;
}

/* Checkbox Group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.checkbox-option:hover {
  background: rgba(40, 167, 69, 0.05);
  border-color: rgba(40, 167, 69, 0.3);
}

.checkbox-option input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(40, 167, 69, 0.3);
  border-radius: 4px;
  margin-right: 1rem;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
  border-color: var(--accent-color);
  background: var(--accent-color);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  font-weight: bold;
  font-size: 12px;
  transform: translate(-50%, -50%);
}

.checkbox-label {
  font-weight: 500;
  color: var(--default-color);
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Form Actions
--------------------------------------------------------------*/
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(40, 167, 69, 0.1);
}

.form-actions .btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.form-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #20c997);
  color: white;
}

.form-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.form-actions .btn-outline-secondary {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
  border: 2px solid rgba(108, 117, 125, 0.3);
}

.form-actions .btn-outline-secondary:hover {
  background: rgba(108, 117, 125, 0.2);
  border-color: #6c757d;
}

/*--------------------------------------------------------------
# Success Step
--------------------------------------------------------------*/
.success-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.success-icon i {
  animation: success-bounce 1s ease-in-out;
}

@keyframes success-bounce {
  0%, 20%, 60%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(-5px);
  }
}

.next-steps {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(40, 167, 69, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.next-steps h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.step-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.step-item span {
  font-weight: 500;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Appointment Section Styles
--------------------------------------------------------------*/
.appointment-section {
  max-width: 700px;
  margin: 0 auto;
}

.appointment-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(40, 167, 69, 0.02));
  border-radius: 20px;
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.intro-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.appointment-intro h4 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.appointment-intro p {
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

.calendar-section {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(40, 167, 69, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.calendar-header {
  text-align: center;
  margin-bottom: 2rem;
}

.calendar-header h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.calendar-header p {
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

.meeting-type-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(40, 167, 69, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.meeting-type-section .form-label {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

/* Appointment Details in Success Page */
.appointment-summary {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(40, 167, 69, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.appointment-details h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(40, 167, 69, 0.1);
}

.detail-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
  width: 20px;
  text-align: center;
}

.detail-item span {
  color: var(--default-color);
  font-weight: 500;
}

/* Enhanced Radio Options for Meeting Type */
.meeting-type-section .radio-option {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(40, 167, 69, 0.1);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.meeting-type-section .radio-option:hover {
  background: rgba(40, 167, 69, 0.05);
  border-color: rgba(40, 167, 69, 0.3);
  transform: translateY(-2px);
}

.meeting-type-section .radio-option input[type="radio"]:checked + .radio-custom + .radio-label {
  color: var(--accent-color);
  font-weight: 600;
}

.meeting-type-section .radio-label {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.meeting-type-section .radio-label i {
  color: var(--accent-color);
}

/* Date and Time Input Enhancements */
input[type="date"], 
input[type="time"] {
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

/*--------------------------------------------------------------
# Time Validation Styles
--------------------------------------------------------------*/
.time-validation-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

.time-validation-message .text-success {
  color: #28a745 !important;
  border-color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
}

.time-validation-message .text-danger {
  color: #dc3545 !important;
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
}

.time-validation-message .text-info {
  color: #17a2b8 !important;
  border-color: #17a2b8;
  background-color: rgba(23, 162, 184, 0.1);
}

/* Phoenix Time Indicator */
.phoenix-time-note {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #856404;
}

.phoenix-time-note i {
  color: #ffc107;
  margin-right: 0.5rem;
}

/* Working Hours Info */
.working-hours-info {
  background: rgba(23, 162, 184, 0.1);
  border: 1px solid rgba(23, 162, 184, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #0c5460;
}

.working-hours-info h6 {
  color: #17a2b8;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.working-hours-info ul {
  margin: 0;
  padding-left: 1.2rem;
}

.working-hours-info li {
  margin: 0.3rem 0;
}

/* Enhanced appointment section */
.calendar-section {
  position: relative;
}

.calendar-section::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
  border-radius: 25px;
  z-index: -1;
}

/* Responsive Design for Appointment Section */
@media (max-width: 768px) {
  .appointment-intro {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .intro-icon {
    font-size: 2.5rem;
  }
  
  .calendar-section {
    padding: 2rem 1.5rem;
  }
  
  .meeting-type-section {
    padding: 1rem;
  }
  
  .meeting-type-section .radio-option {
    padding: 1rem;
  }
  
  .detail-item {
    padding: 0.75rem;
  }
}

@media (max-width: 575px) {
  .appointment-intro {
    padding: 1rem;
  }
  
  .calendar-section {
    padding: 1.5rem 1rem;
  }
  
  .appointment-summary {
    padding: 1.5rem;
  }
}

/* Animation for appointment section */
.calendar-section {
  animation: fadeInUp 0.6s ease-out;
}

.meeting-type-section {
  animation: fadeInUp 0.8s ease-out;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .registration-hero {
    padding: 120px 0 60px 0;
  }
  
  .registration-hero h1 {
    font-size: 2.5rem;
  }
  
  .step-indicator {
    gap: 1rem;
  }
  
  .step-line {
    width: 40px;
  }
}

@media (max-width: 768px) {
  .registration-hero h1 {
    font-size: 2rem;
  }
  
  .registration-card .card-header,
  .registration-card .card-body {
    padding: 2rem;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .step-indicator {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .step-line {
    width: 30px;
  }
  
  .radio-group,
  .checkbox-group {
    gap: 0.75rem;
  }
  
  .radio-option,
  .checkbox-option {
    padding: 0.75rem;
  }
}

@media (max-width: 575px) {
  .registration-hero {
    padding: 100px 0 40px 0;
  }
  
  .registration-card {
    margin: 0 0.5rem;
  }
  
  .registration-card .card-header,
  .registration-card .card-body {
    padding: 1.5rem;
  }
  
  .question-group {
    padding: 1.5rem;
  }
  
  .step-indicator {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-line {
    width: 2px;
    height: 30px;
    top: 0;
  }
  
  .step-label {
    font-size: 0.75rem;
  }
}

/*--------------------------------------------------------------
# Animation Effects
--------------------------------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.registration-card {
  animation: fadeInUp 0.6s ease-out;
}

.form-step.active {
  animation: fadeInUp 0.4s ease-out;
}

/* Hover effects */
.registration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.question-group:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(40, 167, 69, 0.2);
}

/* Focus states */
.form-control:focus {
  transform: translateY(-1px);
}

.radio-option:focus-within,
.checkbox-option:focus-within {
  background: rgba(40, 167, 69, 0.1);
  border-color: var(--accent-color);
}

/* Industry-specific question animations */
#industry-questions-container {
  animation: fadeInUp 0.5s ease-out;
}

.question-group {
  animation: fadeInUp 0.6s ease-out;
}

.question-group:nth-child(1) { animation-delay: 0.1s; }
.question-group:nth-child(2) { animation-delay: 0.2s; }
.question-group:nth-child(3) { animation-delay: 0.3s; }
.question-group:nth-child(4) { animation-delay: 0.4s; }
.question-group:nth-child(5) { animation-delay: 0.5s; }

/*--------------------------------------------------------------
# Toast Notification Styles
--------------------------------------------------------------*/
.form-toast {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #dc3545;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  z-index: 9999;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeInDown 0.4s;
}

.close-toast {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px) translateX(-50%);}
  to { opacity: 1; transform: translateY(0) translateX(-50%);}
}

/*--------------------------------------------------------------
# Submission Overlay
--------------------------------------------------------------*/
.submission-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: none; /* Changed from visibility hidden */
  align-items: center;
  justify-content: center;
  opacity: 1;
}

/* When shown via JavaScript */
.submission-overlay[style*="display: flex"] {
  display: flex !important;
}

.submission-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.submission-overlay.show .submission-card {
  transform: scale(1);
}

/* SVG Animation Styles */
.save-icon {
  display: block;
  margin: 0 auto;
}

.save-circle {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: circle-progress 2s ease-in-out infinite;
  transform-origin: center;
}

.save-check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: check-progress 2s ease-in-out infinite;
}

.save-dot {
  animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes circle-progress {
  0% { 
    stroke-dashoffset: 283;
  }
  50% { 
    stroke-dashoffset: 0;
  }
  100% { 
    stroke-dashoffset: 283;
  }
}

@keyframes check-progress {
  0% { 
    stroke-dashoffset: 60;
  }
  50% { 
    stroke-dashoffset: 0;
  }
  100% { 
    stroke-dashoffset: 60;
  }
}

@keyframes dot-pulse {
  0%, 100% { 
    opacity: 0.3;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Loading Dots Animation */
.loading-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  height: 20px;
}

.loading-dots .dot {
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: dot-bounce 1.4s ease-in-out infinite both;
}

.loading-dots .dot:nth-child(1) { 
  animation-delay: -0.32s; 
}

.loading-dots .dot:nth-child(2) { 
  animation-delay: -0.16s; 
}

.loading-dots .dot:nth-child(3) { 
  animation-delay: 0s; 
}

@keyframes dot-bounce {
  0%, 80%, 100% { 
    transform: scale(0) translateY(0);
    opacity: 0.5;
  }
  40% { 
    transform: scale(1.2) translateY(-10px);
    opacity: 1;
  }
}

/* Submission Animation Container */
.submission-animation {
  margin-bottom: 2rem;
  position: relative;
  display: block;
  min-height: 100px;
}

/* Success State - Stop animations */
.submission-overlay.success .save-circle,
.submission-overlay.success .save-check,
.submission-overlay.success .save-dot {
  animation: none;
}

.submission-overlay.success .save-circle {
  stroke-dashoffset: 0;
  stroke: #28a745;
}

.submission-overlay.success .save-check {
  stroke-dashoffset: 0;
  stroke: #28a745;
  animation: check-draw 0.8s ease-out forwards;
}

@keyframes check-draw {
  0% { 
    stroke-dashoffset: 60; 
  }
  100% { 
    stroke-dashoffset: 0; 
  }
}

/* Hide loading dots on success */
.submission-overlay.success .loading-dots {
  display: none;
}

/* Pulse animation for active steps */
@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
}

.submission-steps .step-item.active {
  animation: pulse 2s infinite;
}

/* Warning Message */
.submission-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  color: #856404;
  font-size: 0.9rem;
}

.submission-warning i {
  font-size: 1.1rem;
  color: #ffc107;
}

/* Progress Bar */
.submission-progress {
  margin-top: 1.5rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), #20c997);
  border-radius: 10px;
  width: 0%;
  transition: width 0.5s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-text {
  font-size: 0.9rem;
  color: var(--default-color);
  font-weight: 500;
}

/* Success State */
.submission-overlay.success .save-icon {
  animation: none;
}

.submission-overlay.success .save-circle {
  stroke: #28a745;
  stroke-dashoffset: 0;
}

.submission-overlay.success .save-check {
  stroke: #28a745;
  stroke-dashoffset: 0;
  animation: check-draw 0.8s ease-out;
}

@keyframes check-draw {
  0% { stroke-dashoffset: 60; }
  100% { stroke-dashoffset: 0; }
}

/* Error State */
.submission-overlay.error .submission-card {
  border-color: rgba(220, 53, 69, 0.3);
}

.submission-overlay.error .save-icon {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Responsive */
@media (max-width: 768px) {
  .submission-card {
    padding: 2rem;
    margin: 1rem;
  }
  
  .submission-content h3 {
    font-size: 1.25rem;
  }
  
  .submission-steps .step-item {
    padding: 0.75rem;
  }
  
  .submission-steps .step-text {
    font-size: 0.9rem;
  }
}

/* Meeting Address Section */
.meeting-address-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(40, 167, 69, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(40, 167, 69, 0.1);
  animation: fadeIn 0.3s ease-in-out;
}

.meeting-address-section .form-group .form-control {
  padding-left: 3rem;
}

.meeting-address-section .form-text {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #6c757d;
}

/* Address icon positioning */
.meeting-address-section .form-icon {
  top: 1rem;
}

/* Hide/show animation for address section */
.meeting-address-section {
  transition: all 0.3s ease;
  overflow: hidden;
  max-height: 200px;
}

.meeting-address-section[style*="display: none"] {
  max-height: 0;
  padding: 0 1.5rem;
  margin-top: 0;
  opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .meeting-address-section {
    padding: 1rem;
  }
}

/* Add to existing CSS: */

/* Section Headers */
.section-header h4 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  margin: 1rem 0 2rem 0;
}

/* Privacy Disclosure */
.privacy-disclosure {
  margin: 3rem 0 2rem 0;
}

.disclosure-card {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(40, 167, 69, 0.02));
  border: 2px solid rgba(40, 167, 69, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.disclosure-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.disclosure-card h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclosure-card p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
}

.disclosure-card ul {
  text-align: left;
  max-width: 600px;
  margin: 1.5rem auto;
  padding-left: 2rem;
  list-style: none;
}

.disclosure-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
  color: var(--default-color);
  opacity: 0.9;
}

.disclosure-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Dropdown styling */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2328a745' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}

select.form-control option {
  padding: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .disclosure-card {
    padding: 2rem 1.5rem;
  }
  
  .section-header h4 {
    font-size: 1.25rem;
  }
}

/* Add after the existing privacy disclosure styles: */

/* Privacy Checkbox */
.privacy-checkbox-wrapper {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(40, 167, 69, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.privacy-checkbox-option {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin: 0;
}

.privacy-checkbox-option input[type="checkbox"] {
  display: none;
}

.privacy-checkbox-custom {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid rgba(40, 167, 69, 0.4);
  border-radius: 6px;
  margin-right: 1rem;
  margin-top: 2px;
  position: relative;
  transition: all 0.3s ease;
  background: white;
  flex-shrink: 0;
}

.privacy-checkbox-option:hover .privacy-checkbox-custom {
  border-color: var(--accent-color);
  background: rgba(40, 167, 69, 0.05);
}

.privacy-checkbox-option input[type="checkbox"]:checked + .privacy-checkbox-custom {
  border-color: var(--accent-color);
  background: var(--accent-color);
  animation: checkboxPop 0.3s ease;
}

.privacy-checkbox-option input[type="checkbox"]:checked + .privacy-checkbox-custom::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  font-weight: bold;
  font-size: 16px;
  transform: translate(-50%, -50%);
  animation: checkmarkAppear 0.3s ease;
}

@keyframes checkboxPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes checkmarkAppear {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.privacy-checkbox-label {
  font-weight: 500;
  color: var(--default-color);
  line-height: 1.6;
  text-align: left;
  flex: 1;
}

.privacy-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
  animation: shakeError 0.5s ease;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.privacy-checkbox-wrapper.error {
  border-color: #dc3545;
  animation: shakeError 0.5s ease;
}

.privacy-checkbox-wrapper.error .privacy-checkbox-custom {
  border-color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-checkbox-wrapper {
    padding: 1rem;
  }
  
  .privacy-checkbox-label {
    font-size: 0.9rem;
  }
  
  .privacy-checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
}