/* ==========================================================================
   REFLEKTİF MAIN CSS
   ========================================================================== */

@import './variables.css';
@import './reset.css';
@import './components/header.css';
@import './components/footer.css';
@import './components/hero.css';
@import './components/buttons.css';
@import './components/cards.css';
@import './components/login.css';
@import './components/register.css';
@import './components/pricing.css';
@import './components/business.css';
@import './components/students.css';

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-4);
}

/* Centered Page Navigation Loading Overlay (#006951) */
#page-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

#page-loading-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.page-loading-spinner-center {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(0, 105, 81, 0.15);
  border-top-color: #006951;
  border-radius: 50%;
  animation: centerSpinnerSpin 0.6s linear infinite;
}

@keyframes centerSpinnerSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--color-muted); }

.section-padding {
  padding: 96px 0;
}

/* ==========================================================================
   UNIFIED CARD BOX HOVER EFFECT (EVERY CARD / BOX ON EVERY PAGE)
   ========================================================================== */
.feature-card,
.feature-box-card,
.student-step-card,
.step-card,
.science-card,
.b2b-acc-item,
.pricing-card,
.pricing-plan-card,
.b2b-pricing-card,
.student-pricing-card,
.b2b-output-box,
.b2b-showcase-card,
.b2b-compact-item,
.how-metric-box,
.stat-box,
.test-card,
.riasec-card,
.riasec-pill-card,
.faq-card,
.students-faq-card,
.student-plan-card,
.b2b-small-stat-card,
.partner-box-card,
.contact-card,
.contact-info-card,
.contact-form-box,
.about-card,
.team-card,
.value-card,
.final-cta-card,
.hero-window-card {
  transition: transform 0.25s cubic-bezier(0.21, 0.47, 0.32, 0.98), box-shadow 0.25s cubic-bezier(0.21, 0.47, 0.32, 0.98), border-color 0.25s ease !important;
}

.feature-card:hover,
.feature-box-card:hover,
.student-step-card:hover,
.step-card:hover,
.science-card:hover,
.b2b-acc-item:hover,
.pricing-card:hover,
.pricing-plan-card:hover,
.b2b-pricing-card:hover,
.student-pricing-card:hover,
.student-plan-card:hover,
.b2b-small-stat-card:hover,
.partner-box-card:hover,
.b2b-output-box:hover,
.b2b-showcase-card:hover,
.b2b-compact-item:hover,
.how-metric-box:hover,
.stat-box:hover,
.test-card:hover,
.riasec-card:hover,
.riasec-pill-card:hover,
.faq-card:hover,
.students-faq-card:hover,
.contact-card:hover,
.contact-info-card:hover,
.team-card:hover,
.value-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
}
