/* Sticky Popup Component Styles */
/* Pulse Animation */
@keyframes sticky-popup-pulse {
  0% {
    box-shadow: 0px 0px 20px 0px rgba(1, 66, 147, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0px 0px 30px 0px rgba(1, 66, 147, 0.6);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0px 0px 20px 0px rgba(1, 66, 147, 0.4);
    transform: scale(1);
  }
}

/* Bounce Animation */
@keyframes sticky-popup-bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Glow Animation */
@keyframes sticky-popup-glow {
  0% {
    box-shadow: 0px 0px 20px 0px rgba(1, 66, 147, 0.4);
  }
  50% {
    box-shadow: 0px 0px 35px 0px rgba(1, 66, 147, 0.7),
      0px 0px 50px 0px rgba(102, 126, 234, 0.3);
  }
  100% {
    box-shadow: 0px 0px 20px 0px rgba(1, 66, 147, 0.4);
  }
}

.sticky-popup-container-ed {
  position: fixed;
  bottom: 9.5rem;
  right: 1.25rem;
  z-index: 9999;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}

/* Sticky Button Wrapper */
.sticky-popup-trigger-wrapper {
  display: flex;
  align-items: center;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sticky Button */
.sticky-popup-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, #014293 0%, #667eea 100%);
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0px 0px 20px 0px rgba(1, 66, 147, 0.4);
  /* animation: sticky-popup-pulse 4s ease-in-out infinite,
    sticky-popup-glow 5s ease-in-out infinite; */
  overflow: hidden;
  width: 3.5rem;
  height: 3.5rem;
}

.sticky-popup-trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #014293 0%, #667eea 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.sticky-popup-trigger:hover {
  animation: sticky-popup-bounce 0.8s ease-out,
    sticky-popup-glow 3s ease-in-out infinite;
  width: auto;
  gap: 0.75rem;
  background: linear-gradient(135deg, #014293 0%, #667eea 100%);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: 0px 8px 32px 0px rgba(1, 66, 147, 0.5);
  transform: translateY(-3px);
}

.sticky-popup-trigger:active {
  transform: translateY(-1px);
  box-shadow: 0px 4px 16px 0px rgba(1, 66, 147, 0.4);
  transition: all 0.2s ease;
}

/* Icon inside button */
.sticky-popup-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-popup-trigger:hover .sticky-popup-icon {
  transform: rotate(3deg) scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Text Styling */
.sticky-popup-text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-transform: none;
  color: #ffffff;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  max-width: 0;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sticky-popup-trigger:hover .sticky-popup-text {
  opacity: 1;
  transform: translateX(0);
  max-width: 280px;
  margin-left: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-popup-container-ed {
    bottom: 10rem;
    right: 1.25rem;
  }

  .sticky-popup-trigger {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #014293 0%, #667eea 100%);
    animation: sticky-popup-pulse 3.5s ease-in-out infinite,
      sticky-popup-glow 4.5s ease-in-out infinite;
  }

  .sticky-popup-trigger:hover {
    width: auto;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, #014293 0%, #667eea 100%);
    box-shadow: 0px 6px 24px 0px rgba(1, 66, 147, 0.5);
  }

  .sticky-popup-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .sticky-popup-text {
    font-size: 0.875rem;
    font-weight: 500;
  }

  .sticky-popup-trigger:hover .sticky-popup-text {
    max-width: 180px;
    margin-left: 0.375rem;
  }
}

@media (max-width: 480px) {
  .sticky-popup-container-ed {
    /* bottom: 1rem; */
    bottom: 10rem;
    right: 1rem;
  }

  .sticky-popup-trigger {
    width: 3rem;
    height: 3rem;
    animation: sticky-popup-pulse 3s ease-in-out infinite,
      sticky-popup-glow 4s ease-in-out infinite;
  }

  .sticky-popup-trigger:hover {
    width: auto;
    border-radius: 2px;
    padding: 0.5rem 1rem;
    box-shadow: 0px 4px 20px 0px rgba(1, 66, 147, 0.5);
  }

  .sticky-popup-icon {
    width: 1.875rem;
    height: 1.875rem;
  }

  .sticky-popup-text {
    font-size: 0.75rem;
    font-weight: 500;
  }

  .sticky-popup-trigger:hover .sticky-popup-text {
    max-width: 140px;
    margin-left: 0.25rem;
  }
}

/* Touch devices - show text on tap instead of hover */
@media (hover: none) and (pointer: coarse) {
  .sticky-popup-trigger {
    width: auto;
    border-radius: 2.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #014293 0%, #667eea 100%);
    animation: sticky-popup-pulse 4s ease-in-out infinite,
      sticky-popup-glow 5s ease-in-out infinite;
  }

  .sticky-popup-text {
    opacity: 1;
    transform: translateX(0);
    max-width: 280px;
    margin-right: 0.2rem;
    font-weight: 500;
  }

  .sticky-popup-trigger:hover {
    width: auto;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #014293 0%, #667eea 100%);
    box-shadow: 0px 8px 32px 0px rgba(1, 66, 147, 0.5);
  }

  .sticky-popup-trigger:hover .sticky-popup-text {
    opacity: 1;
    transform: translateX(0);
    max-width: 280px;
    margin-left: 0.5rem;
  }
}

/* ------------------------------------------- */
/* Multi-Step Modal Styles */
.multi-step-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: none;
}

.multi-step-modal.active {
  display: block;
}

.multi-step-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.multi-step-modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 90%;
  background: white;
  border-radius: 0.7rem;
  border: 0.7rem solid #f9f9f9;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.multi-step-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multi-step-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.multi-step-modal-content {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Left Section - Image */
.multi-step-modal-left {
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.7rem;
  flex-shrink: 0;
  width: auto;
}

.multi-step-modal-image-container-sm {
  display: none;
}

.multi-step-modal-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.multi-step-modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: fill;
}

/* Right Section - Form */
.multi-step-modal-right {
  flex: 1;
  padding: 1rem 3rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: inset 0 6px 16px 0 rgba(0, 0, 0, 0.08);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.multi-step-modal-right::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.multi-step-form-container {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* Form Steps */
.multi-step-form-steps {
  /* flex: 1; */
  position: relative;
}

.form-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-step-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.25rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.form-step-content {
  margin-bottom: 1rem;
}

/* Form Groups */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #313131;
  margin-bottom: 8px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.form-input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #e1e5e9;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #014293;
  box-shadow: 0 0 0 3px rgba(1, 66, 147, 0.1);
}

.form-input.error {
  border-color: #dc3545;
}

/* Radio Groups */
.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 5fr);
  gap: 12px;
  overflow-y: auto;
}

/* Radio Groups */
.contact-us-radio-group {
  /* display: flex;
  flex-direction: column;
  gap: 8px; */
  display: grid;
  grid-template-columns: repeat(2, 5fr);
  gap: 12px;
  overflow-y: auto;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 1rem 0.6rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.radio-option:hover,
.radio-option:active {
  border-color: #014293;
  background: #f8f9fa;
}

/* Use :has to style .radio-option when its input is checked (supported in modern browsers) */
.radio-option:has(input[type="radio"]:checked) {
  border-color: #014293;
  background: #f8f9fa;
}

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

.radio-custom {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #e1e5e9;
  border-radius: 10%;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: #014293;
  background: white;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.7rem;
  height: 0.7rem;
  background: #014293;
  border-radius: 10%;
}

.radio-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  flex: 1;
  line-height: 1.2;
  word-wrap: break-word;
}

/* Navigation Buttons */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.btn-primary {
  background: #014293;
  color: white;
}

.btn-primary:hover {
  background: #013a7a;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #014293;
  border: 1px solid #014293;
}

.btn-secondary:hover {
  background: white;
  color: #014293;
  border: 1px solid #014293;
  transform: translateY(-2px);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  background: white;
  color: #014293;
  border: 1px solid #014293;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.btn-secondary.disabled:hover,
.btn-secondary:disabled:hover {
  background: white;
  color: #014293;
  border: 1px solid #014293;
  transform: none;
}

.btn-success {
  background: #28a745;
  color: white;
}

.btn-success:hover {
  background: #218838;
  transform: translateY(-2px);
}

/* Progress Bar */
.multi-step-progress {
  height: 6px;
  margin: 1rem 0;
  border-radius: 3px;
  background: #ebebeb;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: #ebebeb;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 20%;
  border-radius: 3px;
  background: #014293;
  transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .multi-step-modal-container {
    width: 90%;
    height: 95%;
  }

  .multi-step-modal-left {
    width: 38%;
  }

  .multi-step-modal-right {
    padding: 1rem;
  }

  .form-step-heading {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .multi-step-modal-content {
    flex-direction: column;
  }

  .multi-step-modal-left {
    width: 100%;
    padding: 0.5rem;
  }

  .multi-step-modal-image-container {
    display: none;
  }

  .multi-step-modal-image-container-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .modal-logo-image {
    width: 10rem;
  }

  .modal-heading-sm {
    font-weight: 700;
    font-size: 1.35rem;
    margin: 12px 0;
    line-height: 150%;
    text-align: center;
    text-transform: capitalize;
  }

  .modal-subheading-sm {
    color: #727272;
    font-weight: 400;
    font-size: 13px;
    line-height: 160%;
    text-align: center;
  }

  .multi-step-modal-right {
    padding: 20px;
  }

  .form-step-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .form-navigation {
    gap: 2.25rem;
  }

  .btn {
    width: 100%;
  }

  .radio-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .contact-us-radio-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .radio-option {
    padding: 0.8rem;
  }

  .radio-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* Small mobile: 1 column, scrollable */
  .radio-group {
    grid-template-columns: 1fr;
  }

  .contact-us-radio-group {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------- */
/*  Your Perfect CFO Partners Popup */
.ceo-cfo-results-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ceo-cfo-results-modal.active {
  opacity: 1;
  visibility: visible;
}

.ceo-cfo-results-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.ceo-cfo-results-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 90%;
  background: white;
  border-radius: 0.7rem;
  border: 0.7rem solid #f9f9f9;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ceo-cfo-results-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ceo-cfo-results-close:hover {
  background: #f5f5f5;
  color: #333;
}

.ceo-cfo-results-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: inset 0 6px 16px 0 rgba(0, 0, 0, 0.08);
}

/* Header Styles */
.ceo-cfo-results-header {
  padding: 1rem;
}

.ceo-cfo-results-title {
  font-size: 1.85rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 5px 0;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
}

.ceo-cfo-results-subtitle {
  font-size: 0.9rem;
  color: #565656;
  margin: 0;
  text-align: center;
}

/* Body Styles */
.ceo-cfo-results-body {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.ceo-cfo-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* CEO/CFO Card Styles */
.ceo-cfo-card {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-top: 0;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ceo-cfo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}

.ceo-cfo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #3b82f6);
}

.ceo-cfo-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem 0.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.ceo-cfo-card-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f3f4f6;
}

.ceo-cfo-card-info {
  flex: 1;
}

.ceo-cfo-card-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 4px 0;
}

.ceo-cfo-card-company {
  font-size: 0.8rem;
  font-weight: 400;
  margin: 0 0 4px 0;
  color: #000;
}

.ceo-cfo-card-location {
  font-size: 0.8rem;
  color: #585858;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ceo-cfo-card-location-text {
  color: #014293;
  font-weight: 600;
  text-transform: capitalize;
}

.ceo-cfo-card-location svg {
  width: 15px;
  height: 15px;
}

.ceo-cfo-card-description {
  color: #535353;
  padding: 1rem 0.5rem;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

.ceo-cfo-card-description-text {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  text-transform: capitalize;
  color: #000;
  margin: 0.5rem 0 0.3rem;
}

/* Skills Section */
.ceo-cfo-card-section {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.ceo-cfo-card-section-client {
  padding: 0 0.5rem 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.ceo-cfo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ceo-cfo-chip {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.ceo-cfo-chip:hover {
  transform: scale(1.05);
}

.ceo-cfo-chip.skill {
  background: #dbebff;
  color: #014293;
  border-color: #014293;
}

.ceo-cfo-chip.client {
  background: #dbebff;
  color: #014293;
  border-color: transparent;
  border-radius: 3px;
}

/* Loading State */
.ceo-cfo-results-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f4f6;
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.ceo-cfo-results-loading p {
  color: #6b7280;
  font-size: 16px;
  margin: 0;
}

/* Empty State */
.ceo-cfo-results-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.empty-state {
  text-align: center;
  color: #6b7280;
}

.empty-state svg {
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #374151;
}

.empty-state p {
  font-size: 14px;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.ceo-btn {
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ceo-cfo-results-container {
    width: 95%;
    max-height: 95vh;
    border-radius: 12px;
  }

  .ceo-cfo-results-header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .ceo-cfo-results-title {
    font-size: 1.5rem;
  }

  .ceo-cfo-results-body {
    padding: 1.15rem;
  }

  .ceo-cfo-results-grid {
    grid-template-columns: 1fr;
  }

  .ceo-cfo-card-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .ceo-cfo-card-image {
    width: 60px;
    height: 60px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .ceo-cfo-results-close {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .ceo-cfo-results-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .ceo-cfo-results-header {
    padding: 15px 15px 10px;
  }

  .ceo-cfo-results-body {
    padding: 1rem;
  }
}

/* // ----------------------------------------------- // */
/* Chat with CEO Modal Styles */
.chat-with-ceo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: none;
}

.chat-with-ceo-modal.active {
  display: block;
}

/* Chat Back Button */
/* .chat-back-button-container {
  padding: 0 0 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
} */

.chat-back-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 0;
  margin-top: -0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-back-button:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #374151;
}

.chat-back-button:active {
  background: #f3f4f6;
  transform: translateY(1px);
}

.chat-with-ceo-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.chat-with-ceo-modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 90%;
  background: white;
  border-radius: 0.7rem;
  border: 0.7rem solid #f9f9f9;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-with-ceo-modal-close {
  position: absolute;
  top: 0.1rem;
  right: 0.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-with-ceo-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.chat-modal-container {
  height: 90vh;
  display: flex;
  overflow-y: scroll;
  flex-direction: column;
  background: #ffffff;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.chat-modal-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.ceo-profile-header {
  padding: 1rem;
  flex-shrink: 0;
  border-bottom: 1px solid #e5e5e5;
}

.ceo-profile-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ceo-profile-image {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d9d9d9;
}

.ceo-profile-details {
  flex: 1;
}

.ceo-profile-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 0.5rem 0;
  line-height: 100%;
  letter-spacing: 0%;
}

.ceo-profile-description {
  font-size: 0.9rem;
  color: #000000;
  margin: 0 0 0.5rem 0;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 0%;
}

.ceo-profile-meta {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.chat-with-ceo-modal-location {
  color: #585858;
  display: flex;
  gap: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
}

.chat-with-ceo-modal-location svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.ceo-location,
.ceo-industry {
  color: #014293;
  font-weight: 500;
  font-weight: 600;
  font-size: 14px;
  max-width: 30vw;
  text-transform: capitalize;
}

.chat-messages-container {
  flex: 1;
  padding: 1rem;
}

.chat-messages {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.chat-message {
  max-width: 75%;
  padding: 1rem;
  border-radius: 8px;
  line-height: 1.5;
  border: 1px solid #01429333;
}

.chat-message.ceo {
  width: 100%;
  color: #000;
  background: #f3f8ff;
  align-self: flex-start;
  font-weight: 400;
  font-size: 1rem;
  line-height: 28px;
  letter-spacing: 0%;
}

.chat-message.user {
  color: #000;
  background: #f3f8ff;
  align-self: flex-start;
  font-weight: 400;
  font-size: 1rem;
  line-height: 28px;
  letter-spacing: 0%;
}

.chat-message-list {
  padding-left: 2rem !important;
}

.chat-message-list li {
  list-style: disc !important;
  margin-bottom: 0.5rem;
}

.question-form-section {
  flex-shrink: 0;
}

.book-time-btn {
  border: 1px solid #0142931a;
  background: #fff;
  font-family: Open Sans;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #262626;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}

.book-time-btn svg {
  margin-bottom: 3px;
}

.question-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.question-input {
  border: 1px solid #0142931a;
  background: #ffffff;
  color: #000;
  font-size: 1rem;
  line-height: 28px;
  letter-spacing: 0%;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  width: 100%;
}

.question-input:focus {
  outline: none;
  border-color: #014293;
  box-shadow: 0 0 0 2px rgba(1, 66, 147, 0.1);
}

/* Error State Styles */
.question-input.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
}

.book-time-btn.error {
  border-color: #dc3545 !important;
  background-color: #f8d7da !important;
  color: #721c24 !important;
}

.chat-input-section {
  background: white;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
  flex-shrink: 0;
}

.chat-input-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.chat-input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.75rem;
  resize: none;
  font-family: inherit;
}

.chat-input:focus {
  outline: none;
  border-color: #014293;
  box-shadow: 0 0 0 2px rgba(1, 66, 147, 0.1);
}

.chat-send-btn {
  background: #014293;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.chat-send-btn:hover {
  background: #013a7a;
}

.book-time-container {
  text-align: center;
}

.return-home-container {
  flex-shrink: 0;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.return-home-btn {
  background: #014293;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: capitalize;
  transition: background-color 0.2s;
}

.return-home-btn:hover {
  background: #014293;
}

/* Error State Styles */
.question-input.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
}

.book-time-btn.error {
  border-color: #dc3545 !important;
  background-color: #f8d7da !important;
  color: #721c24 !important;
}

/* Confirmation Message Animation */
.chat-message.ceo.confirmation-message {
  animation: slideInFromTop 0.6s ease-out;
  transform-origin: top center;
}

@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Return Home Button Animation */
.return-home-container {
  animation: slideInFromBottom 0.5s ease-out 0.3s both;
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Question Form Hide Animation */
.question-form-section.hiding {
  animation: slideOutToLeft 0.4s ease-in forwards;
}

@keyframes slideOutToLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* Calendar Modal Styles */
.calendar-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.date-picker-container,
.time-picker-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.date-picker-container label,
.time-picker-container label {
  font-weight: 600;
  color: #222;
}

/* Close Button Styles */
.btn-close-chat {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

/* //////////////////////////////////// */
.calendar-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100001;
  display: none;
}

.calendar-modal.active {
  display: block;
}

.calendar-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.calendar-modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.calendar-modal-content {
  min-width: 500px;
  padding: 1rem;
  background: white;
  border-radius: 0.7rem;
  border: 0.7rem solid #f9f9f9;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.calendar-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.calendar-modal-close:hover {
  background: white;
  transform: scale(1.1);
}

.calendar-modal-close svg {
  width: 20px;
  height: 20px;
  color: #666;
}

.calendar-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.calendar-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.date-picker-container,
.time-picker-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.date-picker-container label,
.time-picker-container label {
  font-weight: 600;
  color: #222;
  font-size: 0.9rem;
}

.calendar-input {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.calendar-input:focus {
  outline: none;
  border-color: #014293;
  box-shadow: 0 0 0 2px rgba(1, 66, 147, 0.1);
}

.calendar-input.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
}

.calendar-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .chat-with-ceo-modal-container {
    width: 98%;
    height: 98%;
  }

  .chat-modal-container {
    height: 98vh;
  }

  .ceo-profile-info {
    flex-wrap: wrap;
  }

  .ceo-profile-name {
    font-size: 1.25rem;
  }

  .ceo-location,
  .ceo-industry {
    max-width: 100%;
  }

  .chat-message {
    max-width: 100%;
  }

  .calendar-modal-content {
    min-width: 330px;
  }
}

/* ------------------------------------------- */
/* Contact Us Multi-Step Modal Styles */
.contact-us-multi-step-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: none;
}

.contact-us-multi-step-modal.active {
  display: block;
}

.contact-us-multi-step-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.contact-us-multi-step-modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  height: 90%;
  background: white;
  border-radius: 0.7rem;
  border: 0.7rem solid #f9f9f9;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-us-multi-step-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-multi-step-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.contact-us-multi-step-modal-content {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Left Section - Image */
.contact-us-multi-step-modal-left {
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.7rem;
  flex-shrink: 0;
  width: auto;
}

.contact-us-multi-step-modal-image-container-sm {
  display: none;
}

.contact-us-multi-step-modal-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.contact-us-multi-step-modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: fill;
}

/* Right Section - Form */
.contact-us-multi-step-modal-right {
  flex: 1;
  padding: 1rem 3rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: inset 0 6px 16px 0 rgba(0, 0, 0, 0.08);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.contact-us-multi-step-modal-right::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.contact-us-multi-step-form-container {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* Form Steps */
.contact-us-multi-step-form-steps {
  position: relative;
}

.contact-us-form-step {
  display: none;
  animation: contactUsFadeIn 0.3s ease;
}

.contact-us-form-step.active {
  display: block;
}

@keyframes contactUsFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-us-form-step-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-align: center;
}

.contact-us-form-step-subheading {
  text-align: center;
  max-width: 80%;
}

.contact-us-form-step-content {
  margin-bottom: 1rem;
}

.contact-us-form-step-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Navigation Buttons */
.contact-us-form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.contact-us-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.contact-us-btn-primary {
  background: #014293;
  color: white;
}

.contact-us-btn-primary:hover {
  background: #013a7a;
  transform: translateY(-2px);
}

.contact-us-btn-secondary {
  background: #6c757d;
  color: white;
}

.contact-us-btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-us-multi-step-modal-container {
    width: 90%;
    height: 95%;
  }

  .contact-us-multi-step-modal-left {
    width: 38%;
  }

  .contact-us-multi-step-modal-right {
    padding: 1rem;
  }

  .contact-us-form-step-heading {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .contact-us-multi-step-modal-content {
    flex-direction: column;
  }

  .contact-us-multi-step-modal-left {
    width: 100%;
    padding: 0.5rem;
  }

  .contact-us-multi-step-modal-image-container {
    display: none;
  }

  .contact-us-multi-step-modal-image-container-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .contact-us-multi-step-modal-right {
    padding: 20px;
  }

  .contact-us-form-step-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .contact-us-form-navigation {
    gap: 2.25rem;
  }

  .contact-us-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-us-multi-step-modal-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .contact-us-multi-step-modal-header {
    padding: 15px 15px 10px;
  }

  .contact-us-multi-step-modal-right {
    padding: 1rem;
  }
}

.contact-us-step-number-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Step Number Circle */
.contact-us-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #014293;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Form Groups */
.contact-us-form-group {
  margin-bottom: 20px;
}

.contact-us-form-label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

.contact-us-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: white;
}

.contact-us-form-input:focus {
  outline: none;
  border-color: #014293;
  box-shadow: 0 0 0 3px rgba(1, 66, 147, 0.1);
}

.contact-us-form-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.contact-us-radio-option {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.contact-us-radio-option:hover,
.contact-us-radio-option:has(input[type="radio"]:checked) {
  border-color: #014293;
  background-color: #f8f9ff;
}

.contact-us-radio-option input[type="radio"] {
  display: none;
}

.contact-us-radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #e1e5e9;
  border-radius: 50%;
  margin-right: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.contact-us-radio-option
  input[type="radio"]:checked
  + .contact-us-radio-custom {
  border-color: #014293;
  background-color: #014293;
}

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

.contact-us-radio-label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* Success Step */
.contact-us-success-content {
  text-align: center;
  padding: 40px 20px;
}

.contact-us-checkmark {
  margin-bottom: 24px;
}

.contact-us-success-heading {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.contact-us-success-subheading {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  text-transform: capitalize;
}

/* Progress Bar */
.contact-us-multi-step-progress {
  margin-top: 1.5rem;
  padding: 0;
}

.contact-us-progress-bar {
  width: 100%;
  height: 6px;
  background-color: #e1e5e9;
  border-radius: 3px;
  overflow: hidden;
}

.contact-us-progress-fill {
  height: 100%;
  background-color: #014293;
  border-radius: 3px;
  transition: width 0.3s ease;
  width: 25%;
}

/* Error Messages */
.contact-us-error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 4px;
}

/* Button States */
.contact-us-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-us-btn.disabled:hover {
  background-color: #014293;
  transform: none;
}
