/**
* Template Name: Academica
* Template URL: https://bootstrapmade.com/academica-bootstrap-course-template/
* Updated: Mar 30 2026 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Ubuntu",  sans-serif;
  --nav-font: "Nunito",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #2a2a2a; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1a1a1a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #198754; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #2a2a2a;  /* The default color of the main navmenu links */
  --nav-hover-color: #198754; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #2a2a2a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #198754; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f6f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #198754;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2d9967;
  --contrast-color: #198754;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 80px;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 130px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero .hero-intro {
  margin-bottom: 2.5rem;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 68%);
  margin-bottom: 1.75rem;
}

.hero .hero-badge i {
  font-size: 14px;
}

.hero .hero-headline {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.hero .hero-headline em {
  font-style: normal;
  color: var(--accent-color);
}

.hero .hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 580px;
  margin: 0 auto 2.25rem;
}

.hero .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero .hero-actions .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 36px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color), transparent 58%);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero .hero-actions .btn-main i {
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.hero .hero-actions .btn-main:hover {
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px color-mix(in srgb, var(--accent-color), transparent 48%);
}

.hero .hero-actions .btn-main:hover i {
  transform: translateX(4px);
}

.hero .hero-actions .btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--default-color);
  transition: all 0.3s;
}

.hero .hero-actions .btn-watch .play-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface-color);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  transition: all 0.3s;
  flex-shrink: 0;
}

.hero .hero-actions .btn-watch .play-ring i {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-left: 3px;
  transition: color 0.3s;
}

.hero .hero-actions .btn-watch:hover {
  color: var(--accent-color);
}

.hero .hero-actions .btn-watch:hover .play-ring {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 52%);
}

.hero .hero-actions .btn-watch:hover .play-ring i {
  color: var(--contrast-color);
}

.hero .hero-stats-bar {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.hero .hero-stats-bar .stats-inner {
  display: flex;
  align-items: center;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 24px 48px;
  box-shadow: 0 10px 48px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
}

@media (max-width: 576px) {
  .hero .hero-stats-bar .stats-inner {
    flex-direction: column;
    padding: 28px 24px;
    gap: 1.75rem;
  }
}

.hero .hero-stats-bar .stat-block {
  flex: 1;
  text-align: center;
}

.hero .hero-stats-bar .stat-block .stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.hero .hero-stats-bar .stat-block .stat-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.hero .hero-stats-bar .stat-block .stat-plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.hero .hero-stats-bar .stat-block .stat-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: color-mix(in srgb, var(--default-color), transparent 48%);
}

.hero .hero-stats-bar .stat-sep {
  width: 1px;
  height: 52px;
  background: color-mix(in srgb, var(--default-color), transparent 88%);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .hero .hero-stats-bar .stat-sep {
    width: 64px;
    height: 1px;
  }
}

.hero .hero-features-bar {
  position: relative;
  z-index: 2;
}

.hero .hero-features-bar .features-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .hero .hero-features-bar .features-row {
    gap: 1rem;
  }
}

.hero .hero-features-bar .feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero .hero-features-bar .feat-item i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.hero .hero-features-bar .feat-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--default-color);
}

.hero .hero-features-bar .feat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 72%);
}

@media (max-width: 576px) {
  .hero .hero-features-bar .feat-dot {
    display: none;
  }
}

.hero .hero-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero .hero-bg-decor .decor-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero .hero-bg-decor .decor-blob.decor-blob-1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  animation: heroBlob 11s ease-in-out infinite;
}

.hero .hero-bg-decor .decor-blob.decor-blob-2 {
  width: 360px;
  height: 360px;
  bottom: 15%;
  left: -100px;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  animation: heroBlob 14s ease-in-out infinite reverse;
}

.hero .hero-bg-decor .decor-dots {
  position: absolute;
  top: 10%;
  left: 3%;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 65%) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.45;
}

@keyframes heroBlob {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.06);
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 90px;
  }
}

/*--------------------------------------------------------------
# Featured Courses Section
--------------------------------------------------------------*/
.featured-courses .program-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.featured-courses .program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-courses .program-card:hover .program-thumbnail img {
  transform: scale(1.08);
}

.featured-courses .program-card:hover .btn-join i {
  transform: translateX(4px);
}

.featured-courses .program-thumbnail {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.featured-courses .program-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-courses .program-thumbnail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 40%), transparent);
  pointer-events: none;
}

.featured-courses .program-thumbnail .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.featured-courses .program-thumbnail .tag.highlighted {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.featured-courses .program-thumbnail .tag.fresh {
  background: #22c55e;
  color: #fff;
}

.featured-courses .program-thumbnail .tag.certified {
  background: #f59e0b;
  color: #1a1a1a;
}

.featured-courses .program-thumbnail .tag.trending {
  background: #ef4444;
  color: #fff;
}

.featured-courses .program-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-courses .program-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.featured-courses .program-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.featured-courses .program-tags span i {
  font-size: 11px;
}

.featured-courses .program-tags span.tier {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.featured-courses .program-tags span.weeks {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.featured-courses .program-body h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.featured-courses .program-body h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-courses .program-body h3 a:hover {
  color: var(--accent-color);
}

.featured-courses .program-body p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 16px;
}

.featured-courses .program-tutor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.featured-courses .program-tutor img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.featured-courses .program-tutor strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.featured-courses .program-tutor span {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.featured-courses .program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 88%);
  margin-bottom: 18px;
}

.featured-courses .program-footer .score {
  display: flex;
  align-items: center;
  gap: 2px;
}

.featured-courses .program-footer .score i {
  color: #f59e0b;
  font-size: 12px;
}

.featured-courses .program-footer .score span {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading-color);
  margin-left: 6px;
}

.featured-courses .program-footer .learners {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.featured-courses .program-footer .learners i {
  color: var(--accent-color);
  font-size: 13px;
}

.featured-courses .program-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.featured-courses .program-action .btn-join {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-courses .program-action .btn-join i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.featured-courses .program-action .btn-join:hover {
  background: color-mix(in srgb, var(--accent-color), black 12%);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.featured-courses .program-action .cost {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  letter-spacing: -0.5px;
}

.featured-courses .program-action .cost.free {
  font-size: 16px;
  font-weight: 700;
  background: color-mix(in srgb, #22c55e, transparent 88%);
  color: #16a34a;
  padding: 4px 14px;
  border-radius: 50px;
}

.featured-courses .browse-all {
  margin-top: 60px;
}

.featured-courses .browse-all .btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--accent-color);
  padding: 16px 40px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-courses .browse-all .btn-browse i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.featured-courses .browse-all .btn-browse:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-courses .browse-all .btn-browse:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .featured-courses .program-thumbnail {
    min-height: 220px;
  }

  .featured-courses .program-body {
    padding: 22px 20px 20px;
  }

  .featured-courses .program-body h3 {
    font-size: 17px;
  }

  .featured-courses .program-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .featured-courses .program-action {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .featured-courses .program-action .cost {
    order: -1;
  }
}

/*--------------------------------------------------------------
# Course Categories Section
--------------------------------------------------------------*/
.course-categories .topic-tile {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  text-decoration: none;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.course-categories .topic-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 16px 0 0 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-categories .topic-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--default-color), transparent 85%);
  text-decoration: none;
}

.course-categories .topic-tile:hover::before {
  opacity: 1;
}

.course-categories .topic-tile:hover .tile-arrow {
  opacity: 1;
  transform: translateX(0);
}

.course-categories .topic-tile:hover .tile-icon {
  transform: scale(1.1);
}

.course-categories .topic-tile .tile-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.course-categories .topic-tile .tile-icon i {
  font-size: 26px;
  color: var(--contrast-color);
}

.course-categories .topic-tile .tile-body {
  flex: 1;
}

.course-categories .topic-tile .tile-body h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--heading-color);
  line-height: 1.3;
}

.course-categories .topic-tile .tile-body .tile-meta {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.course-categories .topic-tile .tile-arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.course-categories .topic-tile .tile-arrow i {
  font-size: 18px;
  color: var(--heading-color);
}

.course-categories .topic-tile.topic-tech .tile-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.course-categories .topic-tile.topic-tech::before {
  background: #3b82f6;
}

.course-categories .topic-tile.topic-tech:hover .tile-arrow {
  background: color-mix(in srgb, #3b82f6, transparent 85%);
}

.course-categories .topic-tile.topic-tech:hover .tile-arrow i {
  color: #1d4ed8;
}

.course-categories .topic-tile.topic-business .tile-icon {
  background: linear-gradient(135deg, #10b981, #047857);
}

.course-categories .topic-tile.topic-business::before {
  background: #10b981;
}

.course-categories .topic-tile.topic-business:hover .tile-arrow {
  background: color-mix(in srgb, #10b981, transparent 85%);
}

.course-categories .topic-tile.topic-business:hover .tile-arrow i {
  color: #047857;
}

.course-categories .topic-tile.topic-design .tile-icon {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.course-categories .topic-tile.topic-design::before {
  background: #8b5cf6;
}

.course-categories .topic-tile.topic-design:hover .tile-arrow {
  background: color-mix(in srgb, #8b5cf6, transparent 85%);
}

.course-categories .topic-tile.topic-design:hover .tile-arrow i {
  color: #6d28d9;
}

.course-categories .topic-tile.topic-health .tile-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.course-categories .topic-tile.topic-health::before {
  background: #ef4444;
}

.course-categories .topic-tile.topic-health:hover .tile-arrow {
  background: color-mix(in srgb, #ef4444, transparent 85%);
}

.course-categories .topic-tile.topic-health:hover .tile-arrow i {
  color: #dc2626;
}

.course-categories .topic-tile.topic-language .tile-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.course-categories .topic-tile.topic-language::before {
  background: #f97316;
}

.course-categories .topic-tile.topic-language:hover .tile-arrow {
  background: color-mix(in srgb, #f97316, transparent 85%);
}

.course-categories .topic-tile.topic-language:hover .tile-arrow i {
  color: #ea580c;
}

.course-categories .topic-tile.topic-science .tile-icon {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.course-categories .topic-tile.topic-science::before {
  background: #06b6d4;
}

.course-categories .topic-tile.topic-science:hover .tile-arrow {
  background: color-mix(in srgb, #06b6d4, transparent 85%);
}

.course-categories .topic-tile.topic-science:hover .tile-arrow i {
  color: #0891b2;
}

.course-categories .topic-tile.topic-marketing .tile-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.course-categories .topic-tile.topic-marketing::before {
  background: #ec4899;
}

.course-categories .topic-tile.topic-marketing:hover .tile-arrow {
  background: color-mix(in srgb, #ec4899, transparent 85%);
}

.course-categories .topic-tile.topic-marketing:hover .tile-arrow i {
  color: #db2777;
}

.course-categories .topic-tile.topic-finance .tile-icon {
  background: linear-gradient(135deg, #059669, #047857);
}

.course-categories .topic-tile.topic-finance::before {
  background: #059669;
}

.course-categories .topic-tile.topic-finance:hover .tile-arrow {
  background: color-mix(in srgb, #059669, transparent 85%);
}

.course-categories .topic-tile.topic-finance:hover .tile-arrow i {
  color: #047857;
}

.course-categories .topic-tile.topic-photography .tile-icon {
  background: linear-gradient(135deg, #64748b, #475569);
}

.course-categories .topic-tile.topic-photography::before {
  background: #64748b;
}

.course-categories .topic-tile.topic-photography:hover .tile-arrow {
  background: color-mix(in srgb, #64748b, transparent 85%);
}

.course-categories .topic-tile.topic-photography:hover .tile-arrow i {
  color: #475569;
}

.course-categories .topic-tile.topic-music .tile-icon {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.course-categories .topic-tile.topic-music::before {
  background: #7c3aed;
}

.course-categories .topic-tile.topic-music:hover .tile-arrow {
  background: color-mix(in srgb, #7c3aed, transparent 85%);
}

.course-categories .topic-tile.topic-music:hover .tile-arrow i {
  color: #5b21b6;
}

.course-categories .topic-tile.topic-engineering .tile-icon {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.course-categories .topic-tile.topic-engineering::before {
  background: #6b7280;
}

.course-categories .topic-tile.topic-engineering:hover .tile-arrow {
  background: color-mix(in srgb, #6b7280, transparent 85%);
}

.course-categories .topic-tile.topic-engineering:hover .tile-arrow i {
  color: #4b5563;
}

.course-categories .topic-tile.topic-law .tile-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.course-categories .topic-tile.topic-law::before {
  background: #f59e0b;
}

.course-categories .topic-tile.topic-law:hover .tile-arrow {
  background: color-mix(in srgb, #f59e0b, transparent 85%);
}

.course-categories .topic-tile.topic-law:hover .tile-arrow i {
  color: #d97706;
}

.course-categories .topic-tile.topic-culinary .tile-icon {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.course-categories .topic-tile.topic-culinary::before {
  background: #f43f5e;
}

.course-categories .topic-tile.topic-culinary:hover .tile-arrow {
  background: color-mix(in srgb, #f43f5e, transparent 85%);
}

.course-categories .topic-tile.topic-culinary:hover .tile-arrow i {
  color: #e11d48;
}

.course-categories .topic-tile.topic-sports .tile-icon {
  background: linear-gradient(135deg, #84cc16, #65a30d);
}

.course-categories .topic-tile.topic-sports::before {
  background: #84cc16;
}

.course-categories .topic-tile.topic-sports:hover .tile-arrow {
  background: color-mix(in srgb, #84cc16, transparent 85%);
}

.course-categories .topic-tile.topic-sports:hover .tile-arrow i {
  color: #65a30d;
}

.course-categories .topic-tile.topic-writing .tile-icon {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}

.course-categories .topic-tile.topic-writing::before {
  background: #6366f1;
}

.course-categories .topic-tile.topic-writing:hover .tile-arrow {
  background: color-mix(in srgb, #6366f1, transparent 85%);
}

.course-categories .topic-tile.topic-writing:hover .tile-arrow i {
  color: #4338ca;
}

.course-categories .topic-tile.topic-psychology .tile-icon {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.course-categories .topic-tile.topic-psychology::before {
  background: #14b8a6;
}

.course-categories .topic-tile.topic-psychology:hover .tile-arrow {
  background: color-mix(in srgb, #14b8a6, transparent 85%);
}

.course-categories .topic-tile.topic-psychology:hover .tile-arrow i {
  color: #0d9488;
}

.course-categories .topic-tile.topic-environment .tile-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.course-categories .topic-tile.topic-environment::before {
  background: #22c55e;
}

.course-categories .topic-tile.topic-environment:hover .tile-arrow {
  background: color-mix(in srgb, #22c55e, transparent 85%);
}

.course-categories .topic-tile.topic-environment:hover .tile-arrow i {
  color: #16a34a;
}

.course-categories .topic-tile.topic-communication .tile-icon {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.course-categories .topic-tile.topic-communication::before {
  background: #0ea5e9;
}

.course-categories .topic-tile.topic-communication:hover .tile-arrow {
  background: color-mix(in srgb, #0ea5e9, transparent 85%);
}

.course-categories .topic-tile.topic-communication:hover .tile-arrow i {
  color: #0284c7;
}

@media (max-width: 576px) {
  .course-categories .topic-tile {
    padding: 18px 20px;
    gap: 16px;
  }

  .course-categories .topic-tile .tile-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
  }

  .course-categories .topic-tile .tile-icon i {
    font-size: 22px;
  }

  .course-categories .topic-tile .tile-body h5 {
    font-size: 15px;
  }

  .course-categories .topic-tile .tile-body .tile-meta {
    font-size: 12px;
  }

  .course-categories .topic-tile .tile-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Featured Instructors Section
--------------------------------------------------------------*/
.featured-instructors .mentor-block {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.featured-instructors .mentor-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 86%);
}

.featured-instructors .mentor-block:hover .mentor-photo img {
  transform: scale(1.08);
}

.featured-instructors .mentor-block:hover .mentor-photo .lesson-badge {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.featured-instructors .mentor-block:hover .btn-explore i {
  transform: translateX(4px);
}

.featured-instructors .mentor-photo {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.featured-instructors .mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-instructors .mentor-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 30%), transparent);
  pointer-events: none;
}

.featured-instructors .mentor-photo .lesson-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.featured-instructors .mentor-photo .lesson-badge i {
  font-size: 15px;
}

.featured-instructors .mentor-details {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-instructors .mentor-details .category-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  width: fit-content;
  margin-bottom: 14px;
}

.featured-instructors .mentor-details h4 {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.featured-instructors .mentor-details .star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 14px;
}

.featured-instructors .mentor-details .star-rating i {
  color: #ffc107;
  font-size: 13px;
}

.featured-instructors .mentor-details .star-rating i.bi-star {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.featured-instructors .mentor-details .star-rating .score {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  margin-left: 6px;
}

.featured-instructors .mentor-details .bio {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.featured-instructors .metrics {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
}

.featured-instructors .metrics .metric-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-instructors .metrics .metric-item>i {
  font-size: 20px;
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  flex-shrink: 0;
}

.featured-instructors .metrics .metric-item div {
  display: flex;
  flex-direction: column;
}

.featured-instructors .metrics .metric-item div strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.2;
}

.featured-instructors .metrics .metric-item div span {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.featured-instructors .mentor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.featured-instructors .mentor-footer .btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-instructors .mentor-footer .btn-explore i {
  transition: transform 0.3s ease;
  font-size: 16px;
}

.featured-instructors .mentor-footer .btn-explore:hover {
  color: color-mix(in srgb, var(--accent-color), var(--default-color) 20%);
}

.featured-instructors .mentor-footer .social-icons {
  display: flex;
  gap: 8px;
}

.featured-instructors .mentor-footer .social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.featured-instructors .mentor-footer .social-icons a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-instructors .mentor-footer .social-icons a i {
  font-size: 14px;
}

@media (max-width: 575px) {
  .featured-instructors .mentor-photo {
    min-height: 260px;
  }

  .featured-instructors .mentor-photo .lesson-badge {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .featured-instructors .mentor-details {
    padding: 24px 20px;
  }

  .featured-instructors .mentor-details h4 {
    font-size: 20px;
  }

  .featured-instructors .metrics {
    gap: 14px;
  }

  .featured-instructors .mentor-footer {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .featured-instructors .mentor-photo {
    min-height: 240px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 100px 0;
  overflow: hidden;
}

.testimonials .rating-showcase {
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
}

.testimonials .rating-showcase::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
  z-index: -1;
}

.testimonials .rating-showcase .rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
  margin-bottom: 24px;
}

.testimonials .rating-showcase .rating-badge i {
  font-size: 16px;
}

.testimonials .rating-showcase .rating-score {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-color);
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.testimonials .rating-showcase .rating-stars-row {
  margin-bottom: 16px;
}

.testimonials .rating-showcase .rating-stars-row i {
  color: #FFD700;
  font-size: 22px;
  margin: 0 2px;
}

.testimonials .rating-showcase .rating-summary {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
}

.testimonials .rating-showcase .platform-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.testimonials .rating-showcase .platform-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  background: var(--surface-color);
  padding: 8px 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.testimonials .rating-showcase .platform-tags span i {
  font-size: 16px;
}

.testimonials .rating-showcase .platform-tags span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .rating-showcase .avatar-cluster {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials .rating-showcase .avatar-cluster img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--surface-color);
  margin-left: -12px;
  object-fit: cover;
}

.testimonials .rating-showcase .avatar-cluster img:first-child {
  margin-left: 0;
}

.testimonials .rating-showcase .avatar-cluster .avatar-more {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-left: -12px;
  border: 3px solid var(--surface-color);
}

.testimonials .press-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.testimonials .press-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonials .press-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
}

.testimonials .press-card:hover::after {
  transform: scaleX(1);
}

.testimonials .press-card.featured {
  background: var(--accent-color);
}

.testimonials .press-card.featured .press-icon i {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.testimonials .press-card.featured .press-stars i {
  color: #FFD700;
}

.testimonials .press-card.featured p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.testimonials .press-card.featured .press-source {
  color: var(--contrast-color);
}

.testimonials .press-card.featured::after {
  display: none;
}

.testimonials .press-card.wide p {
  margin-bottom: 0;
  font-style: italic;
}

.testimonials .press-card .press-icon {
  margin-bottom: 16px;
}

.testimonials .press-card .press-icon i {
  font-size: 24px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.testimonials .press-card .press-stars {
  margin-bottom: 16px;
}

.testimonials .press-card .press-stars i {
  color: #FFD700;
  font-size: 14px;
  margin-right: 2px;
}

.testimonials .press-card p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
}

.testimonials .press-card .press-source {
  font-weight: 700;
  font-size: 15px;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.testimonials .student-voices {
  margin-top: 20px;
}

.testimonials .student-voices .voices-header .voices-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonials .student-voices .voices-header .voices-label .label-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  display: inline-block;
}

.testimonials .student-voices .voices-header .voices-label .label-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
}

.testimonials .student-voices .voices-header .swiper-nav-custom {
  display: flex;
  gap: 10px;
}

.testimonials .student-voices .voices-header .swiper-nav-custom button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: transparent;
  color: var(--default-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.testimonials .student-voices .voices-header .swiper-nav-custom button:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.testimonials .student-voices .swiper-wrapper {
  height: auto !important;
  padding-bottom: 32px;
}

.testimonials .student-voices .voice-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-left: 4px solid var(--accent-color);
  position: relative;
}

.testimonials .student-voices .voice-card .voice-rating {
  margin-bottom: 20px;
}

.testimonials .student-voices .voice-card .voice-rating i {
  color: #FFD700;
  font-size: 15px;
  margin-right: 2px;
}

.testimonials .student-voices .voice-card p {
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonials .student-voices .voice-card .voice-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials .student-voices .voice-card .voice-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .student-voices .voice-card .voice-author h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.testimonials .student-voices .voice-card .voice-author h4 {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  font-weight: 500;
}

.testimonials .student-voices .swiper-pagination {
  position: relative;
  margin-top: 8px;
}

.testimonials .student-voices .swiper-pagination.swiper-pagination-progressbar {
  position: relative;
  height: 3px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 3px;
}

.testimonials .student-voices .swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--accent-color);
  border-radius: 3px;
}

@media (max-width: 992px) {
  .testimonials {
    padding: 80px 0;
  }

  .testimonials .rating-showcase {
    margin-bottom: 20px;
    padding: 36px 28px;
  }

  .testimonials .rating-showcase .rating-score {
    font-size: 56px;
  }

  .testimonials .press-card {
    margin-bottom: 0;
  }

  .testimonials .press-card.wide .row {
    text-align: center;
  }
}

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

  .testimonials .rating-showcase {
    padding: 32px 20px;
  }

  .testimonials .rating-showcase .rating-score {
    font-size: 48px;
  }

  .testimonials .rating-showcase .rating-stars-row i {
    font-size: 18px;
  }

  .testimonials .rating-showcase .platform-tags {
    gap: 8px;
  }

  .testimonials .rating-showcase .platform-tags span {
    padding: 6px 14px;
    font-size: 13px;
  }

  .testimonials .student-voices .voices-header {
    gap: 16px;
  }

  .testimonials .student-voices .swiper-nav-custom button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .testimonials .voice-card {
    padding: 28px 24px;
  }
}

/*--------------------------------------------------------------
# Cta Section
--------------------------------------------------------------*/
.cta {
  background: color-mix(in srgb, var(--accent-color) 7%, var(--background-color));
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  z-index: 0;
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  z-index: 0;
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.cta .section-badge i {
  font-size: 15px;
}

.cta .cta-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .cta .cta-content h2 {
    font-size: 2rem;
  }
}

.cta .cta-content>p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 36px;
}

.cta .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

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

.cta .features-grid .feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta .features-grid .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.cta .features-grid .feature-card .feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta .features-grid .feature-card .feature-icon i {
  font-size: 1.15rem;
  color: var(--accent-color);
}

.cta .features-grid .feature-card span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--default-color);
  line-height: 1.55;
  padding-top: 6px;
}

.cta .cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta .cta-buttons .btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.cta .cta-buttons .btn-solid i {
  transition: transform 0.3s ease;
  font-size: 16px;
}

.cta .cta-buttons .btn-solid:hover {
  background: color-mix(in srgb, var(--accent-color), black 12%);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
}

.cta .cta-buttons .btn-solid:hover i {
  transform: translateX(5px);
}

.cta .cta-buttons .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 50px;
  background: transparent;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--accent-color);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta .cta-buttons .btn-ghost:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.cta .cta-visual {
  position: relative;
  padding: 20px 0 20px 20px;
}

@media (max-width: 991px) {
  .cta .cta-visual {
    padding: 0;
    margin-top: 40px;
  }
}

.cta .cta-visual .image-frame {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.cta .cta-visual .image-frame img {
  border-radius: 24px;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--default-color), transparent 80%);
  display: block;
  width: 100%;
}

.cta .cta-visual .image-frame .overlay-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.cta .cta-visual .image-frame .overlay-badge i {
  font-size: 16px;
}

.cta .cta-visual .floating-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 16px 48px color-mix(in srgb, var(--default-color), transparent 82%);
  z-index: 2;
}

.cta .cta-visual .floating-card.top-card {
  top: -10px;
  right: -15px;
}

@media (max-width: 576px) {
  .cta .cta-visual .floating-card.top-card {
    right: 8px;
    top: 8px;
  }
}

.cta .cta-visual .floating-card.bottom-card {
  bottom: 20px;
  left: -15px;
}

@media (max-width: 576px) {
  .cta .cta-visual .floating-card.bottom-card {
    left: 8px;
  }
}

.cta .cta-visual .floating-card .card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta .cta-visual .floating-card .card-inner i {
  font-size: 2rem;
  color: var(--accent-color);
}

.cta .cta-visual .floating-card .card-inner .card-text {
  display: flex;
  flex-direction: column;
}

.cta .cta-visual .floating-card .card-inner .card-text strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}

.cta .cta-visual .floating-card .card-inner .card-text span {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

.cta .cta-visual .deco-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 18px solid color-mix(in srgb, var(--accent-color), transparent 84%);
  bottom: -40px;
  right: -30px;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 576px) {
  .cta .cta-visual .deco-ring {
    display: none;
  }
}

.cta .cta-visual .deco-dots {
  position: absolute;
  top: -20px;
  left: -10px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 70%) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 576px) {
  .cta .cta-visual .deco-dots {
    display: none;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
  /* --- Hero Image Block --- */
  /* --- Intro Content --- */
  /* --- Stats Grid --- */
  /* --- Pillar Cards --- */
  /* --- Gallery Mosaic --- */
  /* --- Reasons Content --- */
  /* --- Discover Button --- */
  /* --- Responsive --- */
}

.about .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}

.about .section-label i {
  font-size: 15px;
}

.about .hero-image-wrapper {
  position: relative;
  padding: 20px;
}

.about .hero-image-wrapper .main-img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .hero-image-wrapper .floating-badge {
  position: absolute;
  bottom: 0;
  left: -10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .hero-image-wrapper .floating-badge .badge-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.about .hero-image-wrapper .floating-badge .badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.about .hero-image-wrapper .floating-shape {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: -1;
}

.about .intro-content h2 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .about .intro-content h2 {
    font-size: 2rem;
  }
}

.about .intro-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.about .stats-grid .stat-box {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 20px 16px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.about .stats-grid .stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .stats-grid .stat-box .number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 6px;
}

.about .stats-grid .stat-box .label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .pillar-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface-color);
  padding: 32px 28px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.about .pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-color);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.about .pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .pillar-card:hover::before {
  transform: scaleY(1);
}

.about .pillar-card:hover .pillar-arrow {
  opacity: 1;
  transform: translateX(0);
}

.about .pillar-card:hover .pillar-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .pillar-card .pillar-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.about .pillar-card .pillar-body {
  flex: 1;
}

.about .pillar-card .pillar-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about .pillar-card .pillar-body p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .pillar-card .pillar-arrow {
  font-size: 1.25rem;
  color: var(--accent-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.about .gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}

.about .gallery-mosaic .mosaic-main {
  grid-column: 1/-1;
}

.about .gallery-mosaic .mosaic-main img {
  border-radius: 20px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: transform 0.4s ease;
}

.about .gallery-mosaic .mosaic-main img:hover {
  transform: scale(1.03);
}

.about .gallery-mosaic .mosaic-secondary img,
.about .gallery-mosaic .mosaic-tertiary img {
  border-radius: 16px;
  width: 100%;
  height: 180px;
  object-fit: cover;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.4s ease;
}

.about .gallery-mosaic .mosaic-secondary img:hover,
.about .gallery-mosaic .mosaic-tertiary img:hover {
  transform: scale(1.03);
}

.about .reasons-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
}

@media (max-width: 992px) {
  .about .reasons-content h2 {
    font-size: 2rem;
  }
}

.about .reasons-content>p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.about .reasons-grid {
  margin-bottom: 2.5rem;
}

.about .reason-item {
  padding: 24px;
  border-radius: 14px;
  background: var(--surface-color);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.3s ease;
}

.about .reason-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px color-mix(in srgb, var(--default-color), transparent 86%);
}

.about .reason-item .reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.about .reason-item:hover .reason-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .reason-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about .reason-item p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 65%);
  transition: all 0.3s ease;
}

.about .btn-discover:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
  gap: 14px;
}

.about .btn-discover i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .about {
    padding: 80px 0;
  }

  .about .hero-image-wrapper {
    margin-bottom: 2rem;
  }

  .about .hero-image-wrapper .floating-badge {
    left: 10px;
    bottom: 10px;
  }

  .about .gallery-mosaic {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .about .hero-image-wrapper .floating-shape {
    display: none;
  }

  .about .pillar-card {
    padding: 24px 20px;
  }

  .about .gallery-mosaic .mosaic-main img {
    height: 200px;
  }

  .about .gallery-mosaic .mosaic-secondary img,
  .about .gallery-mosaic .mosaic-tertiary img {
    height: 140px;
  }

  .about .stats-grid .stat-box {
    padding: 16px 10px;
  }

  .about .stats-grid .stat-box .number {
    font-size: 1.4rem;
  }

  .about .stats-grid .stat-box .label {
    font-size: 0.7rem;
  }
}

/*--------------------------------------------------------------
# Courses 2 Section
--------------------------------------------------------------*/
.courses-2 {
  padding-top: 37px;
  padding-bottom: 100px;
}

.courses-2 .toolbar {
  background-color: var(--surface-color);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  margin-bottom: 30px;
}

.courses-2 .toolbar .search-field {
  position: relative;
}

.courses-2 .toolbar .search-field i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.courses-2 .toolbar .search-field input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 50px;
  font-size: 15px;
  background-color: var(--background-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.courses-2 .toolbar .search-field input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.courses-2 .toolbar .search-field input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses-2 .toolbar .filter-select select {
  width: 100%;
  padding: 14px 40px 14px 18px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 50px;
  background-color: var(--background-color);
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  transition: all 0.3s ease;
}

.courses-2 .toolbar .filter-select select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.courses-2 .filter-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.courses-2 .filter-tags .tag-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: transparent;
  color: var(--default-color);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.courses-2 .filter-tags .tag-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.courses-2 .filter-tags .tag-btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.courses-2 .filter-tags .tag-divider {
  width: 2px;
  height: 24px;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 2px;
  margin: 0 6px;
}

.courses-2 .program-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.courses-2 .program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.courses-2 .program-card:hover .card-img img {
  transform: scale(1.08);
}

.courses-2 .program-card:hover .enroll-btn i {
  transform: translateX(4px);
}

.courses-2 .program-card.featured {
  box-shadow: 0 10px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.courses-2 .program-card.featured .card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 70%) 0%, transparent 100%);
  z-index: 1;
}

.courses-2 .program-card .card-img {
  position: relative;
  overflow: hidden;
}

.courses-2 .program-card .card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.courses-2 .program-card .card-img .ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.courses-2 .program-card .card-img .ribbon.free {
  background-color: #10b981;
}

.courses-2 .program-card .card-img .ribbon.fresh {
  background-color: #f97316;
}

.courses-2 .program-card .card-img .ribbon.certified {
  background-color: #8b5cf6;
}

.courses-2 .program-card .card-img .cost {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background-color: color-mix(in srgb, var(--default-color), transparent 20%);
  color: var(--contrast-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  backdrop-filter: blur(4px);
}

.courses-2 .program-card .card-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.courses-2 .program-card .card-body .tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.courses-2 .program-card .card-body .tags .tag-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.courses-2 .program-card .card-body .tags .tag-level {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses-2 .program-card .card-body .tags .tag-level i {
  font-size: 10px;
}

.courses-2 .program-card .card-body h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.courses-2 .program-card .card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
  flex-grow: 1;
}

.courses-2 .program-card .card-body .metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 14px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses-2 .program-card .card-body .metrics .metric-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.courses-2 .program-card .card-body .metrics .metric-item i {
  color: var(--accent-color);
  font-size: 14px;
}

.courses-2 .program-card .card-body .metrics .metric-item.stars i {
  color: #f59e0b;
}

.courses-2 .program-card .card-body .metrics .metric-item.stars span {
  font-weight: 700;
  color: var(--default-color);
}

.courses-2 .program-card .card-body .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}

.courses-2 .program-card .card-body .card-footer .tutor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.courses-2 .program-card .card-body .card-footer .tutor img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.courses-2 .program-card .card-body .card-footer .tutor span {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

.courses-2 .program-card .card-body .card-footer .enroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.courses-2 .program-card .card-body .card-footer .enroll-btn i {
  transition: transform 0.3s ease;
}

.courses-2 .program-card .card-body .card-footer .enroll-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.courses-2 .load-more-wrapper {
  text-align: center;
  margin-top: 60px;
}

.courses-2 .load-more-wrapper .load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.courses-2 .load-more-wrapper .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.courses-2 .load-more-wrapper .results-count {
  margin-top: 16px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 992px) {
  .courses-2 {
    padding: 80px 0;
  }

  .courses-2 .filter-tags .tag-divider {
    display: none;
  }

  .courses-2 .program-card .card-body .card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .courses-2 .program-card .card-body .card-footer .enroll-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .courses-2 {
    padding: 60px 0;
  }

  .courses-2 .toolbar {
    padding: 16px 20px;
  }

  .courses-2 .filter-tags {
    gap: 8px;
  }

  .courses-2 .filter-tags .tag-btn {
    padding: 6px 14px;
    font-size: 12px;
  }

  .courses-2 .program-card .card-img img {
    height: 180px;
  }
}

/*--------------------------------------------------------------
# Course Details Section
--------------------------------------------------------------*/
.course-details .course-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.course-details .course-banner .banner-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .course-details .course-banner .banner-img {
    height: 260px;
  }
}

.course-details .course-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, #000, transparent 70%) 0%, color-mix(in srgb, #000, transparent 30%) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.course-details .course-banner .banner-overlay .preview-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
  transition: transform 0.3s ease;
}

.course-details .course-banner .banner-overlay .preview-btn:hover {
  transform: scale(1.12);
}

.course-details .course-banner .banner-overlay .preview-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--contrast-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.course-details .course-banner:hover .banner-overlay {
  opacity: 1;
}

.course-details .course-banner .banner-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
}

.course-details .course-banner .banner-badges span {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-details .course-banner .banner-badges .badge-category {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-details .course-banner .banner-badges .badge-level {
  background: var(--surface-color);
  color: var(--accent-color);
}

.course-details .course-header {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.course-details .course-header h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--heading-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .course-details .course-header h1 {
    font-size: 28px;
  }
}

.course-details .course-header .lead-text {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
}

.course-details .course-header .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.course-details .course-header .meta-row .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
}

.course-details .course-header .meta-row .meta-item i {
  color: var(--accent-color);
  font-size: 16px;
}

.course-details .course-header .instructor-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 16px;
  border-left: 4px solid var(--accent-color);
}

@media (max-width: 992px) {
  .course-details .course-header .instructor-badge {
    margin-top: 24px;
  }
}

.course-details .course-header .instructor-badge .instructor-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.course-details .course-header .instructor-badge .instructor-info .instructor-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  display: block;
  margin-bottom: 4px;
}

.course-details .course-header .instructor-badge .instructor-info h5 {
  margin: 0 0 2px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

.course-details .course-header .instructor-badge .instructor-info .instructor-role {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.course-details .pricing-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .course-details .pricing-card {
    position: static;
  }
}

.course-details .pricing-card .pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.course-details .pricing-card .pricing-top .price-tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.course-details .pricing-card .pricing-top .price-tag .price-now {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.course-details .pricing-card .pricing-top .price-tag .price-was {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.course-details .pricing-card .pricing-top .savings-badge {
  padding: 6px 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-details .pricing-card .pricing-features {
  margin-bottom: 28px;
}

.course-details .pricing-card .pricing-features .feature-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.course-details .pricing-card .pricing-features .feature-row i {
  font-size: 18px;
  color: var(--accent-color);
  width: 20px;
  text-align: center;
}

.course-details .pricing-card .pricing-features .feature-row span {
  font-size: 14px;
  color: var(--default-color);
}

.course-details .pricing-card .pricing-actions {
  margin-bottom: 20px;
}

.course-details .pricing-card .pricing-actions .btn-enroll {
  width: 100%;
  padding: 16px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.course-details .pricing-card .pricing-actions .btn-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.course-details .pricing-card .pricing-actions .btn-wishlist {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 40%);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.course-details .pricing-card .pricing-actions .btn-wishlist:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.course-details .pricing-card .refund-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.course-details .pricing-card .refund-note i {
  color: var(--accent-color);
  font-size: 16px;
}

.course-details .info-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 28px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.course-details .info-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.course-details .info-card .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-details .info-card .info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.course-details .info-card .info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.course-details .info-card .info-list li .info-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
}

.course-details .info-card .info-list li .info-value {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.course-details .social-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.course-details .social-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.course-details .social-card .social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.course-details .social-card .social-row .social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.course-details .social-card .social-row .social-btn.sb-facebook {
  background: color-mix(in srgb, #1877f2, transparent 88%);
  color: #1877f2;
}

.course-details .social-card .social-row .social-btn.sb-facebook:hover {
  background: #1877f2;
  color: white;
}

.course-details .social-card .social-row .social-btn.sb-twitter {
  background: color-mix(in srgb, #14171a, transparent 88%);
  color: #14171a;
}

.course-details .social-card .social-row .social-btn.sb-twitter:hover {
  background: #14171a;
  color: white;
}

.course-details .social-card .social-row .social-btn.sb-linkedin {
  background: color-mix(in srgb, #0077b5, transparent 88%);
  color: #0077b5;
}

.course-details .social-card .social-row .social-btn.sb-linkedin:hover {
  background: #0077b5;
  color: white;
}

.course-details .social-card .social-row .social-btn.sb-email {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.course-details .social-card .social-row .social-btn.sb-email:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.course-details .social-card .social-row .social-btn:hover {
  transform: translateY(-3px);
}

.course-details .tabs-wrapper {
  margin-bottom: 40px;
}

.course-details .tabs-wrapper .nav-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 0;
}

.course-details .tabs-wrapper .nav-pills .nav-item {
  flex: 1;
}

.course-details .tabs-wrapper .nav-pills .nav-link {
  border: none;
  border-radius: 0;
  padding: 16px 20px;
  text-align: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

@media (max-width: 576px) {
  .course-details .tabs-wrapper .nav-pills .nav-link {
    padding: 12px 8px;
    font-size: 13px;
    flex-direction: column;
    gap: 4px;
  }
}

.course-details .tabs-wrapper .nav-pills .nav-link i {
  font-size: 18px;
}

.course-details .tabs-wrapper .nav-pills .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: none;
}

.course-details .tabs-wrapper .nav-pills .nav-link:hover:not(.active) {
  color: var(--accent-color);
}

.course-details .tabs-wrapper .content-block {
  margin-bottom: 40px;
}

.course-details .tabs-wrapper .content-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.course-details .tabs-wrapper .content-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 14px;
}

.course-details .tabs-wrapper .competency-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.course-details .tabs-wrapper .competency-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--default-color), transparent 86%);
}

.course-details .tabs-wrapper .competency-card .comp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.course-details .tabs-wrapper .competency-card .comp-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.course-details .tabs-wrapper .competency-card h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.course-details .tabs-wrapper .competency-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .tabs-wrapper .prereq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-details .tabs-wrapper .prereq-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--default-color);
}

.course-details .tabs-wrapper .prereq-list li i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.course-details .tabs-wrapper .syllabus-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.course-details .tabs-wrapper .syllabus-stats .stat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
}

.course-details .tabs-wrapper .syllabus-stats .stat-chip i {
  font-size: 16px;
}

.course-details .tabs-wrapper .accordion .module-block {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

.course-details .tabs-wrapper .accordion .module-block .accordion-button {
  background: var(--surface-color);
  color: var(--default-color);
  border: none;
  padding: 22px 24px;
  box-shadow: none;
}

.course-details .tabs-wrapper .accordion .module-block .accordion-button:not(.collapsed) {
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.course-details .tabs-wrapper .accordion .module-block .accordion-button:focus {
  box-shadow: none;
}

.course-details .tabs-wrapper .accordion .module-block .accordion-button .module-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.course-details .tabs-wrapper .accordion .module-block .accordion-button .module-head .module-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-color);
  min-width: 36px;
}

.course-details .tabs-wrapper .accordion .module-block .accordion-button .module-head .module-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

.course-details .tabs-wrapper .accordion .module-block .accordion-button .module-head .module-details {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
  margin-top: 3px;
}

.course-details .tabs-wrapper .accordion .module-block .accordion-body {
  padding: 0;
}

.course-details .tabs-wrapper .accordion .module-block .accordion-body .session-row {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: background-color 0.3s;
}

.course-details .tabs-wrapper .accordion .module-block .accordion-body .session-row:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.course-details .tabs-wrapper .accordion .module-block .accordion-body .session-row:last-child {
  border-bottom: none;
}

.course-details .tabs-wrapper .accordion .module-block .accordion-body .session-row i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 14px;
  flex-shrink: 0;
}

.course-details .tabs-wrapper .accordion .module-block .accordion-body .session-row .session-name {
  flex: 1;
  font-size: 14px;
  color: var(--default-color);
}

.course-details .tabs-wrapper .accordion .module-block .accordion-body .session-row .session-duration {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 500;
  margin-left: 12px;
}

.course-details .tabs-wrapper .rating-hero {
  text-align: center;
  padding: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 20px;
  margin-bottom: 32px;
}

.course-details .tabs-wrapper .rating-hero .rating-big {
  font-size: 72px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 10px;
}

.course-details .tabs-wrapper .rating-hero .rating-stars-row {
  margin-bottom: 10px;
}

.course-details .tabs-wrapper .rating-hero .rating-stars-row i {
  font-size: 22px;
  color: #ffc107;
  margin: 0 2px;
}

.course-details .tabs-wrapper .rating-hero .rating-count {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.course-details .tabs-wrapper .feedback-list .feedback-card {
  padding: 28px;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.course-details .tabs-wrapper .feedback-list .feedback-card:hover {
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 88%);
}

.course-details .tabs-wrapper .feedback-list .feedback-card .feedback-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.course-details .tabs-wrapper .feedback-list .feedback-card .feedback-top .feedback-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.course-details .tabs-wrapper .feedback-list .feedback-card .feedback-top .feedback-meta {
  flex: 1;
}

.course-details .tabs-wrapper .feedback-list .feedback-card .feedback-top .feedback-meta h6 {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
}

.course-details .tabs-wrapper .feedback-list .feedback-card .feedback-top .feedback-meta .stars-small i {
  color: #ffc107;
  font-size: 13px;
  margin-right: 1px;
}

.course-details .tabs-wrapper .feedback-list .feedback-card .feedback-top .feedback-time {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.course-details .tabs-wrapper .feedback-list .feedback-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
}

/*--------------------------------------------------------------
# Instructors Section
--------------------------------------------------------------*/
.instructors .mentor-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.instructors .mentor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 86%);
}

.instructors .mentor-card:hover .mentor-photo img {
  transform: scale(1.08);
}

.instructors .mentor-card:hover .mentor-photo .badge-ribbon {
  transform: translateX(0);
}

.instructors .mentor-card:hover .btn-explore i {
  transform: translateX(4px);
}

.instructors .mentor-photo {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.instructors .mentor-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 30%), transparent);
  pointer-events: none;
}

.instructors .mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instructors .mentor-photo .badge-ribbon {
  position: absolute;
  top: 20px;
  left: 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 18px 8px 14px;
  border-radius: 0 50px 50px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
  transform: translateX(-10px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instructors .mentor-photo .badge-ribbon i {
  font-size: 14px;
}

.instructors .mentor-details {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.instructors .mentor-details .subject-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  margin-bottom: 16px;
  align-self: flex-start;
}

.instructors .mentor-details .subject-tag i {
  font-size: 13px;
}

.instructors .mentor-details h4 {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--heading-color);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.instructors .mentor-details .bio {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.instructors .metrics {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.instructors .metrics .metric-item {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-radius: 12px;
  transition: background 0.3s ease;
}

.instructors .metrics .metric-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.instructors .metrics .metric-item i {
  display: block;
  font-size: 16px;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.instructors .metrics .metric-item strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 4px;
}

.instructors .metrics .metric-item span {
  font-size: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.instructors .mentor-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.instructors .mentor-footer .btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.instructors .mentor-footer .btn-explore i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.instructors .mentor-footer .btn-explore:hover {
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 40%);
  transform: translateY(-2px);
}

.instructors .mentor-footer .social-icons {
  display: flex;
  gap: 8px;
}

.instructors .mentor-footer .social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

.instructors .mentor-footer .social-icons a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1) rotate(-5deg);
}

.instructors .mentor-footer .social-icons a i {
  font-size: 14px;
}

@media (max-width: 768px) {
  .instructors .mentor-card .row {
    flex-direction: column;
  }

  .instructors .mentor-card .row .col-5,
  .instructors .mentor-card .row .col-7 {
    width: 100%;
  }

  .instructors .mentor-photo {
    min-height: 240px;
    height: 240px;
  }

  .instructors .mentor-photo .badge-ribbon {
    transform: translateX(0);
  }

  .instructors .mentor-details {
    padding: 24px 20px;
  }

  .instructors .mentor-details h4 {
    font-size: 20px;
  }

  .instructors .metrics .metric-item {
    padding: 10px 4px;
  }

  .instructors .metrics .metric-item strong {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .instructors .mentor-footer {
    flex-direction: column;
    gap: 14px;
  }

  .instructors .mentor-footer .btn-explore {
    width: 100%;
    justify-content: center;
  }

  .instructors .mentor-footer .social-icons {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Instructor Profile Section
--------------------------------------------------------------*/
.instructor-profile .profile-card {
  position: relative;
  text-align: center;
}

.instructor-profile .profile-card .profile-image-wrap {
  position: relative;
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 78%);
}

.instructor-profile .profile-card .profile-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.instructor-profile .profile-card .profile-image-wrap .verified-seal {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.instructor-profile .profile-card .profile-image-wrap .verified-seal i {
  font-size: 16px;
}

.instructor-profile .profile-card .profile-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.instructor-profile .profile-card .profile-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instructor-profile .profile-card .profile-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .instructor-profile .profile-card .profile-image-wrap img {
    height: 380px;
  }
}

.instructor-profile .instructor-intro {
  padding-left: 20px;
}

.instructor-profile .instructor-intro .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  margin-bottom: 20px;
}

.instructor-profile .instructor-intro h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.instructor-profile .instructor-intro .specialization {
  font-size: 20px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 24px;
}

.instructor-profile .instructor-intro .credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.instructor-profile .instructor-intro .credential-badges .badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.instructor-profile .instructor-intro .credential-badges .badge-item i {
  color: var(--accent-color);
  font-size: 15px;
}

.instructor-profile .instructor-intro .rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.instructor-profile .instructor-intro .rating-bar .stars i {
  color: #ffc107;
  font-size: 18px;
  margin-right: 2px;
}

.instructor-profile .instructor-intro .rating-bar .rating-score {
  font-size: 20px;
  font-weight: 800;
  color: var(--heading-color);
}

.instructor-profile .instructor-intro .rating-bar .rating-count {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.instructor-profile .instructor-intro .intro-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.instructor-profile .instructor-intro .intro-actions .btn-primary-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.instructor-profile .instructor-intro .intro-actions .btn-primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 45%);
  color: var(--contrast-color);
}

.instructor-profile .instructor-intro .intro-actions .btn-secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.instructor-profile .instructor-intro .intro-actions .btn-secondary-action:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.instructor-profile .instructor-intro .intro-actions .btn-secondary-action i {
  transition: transform 0.3s ease;
}

.instructor-profile .instructor-intro .intro-actions .btn-secondary-action:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .instructor-profile .instructor-intro {
    padding-left: 0;
    text-align: center;
    margin-top: 20px;
  }

  .instructor-profile .instructor-intro .credential-badges {
    justify-content: center;
  }

  .instructor-profile .instructor-intro .rating-bar {
    justify-content: center;
  }

  .instructor-profile .instructor-intro .intro-actions {
    justify-content: center;
  }

  .instructor-profile .instructor-intro h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .instructor-profile .instructor-intro h2 {
    font-size: 30px;
  }

  .instructor-profile .instructor-intro .intro-actions {
    flex-direction: column;
  }

  .instructor-profile .instructor-intro .intro-actions .btn-primary-action,
  .instructor-profile .instructor-intro .intro-actions .btn-secondary-action {
    width: 100%;
    justify-content: center;
  }
}

.instructor-profile .impact-strip {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 25%));
  border-radius: 20px;
  padding: 10px 0;
  box-shadow: 0 16px 48px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.instructor-profile .impact-strip .impact-item {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.instructor-profile .impact-strip .impact-item h3 {
  color: var(--contrast-color);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1;
}

.instructor-profile .impact-strip .impact-item p {
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .instructor-profile .impact-strip .impact-item {
    padding: 20px 12px;
  }

  .instructor-profile .impact-strip .impact-item h3 {
    font-size: 28px;
  }

  .instructor-profile .impact-strip .impact-item p {
    font-size: 12px;
  }
}

.instructor-profile .detail-tabs .tab-pills {
  display: flex;
  gap: 8px;
  border: none;
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  flex-wrap: wrap;
}

.instructor-profile .detail-tabs .tab-pills .nav-item {
  flex: 1;
  min-width: 0;
}

.instructor-profile .detail-tabs .tab-pills .nav-item .nav-link {
  width: 100%;
  border: none;
  border-radius: 12px;
  color: var(--default-color);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.instructor-profile .detail-tabs .tab-pills .nav-item .nav-link i {
  font-size: 16px;
}

.instructor-profile .detail-tabs .tab-pills .nav-item .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.instructor-profile .detail-tabs .tab-pills .nav-item .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .instructor-profile .detail-tabs .tab-pills .nav-item {
    flex: 0 0 calc(50% - 4px);
  }
}

.instructor-profile .detail-tabs .tab-body {
  padding: 40px 0;
}

.instructor-profile .detail-tabs .tab-body .bio-block {
  margin-bottom: 40px;
}

.instructor-profile .detail-tabs .tab-body .bio-block h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.instructor-profile .detail-tabs .tab-body .bio-block p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.instructor-profile .detail-tabs .tab-body .expertise-section h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.instructor-profile .detail-tabs .tab-body .expertise-section .expertise-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 16px;
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instructor-profile .detail-tabs .tab-body .expertise-section .expertise-chip i {
  font-size: 24px;
  color: var(--accent-color);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
  flex-shrink: 0;
}

.instructor-profile .detail-tabs .tab-body .expertise-section .expertise-chip span {
  font-weight: 600;
  font-size: 15px;
  color: var(--heading-color);
}

.instructor-profile .detail-tabs .tab-body .expertise-section .expertise-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

.instructor-profile .detail-tabs .tab-body .expertise-section .expertise-chip:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.instructor-profile .detail-tabs .tab-body .timeline {
  position: relative;
  padding-left: 36px;
}

.instructor-profile .detail-tabs .tab-body .timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 3px;
}

.instructor-profile .detail-tabs .tab-body .timeline .timeline-entry {
  position: relative;
  margin-bottom: 36px;
}

.instructor-profile .detail-tabs .tab-body .timeline .timeline-entry:last-child {
  margin-bottom: 0;
}

.instructor-profile .detail-tabs .tab-body .timeline .timeline-entry .timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 18px;
  height: 18px;
  background-color: var(--accent-color);
  border-radius: 50%;
  border: 4px solid var(--background-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.instructor-profile .detail-tabs .tab-body .timeline .timeline-entry .timeline-content {
  background-color: var(--surface-color);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.instructor-profile .detail-tabs .tab-body .timeline .timeline-entry .timeline-content .timeline-year {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.instructor-profile .detail-tabs .tab-body .timeline .timeline-entry .timeline-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.instructor-profile .detail-tabs .tab-body .timeline .timeline-entry .timeline-content .timeline-org {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 15px;
}

.instructor-profile .detail-tabs .tab-body .timeline .timeline-entry .timeline-content p:last-child {
  margin: 0;
  line-height: 1.7;
}

.instructor-profile .detail-tabs .tab-body .program-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instructor-profile .detail-tabs .tab-body .program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 82%);
}

.instructor-profile .detail-tabs .tab-body .program-card .program-thumb {
  position: relative;
  overflow: hidden;
}

.instructor-profile .detail-tabs .tab-body .program-card .program-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instructor-profile .detail-tabs .tab-body .program-card .program-thumb .level-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.instructor-profile .detail-tabs .tab-body .program-card .program-thumb:hover img {
  transform: scale(1.05);
}

.instructor-profile .detail-tabs .tab-body .program-card .program-body {
  padding: 24px;
}

.instructor-profile .detail-tabs .tab-body .program-card .program-body h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.instructor-profile .detail-tabs .tab-body .program-card .program-body .program-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.instructor-profile .detail-tabs .tab-body .program-card .program-body .program-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.instructor-profile .detail-tabs .tab-body .program-card .program-body .program-meta span i {
  color: var(--accent-color);
  font-size: 14px;
}

.instructor-profile .detail-tabs .tab-body .program-card .program-body .program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.instructor-profile .detail-tabs .tab-body .program-card .program-body .program-footer .program-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-color);
}

.instructor-profile .detail-tabs .tab-body .program-card .program-body .program-footer .enroll-link {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.instructor-profile .detail-tabs .tab-body .program-card .program-body .program-footer .enroll-link:hover {
  gap: 10px;
}

.instructor-profile .detail-tabs .tab-body .feedback-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.instructor-profile .detail-tabs .tab-body .feedback-list .feedback-card {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 24px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.instructor-profile .detail-tabs .tab-body .feedback-list .feedback-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--default-color), transparent 85%);
}

.instructor-profile .detail-tabs .tab-body .feedback-list .feedback-card .feedback-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.instructor-profile .detail-tabs .tab-body .feedback-list .feedback-card .feedback-top .feedback-stars i {
  color: #ffc107;
  font-size: 16px;
  margin-right: 2px;
}

.instructor-profile .detail-tabs .tab-body .feedback-list .feedback-card .feedback-top .quote-icon {
  font-size: 32px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.instructor-profile .detail-tabs .tab-body .feedback-list .feedback-card>p {
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.instructor-profile .detail-tabs .tab-body .feedback-list .feedback-card .feedback-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.instructor-profile .detail-tabs .tab-body .feedback-list .feedback-card .feedback-author .author-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.instructor-profile .detail-tabs .tab-body .feedback-list .feedback-card .feedback-author .author-info h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

.instructor-profile .detail-tabs .tab-body .feedback-list .feedback-card .feedback-author .author-info p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  font-style: normal;
}

.instructor-profile .side-panels {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.instructor-profile .side-panels .awards-panel,
.instructor-profile .side-panels .contact-panel {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.instructor-profile .side-panels .awards-panel>h4,
.instructor-profile .side-panels .contact-panel>h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.instructor-profile .side-panels .awards-panel>h4 i,
.instructor-profile .side-panels .contact-panel>h4 i {
  color: var(--accent-color);
  font-size: 20px;
}

.instructor-profile .side-panels .awards-panel .award-entry {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.instructor-profile .side-panels .awards-panel .award-entry:last-child {
  margin-bottom: 0;
}

.instructor-profile .side-panels .awards-panel .award-entry .award-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.instructor-profile .side-panels .awards-panel .award-entry .award-detail h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.instructor-profile .side-panels .awards-panel .award-entry .award-detail p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.instructor-profile .side-panels .awards-panel .award-entry:hover .award-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.instructor-profile .side-panels .contact-panel .contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.instructor-profile .side-panels .contact-panel .contact-row i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.instructor-profile .side-panels .contact-panel .contact-row span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.instructor-profile .side-panels .contact-panel .hours-block {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 85%));
  border-radius: 14px;
}

.instructor-profile .side-panels .contact-panel .hours-block h6 {
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.instructor-profile .side-panels .contact-panel .hours-block h6 i {
  color: var(--accent-color);
}

.instructor-profile .side-panels .contact-panel .hours-block p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Enroll Section
--------------------------------------------------------------*/
.enroll {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.enroll .section-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  margin-bottom: 20px;
}

.enroll .sidebar-content .sidebar-heading {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .enroll .sidebar-content .sidebar-heading {
    font-size: 1.8rem;
  }
}

.enroll .sidebar-content .sidebar-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 28px;
}

.enroll .sidebar-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.enroll .sidebar-image-wrapper img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.enroll .sidebar-image-wrapper .floating-stats-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.enroll .sidebar-image-wrapper .floating-stats-badge .badge-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.enroll .sidebar-image-wrapper .floating-stats-badge .badge-text {
  display: block;
  font-size: 0.8rem;
  margin-top: 4px;
  opacity: 0.85;
}

@media (max-width: 576px) {
  .enroll .sidebar-image-wrapper .floating-stats-badge {
    right: 10px;
    bottom: -15px;
    padding: 12px 18px;
  }

  .enroll .sidebar-image-wrapper .floating-stats-badge .badge-number {
    font-size: 1.3rem;
  }
}

.enroll .perk-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 6px 24px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.enroll .perk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px color-mix(in srgb, var(--default-color), transparent 86%);
}

.enroll .perk-card .perk-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.enroll .perk-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.enroll .perk-card p {
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.5;
}

.enroll .stats-strip {
  display: flex;
  justify-content: space-between;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 20px 28px;
  margin-top: 24px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 92%);
}

.enroll .stats-strip .strip-item {
  text-align: center;
  flex: 1;
}

.enroll .stats-strip .strip-item:not(:last-child) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.enroll .stats-strip .strip-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.enroll .stats-strip .strip-item span {
  display: block;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.enroll .form-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 16px 56px color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width: 768px) {
  .enroll .form-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
}

.enroll .form-card .form-card-header {
  margin-bottom: 32px;
}

.enroll .form-card .form-card-header h3 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}

.enroll .form-card .form-card-header p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.6;
}

.enroll .form-section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 14px;
  padding-left: 2px;
}

.enroll .php-email-form .form-control,
.enroll .php-email-form .form-select {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.enroll .php-email-form .form-control:focus,
.enroll .php-email-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  background-color: var(--surface-color);
}

.enroll .php-email-form .form-control::placeholder,
.enroll .php-email-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.enroll .php-email-form textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.enroll .schedule-selector .schedule-card {
  display: block;
  cursor: pointer;
}

.enroll .schedule-selector .schedule-card input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.enroll .schedule-selector .schedule-card .schedule-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: 14px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--surface-color);
  transition: all 0.3s ease;
  text-align: center;
}

.enroll .schedule-selector .schedule-card .schedule-card-inner i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.enroll .schedule-selector .schedule-card .schedule-card-inner span {
  font-size: 0.9rem;
  font-weight: 600;
}

.enroll .schedule-selector .schedule-card:hover .schedule-card-inner {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.enroll .schedule-selector .schedule-card input[type=radio]:checked+.schedule-card-inner {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.enroll .schedule-selector .schedule-card input[type=radio]:checked+.schedule-card-inner i {
  color: var(--accent-color);
}

.enroll .consent-area {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px 24px;
  border-radius: 14px;
}

.enroll .consent-area .form-check {
  margin-bottom: 12px;
}

.enroll .consent-area .form-check:last-child {
  margin-bottom: 0;
}

.enroll .consent-area .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.enroll .consent-area .form-check .form-check-label {
  font-size: 0.9rem;
  line-height: 1.5;
}

.enroll .consent-area .form-check .form-check-label a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: underline;
}

.enroll .consent-area .form-check .form-check-label a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.enroll .btn-submit {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 15px 36px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.enroll .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 55%);
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 10%);
  color: var(--contrast-color);
}

.enroll .btn-submit:active {
  transform: translateY(-1px);
}

.enroll .secure-note {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.enroll .secure-note i {
  color: var(--accent-color);
  margin-right: 4px;
}

/*--------------------------------------------------------------
# Courses Events Section
--------------------------------------------------------------*/
.courses-events .filter-bar {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  margin-bottom: 48px;
}

.courses-events .filter-bar .search-box {
  position: relative;
}

.courses-events .filter-bar .search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.courses-events .filter-bar .search-box .form-control {
  padding: 12px 20px 12px 44px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
}

.courses-events .filter-bar .search-box .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.courses-events .filter-bar .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses-events .filter-bar .form-select {
  padding: 12px 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
  background-color: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
}

.courses-events .filter-bar .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.courses-events .filter-bar .apply-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.courses-events .filter-bar .apply-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.courses-events .event-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.courses-events .event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.courses-events .event-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.courses-events .event-card.featured {
  border: 2px solid var(--accent-color);
  position: relative;
}

.courses-events .event-card.featured::before {
  content: "\f524";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.courses-events .event-card .card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.courses-events .event-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.courses-events .event-card .card-img-wrap .date-stamp {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--surface-color);
  color: var(--accent-color);
  border-radius: 12px;
  text-align: center;
  padding: 10px 14px;
  min-width: 56px;
  font-weight: 700;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 80%);
}

.courses-events .event-card .card-img-wrap .date-stamp .day {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.courses-events .event-card .card-img-wrap .date-stamp .month {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.courses-events .event-card .card-img-wrap .category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
  backdrop-filter: blur(8px);
}

.courses-events .event-card .card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.courses-events .event-card .card-body .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.courses-events .event-card .card-body .meta-row span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.courses-events .event-card .card-body .meta-row span i {
  color: var(--accent-color);
  font-size: 14px;
}

.courses-events .event-card .card-body .card-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.courses-events .event-card .card-body .card-heading a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.courses-events .event-card .card-body .card-heading a:hover {
  color: var(--accent-color);
}

.courses-events .event-card .card-body .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

.courses-events .event-card .card-body .card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-top: auto;
}

.courses-events .event-card .card-body .card-bottom .speaker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.courses-events .event-card .card-body .card-bottom .speaker .speaker-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.courses-events .event-card .card-body .card-bottom .speaker .speaker-info {
  display: flex;
  flex-direction: column;
}

.courses-events .event-card .card-body .card-bottom .speaker .speaker-info .speaker-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--heading-color);
}

.courses-events .event-card .card-body .card-bottom .speaker .speaker-info .speaker-role {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.courses-events .event-card .card-body .card-bottom .cost .amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-color);
}

.courses-events .event-card .card-body .card-bottom .cost .amount.free {
  font-size: 16px;
  background: color-mix(in srgb, #28a745, transparent 85%);
  color: #28a745;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
}

.courses-events .event-card .card-body .card-actions {
  display: flex;
  gap: 12px;
}

.courses-events .event-card .card-body .card-actions .action-primary {
  flex: 1;
  text-align: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  padding: 11px 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.courses-events .event-card .card-body .card-actions .action-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.courses-events .event-card .card-body .card-actions .action-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  transition: all 0.3s ease;
}

.courses-events .event-card .card-body .card-actions .action-ghost i {
  transition: transform 0.3s ease;
}

.courses-events .event-card .card-body .card-actions .action-ghost:hover {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.courses-events .event-card .card-body .card-actions .action-ghost:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .courses-events .event-card .card-body {
    padding: 20px;
  }

  .courses-events .event-card .card-body .card-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .courses-events .event-card .card-body .card-actions {
    flex-direction: column;
  }
}

.courses-events .page-nav {
  margin-top: 48px;
  margin-bottom: 64px;
}

.courses-events .page-nav .pagination {
  gap: 6px;
}

.courses-events .page-nav .pagination .page-item .page-link {
  color: var(--default-color);
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.courses-events .page-nav .pagination .page-item .page-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.courses-events .page-nav .pagination .page-item.active .page-link {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.courses-events .page-nav .pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: not-allowed;
}

.courses-events .upcoming-strip {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  margin-bottom: 64px;
}

.courses-events .upcoming-strip .strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.courses-events .upcoming-strip .strip-header .strip-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  letter-spacing: -0.3px;
}

.courses-events .upcoming-strip .strip-header .view-all-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.courses-events .upcoming-strip .strip-header .view-all-link:hover {
  gap: 10px;
}

.courses-events .upcoming-strip .mini-event {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--background-color);
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.courses-events .upcoming-strip .mini-event:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.courses-events .upcoming-strip .mini-event:hover .mini-arrow {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.courses-events .upcoming-strip .mini-event .mini-date {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 12px;
  text-align: center;
  padding: 12px 14px;
  min-width: 58px;
  font-weight: 700;
}

.courses-events .upcoming-strip .mini-event .mini-date .day {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.courses-events .upcoming-strip .mini-event .mini-date .month {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.courses-events .upcoming-strip .mini-event .mini-details {
  flex: 1;
}

.courses-events .upcoming-strip .mini-event .mini-details h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.courses-events .upcoming-strip .mini-event .mini-details h5 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.courses-events .upcoming-strip .mini-event .mini-details h5 a:hover {
  color: var(--accent-color);
}

.courses-events .upcoming-strip .mini-event .mini-details .mini-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}

.courses-events .upcoming-strip .mini-event .mini-details .mini-meta .mini-time {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  display: flex;
  align-items: center;
  gap: 4px;
}

.courses-events .upcoming-strip .mini-event .mini-details .mini-meta .mini-time i {
  color: var(--accent-color);
}

.courses-events .upcoming-strip .mini-event .mini-details .mini-meta .mini-price {
  font-weight: 700;
  color: var(--accent-color);
}

.courses-events .upcoming-strip .mini-event .mini-details .mini-meta .mini-price.free {
  color: #28a745;
}

.courses-events .upcoming-strip .mini-event .mini-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .courses-events .upcoming-strip {
    padding: 24px;
  }

  .courses-events .upcoming-strip .strip-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.courses-events .newsletter-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 25%));
  border-radius: 20px;
  padding: 48px;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.courses-events .newsletter-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border-radius: 50%;
}

.courses-events .newsletter-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 20%;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--contrast-color), transparent 93%);
  border-radius: 50%;
}

.courses-events .newsletter-banner .newsletter-content {
  position: relative;
  z-index: 1;
}

.courses-events .newsletter-banner .newsletter-content .newsletter-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  margin-bottom: 16px;
}

.courses-events .newsletter-banner .newsletter-content h4 {
  font-size: 26px;
  font-weight: 800;
  color: var(--contrast-color);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.courses-events .newsletter-banner .newsletter-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.courses-events .newsletter-banner .newsletter-form {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

.courses-events .newsletter-banner .newsletter-form .input-group {
  display: flex;
  gap: 12px;
  width: 100%;
}

.courses-events .newsletter-banner .newsletter-form .input-group input[type=email] {
  flex: 1;
  background: var(--contrast-color);
  color: var(--default-color);
  border: none;
  border-radius: 14px;
  padding: 16px 24px;
  font-size: 15px;
}

.courses-events .newsletter-banner .newsletter-form .input-group input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.courses-events .newsletter-banner .newsletter-form .input-group input[type=email]:focus {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--contrast-color), transparent 60%);
}

.courses-events .newsletter-banner .newsletter-form .input-group button {
  background: color-mix(in srgb, var(--contrast-color), transparent 15%);
  color: var(--accent-color);
  border: none;
  border-radius: 14px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.courses-events .newsletter-banner .newsletter-form .input-group button:hover {
  background: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 768px) {
  .courses-events .newsletter-banner .newsletter-form .input-group {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .courses-events .newsletter-banner {
    padding: 32px;
  }

  .courses-events .newsletter-banner .newsletter-content {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .courses-events .filter-bar {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .toggle-wrapper .pricing-toggle {
  background-color: var(--surface-color);
  padding: 8px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .toggle-wrapper .pricing-toggle span {
  font-size: 0.95rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pricing .toggle-wrapper .pricing-toggle span.active {
  color: var(--accent-color);
  font-weight: 700;
}

.pricing .toggle-wrapper .pricing-toggle span .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 4px;
}

.pricing .toggle-wrapper .pricing-toggle .form-check-input {
  width: 3rem;
  height: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border: none;
  cursor: pointer;
}

.pricing .toggle-wrapper .pricing-toggle .form-check-input:checked {
  background-color: var(--accent-color);
}

.pricing .toggle-wrapper .pricing-toggle .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 75%);
  border-color: transparent;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing .pricing-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.pricing .pricing-item.featured {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: scale(1.05);
  z-index: 2;
}

.pricing .pricing-item.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 24px 60px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.pricing .pricing-item.featured .featured-ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  transform: rotate(45deg);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding: 4px 40px;
}

.pricing .pricing-item.featured .featured-ribbon span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--contrast-color);
}

.pricing .pricing-item.featured .plan-icon {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.pricing .pricing-item.featured .plan-icon i {
  color: var(--contrast-color);
}

.pricing .pricing-item.featured .pricing-header .pricing-category {
  color: var(--contrast-color);
}

.pricing .pricing-item.featured .pricing-header .price-wrap .price {
  color: var(--contrast-color);
}

.pricing .pricing-item.featured .pricing-header .price-wrap .price span {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.pricing .pricing-item.featured .pricing-header .price-wrap .price sup {
  color: var(--contrast-color);
}

.pricing .pricing-item.featured .pricing-header .pricing-description {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.pricing .pricing-item.featured .pricing-features .feature-list li {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-item.featured .pricing-features .feature-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-item.featured .pricing-features .feature-list li strong {
  color: var(--contrast-color);
}

.pricing .pricing-item.featured .pricing-cta .btn-accent {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-color: var(--contrast-color);
}

.pricing .pricing-item.featured .pricing-cta .btn-accent:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: scale(1.03);
}

.pricing .pricing-item .plan-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pricing .pricing-item .plan-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.pricing .pricing-item .pricing-header {
  margin-bottom: 24px;
}

.pricing .pricing-item .pricing-header .pricing-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.pricing .pricing-item .pricing-header .price-wrap {
  margin-bottom: 8px;
}

.pricing .pricing-item .pricing-header .price-wrap .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: -1px;
}

.pricing .pricing-item .pricing-header .price-wrap .price sup {
  font-size: 1.25rem;
  position: relative;
  top: -1rem;
  font-weight: 600;
}

.pricing .pricing-item .pricing-header .price-wrap .price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.pricing .pricing-item .pricing-header .price-wrap .yearly {
  display: none;
}

.pricing .pricing-item .pricing-header .pricing-description {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 0;
  line-height: 1.6;
}

.pricing .pricing-item.yearly-active .pricing-header .price-wrap .monthly {
  display: none;
}

.pricing .pricing-item.yearly-active .pricing-header .price-wrap .yearly {
  display: block;
}

.pricing .pricing-item .pricing-features {
  flex-grow: 1;
  margin-bottom: 28px;
}

.pricing .pricing-item .pricing-features .feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pricing .pricing-item .pricing-features .feature-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--default-color);
  line-height: 1.5;
}

.pricing .pricing-item .pricing-features .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.pricing .pricing-item .pricing-features .feature-list li strong {
  font-weight: 700;
}

.pricing .pricing-item .pricing-features .feature-list li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .pricing-item .pricing-features .feature-list li.disabled i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing .pricing-item .pricing-cta {
  margin-top: auto;
}

.pricing .pricing-item .pricing-cta .btn-outline {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing .pricing-item .pricing-cta .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.03);
}

.pricing .pricing-item .pricing-cta .btn-accent {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.pricing .guarantee-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.pricing .guarantee-note i {
  font-size: 1.15rem;
  color: var(--accent-color);
}

.pricing.yearly-active .toggle-wrapper .pricing-toggle .monthly {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.pricing.yearly-active .toggle-wrapper .pricing-toggle .yearly {
  color: var(--accent-color);
  font-weight: 700;
}

.pricing.yearly-active .pricing-item .price-wrap .monthly {
  display: none;
}

.pricing.yearly-active .pricing-item .price-wrap .yearly {
  display: block;
}

@media (max-width: 992px) {
  .pricing .pricing-item.featured {
    transform: scale(1);
  }

  .pricing .pricing-item.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .pricing .pricing-item {
    padding: 32px 24px;
  }

  .pricing .pricing-header .price-wrap .price {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .pricing .toggle-wrapper .pricing-toggle {
    flex-direction: column;
    border-radius: 16px;
    padding: 16px 24px;
    gap: 8px;
  }

  .pricing .toggle-wrapper .pricing-toggle .form-check {
    margin: 4px 0;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 6%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 5%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact .form-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color) 6%, transparent), 0 2px 4px color-mix(in srgb, var(--default-color) 4%, transparent);
  height: 100%;
}

.contact .form-card .form-header {
  margin-bottom: 32px;
}

.contact .form-card .form-header .badge-label {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 24px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.contact .form-card .form-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact .form-card .form-header p {
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.6;
}

.contact .form-card label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}

.contact .form-card .form-control {
  height: 48px;
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color) 20%, transparent);
  border-radius: 8px;
  background: var(--surface-color);
  font-size: 15px;
  color: var(--default-color);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact .form-card .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.contact .form-card .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color) 40%, transparent);
}

.contact .form-card textarea.form-control {
  height: 150px;
  resize: none;
}

.contact .form-card .btn-send {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  color: var(--contrast-color);
  border: none;
  padding: 14px 32px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color) 30%, transparent);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact .form-card .btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.contact .form-card .btn-send:active {
  transform: translateY(0);
}

.contact .form-card .btn-send i {
  font-size: 16px;
  transition: transform 0.3s;
}

.contact .form-card .btn-send:hover i {
  transform: translateX(4px);
}

.contact .sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.contact .info-tile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
}

.contact .info-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color) 8%, transparent);
  border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.contact .info-tile .tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .info-tile .tile-icon i {
  font-size: 22px;
  color: var(--contrast-color);
}

.contact .info-tile .tile-text h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.contact .info-tile .tile-text p {
  margin-bottom: 2px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
  line-height: 1.6;
}

.contact .info-tile .tile-text p:last-child {
  margin-bottom: 0;
}

.contact .map-embed {
  flex: 1;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

@media (max-width: 992px) {
  .contact .form-card {
    padding: 32px;
    margin-bottom: 16px;
  }

  .contact .sidebar-info {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .contact .form-card {
    padding: 24px;
  }

  .contact .form-card .form-header {
    margin-bottom: 24px;
  }

  .contact .form-card .form-header h3 {
    font-size: 24px;
  }

  .contact .form-card .btn-send {
    width: 100%;
    justify-content: center;
  }

  .contact .map-embed {
    min-height: 200px;
  }

  .contact .map-embed iframe {
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .contact .form-card {
    padding: 20px;
  }

  .contact .info-tile {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .terms-intro {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-of-service .terms-intro .revision-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.terms-of-service .terms-intro .revision-tag i {
  font-size: 1rem;
}

.terms-of-service .terms-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.terms-of-service .terms-intro p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1.05rem;
  margin: 0;
}

.terms-of-service .terms-intro .utility-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  padding: 8px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  margin-left: 10px;
  transition: all 0.3s;
}

.terms-of-service .terms-intro .utility-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.terms-of-service .terms-sidebar {
  position: sticky;
  top: 100px;
}

.terms-of-service .terms-sidebar .sidebar-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-color);
}

.terms-of-service .terms-sidebar .toc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.terms-of-service .terms-sidebar .toc-list li {
  margin-bottom: 2px;
}

.terms-of-service .terms-sidebar .toc-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s;
}

.terms-of-service .terms-sidebar .toc-list li a .toc-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  min-width: 24px;
  font-family: var(--heading-font);
}

.terms-of-service .terms-sidebar .toc-list li a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.terms-of-service .terms-sidebar .sidebar-cta {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.terms-of-service .terms-sidebar .sidebar-cta .cta-icon {
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.terms-of-service .terms-sidebar .sidebar-cta .cta-icon i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.terms-of-service .terms-sidebar .sidebar-cta h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.terms-of-service .terms-sidebar .sidebar-cta p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 12px;
}

.terms-of-service .terms-sidebar .sidebar-cta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: gap 0.3s;
}

.terms-of-service .terms-sidebar .sidebar-cta .cta-link:hover {
  gap: 10px;
}

@media (max-width: 992px) {
  .terms-of-service .terms-sidebar {
    position: static;
    margin-bottom: 10px;
  }
}

.terms-of-service .terms-main .term-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 24px;
  transition: box-shadow 0.3s;
}

.terms-of-service .terms-main .term-card:hover {
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.terms-of-service .terms-main .term-card:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-main .term-card .card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.terms-of-service .terms-main .term-card .card-heading .heading-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  font-family: var(--heading-font);
}

.terms-of-service .terms-main .term-card .card-heading h3 {
  font-size: 1.4rem;
  margin: 0;
}

.terms-of-service .terms-main .term-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.75;
  margin-bottom: 16px;
}

.terms-of-service .terms-main .term-card p:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-main .term-card .note-banner {
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 10px;
}

.terms-of-service .terms-main .term-card .note-banner p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
}

.terms-of-service .terms-main .term-card .note-info {
  background-color: color-mix(in srgb, var(--accent-color), transparent 93%);
  border-left: 3px solid var(--accent-color);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.terms-of-service .terms-main .term-card .note-info>i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-of-service .terms-main .term-card .note-warning {
  background-color: color-mix(in srgb, #ffc107, transparent 92%);
  border-top: 3px solid color-mix(in srgb, #ffc107, #000 15%);
}

.terms-of-service .terms-main .term-card .note-warning .banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.terms-of-service .terms-main .term-card .note-warning .banner-header i {
  color: color-mix(in srgb, #ffc107, #000 20%);
  font-size: 1.2rem;
}

.terms-of-service .terms-main .term-card .note-warning .banner-header strong {
  font-size: 1rem;
  color: var(--heading-color);
}

.terms-of-service .terms-main .term-card .note-warning p {
  font-size: 0.93rem;
  margin: 0;
}

.terms-of-service .terms-main .term-card .check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.terms-of-service .terms-main .term-card .check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .terms-main .term-card .check-list li:last-child {
  border-bottom: none;
}

.terms-of-service .terms-main .term-card .check-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.terms-of-service .terms-main .term-card .restricted-grid {
  margin-top: 16px;
}

.terms-of-service .terms-main .term-card .restricted-grid .restricted-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background-color: color-mix(in srgb, #dc3545, transparent 96%);
  border-radius: 8px;
  margin-bottom: 10px;
}

.terms-of-service .terms-main .term-card .restricted-grid .restricted-item:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-main .term-card .restricted-grid .restricted-item i {
  color: #dc3545;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.terms-of-service .terms-main .term-card .restricted-grid .restricted-item span {
  font-size: 0.93rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.terms-of-service .terms-main .term-card .warranty-box {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 10px;
}

.terms-of-service .terms-main .term-card .warranty-box h6 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--heading-color);
}

.terms-of-service .terms-main .term-card .warranty-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .terms-main .term-card .warranty-box ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.93rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.terms-of-service .terms-main .term-card .warranty-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-main .term-card .warranty-box ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

@media (max-width: 576px) {
  .terms-of-service .terms-main .term-card {
    padding: 22px 18px;
  }

  .terms-of-service .terms-main .term-card .card-heading {
    gap: 12px;
  }

  .terms-of-service .terms-main .term-card .card-heading .heading-num {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .terms-of-service .terms-main .term-card .card-heading h3 {
    font-size: 1.2rem;
  }
}

.terms-of-service .terms-footer {
  margin-top: 60px;
}

.terms-of-service .terms-footer .footer-card {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  border-radius: 16px;
  padding: 50px 40px;
  color: var(--contrast-color);
}

.terms-of-service .terms-footer .footer-card .footer-icon {
  width: 64px;
  height: 64px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.terms-of-service .terms-footer .footer-card .footer-icon i {
  font-size: 1.6rem;
  color: var(--contrast-color);
}

.terms-of-service .terms-footer .footer-card h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.terms-of-service .terms-footer .footer-card p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 24px;
  font-size: 1rem;
}

.terms-of-service .terms-footer .footer-card .footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.terms-of-service .terms-footer .footer-card .footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, #000, transparent 70%);
}

@media (max-width: 576px) {
  .terms-of-service .terms-footer .footer-card {
    padding: 35px 25px;
  }

  .terms-of-service .terms-footer .footer-card h4 {
    font-size: 1.3rem;
  }
}

@media print {

  .terms-of-service .terms-footer,
  .terms-of-service .terms-sidebar .sidebar-cta,
  .terms-of-service .terms-intro .utility-link {
    display: none;
  }

  .terms-of-service .term-card {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .sidebar-nav {
  position: sticky;
  top: 100px;
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .sidebar-nav .nav-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .sidebar-nav .nav-header i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.privacy .sidebar-nav .nav-header span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.privacy .sidebar-nav .nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.privacy .sidebar-nav .nav-links li {
  margin-bottom: 8px;
}

.privacy .sidebar-nav .nav-links li:last-child {
  margin-bottom: 0;
}

.privacy .sidebar-nav .nav-links li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--default-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.privacy .sidebar-nav .nav-links li a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateX(4px);
}

.privacy .sidebar-nav .effective-date {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--accent-color);
}

.privacy .sidebar-nav .effective-date i {
  font-size: 1rem;
}

.privacy .policy-intro-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 16px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .policy-intro-card .intro-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 12px;
}

.privacy .policy-intro-card .intro-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.privacy .policy-intro-card p {
  margin: 0;
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.privacy .policy-section {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .policy-section:last-child {
  border-bottom: none;
}

.privacy .policy-section .section-number {
  flex-shrink: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.privacy .policy-section .section-content {
  flex: 1;
}

.privacy .policy-section .section-content h2 {
  font-size: 1.6rem;
  color: var(--heading-color);
  margin-bottom: 16px;
  font-weight: 600;
}

.privacy .policy-section .section-content h4 {
  font-size: 1.15rem;
  color: var(--heading-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.privacy .policy-section .section-content p {
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-section .section-content p:last-child {
  margin-bottom: 0;
}

.privacy .policy-section .section-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy .policy-section .section-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.privacy .policy-section .section-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.privacy .policy-section .section-content ul li:last-child {
  margin-bottom: 0;
}

.privacy .info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.privacy .info-cards .info-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.privacy .info-cards .info-card:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-4px);
}

.privacy .info-cards .info-card .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 10px;
  margin-bottom: 16px;
}

.privacy .info-cards .info-card .card-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.privacy .info-cards .info-card h4 {
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .privacy .info-cards {
    grid-template-columns: 1fr;
  }
}

.privacy .usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.privacy .usage-grid .usage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy .usage-grid .usage-item:hover {
  border-color: var(--accent-color);
}

.privacy .usage-grid .usage-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.privacy .usage-grid .usage-item span {
  font-size: 0.9rem;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .usage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.privacy .sharing-block {
  margin-top: 24px;
  padding: 24px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border-left: 3px solid var(--accent-color);
}

.privacy .sharing-block h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.privacy .sharing-block h4 i {
  color: var(--accent-color);
}

.privacy .sharing-block p {
  margin-bottom: 16px;
}

.privacy .sharing-block ul {
  margin-top: 16px;
}

.privacy .security-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.privacy .security-features .security-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.privacy .security-features .security-item:hover {
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .security-features .security-item .security-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 12px;
}

.privacy .security-features .security-item .security-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.privacy .security-features .security-item .security-text h5 {
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 4px;
  font-weight: 600;
}

.privacy .security-features .security-item .security-text p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.privacy .rights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.privacy .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.privacy .rights-list .right-item i {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-top: 4px;
}

.privacy .rights-list .right-item div strong {
  display: block;
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.privacy .rights-list .right-item div span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 576px) {
  .privacy .rights-list {
    grid-template-columns: 1fr;
  }
}

.privacy .contact-section .contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.privacy .contact-section .contact-cards .contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.privacy .contact-section .contact-cards .contact-card:hover {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.privacy .contact-section .contact-cards .contact-card i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.privacy .contact-section .contact-cards .contact-card span {
  font-size: 0.95rem;
  color: var(--default-color);
}

@media (max-width: 576px) {
  .privacy .contact-section .contact-cards {
    flex-direction: column;
  }

  .privacy .contact-section .contact-cards .contact-card {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .privacy .sidebar-nav {
    position: static;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .privacy .policy-intro-card {
    flex-direction: column;
    text-align: center;
  }

  .privacy .policy-intro-card .intro-icon {
    margin: 0 auto;
  }

  .privacy .policy-section {
    flex-direction: column;
    gap: 16px;
  }

  .privacy .policy-section .section-number {
    font-size: 2rem;
  }

  .privacy .policy-section .section-content h2 {
    font-size: 1.4rem;
  }
}

@media print {
  .privacy .sidebar-nav {
    display: none;
  }

  .privacy .policy-section {
    page-break-inside: avoid;
    border: none;
    padding: 20pt 0;
  }

  .privacy .info-cards,
  .privacy .usage-grid,
  .privacy .rights-list {
    display: block;
  }

  .privacy .info-card,
  .privacy .usage-item,
  .privacy .right-item {
    margin-bottom: 10pt;
    box-shadow: none;
    border: 1pt solid #ccc;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding: 100px 0;
}

.error-404 .error-visual {
  text-align: center;
}

.error-404 .error-visual .glitch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.error-404 .error-visual .glitch-wrapper .digit {
  font-size: 9rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1;
  color: var(--accent-color);
}

.error-404 .error-visual .glitch-wrapper .digit.digit-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  animation: floatBounce 3s ease-in-out infinite;
}

.error-404 .error-visual .glitch-wrapper .digit.digit-circle i {
  color: var(--accent-color);
}

.error-404 .error-visual .decorative-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.error-404 .error-visual .decorative-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.error-404 .error-visual .decorative-dots span:nth-child(2) {
  animation-delay: 0.3s;
  background-color: var(--accent-color);
}

.error-404 .error-visual .decorative-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

.error-404 .error-info .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.error-404 .error-info h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.error-404 .error-info p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.error-404 .error-info .suggestions {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.error-404 .error-info .suggestions li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.error-404 .error-info .suggestions li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.error-404 .error-info .action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.error-404 .error-info .action-buttons .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.error-404 .error-info .action-buttons .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.error-404 .error-info .action-buttons .btn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.error-404 .error-info .action-buttons .btn-support:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@media (max-width: 992px) {
  .error-404 .error-visual {
    margin-bottom: 2rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 7rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 110px;
    height: 110px;
    font-size: 3.5rem;
  }

  .error-404 .error-info {
    text-align: center;
  }

  .error-404 .error-info h2 {
    font-size: 1.85rem;
  }

  .error-404 .error-info .suggestions {
    display: inline-block;
    text-align: left;
  }

  .error-404 .error-info .action-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 5.5rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 90px;
    height: 90px;
    font-size: 2.8rem;
  }

  .error-404 .error-info h2 {
    font-size: 1.6rem;
  }

  .error-404 .error-info p {
    font-size: 0.95rem;
  }

  .error-404 .error-info .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .error-404 .error-info .action-buttons .btn-home,
  .error-404 .error-info .action-buttons .btn-support {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 4.5rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 72px;
    height: 72px;
    font-size: 2.2rem;
  }

  .error-404 .error-visual .decorative-dots {
    margin-top: 1.25rem;
  }

  .error-404 .error-visual .decorative-dots span {
    width: 8px;
    height: 8px;
  }

  .error-404 .error-info h2 {
    font-size: 1.35rem;
  }

  .error-404 .error-info .suggestions li {
    font-size: 0.88rem;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}