/* Color Variables */
:root {
  --primary-color: #463699;
  --secondary-color: #262335;
  --primary-light: rgba(70, 54, 153, 0.1);
  --primary-hover: rgba(70, 54, 153, 0.9);
  --text-muted: #6c757d;
  --border-color: rgba(70, 54, 153, 0.2);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: color 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", sans-serif;
  color: #333;
}

/* Custom Scrollbar for Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary-light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
  border: 2px solid var(--primary-light);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
  border-color: transparent;
}

::-webkit-scrollbar-thumb:active {
  background: var(--secondary-color);
}

/* Thin scrollbar variant (optional - add class to specific elements) */
.thin-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.thin-scrollbar::-webkit-scrollbar-thumb {
  border: 1px solid var(--primary-light);
}

/* Firefox scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--primary-light);
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Header Styles */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e9ecef;
  z-index: 1050;
}

.logo {
  height: 68px;
  width: auto;
}

.nav-link {
  color: #333;
  font-weight: 400;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Footer Styles */
.footer {
  background-color: white;
  border-top: 2px solid var(--border-color);
}

.footer-logo {
  height: 74px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-heading {
  color: var(--secondary-color);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #dee2e6;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Booking Modal Styles */
.booking-modal {
  border-radius: 1.5rem;
  overflow: hidden;
  border: none;
}

.booking-header {
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--primary-hover) 50%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 1.25rem 1.5rem;
  border: none;
}

.modal-logo {
  height: 32px;
  width: auto;
  background: white;
  border-radius: 4px;
  padding: 4px 8px;
}

.btn-close-white {
  opacity: 1;
}

.btn-close-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.booking-sidebar {
  background-color: #f8f9fa;
  padding: 2rem;
}

.sidebar-title {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.sidebar-subtitle {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.sidebar-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.sidebar-benefits li {
  color: #495057;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.sidebar-benefits li:before {
  content: "•";
  color: var(--primary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.25rem;
}

.support-email {
  color: var(--primary-color);
  text-decoration: none;
}

.support-email:hover {
  text-decoration: underline;
}

.step-title {
  color: var(--secondary-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Calendar Styles */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar-nav {
  padding: 0.5rem;
  background-color: transparent;
  border: none;
  color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.calendar-nav:hover {
  background-color: var(--primary-light);
  border-radius: 0.5rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.calendar-days div {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.calendar-day {
  aspect-ratio: 1;
  border: none;
  background: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-day:hover:not(.selected):not(.today) {
  background-color: #f8f9fa;
}

.calendar-day.today {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.calendar-day.selected {
  background-color: var(--primary-color);
  color: white;
}

.calendar-day.empty {
  background: transparent;
  cursor: default;
}

/* Time Slots */
.time-slots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.time-slots::-webkit-scrollbar {
  width: 6px;
}

.time-slots::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.time-slots::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.time-slots::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

.time-slot {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #dee2e6;
  background: white;
  border-radius: 0.5rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot:hover:not(.selected) {
  border-color: rgba(70, 54, 153, 0.5);
}

.time-slot.selected {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: white;
}

/* Form Styles */
.form-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(70, 54, 153, 0.1);
}

/* Thank You Message Styling */
.thank-you-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  width: 100%;
}

.thank-you-content {
  text-align: center;
  max-width: 500px;
  padding: 2rem;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  animation: pulse-icon 2s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(70, 54, 153, 0.3);
}

.thank-you-icon i {
  font-size: 3rem;
  color: white;
}

.thank-you-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.thank-you-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Make sure the parent container has proper height */
.col-lg-8.p-4 {
  position: relative;
  min-height: 400px;
}

/* When showing thank you message, ensure it takes full height */
#formData[style*="display: block"],
#formData[style*="display:block"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#formData p {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.thank-you-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.booking-details-summary {
  background: var(--primary-light);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 500px;
  border: 2px solid var(--border-color);
}

.booking-details-summary h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--secondary-color);
}

.booking-detail-item:last-child {
  border-bottom: none;
}

.booking-detail-item i {
  color: var(--primary-color);
  font-size: 1.125rem;
  width: 24px;
  text-align: center;
}

.booking-detail-item strong {
  font-weight: 600;
  margin-right: 0.5rem;
}

.auto-close-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  animation: fadeIn 1s ease-in;
}

.auto-close-notice i {
  animation: spin 2s linear infinite;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #formData {
    padding: 2rem 1rem;
    min-height: 350px;
  }

  .thank-you-icon {
    width: 80px;
    height: 80px;
  }

  .thank-you-icon i {
    font-size: 2.5rem;
  }

  #formData p {
    font-size: 1.25rem;
  }

  .thank-you-subtext {
    font-size: 0.9375rem;
  }

  .booking-details-summary {
    padding: 1.25rem;
  }

  .booking-details-summary h4 {
    font-size: 1rem;
  }

  .booking-detail-item {
    font-size: 0.9375rem;
  }
}

/* ======================
   HOMEPAGE STYLES
   ====================== */

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 140px;
  background: linear-gradient(
    135deg,
    #463699 0%,
    rgba(70, 54, 153, 0.9) 50%,
    #262335 100%
  );
  overflow: hidden;
}

.hero-circle-1 {
  position: absolute;
  top: 80px;
  right: 40px;
  width: 256px;
  height: 256px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-circle-2 {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 384px;
  height: 384px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-circle-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  background: rgba(38, 35, 53, 0.3);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.95rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-weight: normal;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.btn-hero-primary {
  background: white;
  color: #262335;
  padding: 1rem 2rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
}

.btn-hero-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #262335;
}

.hero-checks i {
  font-size: 1.25rem;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: white;
  padding: 1rem;
}

.floating-stat {
  position: absolute;
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.stat-1 {
  top: -20px;
  right: -20px;
}

.stat-2 {
  bottom: -20px;
  left: -20px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.stat-icon-primary {
  background: #463699;
}

.stat-icon-secondary {
  background: #262335;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 500;
  color: #262335;
}

.stat-label {
  font-size: 0.875rem;
  color: #6c757d;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 1rem;
}

.play-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(70, 54, 153, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(70, 54, 153, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 10px 30px rgba(70, 54, 153, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(70, 54, 153, 0.6),
      0 0 0 15px rgba(70, 54, 153, 0.1);
  }
  100% {
    box-shadow: 0 10px 30px rgba(70, 54, 153, 0.4);
  }
}

.play-button i {
  margin-left: 5px;
}

.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-curve svg {
  width: 100%;
  display: block;
}

/* Section Spacing */
.section-spacing {
  padding: 40px 0;
}

/* Section Elements */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(70, 54, 153, 0.1);
  color: #463699;
  border-radius: 50px;
  font-weight: 500;
}

.section-title {
  font-size: 2.5rem;
  font-weight: normal;
  color: #262335;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

/* Background Gradient */
.bg-gradient-light {
  background: linear-gradient(
    135deg,
    rgba(70, 54, 153, 0.05) 0%,
    transparent 100%
  );
}

/* Subjects Section */
.subject-card {
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.subject-card:hover {
  border-color: #463699;
  box-shadow: 0 10px 30px rgba(70, 54, 153, 0.15);
  transform: translateY(-5px);
}

.subject-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.bg-violet {
  background: #8b5cf6;
}
.bg-indigo {
  background: #6366f1;
}
.bg-purple {
  background: #a855f7;
}
.bg-fuchsia {
  background: #d946ef;
}
.bg-blue {
  background: #3b82f6;
}
.bg-pink {
  background: #ec4899;
}

.subject-name {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* How It Works - Steps */
.step-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(70, 54, 153, 0.2);
}

.step-card-secondary {
  border-color: rgba(38, 35, 53, 0.2);
}

.step-number {
  width: 48px;
  height: 48px;
  background: #463699;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-number-secondary {
  background: #262335;
}

.step-title-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #262335;
  margin: 0;
}

.step-description {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.6;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #333;
}

.step-feature i {
  color: #463699;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.feature-card {
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: #463699;
  box-shadow: 0 10px 30px rgba(70, 54, 153, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon-primary {
  background: linear-gradient(135deg, #463699 0%, rgba(70, 54, 153, 0.6) 100%);
}

.feature-icon-secondary {
  background: linear-gradient(135deg, #262335 0%, rgba(38, 35, 53, 0.6) 100%);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #6c757d;
  margin: 0;
}

/* Stats Section */
.stats-section {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(90deg, #262335 0%, #463699 50%, #262335 100%);
  color: white;
  overflow: hidden;
}

.stats-curve-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: rotate(180deg);
}

.stats-curve-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.stats-curve-top svg,
.stats-curve-bottom svg {
  width: 100%;
  display: block;
}

.stats-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.2);
}

.stat-box-number {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.stat-box-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

/* Testimonials Section */
.testimonial-card {
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #463699;
  box-shadow: 0 15px 40px rgba(70, 54, 153, 0.2);
}

.testimonial-stars {
  color: #463699;
  font-size: 1.25rem;
}

.testimonial-text {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #463699 0%, #262335 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
}

/* Blog Section */
.blog-card {
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.blog-card:hover {
  border-color: #463699;
  box-shadow: 0 15px 40px rgba(70, 54, 153, 0.2);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #463699;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: #6c757d;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-excerpt {
  color: #6c757d;
  margin-bottom: 1rem;
}

.blog-link {
  color: #463699;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-link:hover {
  color: rgba(70, 54, 153, 0.8);
}

/* FAQ Section */
.faq-item {
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion .faq-item {
  border: 2px solid #dee2e6;
  border-radius: 1rem;
}

.faq-item:hover {
  border-color: #463699;
}

.faq-item .accordion-button {
  background: white;
  color: #333;
  font-weight: 600;
  padding: 1.5rem;
  border: none;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  background: white;
  color: #463699;
}

.faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23463699'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-item .accordion-body {
  color: #6c757d;
  line-height: 1.6;
  padding: 0 1.5rem 1.5rem;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #fce7f3 0%, #e9d5ff 50%, #dbeafe 100%);
  overflow: hidden;
}

.cta-circle-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(70, 54, 153, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-circle-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 384px;
  height: 384px;
  background: rgba(38, 35, 53, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-box {
  background: white;
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  border: 2px solid rgba(70, 54, 153, 0.2);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: normal;
  color: #262335;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.cta-note {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 1.5rem;
}

/* About Us Page Styles */
.about-hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 120px;
  background: linear-gradient(
    135deg,
    #463699 0%,
    rgba(70, 54, 153, 0.9) 50%,
    #262335 100%
  );
  overflow: hidden;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-weight: normal;
}

.about-hero-image img {
  border: 8px solid rgba(255, 255, 255, 0.2);
}

/* Story Section */
.story-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision Cards */
.mission-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-icon {
  width: 80px;
  height: 80px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.mission-icon-primary {
  background: linear-gradient(135deg, #463699 0%, rgba(70, 54, 153, 0.8) 100%);
}

.mission-icon-secondary {
  background: linear-gradient(135deg, #262335 0%, rgba(38, 35, 53, 0.8) 100%);
}

.mission-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #262335;
  margin-bottom: 1rem;
}

.mission-text {
  color: #6b7280;
  line-height: 1.75;
  font-size: 1.05rem;
  margin: 0;
}

/* Core Values */
.value-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  border-color: #463699;
  box-shadow: 0 10px 30px rgba(70, 54, 153, 0.15);
  transform: translateY(-5px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #463699 0%, #6366f1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #262335;
  margin-bottom: 0.75rem;
}

.value-text {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #262335;
  margin-bottom: 0.25rem;
}

.team-role {
  color: #463699;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #463699;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #463699;
  color: white;
  transform: translateY(-3px);
}

/* Why Choose Us Cards */
.why-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  border-color: #463699;
  box-shadow: 0 10px 30px rgba(70, 54, 153, 0.15);
  transform: translateY(-5px);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #463699 0%, #6366f1 100%);
  transition: height 0.3s ease;
}

.why-card:hover::before {
  height: 100%;
}

.why-number {
  font-size: 3rem;
  font-weight: 700;
  color: #463699;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #262335;
  margin-bottom: 0.75rem;
}

.why-text {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Contact Us Page Styles */
.contact-hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-hover) 50%,
    var(--secondary-color) 100%
  );
  overflow: hidden;
}

.contact-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-weight: normal;
}

/* Contact Info Cards */
.contact-info-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(70, 54, 153, 0.2);
  border-color: #463699;
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-icon-primary {
  background: linear-gradient(135deg, #463699 0%, #6366f1 100%);
}

.contact-icon-secondary {
  background: linear-gradient(135deg, #262335 0%, #463699 100%);
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #262335;
  margin-bottom: 0.5rem;
}

.contact-info-text {
  color: #6b7280;
  margin-bottom: 1rem;
}

.contact-info-link {
  color: #463699;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: #262335;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper .form-label {
  font-weight: 500;
  color: #262335;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
  border-color: #463699;
  box-shadow: 0 0 0 0.2rem rgba(70, 54, 153, 0.1);
}

.contact-form-wrapper textarea.form-control {
  resize: vertical;
}

/* Contact Features */
.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #262335;
}

.contact-feature-item i {
  color: #463699;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Department Cards */
.department-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
}

.department-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(70, 54, 153, 0.15);
  transform: translateY(-5px);
}

.department-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.department-card:hover .department-icon {
  transform: scale(1.1) rotate(5deg);
}

.department-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.department-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.department-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.department-list li {
  color: #374151;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9rem;
}

.department-list li:last-child {
  border-bottom: none;
}

.department-list li:before {
  content: "→";
  color: var(--primary-color);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Info Boxes */
.info-box {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 2px solid #e5e7eb;
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.info-box-header i {
  font-size: 2rem;
  color: var(--primary-color);
}

.info-box-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}

.info-box-content {
  color: #374151;
}

/* Hours Items */
.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.hours-item:last-of-type {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--secondary-color);
}

.hours-time {
  color: var(--text-muted);
}

.hours-note {
  background: var(--primary-light);
  padding: 1rem;
  border-radius: 0.5rem;
  color: #374151;
  font-size: 0.9rem;
}

/* Response Items */
.response-item {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.response-item:last-child {
  border-bottom: none;
}

.response-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.response-method {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.response-time {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Social Links */
.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #463699;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #262335;
  transform: translateY(-5px);
}

/* FAQ Quick Cards */
.faq-quick-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
}

.faq-quick-card:hover {
  border-color: #463699;
  box-shadow: 0 10px 30px rgba(70, 54, 153, 0.15);
  transform: translateY(-5px);
}

.faq-quick-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #463699 0%, #6366f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.faq-quick-content {
  flex: 1;
}

.faq-quick-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #262335;
  margin-bottom: 0.5rem;
}

.faq-quick-text {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.faq-quick-link {
  color: #463699;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.faq-quick-link:hover {
  gap: 0.75rem;
}

/* Office Info */
.office-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.office-info-item {
  display: flex;
  gap: 1.25rem;
}

.office-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #463699 0%, #6366f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.office-info-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #262335;
  margin-bottom: 0.5rem;
}

.office-info-value {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* Map Wrapper */
.map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Support Hours Box */
.support-hours-box {
  background: linear-gradient(135deg, #463699 0%, #262335 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  color: white;
}

.support-hours-title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.support-hours-text {
  font-size: 1.05rem;
  margin: 0;
  opacity: 0.9;
}

.support-hours-box .btn {
  background: white;
  color: #463699;
  border: none;
}

.support-hours-box .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Success Message */
.contact-success {
  background: #10b981;
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  display: none;
}

.contact-success.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Authentication Pages Styles (Login/Register/Forgot/Reset) */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Circles */
.auth-decorative-circle-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
}

.auth-decorative-circle-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(70, 54, 153, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.auth-decorative-circle-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(38, 35, 53, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Auth Card */
.auth-card {
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid #f3f4f6;
}

/* Auth Logo */
.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo img {
  height: 66px;
  width: auto;
}

/* Auth Header */
.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1rem;
}

/* Social Login */
.social-login {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  border: 2px solid #e5e7eb;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-btn:hover {
  border-color: var(--primary-color);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(70, 54, 153, 0.15);
}

.social-btn i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.social-btn-google {
  color: #374151;
}

.social-btn-facebook {
  color: #374151;
}

.social-btn-facebook i {
  color: #1877f2;
}

/* Auth Divider */
.auth-divider {
  position: relative;
  text-align: center;
  margin: 2rem 0;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}

.auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  background: white;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Form Styles */
.auth-card .form-label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.auth-card .input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  z-index: 6;
  pointer-events: none;
}

.input-icon-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.input-icon-right:hover {
  color: var(--primary-color);
}

.auth-card .form-control {
  padding: 0.875rem 3rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem !important;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.auth-card .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem var(--primary-light);
  outline: none;
}

.auth-card .form-control::placeholder {
  color: #9ca3af;
}

/* Checkbox */
.auth-card .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #e5e7eb;
  cursor: pointer;
}

.auth-card .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.auth-card .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem var(--primary-light);
  border-color: var(--primary-color);
}

.auth-card .form-check-label {
  font-size: 0.9rem;
  color: #374151;
  cursor: pointer;
}

/* Forgot Link */
.forgot-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Submit Button */
.auth-submit-btn {
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(70, 54, 153, 0.3);
}

.auth-submit-btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.auth-submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* Auth Footer */
.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.auth-footer p {
  color: #6b7280;
  margin: 0;
  font-size: 0.95rem;
}

.auth-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Demo Login */
.demo-login {
  margin-top: 1.5rem;
  text-align: center;
}

.demo-text {
  background: #fef3c7;
  padding: 1rem;
  border-radius: 0.75rem;
  color: #92400e;
  margin: 0;
  font-size: 0.9rem;
  border: 1px solid #fde68a;
}

.demo-text a {
  color: #92400e;
  text-decoration: underline;
  font-weight: 600;
}

.demo-text a:hover {
  color: #78350f;
}

/* Auth Features */
.auth-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* Alert Messages */
.auth-alert {
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.auth-alert i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.auth-alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.auth-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Register Page Specific */
.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.terms-text {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
}

.terms-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.terms-text a:hover {
  text-decoration: underline;
}

/* Password Strength Indicator */
.password-strength {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.password-strength-bar {
  flex: 1;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.password-strength-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #e5e7eb;
  transition: all 0.3s ease;
}

.password-strength-bar.weak::after {
  width: 33%;
  background: #dc2626;
}

.password-strength-bar.medium::after {
  width: 66%;
  background: #f59e0b;
}

.password-strength-bar.strong::after {
  width: 100%;
  background: #16a34a;
}

.password-strength-text {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
  min-width: 100px;
}

/* Password Match Indicator */
.password-match-indicator {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: none;
}

.password-match-indicator.match {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.password-match-indicator.no-match {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Registration Benefits */
.registration-benefits {
  margin-top: 2rem;
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f3f4f6;
}

.registration-benefits h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  color: #374151;
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Select Dropdown Styling */
.auth-card select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

/* Forgot/Reset Password Specific */
.forgot-password-icon,
.reset-password-icon {
  text-align: center;
  margin-bottom: 2rem;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(70, 54, 153, 0.3);
  animation: pulse-icon 2s ease-in-out infinite;
}

.icon-circle i {
  font-size: 3rem;
  color: white;
}

.icon-circle-reset {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

@keyframes pulse-icon {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(70, 54, 153, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(70, 54, 153, 0.4);
  }
}

.form-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

/* Success/Error States */
.success-state,
.error-state {
  text-align: center;
  padding: 2rem 0;
}

.success-icon,
.error-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  animation: scale-in 0.5s ease-out;
}

.success-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.error-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  animation: shake 0.5s ease-out;
}

@keyframes scale-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

.success-icon i,
.error-icon i {
  font-size: 3rem;
  color: white;
}

.success-state h3,
.error-state h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.success-message,
.error-message {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.success-message strong {
  color: var(--primary-color);
}

.success-note {
  background: var(--primary-light);
  padding: 1rem;
  border-radius: 0.75rem;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

.success-note a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.success-note a:hover {
  text-decoration: underline;
}

.error-actions {
  margin-top: 2rem;
}

/* Help Section */
.forgot-password-help {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #f3f4f6;
}

.forgot-password-help h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.forgot-password-help ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.forgot-password-help ul li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
  font-size: 0.95rem;
}

.forgot-password-help ul li:last-child {
  margin-bottom: 0;
}

.forgot-password-help ul li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Contact Support */
.forgot-password-contact {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 2px solid #f3f4f6;
}

.forgot-password-contact p {
  color: #6b7280;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-hover);
  gap: 0.75rem;
}

/* Button Outline Secondary */
.btn-outline-secondary {
  border: 2px solid #e5e7eb;
  color: #6b7280;
  font-weight: 600;
}

.btn-outline-secondary:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #374151;
}

/* Password Requirements */
.password-requirements {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 2px solid #e5e7eb;
}

.password-requirements h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #6b7280;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.requirements-list li i {
  font-size: 0.875rem;
  flex-shrink: 0;
}

.requirements-list li.met {
  color: #059669;
}

.requirements-list li.met i {
  color: #059669;
}

.requirements-list li.met i::before {
  content: "\f26b";
}

/* Security Tips */
.security-tips {
  margin-top: 2rem;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 2px solid #f3f4f6;
}

.security-tips h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.security-tips h5 i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.security-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-tips ul li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
  font-size: 0.95rem;
}

.security-tips ul li:last-child {
  margin-bottom: 0;
}

.security-tips ul li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Invalid feedback */
.invalid-feedback {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #dc2626;
}

.form-control.is-invalid {
  border-color: #dc2626;
}

.form-control.is-invalid:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo,
  .auth-logo img {
    height: 50px;
  }

  .footer-logo {
    height: 58px;
  }

  .booking-sidebar {
    padding: 1.5rem;
  }

  .sidebar-title {
    font-size: 1.125rem;
  }

  .step-title {
    font-size: 1.25rem;
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-spacing {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .floating-stat {
    padding: 0.5rem;
  }

  .stat-1 {
    right: -12px;
  }

  .stat-2 {
    left: -12px;
  }

  .stats-section {
    padding: 100px 0;
  }

  .stat-box-number {
    font-size: 2rem;
  }

  .about-hero-section,
  .contact-hero-section {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .about-hero-title,
  .contact-hero-title {
    font-size: 2rem;
  }

  .mission-card {
    padding: 2rem;
  }

  .mission-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .mission-title {
    font-size: 1.5rem;
  }

  .team-image {
    height: 250px;
  }

  .why-number {
    font-size: 2.5rem;
  }

  .contact-info-card,
  .contact-form-wrapper {
    padding: 2rem;
  }

  .department-card {
    padding: 1.5rem;
  }

  .department-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .info-box {
    padding: 1.5rem;
  }

  .info-box-header {
    flex-direction: column;
    text-align: center;
  }

  .hours-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .support-hours-box {
    padding: 2rem;
    text-align: center;
  }

  .office-info-item {
    flex-direction: column;
    text-align: center;
  }

  .office-info-icon {
    margin: 0 auto;
  }

  .auth-section {
    padding: 100px 0 60px;
  }

  .auth-card {
    padding: 2rem 1.5rem;
  }

  .auth-header h1 {
    font-size: 1.75rem;
  }

  .social-btn {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .auth-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .icon-circle,
  .success-icon,
  .error-icon {
    width: 80px;
    height: 80px;
  }

  .icon-circle i,
  .success-icon i,
  .error-icon i {
    font-size: 2.5rem;
  }

  .success-state h3,
  .error-state h3 {
    font-size: 1.5rem;
  }

  .forgot-password-contact {
    padding: 1rem;
  }

  .password-requirements {
    padding: 1rem;
  }

  .security-tips {
    padding: 1.25rem;
  }
}

@media (max-width: 576px) {
  .name-fields {
    grid-template-columns: 1fr;
  }

  .registration-benefits {
    padding: 1.5rem;
  }

  .registration-benefits h4 {
    font-size: 1.125rem;
  }

  .benefit-item {
    font-size: 0.95rem;
  }
}

/* My Account Page */
/* Header */
.account-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
}

.logo {
  height: 68px;
  width: auto;
}

/* Account Section */
.account-section {
  padding: 80px 0 60px;
}

.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* Sidebar */
.account-sidebar {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f3f4f6;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: #374151;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
}

.sidebar-link:hover {
  background: var(--primary-light);
  color: var(--primary-color);
}

.sidebar-link.active {
  background: var(--primary-color);
  color: white;
}

.sidebar-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* Main Content */
.account-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Account Card */
.account-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f3f4f6;
  display: none;
}

.account-card.active {
  display: block;
}

.card-header-section {
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
}

.card-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Stats Grid */
.account-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.account-stat-card {
  background: var(--primary-light);
  padding: 1.75rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.account-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(70, 54, 153, 0.15);
}

.account-stat-number {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.account-stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Profile Picture Section */
.profile-picture-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--primary-light);
  border-radius: 1rem;
}

.profile-picture {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(70, 54, 153, 0.3);
}

.profile-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Form Styles */
.form-label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem var(--primary-light);
  outline: none;
}

.form-row-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Buttons */
.btn-primary-account {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  color: white;
}

.btn-primary-account:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(70, 54, 153, 0.3);
  color: white;
}

.btn-secondary {
  background: var(--primary-light);
  color: var(--primary-color);
  border: 2px solid transparent;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--border-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Table Styles */
.table-container {
  overflow-x: auto;
  border-radius: 0.75rem;
  border: 2px solid #f3f4f6;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

th {
  background: var(--primary-light);
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border-color);
}

td {
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
}

tr:hover {
  background: var(--primary-light);
}

tr:last-child td {
  border-bottom: none;
}

.status-badge {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-active {
  background: #d4edda;
  color: #155724;
}

.email-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.email-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* Newsletter Options */
.newsletter-option {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-option:hover {
  border-color: var(--primary-color);
  background: var(--primary-light);
  transform: translateX(5px);
}

.newsletter-option input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-right: 1.25rem;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.newsletter-details {
  flex: 1;
}

.newsletter-title {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.375rem;
  font-size: 1.05rem;
}

.newsletter-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Password Requirements */
.password-requirements {
  background: var(--primary-light);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--border-color);
}

.password-requirements h4 {
  font-size: 1.05rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.password-requirements ul {
  margin-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.password-requirements li {
  margin-bottom: 0.375rem;
  line-height: 1.6;
}

/* Security Section */
.security-section-divider {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #f3f4f6;
}

.security-section-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.security-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Progress Section */
.progress-section {
  padding: 2rem;
  background: var(--primary-light);
  border-radius: 1rem;
  margin-top: 1.5rem;
}

.progress-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.progress-item {
  margin-bottom: 1.5rem;
}

.progress-item:last-child {
  margin-bottom: 0;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.progress-name {
  font-weight: 600;
  color: var(--secondary-color);
}

.progress-percentage {
  color: var(--primary-color);
  font-weight: 700;
}

.progress-bar-wrapper {
  background: white;
  height: 12px;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  background: linear-gradient(90deg, var(--primary-color) 0%, #6366f1 100%);
  height: 100%;
  transition: width 0.6s ease;
  border-radius: 10px;
}

.progress-info {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: relative;
    top: 0;
  }

  .form-row-custom {
    grid-template-columns: 1fr;
  }

  .profile-picture-section {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .account-section {
    padding: 60px 0 40px;
  }

  .account-card {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .profile-picture {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  table {
    font-size: 0.85rem;
  }

  th,
  td {
    padding: 0.75rem 0.5rem;
  }
}

/* Subjects Page */
/* Subjects Page Styles - Namespaced to avoid conflicts */

/* Page-specific body styling */
.subjects-page {
    background: linear-gradient(to bottom, var(--primary-light) 0%, white 50%, white 100%);
    min-height: 100vh;
}

/* Hero Section */
.subjects-hero {
    position: relative;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 5rem 0 8rem;
    overflow: hidden;
}

.subjects-decorative-circles {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.subjects-circle-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: white;
    border-radius: 50%;
    filter: blur(80px);
}

.subjects-circle-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: white;
    border-radius: 50%;
    filter: blur(80px);
}

.subjects-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: normal;
    line-height: 1.2;
    color: white;
}

.subjects-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.subjects-stats-row {
    max-width: 48rem;
    margin: 3rem auto 0;
}

.subjects-stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.subjects-stat-number {
    font-size: 2.5rem;
    font-weight: normal;
    color: white;
    margin-bottom: 0.25rem;
}

.subjects-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.subjects-wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.subjects-wave-shape svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Content */
.subjects-content {
    position: relative;
    z-index: 10;
    margin-top: -4rem;
}

/* Search Section */
.subjects-search-section {
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.subjects-search-wrapper {
    position: relative;
}

.subjects-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.25rem;
}

.subjects-search-input {
    width: 100%;
    padding: 1rem 4.5rem 1rem 3rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.subjects-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--primary-light);
}

.subjects-filter-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.625rem;
    background: var(--primary-light);
    color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subjects-filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Category Filters */
.subjects-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.subjects-category-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.subjects-category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.subjects-category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(70, 54, 153, 0.3);
}

/* Results Count */
.subjects-results-count p {
    color: var(--text-muted);
    font-size: 1rem;
}

.subjects-count-number {
    color: var(--primary-color);
    font-weight: 600;
}

/* Subject Card Link */
.subjects-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Subject Cards */
.subjects-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.subjects-card:hover {
    box-shadow: 0 12px 40px rgba(70, 54, 153, 0.2);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.subjects-card-image-wrapper {
    position: relative;
    height: 11rem;
    overflow: hidden;
    margin: 0;
    border-radius: 1.5rem 1.5rem 0 0;
}

.subjects-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.subjects-card:hover .subjects-card-image {
    transform: scale(1.08);
}

.subjects-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(38, 35, 53, 0.4), transparent);
    opacity: 0.8;
}

.subjects-card-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    background: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.subjects-card-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.subjects-level-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    z-index: 2;
}

.subjects-card-content {
    padding: 1.5rem 1.5rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.subjects-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.625rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.subjects-card:hover .subjects-card-title {
    color: var(--primary-color);
}

.subjects-card-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.125rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subjects-card-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e8e8e8;
    flex-wrap: wrap;
}

.subjects-stat-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.subjects-stat-item i {
    color: var(--primary-color);
    font-size: 0.9375rem;
}

.subjects-explore-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(70, 54, 153, 0.08);
    color: var(--primary-color);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.subjects-explore-btn:hover {
    background: var(--primary-color);
    color: white;
}

.subjects-explore-btn i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.subjects-explore-btn:hover i {
    transform: translateX(0.25rem);
}

/* CTA Section */
.subjects-cta-section {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.subjects-cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.subjects-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.subjects-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.subjects-btn-cta-primary {
    padding: 0.75rem 2rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.subjects-btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.subjects-btn-cta-secondary {
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subjects-btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .subjects-hero-subtitle {
        font-size: 1rem;
    }

    .subjects-hero {
        padding: 3rem 0 6rem;
    }

    .subjects-search-section {
      margin: 5rem auto 2rem;
    }

    .subjects-stat-number {
        font-size: 2rem;
    }

    .subjects-cta-section {
        padding: 2rem;
    }

    .subjects-cta-title {
        font-size: 1.5rem;
    }

    .subjects-cta-text {
        font-size: 1rem;
    }

    .subjects-category-filters {
        gap: 0.5rem;
    }

    .subjects-category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .subjects-card-image-wrapper {
        height: 10rem;
    }
    
    .subjects-card-content {
        padding: 1.25rem;
    }
    
    .subjects-card-title {
        font-size: 1.0625rem;
    }
    
    .subjects-card-description {
        font-size: 0.8125rem;
    }
    
    .subjects-card-stats {
        gap: 0.75rem;
    }
    
    .subjects-stat-item {
        font-size: 0.75rem;
    }
}

/* Subject Detail Page Styles - Add to end of styles.css */

/* Sticky Header */
.subject-detail-sticky-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.subject-detail-back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.subject-detail-back-btn:hover {
    color: var(--primary-hover);
}

.subject-detail-enroll-btn-header {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subject-detail-enroll-btn-header:hover {
    box-shadow: 0 8px 20px rgba(70, 54, 153, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.subject-detail-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    border-bottom: 1px solid var(--border-color);
}

.subject-detail-hero-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.subject-detail-category-badge {
    padding: 0.375rem 0.875rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.subject-detail-level-badge {
    padding: 0.375rem 0.875rem;
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.subject-detail-hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.2;
}

.subject-detail-hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.subject-detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.subject-detail-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.subject-detail-stat-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.subject-detail-stat-item .fa-star {
    color: #fbbf24;
}

.subject-detail-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.subject-detail-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.subject-detail-feature-item i {
    color: var(--primary-color);
}

.subject-detail-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.subject-detail-btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(70, 54, 153, 0.2);
}

.subject-detail-btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(70, 54, 153, 0.3);
}

.subject-detail-btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subject-detail-btn-secondary:hover {
    border-color: var(--primary-color);
}

/* Video Preview */
.subject-detail-video-preview {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.subject-detail-video-preview img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.subject-detail-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.subject-detail-play-button {
    width: 5rem;
    height: 5rem;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.subject-detail-play-button:hover {
    transform: scale(1.1);
}

.subject-detail-play-button i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 0.25rem;
}

.subject-detail-video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
}

.subject-detail-video-caption p {
    color: white;
    font-weight: 500;
}

/* Section Styling */
.subject-detail-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* What You'll Learn */
.subject-detail-learn-box {
    background: var(--primary-light);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.subject-detail-learn-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.subject-detail-learn-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.subject-detail-learn-item span {
    color: var(--secondary-color);
    font-size: 0.9375rem;
}

/* Curriculum */
.subject-detail-module {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.subject-detail-module:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.subject-detail-module-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subject-detail-module-header:hover {
    background: var(--primary-light);
}

.subject-detail-module-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.subject-detail-module-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.subject-detail-module-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.subject-detail-module-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.subject-detail-module-content {
    padding: 0 1.5rem 1.5rem;
    background: var(--primary-light);
    border-top: 1px solid var(--border-color);
}

.subject-detail-module-topics {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.subject-detail-module-topics li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.subject-detail-module-topics li i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Instructors */
.subject-detail-instructor-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.subject-detail-instructor-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.subject-detail-instructor-img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
}

.subject-detail-instructor-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.subject-detail-instructor-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.subject-detail-instructor-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.subject-detail-instructor-stats div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subject-detail-instructor-stats i {
    color: var(--primary-color);
}

/* Reviews */
.subject-detail-review-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.subject-detail-review-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.subject-detail-review-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.subject-detail-review-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.subject-detail-review-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

/* FAQ */
.subject-detail-faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.subject-detail-faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: left;
}

.subject-detail-faq-question:hover {
    background: var(--primary-light);
}

.subject-detail-faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.subject-detail-faq-question i {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.subject-detail-faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pricing Sidebar */
.subject-detail-pricing-sidebar {
    position: sticky;
    top: 6rem;
}

.subject-detail-pricing-card {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(70, 54, 153, 0.15);
    margin-bottom: 1.5rem;
}

.subject-detail-pricing-header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 1.5rem;
    color: white;
}

.subject-detail-pricing-header i {
    font-size: 1.25rem;
}

.subject-detail-plan-option {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0.75rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    text-align: left;
}

.subject-detail-plan-option:hover {
    background: rgba(255, 255, 255, 0.2);
}

.subject-detail-plan-option.active {
    background: white;
    color: var(--primary-color);
}

.subject-detail-plan-badge {
    padding: 0.25rem 0.5rem;
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}

.subject-detail-plan-price {
    font-size: 1.75rem;
    font-weight: 500;
}

.subject-detail-plan-period {
    font-size: 0.875rem;
    opacity: 0.75;
}

.subject-detail-plan-savings {
    font-size: 0.875rem;
    opacity: 0.75;
}

.subject-detail-pricing-body {
    padding: 1.5rem;
}

.subject-detail-pricing-body-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.subject-detail-feature-check,
.subject-detail-feature-disabled {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.subject-detail-feature-check i {
    color: #10b981;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.subject-detail-feature-check span {
    color: var(--secondary-color);
    font-size: 0.9375rem;
}

.subject-detail-feature-disabled i {
    color: #d1d5db;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.subject-detail-feature-disabled span {
    color: #9ca3af;
    font-size: 0.9375rem;
}

.subject-detail-enroll-btn-main {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.subject-detail-enroll-btn-main:hover {
    box-shadow: 0 10px 30px rgba(70, 54, 153, 0.3);
    transform: translateY(-2px);
}

/* Trust Card */
.subject-detail-trust-card {
    background: var(--primary-light);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.subject-detail-trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.subject-detail-trust-item:last-child {
    margin-bottom: 0;
}

.subject-detail-trust-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.subject-detail-trust-item h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.125rem;
}

.subject-detail-trust-item p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

/* Support Card */
.subject-detail-support-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.subject-detail-support-card i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.subject-detail-support-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.subject-detail-support-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.subject-detail-support-btn {
  display: block;
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-light);
    color: var(--primary-color);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.subject-detail-support-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Write Review Button */
.subject-detail-write-review-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.subject-detail-write-review-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(70, 54, 153, 0.3);
}

.subject-detail-write-review-btn i {
    font-size: 0.875rem;
}

/* Review Modal */
.subject-detail-review-modal .modal-content {
    border-radius: 1rem;
    border: none;
    overflow: hidden;
}

.subject-detail-review-modal-header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.25rem 1.5rem;
    border: none;
}

.subject-detail-review-modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.subject-detail-review-modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.subject-detail-review-modal-body {
    padding: 2rem 1.5rem;
}

.subject-detail-review-modal-body .form-label {
    color: var(--secondary-color);
    font-size: 0.9375rem;
}

.subject-detail-review-modal-body .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.subject-detail-review-modal-body .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--primary-light);
    outline: none;
}

/* Star Rating */
.subject-detail-star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
}

.subject-detail-star-rating i {
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.subject-detail-star-rating i:hover {
    transform: scale(1.1);
}

.subject-detail-star-rating i.active {
    color: #fbbf24;
}

.subject-detail-star-rating i.selected {
    color: #fbbf24;
}

/* Submit Review Button */
.subject-detail-submit-review-btn {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subject-detail-submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(70, 54, 153, 0.3);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .subject-detail-pricing-sidebar {
        position: relative;
        top: 0;
    }

    .subject-detail-hero-title {
        font-size: 2rem;
    }

    .subject-detail-video-preview img {
        height: 16rem;
    }
}

@media (max-width: 768px) {
    .subject-detail-features-grid {
        grid-template-columns: 1fr;
    }

    .subject-detail-cta-buttons {
        flex-direction: column;
    }

    .subject-detail-btn-primary,
    .subject-detail-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .subject-detail-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Subject Detail Page Styles - Add to styles.css */

/* Subject Info Card - Single card with all content */
.subject-detail-info-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
}

/* Info Content Sections */
.subject-detail-info-section {
    margin-bottom: 2rem;
}

.subject-detail-info-section:last-child {
    margin-bottom: 0;
}

.subject-detail-info-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.subject-detail-info-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Info Lists */
.subject-detail-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subject-detail-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

.subject-detail-info-list li i {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Simple list variant (no icons) */
.subject-detail-info-list.simple li {
    padding-left: 1.5rem;
    position: relative;
}

.subject-detail-info-list.simple li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Features Row */
.subject-detail-features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.subject-detail-feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.subject-detail-feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(70, 54, 153, 0.15);
    border-color: var(--primary-color);
}

.subject-detail-feature-badge i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.subject-detail-feature-badge span {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9375rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .subject-detail-info-card {
        padding: 1.5rem;
    }

    .subject-detail-info-heading {
        font-size: 1.25rem;
    }

    .subject-detail-info-text {
        font-size: 0.9375rem;
    }

    .subject-detail-info-list li {
        font-size: 0.9375rem;
    }

    .subject-detail-features-row {
        grid-template-columns: 1fr;
    }

    .subject-detail-feature-badge {
        padding: 0.875rem;
    }

    .subject-detail-feature-badge i {
        font-size: 1.25rem;
    }

    .subject-detail-feature-badge span {
        font-size: 0.875rem;
    }
}

#story, #team, #contactForm {
  scroll-margin-top: 90px; /* header height */
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: rgba(70, 54, 153, 0.3);
}

.form-check-input:focus {
  border-color: rgba(70, 54, 153, 0.3);
  box-shadow: 0 10px 30px rgba(70, 54, 153, 0.3);
}

.fa-user {
  color: var(--primary-color);
}

a {
  text-decoration: none;
}