/*================================================
0. Mixins Css
=================================================*/
.u-header__section {
  padding-bottom: 8px;
  padding-top: 8px;
}

/* Premium Schedule Meeting Component Styles */
.schedule-section {
  position: relative;
  padding-top: 0;
  overflow: visible;
}

/* Full Width Background Layer */
.cta-card-bg-full {
  position: absolute;
  top: 0;
  /* Starts below the section top */
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #001e4f 0%, #2d43ba 100%);
  z-index: 1;
  overflow: hidden;
}

.bg-navy {
  background-color: #002054 !important;
}

.cta-big-m {
  position: absolute;
  right: 5%;
  bottom: -50px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.cta-big-m img {
  height: 28rem;
}

.schedule-cta-card {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .schedule-cta-card {
    padding: 3rem 0;
    flex-direction: column;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .schedule-cta-card {
    padding-bottom: 50px;
  }
}
@media (max-width: 425px) {
  .schedule-cta-card {
    padding-bottom: 50px;
  }
}

.cta-card-content {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cta-card-content {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta-card-content {
    padding-bottom: unset;
  }
}
@media (max-width: 425px) {
  .cta-card-content {
    padding-bottom: unset;
  }
}
.cta-card-content .text-left h2 small {
  font-size: 25px;
}
@media (max-width: 425px) {
  .cta-card-content .text-left h2 small {
    font-size: 18px !important;
  }
}
.cta-card-content .text-left h2 small span {
  color: #ffc107;
}
.cta-card-content .text-left .schedule-title {
  font-size: 3rem;
  letter-spacing: -1px;
  color: white;
  line-height: 1.2;
}
@media (max-width: 425px) {
  .cta-card-content .text-left .schedule-title {
    font-size: 2rem !important;
    text-align: left !important;
  }
}
.cta-card-content .text-left .schedule-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 90%;
}
@media (max-width: 991px) {
  .cta-card-content .text-left .schedule-subtitle {
    font-size: 1rem !important;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cta-card-content .text-left .schedule-subtitle {
    text-align: left !important;
  }
}
.cta-card-content .text-left .button-grps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cta-card-content .text-left .button-grps {
    gap: 1rem;
  }
}

.cta-image-container {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 280%;
  /* Pop out top relative to container bottom */
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  clip-path: inset(-100% -100% 0% -100%);
}
@media (max-width: 1280px) {
  .cta-image-container {
    height: 380%;
    z-index: 1000;
  }
}

@media (max-width: 991px) {
  .cta-image-container img {
    display: none;
    max-width: unset;
    max-height: unset;
  }
}
.cta-image-container img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Interactive UI Elements */
.btn-schedule-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background: #ffc107;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.btn-schedule-modern:hover {
  background: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
  color: white;
}

.btn-trial-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  z-index: 10;
}
@media (max-width: 425px) {
  .btn-trial-outline {
    margin-top: 1rem;
  }
}

.btn-trial-outline:hover {
  background: #ffffff;
  color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* Modal Framework */
.schedule-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  justify-content: center;
  align-items: center;
}

.schedule-modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.schedule-modal {
  background: #ffffff;
  width: 95%;
  max-width: 1100px;
  border-radius: var(--sm-radius-xl);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 85vh;
  display: flex;
  overflow: hidden;
}

.schedule-modal-backdrop.active .schedule-modal {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  color: var(--sm-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 50;
}

.modal-close-btn:hover {
  background: #ffe4e6;
  color: #f43f5e;
  transform: rotate(90deg);
}

.modal-sidebar-panel {
  width: 35%;
  background: #f8fafc;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e2e8f0;
  position: relative;
}

.modal-main-panel {
  width: 65%;
  padding: 3rem 4rem;
  overflow-y: auto;
  position: relative;
  background: white;
}

/* Modal UI Internals */
.profile-section {
  text-align: center;
  margin-bottom: 3rem;
}

.profile-img-container {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.profile-img-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.profile-img-container::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: #10b981;
  border: 3px solid white;
  border-radius: 50%;
}

.profile-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sm-dark);
  margin-bottom: 0.5rem;
}

.profile-role {
  font-size: 0.9rem;
  color: var(--sm-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meeting-info-card {
  background: white;
  border-radius: var(--sm-radius-md);
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

.meeting-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--sm-dark);
}

.meeting-info-item i {
  width: 32px;
  height: 32px;
  background: #eef2ff;
  color: var(--sm-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 0.9rem;
}

/* Calendar & Interaction Styles */
.panel-step-label {
  font-size: 0.85rem;
  color: var(--sm-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.panel-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sm-dark);
  margin-bottom: 2rem;
}

.calendar-wrapper {
  background: white;
  max-width: 420px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.current-month-display {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sm-dark);
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: white;
  color: var(--sm-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-btn:hover {
  border-color: var(--sm-primary);
  color: var(--sm-primary);
  background: #eef2ff;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.day-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--sm-dark);
  position: relative;
}

.calendar-day:hover:not(.disabled):not(.selected) {
  background: #f1f5f9;
  transform: scale(1.1);
}

.calendar-day.selected {
  background: var(--sm-primary);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
  transform: scale(1.1);
  font-weight: 700;
}

.calendar-day.today::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 4px;
  height: 4px;
  background: var(--sm-accent);
  border-radius: 50%;
}

.calendar-day.disabled {
  color: #cbd5e1;
  cursor: default;
}

/* Time Slots */
.time-selection-view {
  display: none;
  animation: slideInRight 0.4s ease;
}

.time-slots-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 15px;
}

.time-slot-btn {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem 0.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--sm-dark);
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot-btn:hover:not(.disabled) {
  border-color: var(--sm-primary);
  color: var(--sm-primary);
  transform: translateY(-2px);
}

.time-slot-btn.selected {
  background: var(--sm-primary);
  border-color: var(--sm-primary);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
}

.time-slot-btn.disabled {
  background: #f8fafc;
  border-color: #f1f5f9;
  color: #cbd5e1;
  cursor: not-allowed;
}

/* Forms */
.details-form-view {
  display: none;
  animation: slideInRight 0.4s ease;
}

.form-input-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-floating-label {
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  background: white;
  padding: 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sm-primary);
  z-index: 2;
}

.modern-input,
.modern-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--sm-dark);
  transition: all 0.2s;
  background: transparent;
}

.modern-input:focus,
.modern-textarea:focus {
  border-color: var(--sm-primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.modern-textarea {
  min-height: 120px;
  resize: none;
}

.action-button {
  width: 100%;
  padding: 1.2rem;
  background: var(--sm-primary-grad);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
  margin-top: 2rem;
}

.action-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(79, 70, 229, 0.5);
}

.back-btn {
  background: none;
  border: none;
  color: var(--sm-text-muted);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0;
}

/* Success & Animations */
.success-view {
  text-align: center;
  padding: 4rem 2rem;
  display: none;
  animation: fadeIn 0.5s ease;
}

.success-icon-animated {
  width: 100px;
  height: 100px;
  background: #dcfce7;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Mobile Adaptations */
@media (max-width: 991px) {
  .cta-card-bg-full {
    top: 0;
  }
  .schedule-section {
    padding-top: 0;
  }
  .schedule-modal {
    flex-direction: column;
    max-height: 95vh;
  }
  .modal-sidebar-panel,
  .modal-main-panel {
    width: 100%;
    padding: 2rem;
  }
  .modal-sidebar-panel {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
  }
}/*# sourceMappingURL=layout.css.map */