:root {
  --bas-primary: #004487;
  --bas-primary-dark: #003565;
  --bas-primary-light: #eaf3fb;
  --bas-secondary: #0b1f33;
  --bas-secondary-light: #eef4f9;
  --bas-success: #56ff5d;
  --bas-success-light: #7de4a2;
  --bas-accent: #f4b942;
  --bas-accent-light: #fff7e3;
  --bas-heading: #102a43;
  --bas-text: #344054;
  --bas-text-light: #667085;
  --bas-text-muted: #98a2b3;
  --bas-white: #fff;
  --bas-bg-light: #f7f9fc;
  --bas-bg-soft: #f1f6fa;
  --bas-border: #dfe7ef;
  --bas-border-light: #edf1f5;
  --bas-shadow-sm: 0 2px 8px rgba(16, 42, 67, .06);
  --bas-shadow: 0 10px 30px rgba(16, 42, 67, .08);
  --bas-shadow-lg: 0 20px 50px rgba(16, 42, 67, .14);
  --bas-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --bas-radius: 16px;
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--bas-text);
  background: #fff;
  overflow-x: hidden
}

body.menu-open {
  overflow: hidden
}

a {
  text-decoration: none
}

img {
  max-width: 100%
}

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

.section-padding {
  padding: 100px 0
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--bas-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin-bottom: 15px
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--bas-primary)
}

.section-label-light {
  color: #b9d8f2
}

.section-label-light::before {
  background: #b9d8f2
}

.section-title {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 20px
}

.section-description {
  color: var(--bas-text-light);
  line-height: 1.75;
  max-width: 680px
}

.btn {
  border-radius: 8px;
  font-weight: 600;
  transition: var(--bas-transition)
}

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

.btn-primary:hover {
  background: var(--bas-primary-dark);
  border-color: var(--bas-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 68, 135, .22)
}

.btn-outline-primary {
  color: var(--bas-primary);
  border-color: var(--bas-primary)
}

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

/* LOADER */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bas-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility .6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Animated circle */
.loader-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, .15);
  border-top-color: rgba(255, 255, 255, .95);
  border-right-color: rgba(255, 255, 255, .55);
  border-radius: 50%;
  animation: loaderSpin 1.1s linear infinite;
}

/* Small decorative dot */
.loader-ring::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(255,255,255,.8);
}

/* BAS logo */
.loader-logo {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 1;
  animation: loaderLogo 1.5s ease-in-out infinite;
}

/* Subtitle */
.loader-text {
  position: absolute;
  top: 145px;
  width: 300px;
  text-align: center;
  color: rgba(255, 255, 255, .65);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Animations */
@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderLogo {
  0%,
  100% {
    opacity: .65;
    transform: scale(.97);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--bas-transition)
}

.navbar {
  min-height: 88px;
  background: rgba(255, 255, 255, .97);
  transition: var(--bas-transition)
}

.site-header.scrolled .navbar {
  min-height: 72px;
  box-shadow: 0 4px 25px rgba(16, 42, 67, .08)
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bas-heading)
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bas-primary);
  color: #fff;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: var(--bas-transition)
}

.site-header.scrolled .brand-logo {
  width: 42px;
  height: 42px
}

.brand-text {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700
}

.nav-link {
  color: var(--bas-text);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 13px !important;
  position: relative
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 3px;
  height: 2px;
  background: var(--bas-primary);
  transform: scaleX(0);
  transition: transform .25s ease
}

.nav-link:hover,
.nav-link.active {
  color: var(--bas-primary)
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1)
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important
}

/* HERO */
.hero-slider {
  height: 850px;
  position: relative;
  overflow: hidden;
  background: var(--bas-secondary)
}

.hero-slide {
  height: 850px;
  background-size: cover;
  background-position: center;
  position: relative
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 22, 38, .94) 0%, rgba(5, 22, 38, .76) 42%, rgba(5, 22, 38, .25) 100%), linear-gradient(0deg, rgba(5, 22, 38, .55), transparent 50%)
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 68, 135, .25), transparent 45%);
  pointer-events: none
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 790px;
  padding-top: 90px
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #b9d8f2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  margin-bottom: 25px
}

.hero-eyebrow::before {
  content: "";
  width: 35px;
  height: 2px;
  background: var(--bas-accent)
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(50px, 6vw, 82px);
  line-height: 1.01;
  letter-spacing: -3px;
  margin: 0 0 27px;
  font-weight: 700
}

.hero-content h1 span {
  color: #b9d8f2
}

.hero-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 35px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.hero-actions .btn {
  padding: 14px 26px;
  border-radius: 7px
}

.hero-bottom {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 0;
  background: linear-gradient(transparent, rgba(5, 22, 38, .9))
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.hero-location span:first-child {
  color: #fff
}

.hero-location i {
  color: var(--bas-accent)
}

.hero-navigation {
  display: flex;
  align-items: center;
  gap: 12px
}

.hero-pagination {
  position: static !important;
  width: auto !important
}

.hero-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, .45);
  opacity: 1
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--bas-accent);
  width: 27px;
  border-radius: 5px
}

.hero-prev,
.hero-next {
  position: static;
  width: 43px;
  height: 43px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #fff;
  transition: .3s
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5)
}

.hero-prev::after,
.hero-next::after {
  font-size: 12px;
  font-weight: 700
}

.swiper-slide-active .hero-content {
  animation: heroContent .9s ease both
}

@keyframes heroContent {
  from {
    opacity: 0;
    transform: translateY(35px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ABOUT */
.about-section {
  background: #fff
}

.about-image-wrap {
  position: relative;
  padding-right: 45px;
  padding-bottom: 45px
}

.about-image-wrap img {
  width: 100%;
  height: 540px !important;
  object-fit: cover;
  border-radius: 18px
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75%;
  height: 75%;
  border: 1px solid var(--bas-primary);
  border-radius: 18px;
  z-index: 0
}

.about-image {
  position: relative;
  z-index: 1
}

.about-image-card {
  position: absolute;
  z-index: 3;
  left: -25px;
  bottom: 20px;
  background: var(--bas-primary);
  color: #fff;
  padding: 23px 27px;
  border-radius: 12px;
  box-shadow: var(--bas-shadow-lg)
}

.about-image-card span,
.about-image-card small {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  opacity: .7
}

.about-image-card strong {
  display: block;
  font-size: 19px;
  margin: 5px 0
}

.about-mini-card {
  border: 1px solid var(--bas-border);
  padding: 19px;
  border-radius: 10px;
  transition: .3s
}

.about-mini-card:hover {
  border-color: var(--bas-primary);
  transform: translateY(-3px);
  box-shadow: var(--bas-shadow-sm)
}

.about-mini-card span {
  display: block;
  color: var(--bas-text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px
}

.about-mini-card strong {
  color: var(--bas-heading);
  font-size: 14px
}

/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
  background:
          linear-gradient(120deg, rgba(0, 68, 135, .98), rgba(0, 68, 135, .84)),
          radial-gradient(circle at top right, #1982c4, transparent 45%);
  color: #fff;
  padding: 160px 0 85px;
  position: relative;
  overflow: hidden;
}

.page-hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 50%;
  right: -180px;
  top: -240px;
}

.page-hero:after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  right: -80px;
  top: -150px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -3px;
  margin-bottom: 25px;
  color: var(--bas-white);
}

.page-hero p {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
}


/* =====================================
          WORKSHOP HERO
       ===================================== */
.workshop-hero {
  padding: 140px 0 90px;
  background:
          linear-gradient(135deg,
          #f6faff 0%,
          #ffffff 55%,
          #edf5fc 100%);
}

.category-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bas-primary-light);
  color: var(--bas-primary);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 20px;
}

.category-label i {
  font-size: 13px;
}

.workshop-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
  max-width: 900px;
  margin-bottom: 22px;
}

.workshop-intro {
  max-width: 760px;
  color: var(--bas-text);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* =====================================
META
===================================== */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--bas-text);
}

.hero-meta-item i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--bas-primary);
  border: 1px solid var(--bas-border);
  border-radius: 9px;
  font-size: 17px;
}

.hero-meta-item strong {
  display: block;
  color: var(--dark);
  font-size: 13px;
  margin-bottom: 2px;
}


/* =========================================================
   STRATEGIC PARTNERS
========================================================= */

.partner-section {
  position: relative;
  padding: 105px 0 100px;
  background: var(--bas-bg-soft);
  overflow: hidden;
}

.partner-bg-text {
  position: absolute;
  right: -20px;
  bottom: -80px;

  font-size: 260px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -15px;

  color: rgba(15, 39, 67, .025);

  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.partner-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADING
========================================================= */

.partner-heading {
  position: relative;
  z-index: 2;
  max-width: 500px;
}


.partner-eyebrow {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;

  color: var(--bas-primary);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}


.partner-eyebrow::before {
  content: "";

  width: 32px;
  height: 1px;

  background: var(--bas-primary);
}


.partner-heading h2 {
  margin: 0;

  color: var(--bas-text);

  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.8px;
}


.partner-heading h2 span {
  color: var(--bas-primary);
}


.partner-heading p {
  max-width: 400px;

  margin: 25px 0 0;

  color: var(--bas-text-muted);

  font-size: 14px;
  line-height: 1.8;
}


/* =========================================================
   PARTNERS
========================================================= */

.partner-list {
  position: relative;
  z-index: 2;

  margin-top: 10px;

  border-top: 1px solid var(--bas-border-light);
}


.partner-row {
  position: relative;

  display: grid;
  grid-template-columns: 70px 1fr 45px;
  align-items: center;

  min-height: 125px;

  border-bottom: 1px solid var(--bas-border-light);

  transition:
          padding .35s ease,
          background-color .35s ease;
}


.partner-row:hover {
  padding-left: 15px;
  background: rgba(255,255,255,.55);
}


/* =========================================================
   NUMBER
========================================================= */

.partner-index {
  align-self: stretch;

  display: flex;
  align-items: center;

  color: var(--bas-text-muted);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}


/* =========================================================
   PARTNER INFO
========================================================= */

.partner-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.partner-info strong {
  color: var(--bas-text);

  font-size: 30px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: -1px;

  transition: color .3s ease;
}


.partner-row:hover .partner-info strong {
  color: var(--bas-primary);
}


.partner-info span {
  color: var(--bas-text-muted);

  font-size: 10px;
  font-weight: 600;
  letter-spacing: .4px;
}


/* =========================================================
   ARROW
========================================================= */

.partner-mark {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--bas-border-light);
  border-radius: 50%;

  color: var(--bas-text-muted);

  font-size: 11px;

  transition:
          all .3s ease;
}


.partner-row:hover .partner-mark {
  color: #fff;
  background: var(--bas-primary);
  border-color: var(--bas-primary);

  transform: rotate(45deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .partner-section {
    padding: 75px 0;
  }

  .partner-heading {
    margin-bottom: 50px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

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

  .partner-heading h2 {
    font-size: 36px;
  }

  .partner-heading p {
    font-size: 13px;
  }

  .partner-row {
    grid-template-columns: 50px 1fr 40px;
    min-height: 105px;
  }

  .partner-info strong {
    font-size: 25px;
  }


  .partner-bg-text {
    right: -15px;
    bottom: -40px;
    font-size: 160px;
    letter-spacing: -10px;
  }

}

/* OFFERS */
.offers-section {
  background: var(--bas-bg-light)
}

.offer-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--bas-border-light);
  border-radius: 14px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--bas-transition)
}

.offer-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--bas-primary-light);
  transition: .4s
}

.offer-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--bas-shadow-lg);
  border-color: transparent
}

.offer-card:hover::after {
  transform: scale(1.3)
}

.offer-number {
  font-size: 12px;
  color: var(--bas-primary);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 55px
}

.offer-card h4 {
  font-size: 21px;
  margin-bottom: 12px
}

.offer-card p {
  color: var(--bas-text-light);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 360px
}

.offer-card a {
  color: var(--bas-primary);
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 2
}

/* WORKSHOPS */
.workshops-section {
  background: #fff
}

.workshop-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px
}

.filter-btn {
  border: 1px solid var(--bas-border);
  background: #fff;
  color: var(--bas-text-light);
  padding: 9px 17px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  transition: .25s
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--bas-primary);
  border-color: var(--bas-primary);
  color: #fff
}

.workshop-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--bas-border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: .35s
}

.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--bas-shadow-lg)
}

.workshop-image {
  height: 245px;
  background: linear-gradient(135deg, #dcebf7, #b9d8f2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.workshop-image.ai {
  background: linear-gradient(135deg, #004487, #0b1f33)
}

.workshop-image.leadership {
  background: linear-gradient(135deg, #0b1f33, #004487)
}

.workshop-image::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  top: -170px;
  right: -90px
}

.workshop-image::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  bottom: -140px;
  left: -70px
}

.workshop-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: rgba(255, 255, 255, .92);
  color: var(--bas-primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 7px 11px;
  border-radius: 30px
}

.workshop-image-content {
  position: relative;
  z-index: 2
}

.workshop-image-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 38px;
  backdrop-filter: blur(6px)
}

.workshop-body {
  padding: 27px
}

.workshop-date-widget {
  font-size: 10px;
  color: var(--bas-primary);
  font-weight: 800;
  letter-spacing: 1.3px;
  margin-bottom: 10px
}

.workshop-body h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px
}

.workshop-body>p {
  color: var(--bas-text-light);
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 20px
}

.workshop-meta {
  border-top: 1px solid var(--bas-border-light);
  padding-top: 17px;
  display: grid;
  gap: 9px
}

.workshop-meta div {
  font-size: 11px;
  color: var(--bas-text-light)
}

.workshop-meta i {
  color: var(--bas-primary);
  width: 18px
}

.workshop-footer {
  border-top: 1px solid var(--bas-border-light);
  margin-top: 20px;
  padding-top: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between
}

.workshop-footer small {
  display: block;
  color: var(--bas-text-muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.workshop-footer strong {
  display: block;
  color: var(--bas-heading);
  font-size: 20px;
  margin-top: 3px
}

.workshop-footer .btn {
  font-size: 11px;
  padding: 9px 15px
}

.workshop-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 8px
}

.workshop-prev,
.workshop-next {
  width: 44px;
  height: 44px;
  border: 1px solid var(--bas-border);
  background: #fff;
  color: var(--bas-primary);
  border-radius: 50%;
  transition: .3s
}

.workshop-prev:hover,
.workshop-next:hover {
  background: var(--bas-primary);
  color: #fff;
  border-color: var(--bas-primary)
}

/* WHY */
.why-section {
  background: linear-gradient(135deg, var(--bas-primary-dark), var(--bas-secondary));
  padding: 105px 0;
  position: relative;
  overflow: hidden
}

.why-section::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  right: -320px;
  top: -280px
}

.why-title {
  color: #fff;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px
}

.why-description {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.8;
  max-width: 450px
}

.value-card {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .05);
  padding: 26px;
  border-radius: 13px;
  transition: .3s;
  backdrop-filter: blur(5px)
}

.value-card:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-4px)
}

.value-card>span {
  font-size: 10px;
  color: var(--bas-accent);
  font-weight: 800;
  letter-spacing: 1px
}

.value-card h4 {
  color: #fff;
  font-size: 19px;
  margin: 22px 0 8px
}

.value-card p {
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  line-height: 1.7;
  margin: 0
}

/* TEAM */
.team-section {
  background: var(--bas-bg-light)
}

.team-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--bas-border-light);
  border-radius: 14px;
  overflow: hidden;
  transition: .35s
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bas-shadow-lg)
}

.team-image {
  height: 320px;
  background: #eaf3fb;
  position: relative;
  overflow: hidden
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.team-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bas-primary);
  font-size: 70px
}

.team-body {
  padding: 22px
}

.team-body h4 {
  font-size: 17px;
  margin-bottom: 4px
}

.team-body p {
  color: var(--bas-text-muted);
  font-size: 11px;
  margin-bottom: 15px
}

.team-body a {
  font-size: 11px;
  color: var(--bas-primary);
  font-weight: 700
}

.team-navigation {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px
}

.team-prev,
.team-next {
  width: 43px;
  height: 43px;
  border: 1px solid var(--bas-border);
  background: #fff;
  color: var(--bas-primary);
  border-radius: 50%;
  transition: .3s
}

.team-prev:hover,
.team-next:hover {
  background: var(--bas-primary);
  color: #fff
}

/* FAQ */
.faq-section {
  background: #fff
}

.accordion-item {
  border: 1px solid var(--bas-border-light) !important;
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden
}

.accordion-button {
  font-size: 14px;
  font-weight: 700;
  color: var(--bas-heading);
  padding: 20px 22px;
  box-shadow: none !important
}

.accordion-button:not(.collapsed) {
  background: var(--bas-primary-light);
  color: var(--bas-primary)
}

.accordion-body {
  color: var(--bas-text-light);
  font-size: 13px;
  line-height: 1.75;
  padding: 0 22px 22px
}

/* CTA */
.cta-section {
  background: var(--bas-bg-light);
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--bas-primary), var(--bas-primary-dark));
  padding: 65px 70px;
  border-radius: 20px;
  position: relative;
  overflow: hidden
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  right: -170px;
  top: -220px
}

.cta-box h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 12px
}

.cta-box p {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  margin: 0
}

.cta-box .btn {
  position: relative;
  z-index: 2
}

/* FOOTER */
.site-footer {
  background: var(--bas-secondary);
  padding: 75px 0 25px;
  color: #fff
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px
}

.footer-brand strong {
  width: 48px;
  height: 48px;
  background: #fff;
  color: var(--bas-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.footer-brand span {
  font-size: 13px;
  font-weight: 700
}

.site-footer p {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  line-height: 1.8;
  max-width: 440px
}

.site-footer h5 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px
}

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

.site-footer li {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, .5);
  font-size: 12px
}

.site-footer a {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  transition: .2s
}

.site-footer a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .35);
  font-size: 11px
}

.footer-links {
  display: flex;
  gap: 20px
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bas-primary);
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--bas-transition);
  box-shadow: var(--bas-shadow)
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.back-to-top:hover {
  background: var(--bas-primary-dark);
  transform: translateY(-3px)
}

/* RESPONSIVE */
@media(max-width:991px) {
  .section-padding {
    padding: 75px 0
  }

  .navbar-collapse {
    background: #fff;
    padding: 15px 0 20px
  }

  .hero-slider,
  .hero-slide {
    height: 720px
  }

  .hero-content {
    padding-top: 70px
  }

  .hero-content h1 {
    font-size: 58px
  }

  .partner-logos {
    justify-content: flex-start;
    margin-top: 20px
  }

  .about-image-wrap {
    margin-bottom: 20px
  }
}

@media(max-width:767px) {
  .section-padding {
    padding: 65px 0
  }

  .brand-text {
    display: none
  }

  .hero-slider,
  .hero-slide {
    height: 700px
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(5, 22, 38, .93), rgba(5, 22, 38, .62)), linear-gradient(0deg, rgba(5, 22, 38, .7), transparent)
  }

  .hero-content {
    padding-top: 35px
  }

  .hero-content h1 {
    font-size: 45px;
    letter-spacing: -1.5px
  }

  .hero-content p {
    font-size: 15px
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-location {
    display: none
  }

  .hero-bottom .container {
    justify-content: flex-end !important
  }

  .about-image-wrap {
    padding-right: 20px;
    padding-bottom: 25px
  }

  .about-image-wrap img {
    height: 400px
  }

  .about-image-card {
    left: 0
  }

  .partner-logos {
    display: grid;
    grid-template-columns: 1fr
  }

  .partner-logo {
    min-width: 0
  }

  .workshop-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px
  }

  .filter-btn {
    flex-shrink: 0
  }

  .cta-box {
    padding: 40px 25px
  }

  .footer-bottom {
    flex-direction: column
  }

  .footer-links {
    flex-direction: column;
    gap: 8px
  }
}

@media(max-width:575px) {
  .hero-content h1 {
    font-size: 39px
  }

  .hero-content p {
    font-size: 14px
  }

  .hero-slider,
  .hero-slide {
    height: 670px
  }

  .hero-prev,
  .hero-next {
    width: 38px;
    height: 38px
  }

  .about-image-card {
    padding: 18px 20px
  }
}


/* =====================================
         CONTACT SECTION
      ===================================== */
.contact-section {
  padding: 90px 0 100px;
}

/* =====================================
CONTACT INFO
===================================== */
.section-label {
  display: inline-block;
  background: var(--bas-primary-light);
  color: var(--bas-primary);
  padding: 7px 13px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.contact-intro h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.contact-intro>p {
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
  max-width: 550px;
}

/* =====================================
CONTACT ITEMS
===================================== */
.contact-info {
  margin-top: 35px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 27px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bas-primary-light);
  color: var(--bas-primary);
  border-radius: 11px;
  font-size: 20px;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.contact-icon svg{
  font-size: 20px;
}

.contact-item h5 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-item a:hover {
  color: var(--bas-primary);
}

/* =====================================
PARTNERS
===================================== */
.partner-box {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--bas-border);
}

.partner-box h6 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text);
  margin-bottom: 20px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.partner-logo {
  height: 48px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bas-primary);
  font-weight: 800;
  font-size: 20px;
}

.partner-logo small {
  display: block;
  color: var(--text);
  font-size: 9px;
  letter-spacing: 1px;
}

/* =====================================
CONTACT FORM
===================================== */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--bas-radius);
  padding: 38px;
  box-shadow: var(--bas-shadow);
}

.contact-form-card h3 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-intro {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  min-height: 48px;
  border: 1px solid var(--bas-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  box-shadow: none !important;
}

textarea.form-control {
  min-height: 145px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--bas-primary);
}

.form-check {
  margin-top: 5px;
}

.form-check-input {
  border-color: var(--border);
}

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

.form-check-label {
  color: var(--text);
  font-size: 12px;
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  background: var(--bas-primary);
  border: 2px solid var(--bas-primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}

.btn-submit:hover {
  background: var(--bas-primary-dark);
  border-color: var(--bas-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}


/* =====================================
          MAP
       ===================================== */
.location-section {
  background: var(--bas-secondary-light);
  padding: 90px 0;
}

.location-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 15px;
}

.location-description {
  color: var(--text);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 35px;
}

.map-container {
  width: 100%;
  height: 390px;
  border-radius: var(--bas-radius);
  overflow: hidden;
  border: 1px solid var(--bas-border);
  background: #dfe8ef;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   404 PAGE
========================================================= */

.error-404 {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: var(--bas-bg-soft);
  border-bottom: 1px solid var(--bas-border-light);
  overflow: hidden;
}


/* =========================================================
   BACKGROUND TYPOGRAPHY
========================================================= */

.error-404-bg {
  position: absolute;

  right: -30px;
  bottom: -85px;
  color: rgba(15, 39, 67, .025);
  font-size: 280px;
  font-weight: 800;
  line-height: .8;
  letter-spacing: -18px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}


/* =========================================================
   CONTENT
========================================================= */

.error-404-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}


/* =========================================================
   LABEL
========================================================= */

.error-404-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--bas-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.error-404-label span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--bas-primary);
}


/* =========================================================
   404 NUMBER
========================================================= */

.error-404-number {
  margin-bottom: 10px;
  color: var(--bas-primary);
  font-size: clamp(120px, 18vw, 230px);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -12px;
}


/* =========================================================
   TITLE
========================================================= */

.error-404-content h1 {
  margin: 35px 0 18px;
  color: var(--bas-text);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.error-404-content h1 span {
  color: var(--bas-primary);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.error-404-content p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--bas-text-muted);
  font-size: 14px;
  line-height: 1.8;
}


/* =========================================================
   ACTIONS
========================================================= */

.error-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}


/* PRIMARY BUTTON */

.error-404-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--bas-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition:
          transform .3s ease,
          background-color .3s ease;
}

.error-404-button:hover {
  color: #fff;
  transform: translateY(-2px);
}

.error-404-button i {
  font-size: 13px;

  transition: transform .3s ease;
}

.error-404-button:hover i {
  transform: translateX(4px);
}


/* SECONDARY LINK */

.error-404-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bas-text);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease;
}

.error-404-link:hover {
  color: var(--bas-primary);
}

.error-404-link i {
  font-size: 10px;

  transition: transform .25s ease;
}

.error-404-link:hover i {
  transform: translate(2px, -2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .error-404 {
    min-height: calc(100vh - 70px);

    padding: 70px 0;
  }

  .error-404-bg {
    right: -20px;
    bottom: -40px;

    font-size: 160px;
    letter-spacing: -10px;
  }

  .error-404-number {
    font-size: 120px;
    letter-spacing: -7px;
  }

  .error-404-content h1 {
    margin-top: 30px;

    font-size: 32px;
  }

  .error-404-content p {
    font-size: 13px;
  }

  .error-404-actions {
    flex-direction: column;
    gap: 18px;
  }

}


/* =====================================
        MAIN CONTENT
     ===================================== */
.workshop-content-section {
  padding: 85px 0 100px;
}

/* =====================================
CONTENT TYPOGRAPHY
===================================== */
.content-section {
  margin-bottom: 55px;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.content-section p {
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
}

.content-section ul {
  padding-left: 20px;
}

.content-section ul li {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}

.check-list {
  list-style: none;
  padding: 0 !important;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px !important;
}

.check-list i {
  color: var(--bas-primary);
  margin-top: 5px;
}

/* =====================================
WORKSHOP IMAGE
===================================== */
.workshop-main-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--bas-radius);
  margin-bottom: 50px;
}

/* =====================================
AGENDA
===================================== */
.agenda-item {
  display: flex;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid var(--bas-border);
}

.agenda-time {
  min-width: 100px;
  color: var(--bas-primary);
  font-weight: 800;
  font-size: 14px;
}

.agenda-content h5 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5px;
}

.agenda-content p {
  margin: 0;
  font-size: 14px;
}

/* =====================================
TRAINER
===================================== */
.trainer-box {
  background: var(--bas-bg-light);
  border-radius: var(--bas-radius);
  padding: 30px;
  display: flex;
  gap: 22px;
  align-items: center;
}

.trainer-image {
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  border-radius: 50%;
  object-fit: cover;
}

.trainer-box h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
}

.trainer-role {
  color: var(--bas-primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.trainer-box p {
  margin: 0;
  font-size: 14px;
}

/* =====================================
CERTIFICATION
===================================== */
.certificate-box {
  background: var(--bas-primary-light);
  border-left: 4px solid var(--bas-primary);
  padding: 25px 28px;
  border-radius: 10px;
}

.certificate-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--bas-primary);
  margin-bottom: 8px;
}

.certificate-box p {
  margin: 0;
  font-size: 14px;
}

/* =====================================
BOOKING SIDEBAR
===================================== */
.booking-card {
  background: #fff;
  border: 1px solid var(--bas-border);
  border-radius: var(--bas-radius);
  box-shadow: var(--bas-shadow);
  padding: 30px;
  position: sticky;
  top: 100px;
}

.booking-card-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 22px;
}

.price-box {
  background: var(--bas-bg-light);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 22px;
}

.price-label {
  color: var(--bas-text);
  font-size: 12px;
  margin-bottom: 5px;
}

.price {
  color: var(--bas-primary);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
}

.price-note {
  color: var(--bas-text);
  font-size: 12px;
}

.booking-info {
  border-top: 1px solid var(--bas-border);
  padding-top: 20px;
  margin-top: 20px;
}

.booking-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 17px;
}

.booking-info-item i {
  color: var(--bas-primary);
  font-size: 18px;
  width: 20px;
}

.booking-info-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.booking-info-item span {
  color: var(--bas-text);
  font-size: 13px;
}

.btn-book {
  width: 100%;
  background: var(--bas-primary);
  border: 2px solid var(--bas-primary);
  color: #fff;
  border-radius: 9px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 800;
  transition: .25s ease;
  margin-top: 10px;
}

.btn-book:hover {
  background: var(--bas-primary-dark);
  border-color: var(--bas-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.limited-places {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
  color: #ba6b00;
  font-size: 12px;
  font-weight: 700;
}

.limited-places i {
  color: var(--bas-accent);
}

.secure-payment {
  text-align: center;
  color: var(--bas-text);
  font-size: 11px;
  margin-top: 18px;
}

.secure-payment i {
  color: var(--bas-primary);
}



/* =========================
           WORKSHOPS SECTION
        ========================= */
.workshops-section {
  padding: 85px 0 100px;
  background: var(--bas-bg-soft);
}

.section-label {
  display: inline-block;
  color: var(--bas-primary);
  background: var(--bas-bg-light);
  padding: 7px 13px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.section-description {
  color: var(--bas-text);
  line-height: 1.7;
  max-width: 650px;
}

/* =========================
WORKSHOP CARD
========================= */
.workshop-card {
  background: #fff;
  border: 1px solid var(--bas-border);
  border-radius: var(--bas-radius);
  overflow: hidden;
  height: 100%;
  transition: .3s ease;
  display: flex;
  flex-direction: column;
}

.workshop-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--bas-shadow);
  border-color: rgba(0, 68, 135, .18);
}

.workshop-image {
  height: 235px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.workshop-category {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #fff;
  color: var(--bas-primary);
  padding: 7px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.workshop-status {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bas-accent);
  color: #18242d;
  padding: 7px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
}

.workshop-content {
  padding: 27px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.workshop-date {
  color: var(--bas-primary);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.workshop-date i {
  margin-right: 5px;
}

.workshop-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 13px;
  color: var(--bas-primary-dark);
}

.workshop-description {
  color: var(--bas-text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.workshop-meta {
  border-top: 1px solid var(--bas-border);
  padding-top: 18px;
  margin-top: auto;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bas-text);
  font-size: 13px;
  margin-bottom: 9px;
}

.meta-item i {
  color: var(--bas-primary);
  width: 17px;
}

.workshop-footer {
  border-top: 1px solid var(--bas-border);
  padding-top: 20px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.workshop-price {
  color: var(--bas-primary);
  font-size: 23px;
  font-weight: 800;
  white-space: nowrap;
}

.workshop-price small {
  display: block;
  color: var(--bas-text);
  font-size: 10px;
  font-weight: 600;
}

.btn-workshop {
  background: var(--bas-primary);
  color: #fff;
  border-radius: 8px;
  padding: 10px 17px;
  font-size: 13px;
  font-weight: 800;
  border: 2px solid var(--bas-primary);
  transition: .25s ease;
}

.btn-workshop:hover {
  background: var(--bas-primary-dark);
  border-color: var(--bas-primary-dark);
  color: #fff;
}

/* =========================
FEATURED WORKSHOP
========================= */
.featured-workshop {
  background: var(--bas-primary);
  border-radius: var(--bas-radius);
  overflow: hidden;
  color: #fff;
  margin-bottom: 60px;
}

.featured-image {
  min-height: 430px;
  background:
          linear-gradient(90deg, rgba(0, 68, 135, .05), rgba(0, 68, 135, .15)),
          url('https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&w=1200&q=80') center/cover;
}

.featured-content {
  padding: 55px;
}

.featured-label {
  display: inline-block;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.featured-content h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  color:#fff;
}

.featured-content p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  margin-bottom: 25px;
}

.featured-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.featured-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
}

.featured-info-item i {
  color: var(--bas-accent);
}

.btn-white {
  background: #fff;
  color: var(--bas-primary);
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 800;
  transition: .25s ease;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
}

/* =========================
EMPTY / LOAD MORE
========================= */
.load-more {
  margin-top: 50px;
  text-align: center;
}

.btn-outline-primary-custom {
  border: 2px solid var(--bas-primary);
  color: var(--bas-primary);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 800;
  transition: .25s ease;
  background: transparent;
}

.btn-outline-primary-custom:hover {
  background: var(--bas-primary);
  color: #fff;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 991px) {
  .navbar .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .filter-section {
    position: static;
  }

  .featured-content {
    padding: 35px;
  }

  .featured-image {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .workshops-hero {
    padding: 70px 0;
  }

  .workshops-hero h1 {
    letter-spacing: -2px;
  }

  .workshops-section {
    padding: 65px 0 75px;
  }

  .featured-content h2 {
    font-size: 30px;
  }

  .featured-content {
    padding: 30px;
  }

  .workshop-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn-workshop {
    width: 100%;
    text-align: center;
  }
}


/* CHECKOUT */
.checkout-section {
  padding: 60px 0 100px
}

/* SECTION CARD */
.checkout-card {
  background: #fff;
  border: 1px solid var(--bas-border-light);
  border-radius: 16px;
  box-shadow: var(--bas-shadow-sm);
  overflow: hidden;
  margin-bottom: 20px
}

.checkout-card-header {
  padding: 25px 28px;
  border-bottom: 1px solid var(--bas-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.checkout-card-title {
  display: flex;
  align-items: center;
  gap: 13px
}

.checkout-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--bas-primary-light);
  color: var(--bas-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px
}

.checkout-card-title h2 {
  color: var(--bas-heading);
  font-size: 17px;
  margin: 0
}

.checkout-card-title span {
  display: block;
  color: var(--bas-text-muted);
  font-size: 10px;
  margin-top: 3px
}

.checkout-card-body {
  padding: 28px
}

/* FORM */
.form-label {
  color: var(--bas-heading);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px
}

.form-control,
.form-select {
  min-height: 48px;
  border: 1px solid var(--bas-border);
  border-radius: 8px;
  color: var(--bas-heading);
  font-size: 13px;
  padding: 12px 14px;
  box-shadow: none !important;
  transition: .25s
}

.form-control::placeholder {
  color: #b0b8c3
}

.form-control:focus,
.form-select:focus {
  border-color: var(--bas-primary);
  box-shadow: 0 0 0 3px rgba(0, 68, 135, .08) !important
}

textarea.form-control {
  min-height: 110px;
  resize: vertical
}

.required {
  color: #d84a4a
}

/* WORKSHOP SUMMARY */
.workshop-summary {
  display: flex;
  gap: 18px;
  padding: 0
}

.workshop-thumb {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--bas-primary), var(--bas-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  position: relative;
  overflow: hidden
}

.workshop-thumb::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  right: -45px;
  bottom: -45px
}

.workshop-summary-content {
  flex: 1
}

.workshop-category {
  color: var(--bas-primary);
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 7px
}

.workshop-summary h3 {
  color: var(--bas-heading);
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 10px
}

.workshop-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.workshop-info span {
  color: var(--bas-text-light);
  font-size: 10px
}

.workshop-info i {
  color: var(--bas-primary);
  margin-right: 4px
}

/* QUANTITY */
.quantity-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bas-border-light);
  margin-top: 25px;
  padding-top: 20px
}

.quantity-label {
  color: var(--bas-heading);
  font-size: 11px;
  font-weight: 700
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--bas-border);
  border-radius: 8px;
  overflow: hidden
}

.quantity-control button {
  width: 34px;
  height: 36px;
  border: 0;
  background: #fff;
  color: var(--bas-primary);
  font-size: 15px
}

.quantity-control button:hover {
  background: var(--bas-primary-light)
}

.quantity-control span {
  width: 38px;
  text-align: center;
  color: var(--bas-heading);
  font-size: 12px;
  font-weight: 700
}

/* PAYMENT */
.payment-option {
  border: 1px solid var(--bas-border);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: .25s
}

.payment-option.active {
  border-color: var(--bas-primary);
  background: #fbfdff;
  box-shadow: 0 0 0 2px rgba(0, 68, 135, .06)
}

.payment-option label {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  cursor: pointer
}

.payment-radio {
  width: 17px;
  height: 17px;
  accent-color: var(--bas-primary)
}

.payment-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bas-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bas-primary);
  font-size: 17px
}

.payment-name {
  flex: 1
}

.payment-name strong {
  display: block;
  color: var(--bas-heading);
  font-size: 12px
}

.payment-name small {
  display: block;
  color: var(--bas-text-muted);
  font-size: 9px;
  margin-top: 3px
}

/* CARD FORM */
.card-form {
  display: none;
  padding: 20px;
  border-top: 1px solid var(--bas-border-light);
  background: #fafcfe
}

.payment-option.active .card-form {
  display: block
}

.card-brands {
  display: flex;
  gap: 6px;
  margin-left: auto
}

.card-brand {
  border: 1px solid var(--bas-border);
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 7px;
  font-weight: 800;
  color: var(--bas-text-light)
}

/* ORDER SUMMARY */
.summary-sticky {
  position: sticky;
  top: 25px
}

.summary-card {
  background: #fff;
  border: 1px solid var(--bas-border-light);
  border-radius: 16px;
  box-shadow: var(--bas-shadow);
  overflow: hidden
}

.summary-header {
  padding: 25px 27px;
  background: var(--bas-secondary);
  color: #fff
}

.summary-header small {
  display: block;
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px
}

.summary-header h2 {
  color: #fff;
  font-size: 21px;
  margin: 0
}

.summary-body {
  padding: 27px
}

.summary-workshop {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--bas-border-light)
}

.summary-workshop small {
  display: block;
  color: var(--bas-primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.summary-workshop h3 {
  color: var(--bas-heading);
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 12px
}

.summary-meta {
  display: grid;
  gap: 8px
}

.summary-meta div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 11px;
  color: var(--bas-text-light)
}

.summary-meta span:last-child {
  color: var(--bas-heading);
  font-weight: 600;
  text-align: right
}

.summary-price {
  padding: 20px 0;
  border-bottom: 1px solid var(--bas-border-light)
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
  color: var(--bas-text-light);
  font-size: 12px
}

.price-row strong {
  color: var(--bas-heading)
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 10px
}

.price-total span {
  color: var(--bas-heading);
  font-size: 13px;
  font-weight: 700
}

.price-total strong {
  color: var(--bas-primary);
  font-size: 26px
}

.currency {
  font-size: 12px;
  margin-left: 2px
}

/* TERMS */
.terms {
  margin: 20px 0
}

.form-check {
  display: flex;
  gap: 9px;
  align-items: flex-start
}

.form-check-input {
  margin-top: 3px;
  accent-color: var(--bas-primary)
}

.form-check-label {
  color: var(--bas-text-light);
  font-size: 10px;
  line-height: 1.6
}

.form-check-label a {
  color: var(--bas-primary);
  font-weight: 700
}

/* PAY BUTTON */
.pay-button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 9px;
  background: var(--bas-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: .3s;
  box-shadow: 0 8px 20px rgba(0, 68, 135, .18)
}

.pay-button:hover {
  background: var(--bas-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 68, 135, .25)
}

.pay-button i {
  margin-right: 7px
}

/* SECURE */
.secure-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 17px;
  color: var(--bas-text-muted);
  font-size: 9px
}

.secure-payment i {
  color: #4b9b67
}

/* SUPPORT */
.checkout-support {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 17px;
  padding: 17px;
  background: var(--bas-bg-soft);
  border-radius: 10px
}

.support-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bas-primary)
}

.checkout-support strong {
  display: block;
  color: var(--bas-heading);
  font-size: 10px
}

.checkout-support span {
  display: block;
  color: var(--bas-text-muted);
  font-size: 9px;
  margin-top: 3px
}


/* RESPONSIVE */
@media(max-width:991px) {
  .summary-sticky {
    position: static;
    margin-top: 20px
  }

  .checkout-progress {
    overflow-x: auto
  }

  .progress-inner {
    justify-content: flex-start;
    min-width: 650px
  }
}

@media(max-width:767px) {
  .checkout-header {
    padding: 40px 0 35px
  }

  .checkout-section {
    padding: 35px 0 70px
  }

  .checkout-card-header {
    padding: 20px
  }

  .checkout-card-body {
    padding: 20px
  }

  .workshop-summary {
    flex-direction: column
  }

  .workshop-thumb {
    width: 100%;
    height: 130px;
    flex-basis: 130px
  }
}

@media(max-width:575px) {
  .brand-text {
    display: none
  }

  .header-back span {
    display: none
  }

  .checkout-header h1 {
    font-size: 35px
  }

  .progress-inner {
    padding: 18px 0
  }

  .progress-line {
    width: 35px;
    margin: 0 8px
  }

  .progress-step {
    font-size: 9px
  }

  .progress-number {
    width: 26px;
    height: 26px
  }

  .checkout-card-title h2 {
    font-size: 15px
  }

  .summary-body {
    padding: 22px
  }
}

/* PAGE HEADER */
.checkout-header {
  background: #fff;
  padding: 100px 0 45px;
  border-bottom: 1px solid var(--bas-border-light)
}

.checkout-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--bas-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 13px
}

.checkout-eyebrow::before {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--bas-primary)
}

.checkout-header h1 {
  color: var(--bas-heading);
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -1px;
  margin: 0 0 10px;
  font-weight: 700
}

.checkout-header p {
  color: var(--bas-text-light);
  font-size: 14px;
  margin: 0;
  line-height: 1.7
}

/* PROGRESS */
.checkout-progress {
  background: #fff;
  border-bottom: 1px solid var(--bas-border-light)
}

.progress-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bas-text-muted);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap
}

.progress-number {
  width: 30px;
  height: 30px;
  border: 1px solid var(--bas-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: #fff
}

.progress-step.active {
  color: var(--bas-primary)
}

.progress-step.active .progress-number {
  color: #fff;
  background: var(--bas-primary);
  border-color: var(--bas-primary)
}

.progress-step.completed {
  color: var(--bas-primary)
}

.progress-step.completed .progress-number {
  background: var(--bas-primary-light);
  border-color: #c7dced;
  color: var(--bas-primary)
}

.progress-line {
  width: 75px;
  height: 1px;
  background: var(--bas-border);
  margin: 0 15px
}

.progress-line.active {
  background: var(--bas-primary)
}



/* FORM */
.form-label {
  color: var(--bas-heading);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  min-height: 48px;
  border: 1px solid var(--bas-border);
  border-radius: 8px;
  color: var(--bas-heading);
  font-size: 13px;
  padding: 12px 14px;
  box-shadow: none !important;
  transition: .25s
}

.input-text::placeholder {
  color: #b0b8c3
}

.input-text:focus,
.form-select:focus {
  border-color: var(--bas-primary);
  box-shadow: 0 0 0 3px rgba(0, 68, 135, .08) !important
}

textarea.input-text {
  min-height: 110px;
  resize: vertical
}

.required {
  color: #d84a4a
}


.bas-checkout-coupon{
  margin-top:24px;
  border:1px solid var(--bas-border);
  border-radius:14px;
  background:#fff;
  overflow:hidden
}
.coupon-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  padding:17px 20px;
  border:0;
  background:#fff;
  color:var(--bas-heading);
  font-size:14px;
  font-weight:600;
  text-align:left;
  transition:all .25s ease
}
.coupon-toggle:hover{
  background:var(--bas-bg-light);
  color:var(--bas-primary)
}
.coupon-toggle span{
  display:flex;
  align-items:center;
  gap:10px
}
.coupon-toggle span i{
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  background:var(--bas-primary-light);
  color:var(--bas-primary);
  font-size:15px
}
.coupon-toggle>i{
  font-size:12px;
  color:var(--bas-text-muted);
  transition:transform .25s ease
}
.coupon-toggle[aria-expanded="true"]>i{
  transform:rotate(180deg)
}
.coupon-content{
  padding:0 20px 20px;
  border-top:1px solid var(--bas-border-light)
}
.coupon-form{
  display:flex;
  align-items:stretch;
  gap:10px;
  padding-top:18px
}
.coupon-form input{
  flex:1;
  min-width:0;
  height:46px;
  padding:0 14px;
  border:1px solid var(--bas-border);
  border-radius:9px;
  outline:0;
  background:#fff;
  color:var(--bas-heading);
  font-size:13px;
  transition:border-color .2s ease,box-shadow .2s ease
}
.coupon-form input::placeholder{
  color:var(--bas-text-muted)
}
.coupon-form input:focus{
  border-color:var(--bas-primary);
  box-shadow:0 0 0 3px rgba(0,68,135,.08)
}
.bas-apply-coupon{
  height:46px;
  padding:0 20px;
  border:0;
  border-radius:9px;
  background:var(--bas-primary);
  color:#fff;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  cursor:pointer;
  transition:all .25s ease
}
.bas-apply-coupon:hover{
  background:var(--bas-primary-dark);
  transform:translateY(-1px)
}
.bas-apply-coupon:active{
  transform:translateY(0)
}
.coupon-message{
  margin-top:10px;
  font-size:12px;
  line-height:1.5;
  color:var(--bas-text-light)
}
.coupon-message.success{
  color:#16845b
}
.coupon-message.error{
  color:#c0392b
}
@media(max-width:575.98px){
  .bas-checkout-coupon{
    border-radius:12px
  }
  .coupon-toggle{
    padding:15px 16px
  }
  .coupon-content{
    padding:0 16px 16px
  }
  .coupon-form{
    flex-direction:column
  }
  .coupon-form input,
  .bas-apply-coupon{
    width:100%
  }
}


.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
  width: 100%;
  overflow: visible;
}

/* ==========================================================================
   SELECT2 / SELECTWOO CUSTOM STYLING (BOOTSTRAP MATCH)
   ========================================================================== */

/* Shkëputja dhe lartësia kryesore e elementit Select2 */
.bas-checkout-form .select2-container--default .select2-selection--single {
  height: 44px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  background-color: #fff;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Teksti brenda Select2 */
.bas-checkout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #212529;
  padding-left: 0;
  font-size: 0.95rem;
  line-height: normal;
}

/* Shigjeta (Arrow) në të djathtë */
.bas-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 10px;
  display: flex;
  align-items: center;
}

/* Efekti Focus kur fusha është aktive */
.bas-checkout-form .select2-container--default.select2-container--focus .select2-selection--single,
.bas-checkout-form .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
  outline: 0;
}

/* Menuja që hapet poshtë (Dropdown Panel) */
.select2-dropdown {
  border: 1px solid #ced4da;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

/* Fusha e kërkimit brenda Dropdown-it */
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 6px 10px;
}

/* Option-et gjatë hover/selection */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #0d6efd;
  color: #fff;
}


/* MAIN */
.thank-you-section {
  min-height: calc(100vh - 82px);
  padding: 120px 0 90px;
  display: flex;
  align-items: center
}

.confirmation-wrapper {
  max-width: 850px;
  margin: 0 auto
}

/* SUCCESS */
.success-card {
  background: #fff;
  border: 1px solid var(--bas-border-light);
  border-radius: 20px;
  box-shadow: var(--bas-shadow);
  overflow: hidden
}

.success-top {
  padding: 50px 35px 40px;
  text-align: center;
  border-bottom: 1px solid var(--bas-border-light)
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9f7ef;
  color: #238653;
  font-size: 31px;
  animation: successPop .5s ease
}

@keyframes successPop {
  0% {
    transform: scale(.7);
    opacity: 0
  }

  70% {
    transform: scale(1.08)
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

.success-label {
  color: #238653;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px
}

.success-top h1 {
  color: var(--bas-heading);
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -.7px;
  margin: 0 0 12px;
  font-weight: 700
}

.success-top p {
  max-width: 570px;
  margin: 0 auto;
  color: var(--bas-text-light);
  font-size: 14px;
  line-height: 1.7
}

/* ORDER INFO */
.order-info {
  padding: 28px 35px;
  background: #fbfcfe;
  border-bottom: 1px solid var(--bas-border-light)
}

.order-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.order-item {
  text-align: center
}

.order-item small {
  display: block;
  color: var(--bas-text-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px
}

.order-item strong {
  display: block;
  color: var(--bas-heading);
  font-size: 13px
}

/* CONTENT */
.success-content {
  padding: 35px
}

.workshop-box {
  display: flex;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--bas-border);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 25px
}

.workshop-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bas-primary-light);
  color: var(--bas-primary);
  font-size: 21px
}

.order-workshop-content {
  flex: 1
}

.order-workshop-content small {
  display: block;
  color: var(--bas-primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 5px
}

.order-workshop-content h2 {
  color: var(--bas-heading);
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 9px
}

.order-workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.order-workshop-meta span {
  color: var(--bas-text-light);
  font-size: 10px
}

.order-workshop-meta i {
  color: var(--bas-primary);
  margin-right: 4px
}

/* NEXT STEPS */
.next-title {
  color: var(--bas-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.next-step {
  padding: 17px;
  border: 1px solid var(--bas-border-light);
  border-radius: 10px;
  background: #fff
}

.next-step-number {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bas-primary-light);
  color: var(--bas-primary);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
  margin-bottom: 11px
}

.next-step strong {
  display: block;
  color: var(--bas-heading);
  font-size: 11px;
  margin-bottom: 5px
}

.next-step span {
  display: block;
  color: var(--bas-text-muted);
  font-size: 9px;
  line-height: 1.5
}

/* ACTIONS */
.success-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 30px
}

.btn-primary-bas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--bas-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: .25s
}

.btn-primary-bas:hover {
  background: var(--bas-primary-dark);
  color: #fff;
  transform: translateY(-1px)
}

.btn-outline-bas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--bas-border);
  border-radius: 8px;
  background: #fff;
  color: var(--bas-heading);
  font-size: 12px;
  font-weight: 700;
  transition: .25s
}

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

/* EMAIL NOTICE */
.email-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding: 15px 17px;
  border-radius: 9px;
  background: var(--bas-bg-soft)
}

.email-notice-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  color: var(--bas-primary)
}

.email-notice strong {
  display: block;
  color: var(--bas-heading);
  font-size: 12px;
  margin-bottom: 3px
}

.email-notice span {
  display: block;
  color: var(--bas-text-muted);
  font-size: 12px;
  line-height: 1.5
}

/* RESPONSIVE */
@media(max-width:767px) {
  .thank-you-section {
    padding: 40px 0 60px;
    min-height: auto
  }

  .success-top {
    padding: 40px 22px 32px
  }

  .order-info {
    padding: 22px
  }

  .order-info-grid {
    grid-template-columns: 1fr
  }

  .order-item {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bas-border-light)
  }

  .order-item:last-child {
    padding-bottom: 0;
    border-bottom: 0
  }

  .order-item small {
    margin: 0
  }

  .success-content {
    padding: 22px
  }

  .next-steps {
    grid-template-columns: 1fr
  }

  .success-actions {
    flex-direction: column
  }

  .btn-primary-bas,
  .btn-outline-bas {
    width: 100%
  }
}

@media(max-width:575px) {
  .success-icon {
    width: 62px;
    height: 62px;
    font-size: 26px
  }

  .success-top h1 {
    font-size: 30px
  }

  .workshop-box {
    flex-direction: column
  }
}

/* LOGIN */
.login-section {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 140px 0 90px !important;
  position: relative;
  overflow: hidden
}

.login-section::before {
  content: "BAS";
  position: absolute;
  right: -80px;
  bottom: -90px;
  color: rgba(0, 68, 135, .025);
  font-size: 260px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none
}

.login-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

/* LOGIN CARD */
.login-card {
  background: #fff;
  border: 1px solid var(--bas-border-light);
  border-radius: 18px;
  box-shadow: var(--bas-shadow);
  overflow: hidden
}

.login-card-header {
  padding: 38px 40px 30px;
  text-align: center;
  border-bottom: 1px solid var(--bas-border-light)
}

.login-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bas-primary-light);
  color: var(--bas-primary);
  border-radius: 12px;
  font-size: 22px
}

.login-label {
  color: var(--bas-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 9px
}

.login-card-header h1 {
  color: var(--bas-heading);
  font-size: 28px;
  letter-spacing: -.4px;
  margin: 0 0 9px;
  font-weight: 700
}

.login-card-header p {
  color: var(--bas-text-light);
  font-size: 12px;
  line-height: 1.6;
  margin: 0
}

/* FORM */
.login-form {
  padding: 32px 40px 38px
}

.password-field {
  position: relative
}

.password-field .form-control {
  padding-right: 48px
}

.password-toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 46px;
  height: 49px;
  border: 0;
  background: transparent;
  color: var(--bas-text-muted);
  cursor: pointer;
  transition: .2s
}

.password-toggle:hover {
  color: var(--bas-primary)
}

/* OPTIONS */
.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 4px 0 24px
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bas-text-light);
  font-size: 10px;
  cursor: pointer
}

.remember-me input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--bas-primary)
}

.forgot-password {
  color: var(--bas-primary);
  font-size: 10px;
  font-weight: 700;
  transition: .2s
}

.forgot-password:hover {
  color: var(--bas-primary-dark)
}

/* BUTTON */
.login-button {
  width: 100%;
  height: 51px;
  border: 0;
  border-radius: 9px;
  background: var(--bas-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 8px 20px rgba(0, 68, 135, .17)
}

.login-button:hover {
  background: var(--bas-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(0, 68, 135, .23)
}

.login-button i {
  margin-right: 7px
}

/* DIVIDER */
.login-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 27px 0 23px;
  color: var(--bas-text-muted);
  font-size: 9px
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--bas-border-light)
}

/* REGISTER */
.register-box {
  padding: 17px;
  background: var(--bas-bg-soft);
  border-radius: 10px;
  text-align: center
}

.register-box p {
  color: var(--bas-text-light);
  font-size: 10px;
  margin: 0
}

.register-box a {
  color: var(--bas-primary);
  font-weight: 700;
  margin-left: 3px
}

.register-box a:hover {
  color: var(--bas-primary-dark)
}

/* SECURITY */
.login-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
  color: var(--bas-text-muted);
  font-size: 9px
}

.login-security i {
  color: #238653
}

@media(max-width:575px) {
  .login-section {
    padding: 40px 15px 60px
  }

  .login-card-header {
    padding: 32px 22px 25px
  }

  .login-form {
    padding: 27px 22px 30px
  }

  .login-card-header h1 {
    font-size: 25px
  }

  .login-options {
    align-items: flex-start
  }
}


/* PAGE */
.account-section {
  padding: 120px 0 90px;
  min-height: calc(100vh - 82px)
}

.account-heading {
  margin-bottom: 32px
}

.account-eyebrow {
  color: var(--bas-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 9px
}

.account-heading h1 {
  color: var(--bas-heading);
  font-size: 34px;
  letter-spacing: -.6px;
  margin: 0 0 8px;
  font-weight: 700
}

.account-heading p {
  color: var(--bas-text-light);
  font-size: 13px;
  margin: 0;
  line-height: 1.6
}

/* SIDEBAR */
.account-sidebar {
  background: #fff;
  border: 1px solid var(--bas-border-light);
  border-radius: 15px;
  box-shadow: var(--bas-shadow);
  overflow: hidden;
  position: sticky;
  top: 25px
}

.account-profile {
  padding: 25px 22px;
  border-bottom: 1px solid var(--bas-border-light)
}

.profile-avatar {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bas-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 13px
}

.account-profile strong {
  display: block;
  color: var(--bas-heading);
  font-size: 13px;
  margin-bottom: 4px
}

.account-profile span {
  display: block;
  color: var(--bas-text-muted);
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.account-nav {
  padding: 10px
}

.account-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 43px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--bas-text-light);
  font-size: 13px;
  font-weight: 600;
  transition: .2s
}

.account-nav a i {
  width: 18px;
  text-align: center;
  font-size: 14px
}

.account-nav a:hover {
  background: var(--bas-bg-soft);
  color: var(--bas-primary)
}

.account-nav a.active {
  background: var(--bas-primary-light);
  color: var(--bas-primary);
  font-weight: 700
}

.account-nav .logout {
  color: #b54747;
  margin-top: 5px
}

.account-nav .logout:hover {
  background: #fff4f4;
  color: #a33434
}

/* DASHBOARD */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px
}

.stat-card {
  background: #fff;
  border: 1px solid var(--bas-border-light);
  border-radius: 13px;
  padding: 20px;
  box-shadow: var(--bas-shadow);
  display: flex;
  align-items: center;
  gap: 14px
}

.stat-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bas-primary-light);
  color: var(--bas-primary);
  border-radius: 9px;
  font-size: 16px
}

.stat-card small {
  display: block;
  color: var(--bas-text-muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 4px
}

.stat-card strong {
  display: block;
  color: var(--bas-heading);
  font-size: 21px
}

/* CONTENT CARD */
.account-card {
  background: #fff;
  border: 1px solid var(--bas-border-light);
  border-radius: 15px;
  box-shadow: var(--bas-shadow);
  overflow: hidden;
  margin-bottom: 20px
}

.account-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px;
  border-bottom: 1px solid var(--bas-border-light)
}

.account-card-header h2 {
  color: var(--bas-heading);
  font-size: 15px;
  margin: 0
}

.account-card-header p {
  color: var(--bas-text-muted);
  font-size: 12px;
  margin: 4px 0 0
}

.view-all {
  color: var(--bas-primary);
  font-size: 10px;
  font-weight: 700
}

.account-card-body {
  padding: 25px
}

/* WORKSHOP */
.workshop-item {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 18px 0;
  border-bottom: 1px solid var(--bas-border-light)
}

.workshop-item:first-child {
  padding-top: 0
}

.workshop-item:last-child {
  padding-bottom: 0;
  border-bottom: 0
}

.workshop-date {
  width: 54px;
  height: 58px;
  flex: 0 0 54px;
  border: 1px solid var(--bas-border);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff
}

.workshop-date strong {
  color: var(--bas-primary);
  font-size: 18px;
  line-height: 1
}

.workshop-date span {
  color: var(--bas-text-muted);
  font-size: 8px;
  text-transform: uppercase;
  margin-top: 4px
}

.workshop-info {
  flex: 1;
  min-width: 0
}

.workshop-info small {
  display: block;
  color: var(--bas-primary);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px
}

.workshop-info h3 {
  color: var(--bas-heading);
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 5px
}

.workshop-info span {
  color: var(--bas-text-muted);
  font-size: 9px
}

.workshop-action {
  color: var(--bas-primary);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap
}

/* ORDERS */
.order-table {
  width: 100%;
  border-collapse: collapse
}

.order-table th {
  color: var(--bas-text-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 0 10px 13px;
  text-align: left
}

.order-table td {
  color: var(--bas-text);
  font-size: 12px;
  padding: 15px 10px;
  border-top: 1px solid var(--bas-border-light);
  vertical-align: middle
}

.order-table td:first-child,
.order-table th:first-child {
  padding-left: 0
}

.order-table td:last-child,
.order-table th:last-child {
  padding-right: 0;
  text-align: right
}

.order-number {
  color: var(--bas-primary);
  font-weight: 700
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700
}

.status-paid {
  background: var(--bas-success-light);
  color: var(--bas-primary-dark)
}

.status-pending {
  background: #fff6df;
  color: #a66b00
}

.order-view {
  color: var(--bas-primary);
  font-weight: 700
}

/* ACCOUNT DETAILS */
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.detail-item label {
  display: block;
  color: var(--bas-text-muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 6px
}

.detail-item span {
  display: block;
  color: var(--bas-heading);
  font-size: 11px;
  font-weight: 600
}

.edit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bas-primary);
  font-size: 10px;
  font-weight: 700
}

/* EMPTY */
.empty-state {
  padding: 25px 10px;
  text-align: center
}

.empty-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: var(--bas-bg-soft);
  color: var(--bas-primary);
  border-radius: 10px
}

.empty-state h3 {
  color: var(--bas-heading);
  font-size: 13px;
  margin-bottom: 5px
}

.empty-state p {
  color: var(--bas-text-muted);
  font-size: 10px;
  margin: 0
}


/* RESPONSIVE */
@media(max-width:991px) {
  .account-sidebar {
    position: static;
    margin-bottom: 25px
  }

  .dashboard-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

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

  .dashboard-grid {
    grid-template-columns: 1fr
  }

  .stat-card {
    padding: 16px
  }

  .account-card-header {
    padding: 20px
  }

  .account-card-body {
    padding: 20px
  }

  .order-table {
    min-width: 600px
  }

  .table-wrapper {
    overflow-x: auto
  }

  .details-grid {
    grid-template-columns: 1fr
  }

  .account-cta {
    flex-direction: column;
    align-items: flex-start
  }
}

@media(max-width:575px) {
  .header-actions {
    gap: 10px
  }

  .account-heading h1 {
    font-size: 29px
  }

  .workshop-item {
    align-items: flex-start
  }

  .workshop-action {
    display: none
  }
}